/* theSitrep marketing site — design tokens lifted from docs/product-brief.html */

/* Self-hosted Inter (variable). Replaces the render-blocking rsms.me stylesheet
   and removes the third-party font request (privacy / GDPR). */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/InterVariable.woff2') format('woff2');
}

:root {
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: var(--font-sans); /* labels now use Inter, not a monospace font */

  --r-xs: 4px; --r-sm: 6px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-pill: 999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring-soft: cubic-bezier(0.16, 1.2, 0.3, 1);   /* ~2% overshoot — frames/large surfaces */
  --ease-spring:      cubic-bezier(0.22, 1.4, 0.36, 1);  /* ~4% — card/word reveals */
  --ease-spring-pop:  cubic-bezier(0.34, 1.56, 0.64, 1); /* ~6% — CTAs/badges, small elements only */
  --t-fast: 120ms; --t-med: 220ms; --t-slow: 480ms; --t-reveal: 700ms;

  color-scheme: dark;
  --bg: #08090a;
  --bg-elev: #0c0d0e;
  --surface: #111214;
  --surface-2: #17181b;
  --surface-3: #1d1e22;
  --surface-hover: #1a1b1e;
  --border: #1f2023;
  --border-2: #28292d;
  --border-3: #34363b;

  --text: #e6e6e6;
  --text-2: #a1a1aa;
  --text-3: #71717a;
  --text-4: #52525b;

  --accent: #77A6CE;
  --accent-2: #5f8fbb;
  --accent-tint: rgba(119, 166, 206, 0.14);
  --accent-tint-2: rgba(119, 166, 206, 0.22);
  --accent-border: rgba(119, 166, 206, 0.40);

  --good: #4cb782;
  --good-tint: rgba(76, 183, 130, 0.12);
  --good-border: rgba(76, 183, 130, 0.30);

  --warn: #e9b949;
  --warn-tint: rgba(233, 185, 73, 0.13);
  --warn-border: rgba(233, 185, 73, 0.30);

  --bad: #f06464;
  --bad-tint: rgba(240, 100, 100, 0.13);
  --bad-border: rgba(240, 100, 100, 0.30);

  --info: #01b2f9;
  --info-tint: rgba(1, 178, 249, 0.12);
  --human: #01b2f9;
  --human-tint: rgba(1, 178, 249, 0.12);
  --human-border: rgba(1, 178, 249, 0.32);
  --human-tint-2: rgba(1, 178, 249, 0.20);

  --ph-dev: #4f7df0;

  --shadow-sm: 0 1px 0 rgba(255, 255, 255, 0.02), 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
  --shadow-glow: 0 0 0 1px rgba(119, 166, 206, 0.50), 0 0 60px rgba(119, 166, 206, 0.25);
  --shadow-glow-human: 0 0 0 1px rgba(1, 178, 249, 0.45), 0 0 60px rgba(1, 178, 249, 0.22);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--text);
  font-family: var(--font-sans); font-size: 14px;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  scroll-behavior: smooth;
}
/* clip (not hidden): ambient layers may overhang the viewport; clip is not a
   scroll container, so sticky positioning and anchors keep working */
html { overflow-x: clip; }
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 12% 0%, rgba(1, 178, 249, 0.07), transparent 40%),
              radial-gradient(circle at 88% 100%, rgba(119, 166, 206, 0.06), transparent 45%);
  z-index: 0;
}

::selection { background: var(--accent-tint-2); color: var(--text); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 10px; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--border-3); background-clip: padding-box; border: 2px solid transparent; }

.tabular { font-variant-numeric: tabular-nums; }
.mono { font-family: var(--font-mono); }
.mono-caps {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 10.5px; color: var(--text-3); font-weight: 500;
}
.mono-caps.accent { color: var(--accent); }
.mono-caps.good { color: var(--good); }
.mono-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: 0.04em; }
.mono-meta.dim { color: var(--text-4); }
.hl { color: var(--text); font-weight: 600; }

a { color: var(--accent); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--text); }

/* ─── Shell ───────────────────────────────────── */
.shell { position: relative; z-index: 1; max-width: 1236px; margin: 0 auto; padding: 0 28px; }

main > section { scroll-margin-top: 72px; }
main > section.shell { padding-top: 84px; padding-bottom: 84px; }
main > section.hero { padding-top: 92px; padding-bottom: 28px; }
main > section.shot-section { padding-top: 20px; padding-bottom: 84px; }
main > section.pricing-section { padding-top: 84px; padding-bottom: 100px; }
/* Pull the two short sections (What you get + Positioning) closer as a pair */
main > section#value { padding-bottom: 40px; }
main > section#vs { padding-top: 40px; }

/* ─── Topbar ─────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 20;
  height: 56px;
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 10, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--t-med), border-color var(--t-med);
}
.topbar.scrolled {
  background: rgba(8, 9, 10, 0.88);
  border-bottom-color: var(--border);
}
.topbar-inner {
  display: flex; align-items: center; gap: 16px;
  max-width: 1236px; margin: 0 auto; height: 100%;
  padding: 0 28px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text);
}
.brand:hover { color: var(--text); }
.brand-logo { height: 30px; width: auto; display: block; }
.brand-logo-sm { height: 24px; }

.topnav {
  display: flex; align-items: center; gap: 4px;
  margin-left: 12px;
}
.topnav a {
  padding: 6px 10px; border-radius: var(--r-sm);
  font-size: 13px; color: var(--text-2);
  transition: color var(--t-fast), background var(--t-fast);
}
.topnav a:hover { color: var(--text); background: var(--surface-2); }

.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* ─── Pills & buttons ────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 9px;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 500;
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  color: var(--text-2);
  white-space: nowrap;
}
.pill.tone-good { color: var(--good); border-color: var(--good-border); background: var(--good-tint); }
.pill.tone-warn { color: var(--warn); border-color: var(--warn-border); background: var(--warn-tint); }
.pill.tone-bad  { color: var(--bad);  border-color: var(--bad-border);  background: var(--bad-tint); }
.pill.tone-accent { color: var(--accent); border-color: var(--accent-border); background: var(--accent-tint); }
.pill.tone-human { color: var(--human); border-color: var(--human-border); background: var(--human-tint); }

.dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; display: inline-block; }
.dot.pulse { animation: pulse 1.8s var(--ease-out) infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  50% { box-shadow: 0 0 0 4px transparent; opacity: 0.55; }
}

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-size: 12.5px; font-weight: 500;
  font-family: var(--font-sans);
  transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
}
.btn:hover { background: var(--surface-hover); border-color: var(--border-3); color: var(--text); }
.btn:active { transform: translateY(1px); }
.btn.primary {
  background: var(--accent); border-color: var(--accent); color: #08090a;
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 0 0 1px rgba(119,166,206,0.35);
}
.btn.primary:hover { background: var(--accent-2); border-color: var(--accent-2); color: #08090a; }
.btn.lg { padding: 10px 16px; font-size: 13.5px; border-radius: var(--r-md); }

/* ─── Waitlist modal ─────────────────────────────── */
.waitlist-modal {
  width: min(92vw, 420px); padding: 0; color: var(--text);
  border: 1px solid var(--border-2); border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--shadow-lg);
}
.waitlist-modal::backdrop { background: rgba(6, 7, 9, 0.62); backdrop-filter: blur(4px); }
.waitlist-modal[open] { animation: waitlist-pop 260ms var(--ease-spring-pop); }
@keyframes waitlist-pop {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.waitlist-form { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 28px 26px 24px; }
.waitlist-close {
  position: absolute; top: 12px; right: 12px; width: 30px; height: 30px;
  display: grid; place-items: center; border: 0; border-radius: var(--r-sm);
  background: transparent; color: var(--text-3); font-size: 22px; line-height: 1; cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.waitlist-close:hover { background: var(--surface-2); color: var(--text); }
.waitlist-title { margin: 0; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.waitlist-sub { margin: 0 0 4px; font-size: 13px; line-height: 1.5; color: var(--text-2); }
.waitlist-field { display: flex; flex-direction: column; gap: 5px; }
.waitlist-field span { font-size: 12px; font-weight: 500; color: var(--text-3); }
.waitlist-field input {
  width: 100%; padding: 10px 12px; border-radius: var(--r-md);
  border: 1px solid var(--border-2); background: var(--surface-2); color: var(--text);
  font-family: var(--font-sans); font-size: 14px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.waitlist-field input::placeholder { color: var(--text-4); }
.waitlist-field input:focus { outline: none; border-color: var(--accent-border); box-shadow: 0 0 0 3px var(--accent-tint); }
.waitlist-submit { width: 100%; justify-content: center; margin-top: 6px; }
.waitlist-submit:disabled { opacity: 0.6; cursor: default; }
.waitlist-status { margin: 0; min-height: 1.2em; font-size: 13px; line-height: 1.4; }
.waitlist-status.is-error { color: #f06464; }
.waitlist-status.is-ok { color: var(--good); }
/* success: collapse the inputs, leave the confirmation */
.waitlist-form.is-done .waitlist-sub,
.waitlist-form.is-done .waitlist-field,
.waitlist-form.is-done .waitlist-submit { display: none; }

/* ─── Cookie consent ─────────────────────────── */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 30;
  max-width: 420px;
  display: flex; flex-direction: column; gap: 12px;
  padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
/* author-level display:flex beats the UA [hidden] rule, so restate it */
.cookie-banner[hidden] { display: none; }
.cookie-text { margin: 0; font-size: 13px; line-height: 1.55; color: var(--text-2); }
.cookie-text a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 8px; }
@media (prefers-reduced-motion: no-preference) {
  /* replays whenever [hidden] flips off (display:none -> flex restarts it) */
  .cookie-banner { animation: cookie-rise var(--t-slow) var(--ease-out) backwards; }
  @keyframes cookie-rise {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ─── Legal pages (privacy / terms / refunds) ── */
.policy { max-width: 720px; padding-top: 64px; padding-bottom: 84px; }
.policy-brand { display: inline-flex; margin-bottom: 40px; }
.policy h1 { margin: 0 0 8px; font-size: 28px; font-weight: 600; letter-spacing: -0.01em; }
.policy .policy-updated { margin: 0 0 36px; font-size: 13px; color: var(--text-3); }
.policy h2 { margin: 36px 0 10px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.policy p, .policy li { font-size: 14px; line-height: 1.65; color: var(--text-2); }
.policy p { margin: 0 0 12px; }
.policy ul { margin: 0 0 12px; padding-left: 20px; }
.policy li { margin-bottom: 8px; }
.policy strong { color: var(--text); }
.policy a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.policy code {
  font-size: 12.5px; padding: 1px 5px; border-radius: var(--r-xs);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
}

/* ─── Hero ───────────────────────────────────── */
.hero { position: relative; }
.hero .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--text);
}
.hero h1 {
  font-size: 64px; line-height: 1.04; letter-spacing: -0.03em;
  margin: 0 0 22px; font-weight: 700;
  max-width: 920px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #B4D2EA 0%, #77A6CE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede {
  font-size: 18px; color: var(--text-2);
  max-width: 760px; margin: 0 0 32px; line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; }

/* Aurora: gradient-alpha blobs (no filter — cheapest pattern). The container
   clips internally and bleeds down behind the product shot; z-index:-1 paints
   behind hero content inside .shell's stacking context. */
.hero-aurora {
  position: absolute; z-index: -1; pointer-events: none;
  top: -140px; bottom: -280px; left: 50%; width: 100vw;
  transform: translateX(-50%); overflow: hidden;
}
.hero-aurora .blob { position: absolute; display: block; }
.b1 { width: 58vw; height: 58vw; top: -20vw; left: -10vw;
  background: radial-gradient(circle, rgba(119, 166, 206, 0.17) 0%, transparent 62%); }
.b2 { width: 50vw; height: 50vw; top: -8vw; right: -12vw;
  background: radial-gradient(circle, rgba(1, 178, 249, 0.13) 0%, transparent 60%); }
.b3 { width: 44vw; height: 44vw; bottom: -18vw; left: 24vw;
  background: radial-gradient(circle, rgba(180, 210, 234, 0.09) 0%, transparent 60%); }

/* ─── Product shot ───────────────────────────── */
.shot-frame {
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  background: var(--surface);
  overflow: hidden;  /* fallback */
  overflow: clip;    /* not a scroll container — keeps view() timelines on the root scroller */
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 80px rgba(10, 121, 225, 0.12);
  position: relative;
}
.shot-frame::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(1, 178, 249, 0.10), transparent 50%);
  z-index: 1;
}
.shot-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 2;
}
.shot-dot { width: 11px; height: 11px; border-radius: 999px; display: inline-block; }
.shot-url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.shot-frame img {
  display: block;
  width: 100%; height: auto;
  position: relative; z-index: 0;
}
.shot-caption {
  margin-top: 14px;
  font-size: 12.5px; color: var(--text-3);
  text-align: center;
}

/* ─── Section heads ──────────────────────────── */
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin: 0 0 48px; gap: 10px; flex-wrap: wrap; }
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.section-title { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; margin: 4px 0 0; line-height: 1.08; max-width: 980px; }
.section-title .dim { color: var(--text-3); }
.section-sub { font-size: 14.5px; color: var(--text-3); max-width: 720px; margin: 10px 0 0; line-height: 1.55; }

/* ─── Cards ──────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.card-flat {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.card-pad { padding: 20px 22px; }
.card-p { margin: 8px 0 0; color: var(--text-2); font-size: 14px; line-height: 1.55; }

/* ─── Problem section (typographic, two columns) ─ */
.prob-cols { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); padding-top: 36px; }
.prob-col:first-child { padding-right: 52px; }
.prob-col:last-child { padding-left: 52px; border-left: 1px solid var(--border); }

.prob-label { display: block; font-size: 12px; letter-spacing: 0.12em; margin-bottom: 22px; }
.prob-col.tone-bad  .prob-label { color: var(--bad); }
.prob-col.tone-warn .prob-label { color: var(--warn); }
.prob-statement { margin: 0; font-size: 18px; color: var(--text-2); line-height: 1.55; letter-spacing: -0.01em; }

.result-block {
  margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 24px 64px; flex-wrap: wrap;
}
.result-label { letter-spacing: 0.12em; font-size: 12px; }
.result-grid { display: flex; flex-wrap: wrap; gap: 16px 48px; flex: 1; min-width: 0; }
.result-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; font-weight: 600; color: var(--text); line-height: 1.4;
}
.result-x { display: inline-flex; color: var(--bad); flex-shrink: 0; }

.toned-card { position: relative; overflow: hidden; }
.toned-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 100% 0%, var(--toned-glow, var(--accent-tint)), transparent 55%);
}
.toned-card.tone-accent { --toned-glow: var(--accent-tint); border-color: var(--accent-border); }
.toned-card.tone-good   { --toned-glow: var(--good-tint);   border-color: var(--good-border); }
.toned-card.tone-warn   { --toned-glow: var(--warn-tint);   border-color: var(--warn-border); }
.toned-card.tone-bad    { --toned-glow: var(--bad-tint);    border-color: var(--bad-border); }
.toned-card.tone-human  { --toned-glow: var(--human-tint);  border-color: var(--human-border); }
.toned-card > * { position: relative; z-index: 1; }

/* ─── Grids ──────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* ─── Wedges section (the highlight) ─────────── */
.wedges-section { position: relative; }
.wedges-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 50%, rgba(10, 121, 225, 0.08), transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(1, 178, 249, 0.06), transparent 45%);
}
.wedges-section > * { position: relative; z-index: 1; }

.wedge-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}
.wedge-row + .wedge-row { margin-top: 26px; }
.wedge-row.reverse .wedge { order: 2; }
.wedge {
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.wedge--xl { padding: 36px 32px 32px; gap: 18px; }
.wedge--xl.tone-accent { box-shadow: var(--shadow-glow); }
.wedge--xl.tone-human  { box-shadow: var(--shadow-glow-human); }
.wedge .w-num {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); font-weight: 500;
}
.wedge .w-num.human { color: var(--human); }
.wedge .w-title { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.wedge .w-desc { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }

.wedge-kill {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-2);
  display: flex; flex-direction: column; gap: 6px;
}
.wedge-kill .kill-line {
  font-size: 14px; color: var(--text);
  font-weight: 500;
}

/* ─── Standup questions (condensed strip) ───── */
.q-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.q-cell {
  display: flex; flex-direction: column; gap: 10px;
  padding: 28px 20px;
  border-left: 1px solid var(--border);
}
.q-cell:first-child { border-left: 0; }
.q-num {
  font-family: var(--font-mono); font-size: 20px; font-weight: 600;
  color: var(--text-4); letter-spacing: -0.02em;
}
.q-title { font-size: 15px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; line-height: 1.35; }

/* ─── What it replaces (condensed) ──────────── */
.replaces { display: flex; flex-direction: column; gap: 16px; border-top: 1px solid var(--border); padding-top: 32px; }
.replaces-pills { display: flex; flex-wrap: wrap; gap: 10px 22px; }
/* "Retired" list: no box, a clear red ✕ marks each old ritual theSitrep replaces */
.replaces-pills .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0; border: 0; background: none;
  font-size: 13.5px; color: var(--text-2); text-decoration: none;
}
.replaces-pills .pill::before {
  content: "\2715"; color: var(--bad); font-size: 12px; font-weight: 700;
}
.replaces-line { margin: 0; font-size: 15px; color: var(--text-2); line-height: 1.5; }

/* ─── Pricing ───────────────────────────────── */
.pricing-grid { align-items: stretch; }
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px 24px;
}
.price-card.featured { box-shadow: var(--shadow-glow); }
.price-badge { position: absolute; top: 18px; right: 18px; }
.price-name { margin-bottom: 14px; }
.price-amount { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.price-big { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; color: var(--text); }
.price-unit { font-size: 13px; color: var(--text-3); }
.price-period { margin-top: 8px; font-size: 12.5px; color: var(--text-3); }
/* Team calculator: JS-driven, hidden if the script never runs */
.price-calc { display: none; }
html.reveal .price-calc {
  display: block;
  margin-top: 18px; padding: 14px 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border-2); border-radius: var(--r-md);
}
.calc-row { display: flex; justify-content: space-between; align-items: baseline; }
.calc-devs { font-size: 13px; font-weight: 600; color: var(--text); }
.calc-note { font-size: 12.5px; color: var(--text-3); }
.price-calc input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 999px; outline: none;
  margin: 14px 0 10px; cursor: pointer;
  background: linear-gradient(90deg, var(--accent) var(--fill, 16%), var(--border-3) var(--fill, 16%));
}
.price-calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); border: 2px solid #08090a;
  box-shadow: 0 0 0 1px var(--accent-border), 0 0 12px rgba(119, 166, 206, 0.5);
}
.price-calc input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); border: 2px solid #08090a;
  box-shadow: 0 0 0 1px var(--accent-border), 0 0 12px rgba(119, 166, 206, 0.5);
}

.price-feats {
  list-style: none; margin: 18px 0 0; padding: 18px 0 0;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 11px;
}
.price-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-2); line-height: 1.4;
}
.price-feats li svg { color: var(--good); flex-shrink: 0; margin-top: 2px; }
.price-cta { margin-top: auto; padding-top: 22px; }
.price-cta .btn { width: 100%; justify-content: center; padding: 10px 16px; font-size: 13.5px; }

/* ─── Footer ────────────────────────────────── */
.site-footer {
  padding: 48px 28px 40px;
  border-top: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
.footer-tagline { margin: 0; font-size: 13px; color: var(--text-3); line-height: 1.5; }
.footer-meta { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.footer-meta a { color: var(--text-2); }
.footer-meta a:hover { color: var(--text); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-title { margin-bottom: 4px; }
.footer-nav a, .footer-nav button { font-size: 13px; color: var(--text-2); transition: color var(--t-fast); }
.footer-nav button { background: none; border: 0; padding: 0; font-family: inherit; text-align: left; cursor: pointer; }
.footer-nav a:hover, .footer-nav button:hover { color: var(--text); }
.footer-note { margin: 0; max-width: 240px; font-size: 13px; color: var(--text-3); line-height: 1.55; }

/* ─── Motion: section reveal ────────────────── */
/* Hidden states are gated behind html.reveal (set by script.js line 1), so a
   failed script load degrades to a static, fully visible page.
   .hero/.shot-section animate on load; .wedges-section rows reveal individually. */
html.reveal main > section { transition: opacity var(--t-reveal) var(--ease-out), transform var(--t-reveal) var(--ease-out); }
html.reveal main > section:not(.in-view):not(.hero):not(.shot-section):not(.wedges-section) { opacity: 0; transform: translateY(28px); }
html.reveal :is(.wedge-row, .wedges-section .section-head):not(.in-view) { opacity: 0; }
.wedges-section .section-head.in-view { animation: rise-in-blur var(--t-slow) var(--ease-out) backwards; }

/* ─── Motion: entrance (page load) ──────────── */
/* Hidden state lives only in the from{} frame + backwards fill: base styles
   stay visible, so animation:none (reduced motion, old browsers) shows content. */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(var(--rise, 12px)); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Blur variant for TEXT-BEARING elements only — filter on screenshot frames or
   glow-shadow cards re-blurs huge textures and flares their box-shadows. */
@keyframes rise-in-blur {
  from { opacity: 0; transform: translateY(var(--rise, 12px)) scale(0.96); filter: blur(8px); }
  60%  { filter: blur(0); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.hero h1 .w {
  display: inline-block;
  animation: rise-in-blur 600ms var(--ease-spring) backwards;
  animation-delay: calc(80ms + var(--wi, 0) * 70ms);  /* words land 80-360ms */
  --rise: 0.45em;
}
/* The wrapper holding .grad gets NO blur/scale: an animating ancestor filter
   over background-clip:text is the WebKit invisible-text vector. */
.hero h1 .w-grad { animation-name: rise-in; }

@keyframes sweep-in {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-10px); }
  to   { opacity: 1; clip-path: inset(0 -8% 0 0); transform: translateX(0); }
}
.hero .eyebrow { animation: sweep-in 520ms var(--ease-out) backwards; }
.hero .lede { animation: rise-in 560ms var(--ease-out) 480ms backwards; --rise: 18px; }

@keyframes pop-in {
  from { opacity: 0; transform: translateY(14px) scale(0.88); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-cta .btn { animation: pop-in 520ms var(--ease-spring-pop) backwards; }
.hero-cta .btn:nth-child(1) { animation-delay: 620ms; }
.hero-cta .btn:nth-child(2) { animation-delay: 700ms; }

/* Product shot: 3D tilt-in. perspective() inside the transform function with
   the same value in both frames (never interpolates). No blur here. */
@keyframes shot-tilt-in {
  from { opacity: 0; transform: perspective(1200px) translateY(56px) rotateX(8deg) scale(0.965); }
  to   { opacity: 1; transform: perspective(1200px) translateY(0) rotateX(0deg) scale(1); }
}
.shot-section .shot-frame { transform-origin: 50% 85%; animation: shot-tilt-in 900ms var(--ease-spring-soft) 560ms backwards; }

/* One-time diagonal light sweep. ::before carries the glow; ::after is free.
   both-fill parks it off-canvas before and after; with animations off the base
   transform keeps it invisible — no reveal gating needed. */
.shot-section .shot-frame::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.10) 50%, rgba(180, 210, 234, 0.05) 54%, transparent 60%);
  transform: translateX(-130%);
  animation: light-sweep 1100ms ease-in-out 1500ms both;
}
@keyframes light-sweep { to { transform: translateX(130%); } }

/* Chrome dots boot ONCE during the entrance (infinite pulsing reads casino).
   .shot-url is the 4th span; nth-of-type(1..3) are the dots. */
@keyframes dot-blink {
  from { opacity: 0; transform: scale(0.3); }
  62%  { opacity: 1; transform: scale(1.25); }
  to   { opacity: 1; transform: scale(1); }
}
.shot-section .shot-dot { animation: dot-blink 700ms var(--ease-out) backwards; }
.shot-section .shot-dot:nth-of-type(1) { animation-delay: 1500ms; }
.shot-section .shot-dot:nth-of-type(2) { animation-delay: 1650ms; }
.shot-section .shot-dot:nth-of-type(3) { animation-delay: 1800ms; }

/* ─── Motion: staggered child reveals (bold) ── */
/* Keyframes (not transition-delays) so reveal delays never pollute the hover
   transitions on the same elements. Triggered by the existing .in-view class. */
@keyframes reveal-bold {
  from { opacity: 0; transform: translate(var(--slide-x, 0px), var(--rise, 32px)) scale(0.96); }
  to   { opacity: 1; transform: translate(0, 0) scale(1); }
}
.in-view :is(.q-cell, .result-item, .price-card),
.in-view .replaces-pills .pill,
.wedge-row.in-view > * {
  animation: rise-in var(--t-slow) var(--ease-out) backwards;
  animation-delay: calc(var(--stagger-base, 90ms) + var(--stagger-i, 0) * var(--stagger-step, 70ms));
}
/* Bold targets swap keyframe + easing; equal specificity, later wins. */
.in-view .price-card,
.wedge-row.in-view > * {
  animation-name: reveal-bold;
  animation-duration: 640ms;
  animation-timing-function: var(--ease-spring);
}
.wedge-row.in-view > .shot-frame { animation-timing-function: var(--ease-spring-soft); }  /* overshoot shrinks as size grows */
/* sibling position → --stagger-i */
:is(.q-strip, .result-grid, .replaces-pills, .pricing-grid, .wedge-row) > :nth-child(2) { --stagger-i: 1; }
:is(.q-strip, .result-grid, .replaces-pills, .pricing-grid) > :nth-child(3)             { --stagger-i: 2; }
:is(.q-strip, .pricing-grid) > :nth-child(4)                                            { --stagger-i: 3; }
/* per-container tuning */
.q-strip        { --rise: 0px; }  /* cells share 1px seams — fade only, a rise would shear them */
.replaces-pills { --stagger-step: 50ms; --rise: 6px; }
.result-grid    { --rise: 18px; }
.pricing-grid   { --stagger-step: 80ms; --rise: 28px; }
.wedge-row      { --stagger-base: 0ms; --stagger-step: 90ms; }
/* Directional slides keyed to the VISUAL side (.reverse flips via order) */
.wedge-row > .wedge, .wedge-row > .shot-frame { --rise: 22px; }
.wedge-row:not(.reverse) > .wedge      { --slide-x: -36px; }
.wedge-row:not(.reverse) > .shot-frame { --slide-x: 36px; }
.wedge-row.reverse > .wedge            { --slide-x: 36px; }
.wedge-row.reverse > .shot-frame       { --slide-x: -36px; }

/* Section titles: clip-path wipe, keyed to the element that actually carries
   the hidden state (the wedges head is gated separately from its section). */
@keyframes title-wipe {
  from { opacity: 0; clip-path: inset(-10% 100% -10% 0); transform: translateY(12px); }
  to   { opacity: 1; clip-path: inset(-10% -5% -10% 0); transform: translateY(0); }
}
:is(main > section.in-view:not(.wedges-section), .wedges-section .section-head.in-view) .section-title {
  animation: title-wipe 760ms var(--ease-out) 120ms backwards;
}

/* ─── Motion: hover micro-interactions ──────── */
.topnav a { transition: color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast); }
.topnav a:hover { box-shadow: inset 0 0 0 1px var(--border-2); }
.q-cell { transition: background var(--t-fast); }
.q-num  { transition: color var(--t-med) var(--ease-out); }
.q-cell:hover { background: var(--surface-2); }
.q-cell:hover .q-num { color: var(--accent); }

/* Transform lifts gated to real pointers — :hover sticks after tap on touch */
@media (hover: hover) and (pointer: fine) {
  .btn {
    transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast),
                color var(--t-fast), transform var(--t-fast) var(--ease-out),
                box-shadow var(--t-med) var(--ease-out);
  }
  .btn:hover { transform: translateY(-1px); }
  .btn svg { transition: transform var(--t-fast) var(--ease-out); }
  .btn:hover svg { transform: translateX(2px); }
  .btn.primary:hover {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.10) inset,
                0 0 0 1px rgba(119, 166, 206, 0.45),
                0 4px 24px rgba(119, 166, 206, 0.28);
  }
  .btn:active { transform: translateY(1px); }  /* must follow .btn:hover — equal specificity */

  /* Shine sweep: own box-shadow is NOT clipped by own overflow */
  .btn { position: relative; overflow: hidden; }
  .btn::after {
    content: ""; position: absolute; top: -20%; bottom: -20%; left: 0; width: 36%; pointer-events: none;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-160%) skewX(-16deg);
  }
  .btn:hover::after { animation: btn-shine 640ms var(--ease-out); }
  @keyframes btn-shine { to { transform: translateX(420%) skewX(-16deg); } }

  /* Cards: lift + border brighten only. The 60-80px glow shadows stay static —
     transitioning them repaints card + shadow margin every frame. */
  .wedge.toned-card, .price-card {
    transition: transform var(--t-med) var(--ease-out), border-color var(--t-med);
  }
  .wedge.toned-card:hover, .price-card:hover { transform: translateY(-4px); }
  .wedge--xl.tone-accent:hover { border-color: rgba(119, 166, 206, 0.55); }
  .wedge--xl.tone-human:hover  { border-color: rgba(1, 178, 249, 0.48); }
  .price-card:not(.featured):hover { border-color: var(--border-3); }
  .price-card.featured:hover { border-color: rgba(119, 166, 206, 0.55); }
  .price-card.tone-good:hover { border-color: rgba(76, 183, 130, 0.5); }  /* after :not(.featured) — order decides */

  /* Tint bloom: intensity via pseudo OPACITY, never box-shadow transitions.
     Base 0.72 only under this media — touch devices keep the full tint. */
  .toned-card::before { opacity: 0.72; transition: opacity var(--t-med) var(--ease-out); }
  .toned-card:hover::before { opacity: 1; }

  /* Cursor spotlight: pre-painted disc moved by transform (compositor-only —
     never move a gradient origin, that repaints the card every frame).
     isolation + z-index:-1 ⇒ above the card's background, below ALL content. */
  .wedge.toned-card, .price-card { isolation: isolate; }
  .price-card { overflow: hidden; }  /* .toned-card already clips */
  .wedge.toned-card::after, .price-card::after {
    content: ""; position: absolute; left: -220px; top: -220px;
    width: 440px; height: 440px; border-radius: 50%; z-index: -1; pointer-events: none;
    background: radial-gradient(closest-side, var(--spot, rgba(119, 166, 206, 0.10)), transparent);
    transform: translate(var(--mx, 0px), var(--my, 0px));
    opacity: 0; transition: opacity var(--t-med) var(--ease-out);
  }
  .wedge--xl.tone-human::after { --spot: rgba(1, 178, 249, 0.09); }
  .price-card.tone-good::after { --spot: rgba(76, 183, 130, 0.10); }
  .is-lit::after { opacity: 1; }

  /* transform in the list = damping for the JS tilt (retargeting transition
     follows the pointer smoothly and eases back when the inline style clears) */
  .shot-frame { transition: border-color var(--t-med), transform 260ms var(--ease-out); }
  .shot-frame:hover { border-color: var(--border-3); }

  .footer-nav a, .footer-nav button { transition: color var(--t-fast), transform var(--t-fast) var(--ease-out); }
  .footer-nav a:hover, .footer-nav button:hover { transform: translateX(2px); }
}

/* ─── Motion: ambient ───────────────────────── */
/* Wrapped in no-preference so reduced motion opts out by construction. */
@media (prefers-reduced-motion: no-preference) {
  /* Oversized + transform-only: compositor-driven, no repaint, edges never show. */
  body::before { inset: -18%; will-change: transform; animation: ambient-drift 50s ease-in-out infinite alternate; }
  @keyframes ambient-drift {
    from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
    to   { transform: translate3d(1.5%, 1%, 0)  scale(1.06); }
  }

  /* Hero frame glow breathes; scoped to the hero — promoting all 7 frames
     (or the section-spanning .wedges-section::before) would pin huge GPU layers. */
  .shot-section .shot-frame::before { animation: ambient-breathe 18s ease-in-out infinite alternate; }
  @keyframes ambient-breathe {
    from { opacity: 0.55; }
    to   { opacity: 1; }
  }

  /* Headline gradient pan. Re-declaring the background shorthand resets
     background-clip, so the text clip MUST be restated here. */
  .hero h1 .grad {
    background: linear-gradient(120deg, #B4D2EA 0%, #77A6CE 50%, #B4D2EA 100%); /* 3rd stop: seamless alternate loop */
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: grad-pan 9s ease-in-out infinite alternate;
  }
  @keyframes grad-pan {
    from { background-position: 0% 50%; }
    to   { background-position: 100% 50%; }
  }

  /* Aurora: opacity bloom on load, then independent drifts. 34/27/41s are
     non-harmonic so the composition never visibly loops; drift's from-state
     equals base, so its delay needs no fill. */
  .hero-aurora .blob { animation: aurora-bloom 1100ms var(--ease-out) backwards, blob-drift 34s ease-in-out 1.1s infinite alternate; }
  .b2 { animation-delay: 140ms, 1.1s; animation-duration: 1100ms, 27s; }
  .b3 { animation-delay: 280ms, 1.1s; animation-duration: 1100ms, 41s; }
  @keyframes aurora-bloom { from { opacity: 0; } }
  @keyframes blob-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(4vw, 3vw, 0) scale(1.1); }
  }
}

/* ─── Motion: topbar accent line ────────────── */
.topbar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(119, 166, 206, 0.55) 35%, rgba(1, 178, 249, 0.45) 65%, transparent);
  opacity: 0; transition: opacity var(--t-slow) var(--ease-out);
}
.topbar.scrolled::after { opacity: 1; }

/* ─── Motion: scroll parallax ───────────────── */
/* Progressive: Chrome/Edge 115+, Safari 26+; others get the static layout.
   Entrance animates the FRAME, parallax the IMG — different elements, no
   conflict. Individual scale/translate properties: no CLS, no shorthand
   collision. 5% of own height ⇒ edge safety scales with the image; 1.13
   buys 6.5% per side. Hero img deliberately excluded (carries tilt-in). */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .wedge-row .shot-frame img {
      scale: 1.13;
      animation: parallax-y linear both;
      animation-timeline: view();  /* MUST follow the shorthand — it resets timeline */
      animation-range: cover 0% cover 100%;
    }
    @keyframes parallax-y {
      from { translate: 0 min(5%, 24px); }
      to   { translate: 0 max(-5%, -24px); }
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html, body { scroll-behavior: auto; }
  html.reveal main > section { transition: none; }
  html.reveal main > section:not(.in-view):not(.hero):not(.shot-section):not(.wedges-section) { opacity: 1; transform: none; }
  html.reveal :is(.wedge-row, .wedges-section .section-head):not(.in-view) { opacity: 1; }
  .dot.pulse { animation: none; }
  /* Hidden states live only in from{} frames, so animation:none = fully visible.
     (.shot-frame::after's base state is parked off-canvas — correctly invisible.)
     Parallax/aurora-drift/grad-pan are constructively gated (no-preference
     wrappers); tilt/count-up are JS-gated; the spotlight tracks the user's own
     pointer (affordance, not autonomous motion) and stays. */
  .hero .eyebrow, .hero h1 .w, .hero .lede, .hero-cta .btn,
  .shot-section .shot-frame, .shot-section .shot-frame::after, .shot-section .shot-dot,
  .wedges-section .section-head.in-view,
  .in-view :is(.q-cell, .result-item, .price-card),
  .in-view .replaces-pills .pill,
  .wedge-row.in-view > *,
  :is(main > section.in-view:not(.wedges-section), .wedges-section .section-head.in-view) .section-title,
  .btn:hover::after { animation: none; }
  /* Movement off; color/border hover feedback stays (reduced motion ≠ reduced affordance) */
  .btn:hover, .btn:hover svg, .btn:active,
  .wedge.toned-card:hover, .price-card:hover, .footer-nav a:hover, .footer-nav button:hover { transform: none; }
}

@media print {
  main > section, .wedge-row, .wedges-section .section-head { opacity: 1 !important; transform: none !important; }
  .hero h1 .w, .hero .eyebrow, .section-title { clip-path: none !important; filter: none !important; opacity: 1 !important; transform: none !important; }
  .hero-aurora { display: none; }
}

/* ─── Responsive ────────────────────────────── */
@media (max-width: 960px) {
  .hero h1 { font-size: 48px; }
  .topnav { display: none; }
  .section-title { font-size: 44px; }
  .wedge .w-title { font-size: 24px; }
  .wedge-row { grid-template-columns: 1fr; gap: 18px; }
  .wedge-row.reverse .wedge { order: 0; }
  /* no sideways slides in single column — :not(#_) pads specificity above the
     directional :not(.reverse)/.reverse rules */
  .wedge-row:not(#_) > .wedge, .wedge-row:not(#_) > .shot-frame { --slide-x: 0px; --rise: 26px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .q-strip { grid-template-columns: repeat(2, 1fr); }
  .q-cell:nth-child(odd) { border-left: 0; }
  .q-cell:nth-child(n+3) { border-top: 1px solid var(--border); }
}

@media (max-width: 720px) {
  main > section.shell { padding-top: 60px; padding-bottom: 60px; }
  main > section.hero { padding-top: 60px; padding-bottom: 16px; }
  .shell { padding: 0 18px; }
  .topbar-inner { padding: 0 18px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .prob-cols { grid-template-columns: 1fr; }
  .prob-col:first-child { padding-right: 0; padding-bottom: 28px; }
  .prob-col:last-child { padding-left: 0; padding-top: 28px; border-left: 0; border-top: 1px solid var(--border); }
  .result-block { flex-direction: column; align-items: flex-start; gap: 18px; }
  .result-grid { flex-direction: column; gap: 14px; }

  .hero h1 { font-size: 36px; line-height: 1.08; }
  .hero .lede { font-size: 15.5px; }
  .section-title { font-size: 32px; }
  .section-title br { display: none; }
  .wedge .w-title { font-size: 22px; }
  .wedge--xl { padding: 26px 22px; }

  .q-strip { grid-template-columns: 1fr; }
  .q-cell { border-left: 0; border-top: 1px solid var(--border); padding: 18px 20px; }
  .q-cell:first-child { border-top: 0; }

  .site-footer { padding: 36px 18px; }
  .footer-cols { gap: 48px; }
  .faq-q { font-size: 15.5px; padding: 18px 2px; }
  .faq-a { font-size: 14.5px; padding: 0 6px 20px 2px; }
}

/* ─── FAQ ─────────────────────────────────────── */
.faq-list { margin-top: 10px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 4px;
  font-size: 17px; font-weight: 600; color: var(--text);
  transition: color var(--t-fast);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: ""; flex: none; width: 12px; height: 12px; margin-right: 2px;
  background:
    linear-gradient(var(--text-3), var(--text-3)) center / 12px 2px no-repeat,
    linear-gradient(var(--text-3), var(--text-3)) center / 2px 12px no-repeat;
  transition: transform var(--t-med) var(--ease-out);
}
.faq-q:hover { color: var(--accent); }
.faq-item[open] > .faq-q { color: var(--accent); }
.faq-item[open] > .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 40px 24px 4px;
  max-width: 780px;
  color: var(--text-2); font-size: 15px; line-height: 1.65;
}
.faq-a p { margin: 0; }
