/* ============================================================
   Coastline Assistants — site styles
   Liquid-glass dark, coastal gradients, motion-rich
   ============================================================ */

:root {
  --bg: #070d1c;
  --bg-2: #0a1326;
  --ink: #eaf2f0;
  --muted: rgba(234, 242, 240, 0.62);
  --faint: rgba(234, 242, 240, 0.40);

  --teal: #3dd9b0;
  --teal-2: #28c39c;
  --teal-deep: #1d9e75;
  --sand: #f0b483;
  --violet: #7d6f93;

  --glass: rgba(255, 255, 255, 0.045);
  --glass-2: rgba(255, 255, 255, 0.07);
  --glass-brd: rgba(255, 255, 255, 0.10);
  --glass-brd-2: rgba(255, 255, 255, 0.16);

  --radius: 20px;
  --radius-sm: 13px;
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7);

  --font: "Inter", system-ui, sans-serif;
  --display: "Sora", "Inter", system-ui, sans-serif;
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  /* layered atmospheric background */
  background-image:
    radial-gradient(1100px 600px at 78% -8%, rgba(125, 111, 147, 0.28), transparent 60%),
    radial-gradient(900px 620px at 8% 8%, rgba(29, 158, 117, 0.22), transparent 58%),
    radial-gradient(1200px 800px at 50% 120%, rgba(61, 217, 176, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
em { font-style: normal; color: var(--teal); }

/* ---------- ambient orbs & cursor glow ---------- */
.orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.orb-1 { width: 460px; height: 460px; top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(125,111,147,0.7), transparent 70%); animation: drift 22s ease-in-out infinite; }
.orb-2 { width: 520px; height: 520px; top: 38%; left: -160px;
  background: radial-gradient(circle, rgba(29,158,117,0.55), transparent 70%); animation: drift 28s ease-in-out infinite reverse; }
.orb-3 { width: 400px; height: 400px; bottom: -120px; right: 16%;
  background: radial-gradient(circle, rgba(240,180,131,0.35), transparent 70%); animation: drift 25s ease-in-out infinite; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -36px) scale(1.08); }
  66% { transform: translate(-30px, 28px) scale(0.96); }
}

.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,217,176,0.13), transparent 65%);
  transform: translate(-50%, -50%); pointer-events: none; z-index: 1;
  transition: opacity 0.4s ease; opacity: 0; will-change: transform;
}

/* ---------- glass primitive ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ---------- buttons ---------- */
.btn {
  --b: 1px solid var(--glass-brd-2);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 999px; border: var(--b);
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, border-color .25s;
  color: var(--ink); background: var(--glass-2);
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-accent {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  border-color: transparent; color: #04231b;
  box-shadow: 0 10px 30px -8px rgba(61,217,176,0.5);
}
.btn-accent:hover { box-shadow: 0 16px 40px -8px rgba(61,217,176,0.65); }
.btn-ghost { background: rgba(255,255,255,0.04); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--glass-brd-2); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,13,28,0.72);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--glass-brd);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 4px 14px -4px rgba(0,0,0,.6); }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.brand-thin { font-weight: 400; color: var(--muted); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 14.5px; color: var(--muted); transition: color .2s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--teal); border-radius: 2px; transition: width .25s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- hero ---------- */
.hero { position: relative; z-index: 2; padding: 150px 0 200px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal);
  background: rgba(61,217,176,0.08); border: 1px solid rgba(61,217,176,0.22);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 26px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 0 rgba(61,217,176,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(61,217,176,0.55);} 70%{box-shadow:0 0 0 9px rgba(61,217,176,0);} 100%{box-shadow:0 0 0 0 rgba(61,217,176,0);} }

.hero-title { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.04; letter-spacing: -1.5px; margin-bottom: 22px; }
.grad-text {
  background: linear-gradient(110deg, var(--teal) 0%, var(--sand) 55%, var(--teal) 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

.hero-sub { font-size: 18.5px; color: var(--muted); max-width: 520px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 14px; }
.hero-trust p { font-size: 13.5px; color: var(--faint); max-width: 280px; }
.avatars { display: flex; }
.avatars span { width: 34px; height: 34px; border-radius: 50%; margin-left: -10px; border: 2px solid var(--bg-2);
  background: linear-gradient(135deg, var(--teal-deep), var(--violet)); }
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2){ background: linear-gradient(135deg, var(--sand), var(--teal-deep)); }
.avatars span:nth-child(3){ background: linear-gradient(135deg, var(--violet), var(--teal)); }
.avatars span:nth-child(4){ background: linear-gradient(135deg, var(--teal), var(--sand)); }

/* hero chat visual */
.hero-visual { position: relative; }
.chat-card { padding: 20px; }
.chat-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--glass-brd); margin-bottom: 16px; }
.chat-head img { width: 42px; height: 42px; border-radius: 11px; }
.chat-head strong { font-family: var(--display); font-size: 15px; display: block; }
.online { font-size: 12px; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }
.online i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2.2s infinite; }
.chat-body { display: flex; flex-direction: column; gap: 10px; min-height: 230px; }
.bubble { max-width: 80%; padding: 11px 15px; border-radius: 16px; font-size: 14.5px; line-height: 1.45;
  opacity: 0; transform: translateY(12px); animation: bubbleIn .5s forwards; }
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }
.bubble.them { align-self: flex-start; background: rgba(255,255,255,0.07); border: 1px solid var(--glass-brd);
  border-bottom-left-radius: 5px; }
.bubble.me { align-self: flex-end; background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #04231b; border-bottom-right-radius: 5px; font-weight: 500; }
.bubble.typing { display: inline-flex; gap: 5px; align-items: center; }
.bubble.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite; }
.bubble.typing span:nth-child(2){ animation-delay: .2s; } .bubble.typing span:nth-child(3){ animation-delay: .4s; }
@keyframes blink { 0%,60%,100%{opacity:.25;transform:translateY(0);} 30%{opacity:1;transform:translateY(-3px);} }

.stat-float { position: absolute; padding: 14px 18px; display: flex; align-items: baseline; gap: 3px; flex-wrap: wrap;
  border-radius: var(--radius-sm); animation: float 6s ease-in-out infinite; }
.stat-float .big { font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--teal); }
.stat-float .unit { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--teal); }
.stat-float small { width: 100%; font-size: 11px; color: var(--muted); margin-top: 2px; }
.stat-float-a { top: -26px; right: -18px; }
.stat-float-b { bottom: -28px; left: -22px; animation-delay: 2s; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

/* hero waves */
.waves { position: absolute; left: 0; right: 0; bottom: -1px; height: 200px; z-index: 1; pointer-events: none; }
.waves svg { width: 100%; height: 100%; display: block; }
.wave { transform-origin: center; }
.wave-1 { fill: rgba(61,217,176,0.16); animation: waveX 9s ease-in-out infinite alternate; }
.wave-2 { fill: rgba(29,158,117,0.18); animation: waveX 12s ease-in-out infinite alternate-reverse; }
.wave-3 { fill: rgba(125,111,147,0.16); animation: waveX 15s ease-in-out infinite alternate; }
@keyframes waveX { from { transform: translateX(-30px); } to { transform: translateX(30px); } }

/* ---------- trust strip ---------- */
.strip { position: relative; z-index: 2; padding: 8px 0 40px; }
.strip-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; text-align: center; }
.strip-inner span { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--faint); }
.strip-inner ul { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.strip-inner li { font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--muted); }

/* ---------- sections ---------- */
.section { position: relative; z-index: 2; padding: 100px 0; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 16px; }
.section-head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.12; letter-spacing: -0.8px; }
.section-head h2 em { color: var(--sand); }
.lede { font-size: 17px; color: var(--muted); margin-top: 18px; }

/* problem */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pcard { padding: 28px 24px; }
.pcard .ic { font-size: 28px; display: block; margin-bottom: 16px; }
.pcard h3 { font-family: var(--display); font-size: 18px; margin-bottom: 10px; }
.pcard p { font-size: 14.5px; color: var(--muted); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 24px 28px; border-radius: var(--radius);
  border: 1px solid var(--glass-brd); background: linear-gradient(180deg, var(--glass-2), transparent); }
.step::before { content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent); border-radius: 2px; }
.step-no { font-family: var(--display); font-weight: 800; font-size: 34px;
  background: linear-gradient(135deg, var(--teal), var(--violet)); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; display: block; margin-bottom: 14px; }
.step h3 { font-family: var(--display); font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 30px 28px; transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, background .3s; }
.feature:hover { transform: translateY(-5px); border-color: var(--glass-brd-2); background: var(--glass-2); }
.feature-wide { grid-column: span 2; }
.feature-icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; font-size: 24px;
  background: linear-gradient(135deg, rgba(61,217,176,0.18), rgba(125,111,147,0.18)); border: 1px solid var(--glass-brd); margin-bottom: 18px; }
.feature h3 { font-family: var(--display); font-size: 19px; margin-bottom: 9px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* plans */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { padding: 32px 28px; display: flex; flex-direction: column; position: relative; transition: transform .3s, border-color .3s; }
.plan:hover { transform: translateY(-5px); border-color: var(--glass-brd-2); }
.plan-feature { border-color: rgba(61,217,176,0.4); background: linear-gradient(180deg, rgba(61,217,176,0.08), var(--glass)); transform: scale(1.03); }
.plan-feature:hover { transform: scale(1.03) translateY(-5px); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-family: var(--display);
  font-size: 12px; font-weight: 600; letter-spacing: .5px; padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep)); color: #04231b; white-space: nowrap; }
.plan-name { font-family: var(--display); font-size: 21px; font-weight: 700; }
.plan-for { font-size: 13.5px; color: var(--faint); margin-bottom: 20px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 24px; }
.plan-price .cur { font-family: var(--display); font-size: 22px; color: var(--muted); }
.plan-price .amt { font-family: var(--display); font-weight: 800; font-size: 50px; letter-spacing: -2px; }
.plan-price .per { font-size: 15px; color: var(--muted); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan-feats li { font-size: 14.5px; color: var(--muted); padding-left: 26px; position: relative; }
.plan-feats li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 700;
  width: 18px; height: 18px; }

/* testimonial */
.quote-sec { padding: 60px 0; }
.quote-card { max-width: 820px; margin: 0 auto; padding: 50px 48px 42px; text-align: center; position: relative; }
.quote-mark { font-family: var(--display); font-size: 90px; line-height: 0.6; color: var(--teal); opacity: .3; }
.quote-text { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 2.5vw, 27px); line-height: 1.4; margin: 10px 0 28px; letter-spacing: -0.4px; }
.quote-by { display: inline-flex; align-items: center; gap: 13px; }
.quote-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 15px; color: #04231b;
  background: linear-gradient(135deg, var(--teal), var(--sand)); }
.quote-by strong { display: block; font-size: 15px; }
.quote-by span { font-size: 13px; color: var(--muted); }
.sample-note { position: absolute; top: 16px; right: 18px; font-size: 11px; color: var(--faint); letter-spacing: .5px; }

/* faq */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 0 24px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0; font-family: var(--display); font-weight: 600; font-size: 17px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { font-family: var(--display); font-weight: 400; font-size: 24px; color: var(--teal); transition: transform .3s; line-height: 1; }
.faq-item[open] .chev { transform: rotate(45deg); }
.faq-item p { font-size: 15px; color: var(--muted); padding: 0 0 22px; max-width: 90%; }

/* cta */
.cta { padding: 60px 0 110px; }
.cta-card { max-width: 860px; margin: 0 auto; padding: 56px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 520px; height: 360px;
  background: radial-gradient(circle, rgba(61,217,176,0.22), transparent 65%); filter: blur(10px); pointer-events: none; }
.cta-card .kicker, .cta-card h2, .cta-card > p { position: relative; }
.cta-card h2 { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.8vw, 40px); letter-spacing: -0.8px; margin-bottom: 14px; }
.cta-card > p { font-size: 17px; color: var(--muted); max-width: 480px; margin: 0 auto 30px; }
.cta-form { position: relative; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 640px; margin: 0 auto; }
.cta-form input { flex: 1; min-width: 160px; padding: 14px 18px; border-radius: 12px; font-family: var(--font); font-size: 15px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--glass-brd); color: var(--ink); transition: border-color .2s, background .2s; }
.cta-form input::placeholder { color: var(--faint); }
.cta-form input:focus { outline: none; border-color: var(--teal); background: rgba(61,217,176,0.06); }
.cta-form .btn { flex-basis: 100%; }
.cta-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.cta-form input.err { border-color: #e8765b; background: rgba(232,118,91,0.08); }
.cta-fine { position: relative; font-size: 13.5px; color: var(--faint); margin-top: 18px; }

/* footer */
.footer { position: relative; z-index: 2; padding: 70px 0 32px; border-top: 1px solid var(--glass-brd); margin-top: 40px;
  background: rgba(7,13,28,0.5); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 50px; padding-bottom: 44px; }
.footer-brand p { font-size: 14.5px; color: var(--muted); max-width: 300px; margin-top: 16px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-cols h4 { font-family: var(--display); font-size: 14px; margin-bottom: 14px; color: var(--ink); }
.footer-cols a { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; transition: color .2s; }
.footer-cols a:hover { color: var(--teal); }
.footer-base { display: flex; justify-content: space-between; align-items: center; padding-top: 26px;
  border-top: 1px solid var(--glass-brd); font-size: 13px; color: var(--faint); flex-wrap: wrap; gap: 10px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.problem-grid .reveal:nth-child(2){ transition-delay:.08s; } .problem-grid .reveal:nth-child(3){ transition-delay:.16s; } .problem-grid .reveal:nth-child(4){ transition-delay:.24s; }
.steps .reveal:nth-child(2){ transition-delay:.08s; } .steps .reveal:nth-child(3){ transition-delay:.16s; } .steps .reveal:nth-child(4){ transition-delay:.24s; }
.feature-grid .reveal:nth-child(2){ transition-delay:.06s; } .feature-grid .reveal:nth-child(3){ transition-delay:.12s; } .feature-grid .reveal:nth-child(4){ transition-delay:.18s; } .feature-grid .reveal:nth-child(5){ transition-delay:.24s; }
.plan-grid .reveal:nth-child(2){ transition-delay:.1s; } .plan-grid .reveal:nth-child(3){ transition-delay:.2s; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding: 130px 0 170px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-copy { text-align: center; }
  .hero-cta, .hero-trust { justify-content: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-wide { grid-column: span 2; }
  .plan-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-feature { transform: none; } .plan-feature:hover { transform: translateY(-5px); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 72px 0; }
  .problem-grid, .steps, .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: span 1; }
  .cta-card, .quote-card { padding: 40px 24px; }
  .cta-form input { flex-basis: 100%; }
  .stat-float-a { right: 0; } .stat-float-b { left: 0; }
  .strip-inner ul { gap: 16px; } .strip-inner li { font-size: 14px; }
}

/* mobile menu open state */
body.menu-open .nav-links { display: flex; position: fixed; top: 72px; left: 0; right: 0; flex-direction: column;
  gap: 0; background: rgba(7,13,28,0.96); backdrop-filter: blur(16px); padding: 8px 24px 20px; border-bottom: 1px solid var(--glass-brd); }
body.menu-open .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--glass-brd); font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
