/* ===========================================================================
   Off The Record (OTR) — Design System
   Brand colors taken from the official OTR logo: deep navy + teal (+ cool neutrals)
   Type: Archivo (display) + Inter (body)
   =========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Navy scale (primary brand — from the OTR logo shield) */
  --navy-deep: #071f38;   /* darkest — footer, dark bands */
  --navy-700: #0b2c4a;
  --navy: #103a63;        /* PRIMARY navy */
  --navy-500: #185086;    /* hover / interactive */
  --navy-bright: #2f6fb0; /* lighter blue accent */
  --navy-tint: #e7edf4;   /* light blue-gray background */
  --navy-tint-2: #f2f6fa;

  /* Teal (logo accent) */
  --teal: #0d7c8b;        /* ACCENT — from the OTR logo */
  --teal-dark: #0a5f6b;
  --teal-bright: #1296a8;
  --teal-soft: #7cccd6;   /* light teal for text/icons on dark */
  --teal-tint: #e3f1f3;
  /* legacy aliases -> teal (keeps earlier "gold" rules on-brand) */
  --gold: #0d7c8b;
  --gold-soft: #7cccd6;

  /* Cool neutral foundation (logo silver / white) */
  --cream: #eef3f7;
  --sand: #d5dee7;
  --sand-soft: #e7edf3;

  /* Ink */
  --ink: #0c2438;         /* headings (deep navy) */
  --body: #44525f;        /* body copy */
  --muted: #6c7884;       /* muted */
  --line: #e1e7ee;        /* hairlines */

  --white: #ffffff;

  /* Shape & motion */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 3px rgba(12, 36, 56, .06), 0 1px 2px rgba(12, 36, 56, .04);
  --shadow: 0 12px 30px -12px rgba(12, 36, 56, .18), 0 4px 12px -6px rgba(12, 36, 56, .10);
  --shadow-lg: 0 28px 60px -20px rgba(7, 31, 56, .34);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --container: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal); }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: "Archivo", "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1rem + .8vw, 1.5rem); letter-spacing: -0.01em; }
p { text-wrap: pretty; }
.eyebrow {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before { display: none; }
.lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); color: var(--body); }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.section { padding: clamp(3.5rem, 2rem + 7vw, 6.5rem) 0; }
.section--cream { background: var(--cream); }
.section--tint { background: var(--navy-tint); }
.section__head { max-width: 720px; margin-bottom: clamp(2rem, 1rem + 3vw, 3.25rem); }
.section__head.center { margin-inline: auto; }
.section__head h2 { margin-top: .2rem; }
.section__head p { margin-top: 1rem; font-size: 1.12rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--navy);
  --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: .98rem;
  letter-spacing: .01em;
  padding: .82rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); color: var(--fg); }
.btn--primary { box-shadow: 0 10px 22px -10px rgba(16, 58, 99, .85); }
.btn--primary:hover { background: var(--navy-500); box-shadow: 0 16px 30px -12px rgba(16, 58, 99, .9); }
.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(16, 58, 99, .28); }
.btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--light { background: rgba(255,255,255,.92); color: var(--navy-deep); }
.btn--light:hover { background: #fff; color: var(--navy-deep); }
.btn--gold { background: var(--teal); color: #fff; }     /* "gold" alias -> teal */
.btn--gold:hover { background: var(--teal-dark); color: #fff; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-dark); color: #fff; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 80px; }

.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__logo { height: 48px; width: auto; flex: none; }
.brand__name { font-family: "Archivo", sans-serif; font-weight: 800; letter-spacing: -.01em; font-size: 1.18rem; color: var(--navy-deep); line-height: 1; }
.brand__name small { display: block; font-size: .62rem; letter-spacing: .2em; font-weight: 600; color: var(--muted); text-transform: uppercase; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: clamp(.5rem, 1.4vw, 1.6rem); }
.nav > a {
  font-weight: 600; font-size: .97rem; color: var(--ink); padding: .4rem 0; position: relative;
}
.nav > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--teal); transition: right .25s var(--ease);
}
.nav > a:hover::after, .nav > a.is-active::after { right: 0; }
.nav__cta { display: flex; align-items: center; gap: .6rem; margin-left: .4rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; min-height: min(100svh, 960px); display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; will-change: transform; transform: translateZ(0); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1; will-change: opacity;
  background:
    linear-gradient(180deg, rgba(7,31,56,.55) 0%, rgba(7,31,56,.34) 34%, rgba(7,31,56,.72) 74%, rgba(6,24,46,.95) 100%),
    linear-gradient(100deg, rgba(7,31,56,.60) 0%, rgba(7,31,56,.12) 52%, rgba(7,31,56,0) 82%);
}
.hero__content { padding-block: clamp(3rem, 6vw, 6rem) clamp(2.8rem, 5vw, 4.5rem); max-width: none; margin-inline: auto; text-align: center; will-change: transform, opacity; }
.hero__eyebrow {
  font-family: "Archivo", sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; font-size: .82rem; color: var(--teal-soft);
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem;
}
.hero__eyebrow::before { display: none; }
.hero__title {
  font-family: "Archivo", sans-serif; font-weight: 900; color: #fff;
  text-transform: uppercase; letter-spacing: -.03em; line-height: .98;
  font-size: clamp(1.7rem, 8.1vw, 6.4rem);
  white-space: nowrap;
  text-shadow: 0 4px 40px rgba(6, 24, 46, .4);
}
.hero__title span { color: var(--teal-soft); }
.hero__lede { margin-top: 1.5rem; margin-inline: auto; max-width: 640px; font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); color: rgba(255,255,255,.92); }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.hero__assurance { margin-top: 1.5rem; font-size: .95rem; color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: .5rem; }
.hero__assurance svg { width: 17px; height: 17px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy-deep); color: rgba(255,255,255,.92); }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.10); }
.trustbar__item { background: var(--navy-deep); padding: 1.4rem clamp(1rem, 2vw, 1.8rem); display: flex; align-items: center; gap: .85rem; }
.trustbar__item svg { width: 26px; height: 26px; color: var(--teal-soft); flex: none; }
.trustbar__item b { font-family: "Archivo", sans-serif; color: #fff; display: block; font-size: 1rem; line-height: 1.15; }
.trustbar__item span { font-size: .82rem; color: rgba(255,255,255,.62); }

/* ---------- Cards (Lexipol-style) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.7rem); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d4dde8; }
.card__top { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.2rem; }
.card__icon {
  width: 50px; height: 50px; flex: none; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(140deg, var(--navy) 0%, var(--teal) 100%);
  box-shadow: 0 8px 18px -8px rgba(13, 124, 139, .55);
}
.card__icon svg { width: 24px; height: 24px; }
.card__bar { flex: 1; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 60%, rgba(13,124,139,0) 100%); }
.card--gold .card__icon { background: linear-gradient(140deg, var(--teal), var(--teal-bright)); box-shadow: 0 8px 18px -8px rgba(18,150,168,.6); }
.card--gold .card__bar { background: linear-gradient(90deg, var(--teal) 0%, var(--teal-bright) 55%, rgba(18,150,168,0) 100%); }
.card__title { margin-bottom: .55rem; }
.card__text { color: var(--body); font-size: 1rem; }
.card__img { margin-top: 1.3rem; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/10; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2.4rem); counter-reset: step; }
.step { position: relative; padding-top: .5rem; }
.step__num {
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.05rem;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: var(--teal); background: var(--teal-tint); border: 2px solid #fff;
  box-shadow: var(--shadow-sm); margin-bottom: 1rem;
}
.step h3 { margin-bottom: .5rem; }
.steps--line .step::before {
  content: ""; position: absolute; top: 23px; left: 46px; right: -1.2rem; height: 2px;
  background: repeating-linear-gradient(90deg, var(--sand) 0 7px, transparent 7px 14px);
}
.steps--line .step:last-child::before { display: none; }

/* ---------- Dual paths ---------- */
.section--navy { background: linear-gradient(160deg, var(--navy-deep), var(--navy-700)); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: var(--teal-soft); }
.section--navy .eyebrow::before { background: var(--teal-soft); }
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.path {
  display: block; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); color: #fff;
  transition: transform .25s var(--ease), background .25s, border-color .25s;
}
.path:hover { transform: translateY(-5px); background: rgba(255,255,255,.11); border-color: var(--teal-soft); color: #fff; }
.path__tag { font-family: "Archivo", sans-serif; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-soft); }
.path h3 { margin: .7rem 0 .6rem; font-size: clamp(1.4rem, 1rem + 1.4vw, 1.9rem); }
.path p { color: rgba(255,255,255,.82); }
.path__link { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: .5rem; font-family: "Archivo", sans-serif; font-weight: 700; color: var(--teal-soft); }
.path__link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.path:hover .path__link svg { transform: translateX(5px); }

/* ---------- Founders strip ---------- */
.founders { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.founders__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.founder { text-align: center; }
.founder__photo { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--navy-tint); }
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder b { display: block; font-family: "Archivo", sans-serif; color: var(--ink); margin-top: .8rem; font-size: 1.02rem; }
.founder span { font-size: .85rem; color: var(--muted); }

/* ---------- Promise band ---------- */
.promise { background: var(--cream); border-block: 1px solid var(--line); padding: clamp(3rem, 5vw, 5rem) 0; }
.promise__icon { width: 64px; height: 64px; margin: 0 auto 1.4rem; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(140deg, var(--navy), var(--teal)); box-shadow: var(--shadow); }
.promise__icon svg { width: 30px; height: 30px; }

/* ---------- CTA band ---------- */
.cta { background: linear-gradient(150deg, var(--navy), var(--navy-deep)); color: #fff; padding: clamp(3rem, 5vw, 5rem) 0; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.85); margin-top: .9rem; }
.cta__actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ---------- Page hero (secondary pages) ---------- */
.page-hero { background: linear-gradient(160deg, var(--navy-deep), var(--navy-700)); color: #fff; padding: clamp(3rem, 4vw + 1rem, 5.5rem) 0 clamp(2.6rem, 4vw, 4rem); }
.page-hero .eyebrow { color: var(--teal-soft); }
.page-hero .eyebrow::before { background: var(--teal-soft); }
.page-hero h1 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.7rem); color: #fff; text-transform: none; letter-spacing: -.02em; }
.page-hero p { color: rgba(255,255,255,.85); margin-top: 1rem; max-width: none; font-size: 1.15rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.8); }

/* ---------- Feature image (under page hero) ---------- */
.feature-media { margin: clamp(2rem, 4vw, 3rem) auto 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; max-height: 460px; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Media band (image + text) ---------- */
.media-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.media-band__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/11; }
.media-band__img img { width: 100%; height: 100%; object-fit: cover; }
.media-band--reverse .media-band__img { order: 2; }
@media (max-width: 820px) {
  .media-band { grid-template-columns: 1fr; gap: 1.6rem; }
  .media-band--reverse .media-band__img { order: 0; }
}

/* ---------- Prose / generic content ---------- */
.prose { max-width: 740px; }
.prose h2 { margin: 2.4rem 0 .9rem; }
.prose h3 { margin: 1.8rem 0 .6rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { margin: 0 0 1.2rem; display: grid; gap: .6rem; }
.prose ul li { position: relative; padding-left: 1.7rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

/* ---------- Team page ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.member__photo { aspect-ratio: 4/5; overflow: hidden; background: var(--navy-tint); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__body { padding: 1.4rem; }
.member__body h3 { margin-bottom: .15rem; }
.member__role { color: var(--teal-dark); font-family: "Archivo", sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .02em; }
.member__cred { display: inline-block; margin-top: .2rem; font-size: .78rem; color: var(--muted); }
.member__bio { margin-top: .9rem; font-size: .96rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.stat { text-align: center; }
.stat b { font-family: "Archivo", sans-serif; font-weight: 800; color: var(--teal); font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem); line-height: 1; display: block; }
.stat span { color: var(--muted); font-size: .98rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13,124,139,.14); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .4rem; display: flex; gap: .5rem; }
.form-note svg { width: 16px; height: 16px; flex: none; color: var(--teal); margin-top: 2px; }

/* ---------- Callout ---------- */
.callout { background: var(--teal-tint); border: 1px solid #cfe6e9; border-left: 4px solid var(--teal); border-radius: var(--radius-sm); padding: 1.3rem 1.5rem; }
.callout h3 { color: var(--navy-deep); margin-bottom: .4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.74); padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.6rem; }
.footer__brand .brand__logo { height: 44px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { margin-top: 1rem; max-width: 30ch; font-size: .95rem; }
.footer__crisis { margin: .5rem 0 2rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); padding: .9rem 1.4rem; font-size: .9rem; color: rgba(255,255,255,.85); text-align: center; }
.footer__crisis b { color: var(--teal-soft); }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-family: "Archivo", sans-serif; margin-bottom: 1rem; }
.footer__col a { display: block; color: rgba(255,255,255,.74); padding: .3rem 0; font-size: .95rem; }
.footer__col a:hover { color: var(--teal-soft); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer__bottom nav { display: flex; gap: 1.2rem; }
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: var(--teal-soft); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .founders { grid-template-columns: 1fr; }
  .founders__grid { max-width: 520px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; z-index: 70; }
  .nav {
    position: fixed; inset: 80px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; padding: 1rem 1.4rem 1.6rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s; max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav > a { padding: .85rem .2rem; border-bottom: 1px solid var(--line); }
  .nav > a::after { display: none; }
  .nav__cta { margin: 1rem 0 0; flex-direction: column; align-items: stretch; }
  .nav__cta .btn { width: 100%; }
  body.nav-open { overflow: hidden; }
  .cards, .steps, .team-grid, .stats { grid-template-columns: repeat(2, 1fr); }
  .paths, .contact-grid { grid-template-columns: 1fr; }
  .trustbar__inner { grid-template-columns: 1fr 1fr; }
  .steps--line .step::before { display: none; }
}
@media (max-width: 560px) {
  .cards, .steps, .team-grid, .stats, .trustbar__inner { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .footer__grid { grid-template-columns: 1fr; }
  .founders__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
