/* ============================================================
   TRIALSTAR — Forward-Deployed AI for Civil Litigation
   Light · modern · professional (Harvey-light palette)
   ============================================================ */

:root {
  --bg:        #FAFAF9;   /* warm off-white page */
  --bg-2:      #F4F3EF;   /* deeper section tint */
  --panel:     #FFFFFF;   /* white cards */
  --panel-2:   #F7F6F2;   /* card hover */
  --dark:      #0F0E0D;   /* announcement bar + primary buttons */
  --ink:       #14130F;   /* headlines, near-black warm */
  --ink-2:     #2C2A25;
  --text:      #57544E;   /* body text */
  --text-dim:  #8B877F;   /* muted / labels */
  --green:     #204F35;   /* Legora-style deep forest accent */
  --green-2:   #2A6648;   /* hover */
  --line:      rgba(20,19,15,.12);
  --line-soft: rgba(20,19,15,.07);
  --shadow-sm: 0 1px 2px rgba(20,19,15,.04), 0 1px 1px rgba(20,19,15,.03);
  --shadow-md: 0 2px 4px rgba(20,19,15,.04), 0 14px 34px -16px rgba(20,19,15,.16);
  --shadow-lg: 0 4px 8px rgba(20,19,15,.05), 0 40px 80px -34px rgba(20,19,15,.26);
  --maxw:      1180px;
  --navh:      66px;
  /* Legora-style clean grotesque used for headings + body */
  --serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

::selection { background: rgba(20,19,15,.12); color: var(--ink); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- shared typographic primitives ---------- */
.section { position: relative; padding: clamp(76px, 11vw, 152px) 24px; }
.section__head { max-width: 760px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; }

.label {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.h2 {
  font-family: var(--serif);
  font-weight: 480;
  color: var(--ink);
  font-size: clamp(31px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.018em;
}
.h2 em, .hero__title em, .cta__title em {
  font-style: italic;
  color: #A19D94;          /* soft warm-gray two-tone emphasis */
  font-weight: 480;
}
.section__sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--text);
  line-height: 1.7;
}
.lead { font-size: 17px; line-height: 1.78; color: var(--text); margin-top: 20px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 14.5px; font-weight: 500; letter-spacing: .005em;
  padding: 9px 10px 9px 22px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: all .28s var(--ease); white-space: nowrap;
}
/* circular arrow chip inside pills */
.btn__arrow {
  display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; color: var(--green); font-size: 14px; line-height: 1; flex: none;
  transition: transform .28s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(2px); }

.btn--green { background: var(--green); color: #F4F7F4; }
.btn--green:hover { background: var(--green-2); transform: translateY(-1px); box-shadow: 0 10px 26px -12px rgba(32,79,53,.7); }

/* legacy solid/ghost (kept for any non-pill usage) */
.btn--primary { background: var(--dark); color: #FAFAF9; padding: 13px 24px; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #29261F; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: var(--panel); padding: 13px 24px; }
.btn--ghost:hover { border-color: var(--ink); background: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  position: relative; z-index: 200; background: var(--dark); color: #EDEBE7;
  font-size: 13px; letter-spacing: .01em;
}
.announce__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 9px 24px;
  display: flex; align-items: center; justify-content: center; gap: 14px; position: relative;
}
.announce__text { display: inline-flex; align-items: center; gap: 8px; color: #D9D6D0; }
.announce__text strong { color: #fff; font-weight: 500; }
.announce__text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.4); transition: text-decoration-color .3s; }
.announce__text a:hover { text-decoration-color: #fff; }
.announce__close {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #9b988f; cursor: pointer; font-size: 16px; line-height: 1; padding: 4px; transition: color .3s;
}
.announce__close:hover { color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,249,0);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,250,249,.85);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  max-width: 1340px; margin: 0 auto; padding: 15px 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  transition: padding .4s var(--ease);
}
.nav.scrolled .nav__inner { padding: 11px 32px; }

.brand { display: flex; align-items: center; gap: 10px; justify-self: center; }
.brand__mark { width: 19px; height: 19px; fill: var(--green); flex: none; }
.brand__name { font-family: var(--sans); font-weight: 600; letter-spacing: .26em; font-size: 18px; color: var(--ink); }

.nav__links { display: flex; gap: 30px; justify-self: start; }
.nav__links a {
  font-size: 14.5px; color: var(--ink-2); letter-spacing: .005em; position: relative; padding: 4px 0;
  transition: color .3s; font-weight: 450;
}
.nav__links a:hover { color: var(--ink); opacity: .7; }
.nav__right { display: flex; align-items: center; gap: 22px; justify-self: end; }
.nav__login { font-size: 14.5px; color: var(--ink-2); font-weight: 450; transition: opacity .3s; }
.nav__login:hover { opacity: .65; }
.nav__cta { padding: 8px 8px 8px 18px; font-size: 14px; }
.nav__cta .btn__arrow { width: 24px; height: 24px; font-size: 13px; }
.nav__toggle { display: none; justify-self: end; }

/* nav sits over the dark hero video until scrolled */
.nav--over:not(.scrolled) .brand__name,
.nav--over:not(.scrolled) .nav__links a,
.nav--over:not(.scrolled) .nav__login { color: #FBFAF8; }
.nav--over:not(.scrolled) .brand__mark { fill: #FBFAF8; }
.nav--over:not(.scrolled) .nav__toggle span { background: #FBFAF8; }

/* ============================================================
   HERO  (light, headline + media panel — Harvey-light layout)
   ============================================================ */
.hero {
  position: relative; min-height: clamp(660px, 96vh, 1000px);
  display: flex; align-items: flex-end; justify-content: center; text-align: center;
  overflow: hidden; background: #0B0A08;
}
.hero__videos { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0;
}
.hero__video.is-active { opacity: 1; animation: heroDrift 16s ease-in-out infinite alternate; }
@keyframes heroDrift { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,10,8,.5) 0%, rgba(11,10,8,.12) 14%, transparent 38%, rgba(11,10,8,.55) 78%, rgba(11,10,8,.92) 100%);
}
.hero__inner {
  position: relative; z-index: 2; max-width: 1100px; width: 100%; margin: 0 auto;
  padding: 0 24px clamp(54px, 8vh, 96px);
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}

.hero__title {
  font-family: var(--sans); font-weight: 500; color: #FFFFFF;
  font-size: clamp(44px, 8vw, 104px); line-height: 1.0; letter-spacing: -.035em;
}
.hero__row {
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
}
.hero__tagline { font-size: clamp(15px, 1.7vw, 18px); color: rgba(255,255,255,.82); letter-spacing: .005em; }

/* ============================================================
   STRIP (marquee)
   ============================================================ */
.strip { border-block: 1px solid var(--line-soft); background: var(--bg-2); overflow: hidden; padding: 18px 0; }
.strip__track { display: flex; align-items: center; gap: 32px; width: max-content; animation: marquee 40s linear infinite; }
.strip__track span { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink-2); white-space: nowrap; opacity: .68; }
.strip__track i { color: var(--text-dim); font-size: 8px; font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   REALITY
   ============================================================ */
.reality { background: var(--bg); }
.reality__grid {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 84px); align-items: center;
}
.reality__pulls { display: flex; gap: 40px; margin-top: 44px; flex-wrap: wrap; }
.pull { max-width: 220px; }
.pull__num { display: block; font-family: var(--serif); font-weight: 500; font-size: 40px; color: var(--ink); line-height: 1; margin-bottom: 10px; letter-spacing: -.02em; }
.pull__txt { font-size: 14px; color: var(--text-dim); line-height: 1.55; }

.framed {
  position: relative; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: var(--panel);
}
.framed img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.reality__media:hover .framed img { transform: scale(1.04); }
.framed__caption { margin-top: 15px; font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--text-dim); text-align: center; }

/* ============================================================
   AUTOMATE — cards
   ============================================================ */
.automate { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.cards {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.card {
  background: var(--panel); padding: 36px 32px; position: relative; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  min-height: 230px;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(20,19,15,.18); }
.card__num { font-family: var(--serif); font-size: 15px; color: var(--text-dim); letter-spacing: .08em; }
.card__title { font-family: var(--serif); font-weight: 500; color: var(--ink); font-size: 22px; margin: 14px 0 12px; line-height: 1.2; letter-spacing: -.01em; }
.card__body { font-size: 15px; color: var(--text); line-height: 1.7; }
.automate__foot { text-align: center; margin-top: 48px; font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--ink-2); }

/* ============================================================
   HOW — steps
   ============================================================ */
.how { background: var(--bg); overflow: hidden; }
.steps { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.step { position: relative; padding-top: 18px; }
.step__num {
  font-family: var(--serif); font-size: 56px; color: #DAD6CD; line-height: 1;
  display: block; margin-bottom: 20px; font-weight: 500;
}
.step__line { position: absolute; top: 36px; left: 78px; right: -40px; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.step__title { font-family: var(--serif); font-weight: 500; color: var(--ink); font-size: 24px; margin-bottom: 12px; letter-spacing: -.01em; }
.step__body { font-size: 15.5px; color: var(--text); line-height: 1.72; max-width: 34ch; }
.how__tag { text-align: center; margin-top: 60px; font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.6vw, 27px); color: var(--ink); }

/* ============================================================
   SHOWCASE BAND (full-bleed architecture video)
   ============================================================ */
.showcase {
  position: relative; min-height: clamp(440px, 64vh, 640px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; background: #0B0A08;
}
.showcase__videos { position: absolute; inset: 0; z-index: 0; }
.showcase__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
}
.showcase__video.is-active { opacity: 1; animation: heroDrift 18s ease-in-out infinite alternate; }
.showcase__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,10,8,.62) 0%, rgba(11,10,8,.32) 45%, rgba(11,10,8,.7) 100%);
}
.showcase__inner { position: relative; z-index: 2; max-width: 880px; padding: 64px 24px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.showcase .label { color: rgba(255,255,255,.66); }
.showcase__title { font-family: var(--sans); font-weight: 500; color: #fff; font-size: clamp(30px, 4.6vw, 54px); line-height: 1.06; letter-spacing: -.028em; }

/* ============================================================
   RESULTS — stats
   ============================================================ */
.results { background: var(--bg-2); border-block: 1px solid var(--line-soft); text-align: center; }
.results__head { max-width: 700px; margin: 0 auto clamp(48px,6vw,72px); }
.stats { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { padding: 28px 16px; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: none; }
.stat__num { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(46px, 6vw, 66px); color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.stat__label { display: block; margin-top: 14px; font-size: 14px; color: var(--text); letter-spacing: .01em; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote { background: var(--bg); text-align: center; }
.quote blockquote { max-width: 880px; margin: 0 auto; }
.quote p {
  font-family: var(--serif); font-weight: 420; font-style: italic; color: var(--ink);
  font-size: clamp(24px, 3.5vw, 38px); line-height: 1.38; letter-spacing: -.015em;
}
.quote cite { display: block; margin-top: 28px; font-style: normal; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }

/* ============================================================
   TRUST
   ============================================================ */
.trust { background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.trust__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.trust__item { background: var(--panel); padding: 38px 36px; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.trust__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.trust__item h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); font-size: 22px; margin-bottom: 12px; letter-spacing: -.01em; }
.trust__item p { font-size: 15px; color: var(--text); line-height: 1.7; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--bg); }
.people { max-width: 820px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(32px, 5vw, 60px); }
.person { text-align: center; }
.person__frame {
  position: relative; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  aspect-ratio: 1/1; background: var(--panel); box-shadow: var(--shadow-md);
}
.person__frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02); transition: filter .6s var(--ease), transform 1s var(--ease); }
.person:hover .person__frame img { filter: grayscale(.2) contrast(1.03); transform: scale(1.03); }
.person__name { display: block; font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 24px; margin-top: 24px; letter-spacing: -.01em; }
.person__role { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); margin-top: 7px; font-weight: 600; }
.person__bio { font-size: 15px; color: var(--text); line-height: 1.68; margin-top: 16px; max-width: 40ch; margin-inline: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 25px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--serif); font-size: clamp(19px, 2.3vw, 23px); color: var(--ink); font-weight: 500; transition: color .3s; letter-spacing: -.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--ink-2); }
.faq__icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--ink); transition: transform .35s var(--ease); }
.faq__icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__item p { padding: 0 4px 26px; font-size: 16px; color: var(--text); line-height: 1.72; max-width: 64ch; animation: fadeIn .5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: var(--dark); text-align: center; overflow: hidden; }
.cta .label { color: #A9A59C; }
.cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta__title { font-family: var(--serif); font-weight: 480; color: #FBFAF8; font-size: clamp(38px, 6vw, 66px); line-height: 1.04; margin-top: 6px; letter-spacing: -.025em; }
.cta__title em { color: #B7B2A8; }
.cta__sub { margin-top: 20px; font-size: 18px; color: #C4C0B8; line-height: 1.68; }
.cta__form { display: flex; gap: 10px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.cta__form input {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); color: #fff; font-family: var(--sans);
  font-size: 15px; padding: 14px 17px; border-radius: 7px; min-width: 220px; transition: border-color .3s, background .3s;
}
.cta__form input::placeholder { color: #908C84; }
.cta__form input:focus { outline: none; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); }
.cta__form .btn--primary { background: #FAFAF9; color: var(--dark); }
.cta__form .btn--primary:hover { background: #fff; }
.cta__fine { margin-top: 20px; font-size: 14px; color: #908C84; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 70px 24px 0; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; padding-bottom: 52px; }
.footer__tag { margin-top: 16px; font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--text); max-width: 36ch; }
.footer__badges { list-style: none; display: flex; gap: 10px; margin-top: 22px; }
.footer__badges li { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); border: 1px solid var(--line); padding: 6px 11px; border-radius: 5px; }
.footer__nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.footer__nav h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; font-weight: 600; }
.footer__nav a { display: block; font-size: 14.5px; color: var(--text); padding: 7px 0; transition: color .3s, padding-left .3s; }
.footer__nav a:hover { color: var(--ink); padding-left: 4px; }
.footer__bar { max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--line); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-dim); }

/* ============================================================
   REVEAL animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .cards, .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .reality__grid { grid-template-columns: 1fr; }
  .reality__media { order: -1; }
  .step__line { display: none; }
  .stat:nth-child(3) { border-left: none; }
}

@media (max-width: 860px) {
  .nav__inner { display: flex; align-items: center; justify-content: space-between; }
  .brand { justify-self: auto; }
  .nav__links, .nav__right { display: none; }
  .nav__toggle { display: flex; flex-direction: column; gap: 5px; margin-left: auto; background: none; border: none; cursor: pointer; padding: 6px; }
  .nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: transform .35s var(--ease), opacity .3s; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.open { background: rgba(250,250,249,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-soft); }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250,250,249,.99); backdrop-filter: blur(16px); padding: 12px 24px 22px; border-bottom: 1px solid var(--line-soft); box-shadow: var(--shadow-md);
  }
  .nav.open .nav__links a { padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
  .nav.open .nav__cta { display: inline-flex; margin-top: 14px; }
}

@media (max-width: 680px) {
  .cards, .trust__grid, .people, .footer__inner, .footer__nav { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .stat { border-left: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .reality__pulls { gap: 26px; }
  .footer__bar { flex-direction: column; gap: 8px; }
  .announce__text { font-size: 12px; padding-right: 20px; }
}
