/* ── About page ─────────────────────────────────────────────────────────────
   Prefix: ab-
   1. Hero          .ab-hero
   2. Story         .ab-story
   3. Values        .ab-values
   4. Difference    .ab-difference
   5. Leadership    .ab-leadership
   6. Community     .ab-community
   7. Trust         .ab-trust
   8. Careers       .ab-careers
   9. Final CTA     .ab-cta
──────────────────────────────────────────────────────────────────────────── */

/* ── Spacing token ── */
:root {
  --ab-py: 108px;
}

/* ── Shared utilities ─────────────────────────────────────────────────────── */

.ab-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .36em;
  text-transform: uppercase;
}

.ab-eyebrow--light {
  color: rgba(91,156,255,.75);
}

.ab-section-head {
  margin-bottom: 64px;
  max-width: 900px;
}

.ab-section-head h2 {
  margin: 0 0 18px;
  color: var(--navy-2);
  font-size: var(--section-title);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.ab-section-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.7;
}

.ab-section-head--center {
  max-width: 100%;
  text-align: center;
}

.ab-section-head--center p {
  margin: 0 auto;
}

.ab-body-lead {
  margin: 0 0 18px;
  color: var(--navy-2);
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  font-weight: 500;
  line-height: 1.68;
}

.ab-text-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  transition: gap .2s ease;
}

.ab-text-cta:hover { gap: 10px; }

.ab-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  transition: background .2s ease, transform .2s ease;
}

.ab-btn-primary:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.ab-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-weight: 700;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
}

.ab-btn-ghost:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.07);
}

/* ── 1. HERO ──────────────────────────────────────────────────────────────── */

.ab-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
  background: linear-gradient(150deg, var(--navy) 0%, #18315e 100%);
}

.ab-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 70% -15%, rgba(91,156,255,.22), transparent),
    radial-gradient(ellipse 45% 55% at 4% 85%, rgba(47,128,237,.13), transparent);
}

.ab-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.ab-hero-copy {
  padding-bottom: 88px;
}

.ab-hero-copy h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: var(--hero-title);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.ab-hero-copy > p {
  margin: 0 0 36px;
  max-width: 52ch;
  color: rgba(255,255,255,.75);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.65;
}

.ab-hero-credentials {
  display: flex;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
  width: max-content;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}

.ab-credential {
  padding: 16px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.10);
}

.ab-credential:last-child { border-right: none; }

.ab-credential strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.ab-credential span {
  display: block;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}

.ab-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ab-hero-visual {
  position: relative;
  align-self: flex-end;
}

.ab-hero-img-wrap {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.ab-hero-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ab-hero-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(2,7,51,.65));
}

.ab-hero-float {
  position: absolute;
  bottom: 28px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(2,7,51,.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

.ab-hero-float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 8px rgba(91,156,255,.8);
  flex-shrink: 0;
}

/* ── 2. STORY ─────────────────────────────────────────────────────────────── */

.ab-story {
  padding: var(--ab-py) 0;
  background: #ffffff;
}

.ab-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.ab-story-copy h2 {
  margin: 0 0 28px;
  color: var(--navy-2);
  font-size: clamp(2.4rem, 3.6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.ab-story-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.ab-story-visual {
  position: relative;
  padding-bottom: 40px;
}

.ab-story-img {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}

.ab-story-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.ab-story-float {
  position: absolute;
  bottom: 0;
  left: -28px;
  max-width: 300px;
  padding: 22px 26px;
  border-radius: 20px;
  background: var(--navy);
  box-shadow: 0 16px 48px rgba(2,7,51,.28);
}

.ab-story-float p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.ab-story-float strong {
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── 3. VALUES ────────────────────────────────────────────────────────────── */

.ab-values {
  padding: var(--ab-py) 0;
  background: var(--bg);
}

.ab-values .ab-section-head h2 {
  max-width: 20ch;
}

.ab-values-list {
  border-top: 1px solid var(--line);
}

.ab-value-row {
  display: grid;
  grid-template-columns: 72px 1fr 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: background .18s ease;
  border-radius: 4px;
}

.ab-value-row:hover {
  background: rgba(47,128,237,.03);
}

.ab-value-num {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  opacity: .55;
  padding-top: 3px;
  align-self: flex-start;
}

.ab-value-body { padding-right: 48px; }

.ab-value-body h3 {
  margin: 0 0 8px;
  color: var(--navy-2);
  font-size: clamp(1.35rem, 1.75vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.ab-value-body p {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.ab-value-bar {
  width: 3px;
  height: 40px;
  border-radius: 3px;
  background: transparent;
  justify-self: end;
  transition: background .25s ease;
}

.ab-value-row:hover .ab-value-bar {
  background: var(--blue-soft);
}

/* ── 4. DIFFERENCE ────────────────────────────────────────────────────────── */

.ab-difference {
  padding: var(--ab-py) 0;
  background: #ffffff;
}

.ab-diff-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.ab-diff-card {
  position: relative;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ab-diff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(14,27,45,.09);
  border-color: rgba(47,128,237,.18);
}

.ab-diff-card--featured {
  grid-row: 1;
  background: var(--navy);
  border-color: transparent;
  overflow: hidden;
}

.ab-diff-card--featured:hover {
  border-color: transparent;
}

.ab-diff-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 95% 5%, rgba(91,156,255,.2), transparent),
    radial-gradient(ellipse 45% 55% at 5% 92%, rgba(47,128,237,.11), transparent);
}

.ab-diff-card-body { position: relative; z-index: 1; }

.ab-diff-label {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.ab-diff-card--featured .ab-diff-label {
  color: rgba(91,156,255,.75);
}

.ab-diff-card--featured h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.ab-diff-card--featured p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.7;
}

.ab-diff-card h3 {
  margin: 0 0 10px;
  color: var(--navy-2);
  font-size: clamp(1.1rem, 1.35vw, 1.45rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.ab-diff-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.ab-diff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ab-diff-tags span {
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(91,156,255,.12);
  border: 1px solid rgba(91,156,255,.22);
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
}

.ab-diff-card--metrics {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(47,128,237,.055), rgba(91,156,255,.03));
  border-color: rgba(47,128,237,.14);
}

.ab-diff-card--metrics:hover {
  transform: none;
  box-shadow: none;
}

.ab-diff-metrics {
  display: flex;
  gap: 56px;
  flex: 1;
}

.ab-diff-metric strong {
  display: block;
  color: var(--navy-2);
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  margin-bottom: 5px;
}

.ab-diff-metric span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.ab-diff-note {
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  border-left: 2px solid var(--line);
  padding-left: 22px;
}

/* ── 5. LEADERSHIP ────────────────────────────────────────────────────────── */

.ab-leadership {
  padding: var(--ab-py) 0;
  background: var(--bg);
}

.ab-leadership-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.ab-leader-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 36px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.ab-leader-img {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.ab-leader-img img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  display: block;
}

.ab-leader-name {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-2);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.ab-leader-role {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ab-leader-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.ab-leadership-quote {
  position: relative;
  overflow: hidden;
  padding: 44px;
  background: var(--navy);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}

.ab-quote-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(91,156,255,.18), transparent),
    radial-gradient(ellipse 40% 45% at 0% 100%, rgba(47,128,237,.10), transparent);
}

.ab-quote-mark {
  position: relative;
  z-index: 1;
  color: var(--blue-soft);
  font-size: 80px;
  font-weight: 900;
  line-height: .65;
  opacity: .32;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.ab-leadership-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 auto;
  padding-bottom: 28px;
}

.ab-leadership-quote blockquote p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: -.022em;
}

.ab-quote-attr {
  position: relative;
  z-index: 1;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: none;
}

.ab-quote-attr strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.ab-quote-attr span {
  color: rgba(255,255,255,.48);
  font-size: 13px;
}

/* ── 6. COMMUNITY ─────────────────────────────────────────────────────────── */

.ab-community {
  padding: var(--ab-py) 0;
  background: #ffffff;
}

.ab-community-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.ab-community-visual { position: relative; }

.ab-community-img {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}

.ab-community-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.ab-community-badge {
  position: absolute;
  top: 28px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(14,27,45,.12);
  border: 1px solid var(--line);
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.ab-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-soft);
  flex-shrink: 0;
}

.ab-community-copy h2 {
  margin: 0 0 24px;
  color: var(--navy-2);
  font-size: clamp(2.4rem, 3.6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.ab-community-copy > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.ab-community-areas {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.ab-area {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-2);
  font-size: 15px;
  font-weight: 600;
}

.ab-area-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-soft);
  flex-shrink: 0;
}

/* ── 7. TRUST ─────────────────────────────────────────────────────────────── */

.ab-trust {
  padding: var(--ab-py) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ab-trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.ab-trust-copy h2 {
  margin: 0 0 18px;
  color: var(--navy-2);
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.ab-trust-copy p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.ab-trust-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.ab-trust-logos img {
  height: 34px;
  width: auto;
  opacity: .65;
  filter: grayscale(20%);
  transition: opacity .2s ease, filter .2s ease;
}

.ab-trust-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.ab-trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ab-trust-indicator {
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ab-trust-indicator:hover {
  border-color: rgba(47,128,237,.2);
  box-shadow: 0 4px 20px rgba(47,128,237,.07);
}

.ab-trust-indicator strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-2);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.ab-trust-indicator span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* ── 8. CAREERS ───────────────────────────────────────────────────────────── */

.ab-careers {
  padding: var(--ab-py) 0;
  background: #ffffff;
}

.ab-careers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ab-careers-copy h2 {
  margin: 0 0 18px;
  color: var(--navy-2);
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.ab-careers-copy p {
  margin: 0 0 32px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.ab-careers-img {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}

.ab-careers-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── 9. FINAL CTA ─────────────────────────────────────────────────────────── */

.ab-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(150deg, var(--navy) 0%, #0d1c3e 100%);
}

.ab-cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 65% at 50% -15%, rgba(91,156,255,.2), transparent),
    radial-gradient(ellipse 35% 40% at 95% 85%, rgba(47,128,237,.11), transparent),
    radial-gradient(ellipse 28% 35% at 5% 85%, rgba(91,156,255,.09), transparent);
}

.ab-cta-inner {
  position: relative;
  z-index: 1;
}

.ab-cta-head {
  text-align: center;
  margin-bottom: 56px;
}

.ab-cta-head h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.ab-cta-head p {
  margin: 0 auto;
  max-width: 54ch;
  color: rgba(255,255,255,.65);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
}

.ab-cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.ab-cta-card {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 44px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.ab-cta-card:hover {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
}

.ab-cta-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 60% at 85% -10%, rgba(91,156,255,.16), transparent);
}

.ab-cta-card--seekers .ab-cta-card-bg {
  background: radial-gradient(ellipse 85% 60% at 15% 110%, rgba(91,156,255,.12), transparent);
}

.ab-cta-card-content { position: relative; z-index: 1; }

.ab-cta-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: rgba(91,156,255,.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .38em;
  text-transform: uppercase;
}

.ab-cta-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.5vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.ab-cta-card p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.65;
}

.ab-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 2px;
}

/* ── Scroll reveal ─────────────────────────────────────────────────────────── */

[data-ab-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .5s var(--ab-delay, 0ms) ease,
    transform .5s var(--ab-delay, 0ms) ease;
}

[data-ab-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  :root { --ab-py: 84px; }

  .ab-diff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ab-diff-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .ab-diff-card--metrics {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root { --ab-py: 64px; }

  .ab-hero { padding: 96px 0 0; }

  .ab-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ab-hero-copy { padding-bottom: 0; }

  .ab-hero-visual { display: none; }

  .ab-story-layout,
  .ab-community-layout,
  .ab-leadership-layout,
  .ab-trust-layout,
  .ab-careers-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ab-story-visual { padding-bottom: 0; }

  .ab-story-float {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }

  .ab-story-img img,
  .ab-community-img img { height: 360px; }

  .ab-community-badge { display: none; }

  .ab-careers-visual { display: none; }

  .ab-diff-grid { grid-template-columns: 1fr; }

  .ab-diff-card--metrics {
    flex-direction: column;
    gap: 24px;
  }

  .ab-diff-metrics { gap: 28px; }

  .ab-diff-note {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 18px;
    max-width: 100%;
  }

  .ab-trust-indicators { grid-template-columns: 1fr 1fr; }

  .ab-cta-cards { grid-template-columns: 1fr; max-width: 560px; }

  .ab-value-row { grid-template-columns: 56px 1fr; }

  .ab-value-bar { display: none; }

  .ab-leader-card { grid-template-columns: 1fr; }

  .ab-leader-img img { width: 80px; height: 80px; }
}

@media (max-width: 640px) {
  .ab-hero-credentials {
    width: 100%;
  }

  .ab-credential { flex: 1; }

  .ab-hero-actions {
    flex-direction: column;
  }

  .ab-btn-primary,
  .ab-btn-ghost {
    justify-content: center;
  }

  .ab-section-head { margin-bottom: 40px; }

  .ab-cta { padding: 80px 0; }

  .ab-cta-card { padding: 32px; }

  .ab-leadership-quote { padding: 32px; }

  .ab-trust-indicators { grid-template-columns: 1fr; }

  .ab-trust-logos { gap: 18px; }

  .ab-trust-logos img { height: 26px; }

  .ab-diff-card--metrics { padding: 24px; }

  .ab-cta-head h2 { letter-spacing: -.04em; }

  .ab-value-row { grid-template-columns: 44px 1fr; }

  .ab-value-body { padding-right: 0; }
}

/* ── ABOUT PAGE VISUAL RHYTHM REFINEMENTS ────────────────────────────────────
   Append-only: cascade order wins. No gradient bleeds — hard borders only.
   ─────────────────────────────────────────────────────────────────────────── */

/* Hero simplification: clean card image, centered layout */
.ab-hero-layout { align-items: center; }
.ab-hero-copy { padding-bottom: 72px; }
.ab-hero-copy > p { margin-bottom: 40px; }
.ab-hero-visual { align-self: center; }
.ab-hero-img-wrap {
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .32), 0 8px 24px rgba(0, 0, 0, .14);
}
.ab-hero-img-wrap img { height: 480px; }

/* Structural borders at same-family section transitions */
.ab-values        { border-top: 1px solid var(--line); }
.ab-difference    { border-top: 1px solid var(--line); }
.ab-leadership    { border-top: 1px solid var(--line); }
.ab-community     { border-top: 1px solid var(--line); }

/* Tonal cooling runway before the dark CTA — base tone shift, no bleed */
.ab-trust   { background: #e9eef5; }
.ab-careers { background: #f4f7fb; }

/* Deepen CTA endpoint to match footer entry */
.ab-cta {
  background: linear-gradient(150deg, var(--navy) 0%, #071525 100%);
}

/* ── About page: scoped footer atmosphere continuation ───────────────────────
   Direct child combinator scopes to the site footer only.
   Blue ambient glow bridges the CTA → footer seam.
   ─────────────────────────────────────────────────────────────────────────── */
.about-page > footer {
  background:
    radial-gradient(ellipse 72% 38% at 50% 0%, rgba(47, 128, 237, .12), transparent),
    radial-gradient(circle at 14% 44%, rgba(91, 156, 255, .12), transparent 22rem),
    linear-gradient(160deg, #071525 0%, #18315e 100%);
}
