/* ═══════════════════════════════════════════════════════════════
   NUDGEBEE — About Page Styles
   Used by: /about.html
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.ab-hero {
  padding: 120px var(--gutter) 56px;
  background: var(--off);
  position: relative;
  overflow: hidden;
}
.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(250,200,53,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(56,162,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.ab-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.ab-hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: center;
}
.ab-hero-visual {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-hero-swarm {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.ab-hero-swarm-lead {
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 16px 28px rgba(27,45,74,0.22));
  animation: abBeeFloat 4.5s ease-in-out infinite;
}
@keyframes abBeeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7%); }
}
@media (prefers-reduced-motion: reduce) {
  .ab-hero-swarm-lead { animation: none; }
}
.ab-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  background: var(--yellow);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.ab-hero-h {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 820px;
}
.ab-hero-tagline {
  font-family: var(--fh);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  max-width: 680px;
}
.ab-hero-sub {
  font-family: var(--fb);
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 680px;
}

/* ── Facts strip ── */
.ab-facts {
  max-width: var(--max-w);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  position: relative;
}
.ab-fact {
  padding: 24px 28px;
  border-right: 1px solid var(--border-mid);
}
.ab-fact:last-child { border-right: none; }
.ab-fact-label {
  font-family: var(--fh);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  margin-bottom: 8px;
}
.ab-fact-val {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

/* ── Generic content section ── */
.ab-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px var(--gutter);
}
.ab-section.ab-wide { max-width: var(--max-w); }
.ab-section h2 {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ab-section p {
  font-family: var(--fb);
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink-light);
}
.ab-section p + p { margin-top: 16px; }
.ab-section .ab-lead {
  font-size: 1.1rem;
  color: var(--mid);
}
.ab-section p a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(56,162,255,0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--dur-fast) var(--ease-out-expo);
}
.ab-section p a:hover { text-decoration-color: var(--purple); }

/* ── Read-more link buttons ── */
.ab-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 20px;
}
.ab-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fh);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--purple);
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  transition: border-color var(--dur-fast) var(--ease-out-expo);
}
.ab-readmore svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease-out-expo);
}
.ab-readmore:hover { border-color: var(--purple); }
.ab-readmore:hover svg { transform: translateX(3px); }

/* ── Leadership cards ── */
.ab-people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.ab-person-card {
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  padding: 28px;
  background: var(--white);
}
.ab-person-pic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  background: var(--off);
}
.ab-person-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ab-person-name {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.ab-person-li {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--purple);
  transition: background var(--dur-fast) var(--ease-out-expo), color var(--dur-fast) var(--ease-out-expo);
}
.ab-person-li svg { width: 16px; height: 16px; }
.ab-person-li:hover { background: var(--purple); color: var(--white); }
.ab-person-role {
  font-family: var(--fb);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 14px;
}
.ab-person-bio {
  font-family: var(--fb);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-light);
}
.ab-person-quote {
  margin: 16px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--yellow);
  font-family: var(--fb);
  font-style: italic;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--mid);
}

/* ── Assistants grid ── */
.ab-assist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.ab-assist-card {
  display: block;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  background: var(--white);
  transition: border-color var(--dur-fast) var(--ease-out-expo), transform var(--dur-fast) var(--ease-out-expo);
}
.ab-assist-card:hover {
  border-color: var(--purple);
  transform: translateY(-3px);
}
.ab-assist-ico {
  margin-bottom: 12px;
}
.ab-assist-name {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.ab-assist-desc {
  font-family: var(--fb);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-light);
}

/* ── Photo gallery ── */
.ab-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 32px;
}
.ab-gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--off);
}
.ab-gallery-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}
.ab-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.ab-gallery-item:hover img {
  transform: scale(1.06);
}
.ab-gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 16px 12px;
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(to top, rgba(13,27,46,0.75) 0%, transparent 100%);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ab-hero-top { grid-template-columns: 1fr; }
  .ab-hero-visual { display: none; }
  .ab-facts { grid-template-columns: 1fr; }
  .ab-fact { border-right: none; border-bottom: 1px solid var(--border-mid); }
  .ab-fact:last-child { border-bottom: none; }
  .ab-people { grid-template-columns: 1fr; }
  .ab-assist-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .ab-gallery-item--wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .ab-hero { padding: 96px var(--gutter-sm) 40px; }
  .ab-section { padding: 56px var(--gutter-sm); }
  .ab-assist-grid { grid-template-columns: 1fr; }
  .ab-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .ab-gallery-item--wide { grid-column: span 1; }
}
