/* ============================================================
   GRACIA STUDIO — 2026 site design system
   Dark navy ink · liquid chrome · signal blue.
   Mobile-first. One stylesheet for every page.
   ============================================================ */

:root {
  --ink: #050505;
  --ink-2: #0c0c0e;
  --ink-3: #151518;
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(214, 181, 111, .38);
  --text: #f4f1ea;
  --muted: #a9a59d;
  --faint: #7b776f;
  --signal: #d6b56f;
  --signal-2: #e2c589;
  --pulse: #f3dfae;
  --danger: #ff7b72;
  --ok: #d6b56f;
  --chrome: linear-gradient(180deg, #fff6df 0%, #ecd08a 34%, #a47c33 50%, #ffeec4 64%, #c9a35c 100%);
  --silver: linear-gradient(180deg, #ffffff 0%, #d9dde6 38%, #8f95a5 52%, #f6f7fa 66%, #bcc1cd 100%);

  --font-display: "Bricolage Grotesque", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  --radius: 20px;
  --radius-s: 12px;
  --pad: clamp(1.1rem, 4vw, 3rem);
  --max: 1180px;
  --header-h: 64px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: .6s;

  /* aliases used by the chat widget + older components */
  --bg: var(--ink);
  --fg: var(--text);
  --accent: var(--signal);
  --accent-dim: var(--signal-2);
  --accent-ink: #1a1408;
  --surface: var(--ink-2);
  --surface-2: var(--ink-3);
  --fs-mono: clamp(.66rem, .58rem + .3vw, .76rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; min-width: 320px;
  background: var(--ink); color: var(--text);
  font-family: var(--font-body); font-size: 1rem; line-height: 1.55;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body::before {
  /* fine film grain, sits above everything but never intercepts input */
  content: ""; position: fixed; inset: -50%; z-index: 9999; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}
img, video, canvas, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
[hidden] { display: none !important; }
::selection { background: var(--signal); color: #1a1408; }
:focus-visible { outline: 2px solid var(--pulse); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 10000; padding: .7rem 1rem; background: var(--signal); color: #1a1408; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 1rem; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: var(--fs-mono); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--signal-2);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pulse); box-shadow: 0 0 12px var(--pulse); flex: none; }
.display {
  font-family: var(--font-display); font-weight: 600; font-variation-settings: "opsz" 96;
  letter-spacing: -.035em; line-height: .98; text-wrap: balance;
}
.display--xl { font-size: clamp(2.5rem, 1.1rem + 5.4vw, 4.6rem); }
.display--l { font-size: clamp(2.1rem, 1.2rem + 3.6vw, 4rem); letter-spacing: -.03em; line-height: 1.02; }
.display--m { font-size: clamp(1.55rem, 1.2rem + 1.6vw, 2.4rem); letter-spacing: -.025em; line-height: 1.08; }
.display--s { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); letter-spacing: -.02em; line-height: 1.15; font-weight: 600; }
.chrome {
  background: var(--chrome); -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}
.lede { font-size: clamp(1.05rem, .95rem + .5vw, 1.3rem); line-height: 1.5; color: var(--muted); max-width: 58ch; text-wrap: pretty; }
.lede strong { color: var(--text); font-weight: 600; }
.body { color: var(--muted); max-width: 62ch; text-wrap: pretty; }
.body a, .lede a { color: var(--text); border-bottom: 1px solid var(--line-2); transition: border-color .2s; }
.body a:hover, .lede a:hover { border-color: var(--pulse); }
.mono { font-family: var(--font-mono); font-size: var(--fs-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: .8rem 1.35rem; border-radius: 100px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; letter-spacing: -.005em; line-height: 1.1;
  color: var(--text); border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03);
  transition: transform .35s var(--ease), background .25s, border-color .25s, color .25s, box-shadow .35s;
  white-space: nowrap; cursor: pointer; text-decoration: none;
}
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); border-color: rgba(214, 181, 111, .5); background: rgba(255, 255, 255, .06); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  color: #1a1408; border-color: transparent;
  background: linear-gradient(180deg, #f3dcab 0%, #d6b56f 55%, #b8923e 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .35) inset, 0 -1px 0 rgba(0, 0, 0, .25) inset, 0 10px 30px -10px rgba(214, 181, 111, .8);
}
.btn--primary:hover { background: linear-gradient(180deg, #f8e6bf 0%, #e2c589 55%, #c59f4b 100%); box-shadow: 0 1px 0 rgba(255, 255, 255, .4) inset, 0 -1px 0 rgba(0, 0, 0, .25) inset, 0 16px 40px -10px rgba(214, 181, 111, .9); }
.btn--chrome {
  color: #1a1408; border-color: transparent; background: var(--chrome);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset, 0 10px 30px -12px rgba(255, 255, 255, .5);
}
.btn--chrome:hover { background: linear-gradient(180deg, #fff 0%, #e2e7f4 40%, #a6b0cc 55%, #fff 70%, #ccd4e8 100%); }
.btn--lg { min-height: 56px; padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn--xl { min-height: 66px; padding: 1.15rem 2.3rem; font-size: 1.14rem; border-radius: 100px; }
.btn--xl .btn__tag { font-size: .8rem; }
.btn--sm { min-height: 40px; padding: .55rem 1rem; font-size: .88rem; }
.btn--block { width: 100%; }
.btn .btn__tag { font-family: var(--font-mono); font-size: .72rem; font-weight: 500; letter-spacing: .04em; opacity: .85; padding-left: .5rem; margin-left: .2rem; border-left: 1px solid rgba(0, 0, 0, .25); }
.btn:not(.btn--primary):not(.btn--chrome) .btn__tag { border-left-color: rgba(255, 255, 255, .3); }
.btn[aria-busy="true"], .btn:disabled { opacity: .7; cursor: wait; pointer-events: none; }
.link { display: inline-flex; align-items: center; gap: .4rem; color: var(--text); font-weight: 600; font-size: .95rem; border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.link:hover { color: var(--pulse); }
.link:hover svg { transform: translateX(3px); }

/* ---------- Layout ---------- */
.wrap { width: min(var(--max), calc(100% - 2 * var(--pad))); margin-inline: auto; }
.section { position: relative; padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.section--tight { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section__head { display: grid; gap: 1rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); max-width: 760px; }
.section__head .lede { margin-top: .35rem; }
.section__head--split { max-width: none; grid-template-columns: 1fr; align-items: end; }
.section__head--center { justify-items: center; text-align: center; margin-inline: auto; }
.section__head--center .lede { margin-inline: auto; }
@media (min-width: 900px) { .section__head--split { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 3rem; } }
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }

/* ---------- Ambient network canvas ---------- */
.page { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled { background: rgba(5, 5, 5, .72); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-color: var(--line); }
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--text); }
.brand__mark { width: 34px; height: 34px; flex: none; mix-blend-mode: screen; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: .01em; line-height: 1; white-space: nowrap; }
.brand__name small { display: block; margin-top: .22rem; font-family: var(--font-mono); font-weight: 500; font-size: .58rem; letter-spacing: .32em; color: var(--signal-2); }
.nav-links { display: none; align-items: center; gap: .1rem; }
.nav-links a { padding: .55rem .8rem; border-radius: 100px; color: var(--muted); font-weight: 500; font-size: .92rem; white-space: nowrap; transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav-cta { display: none; align-items: center; gap: .5rem; }
.nav-burger {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 100px;
  border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); color: var(--text);
}
.nav-burger span { position: relative; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .35s var(--ease), background .2s; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .35s var(--ease), top .35s var(--ease); }
.nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }
.nav-burger[aria-expanded="true"] span { background: transparent; }
.nav-burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
@media (min-width: 900px) {
  .nav-links, .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}
@media (min-width: 900px) and (max-width: 1139px) {
  .nav-cta .btn:not(.btn--primary) { display: none; }
  .nav-links a { padding-inline: .55rem; font-size: .88rem; }
  .brand__name small { display: none; }
}
.nav-sheet {
  position: fixed; inset: 0; z-index: 890; display: grid; grid-template-rows: 1fr auto;
  padding: calc(var(--header-h) + 1.5rem) var(--pad) max(1.5rem, env(safe-area-inset-bottom));
  background: rgba(5, 5, 5, .92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.nav-sheet.is-open { opacity: 1; visibility: visible; }
.nav-sheet__links { display: grid; gap: .25rem; align-content: start; }
.nav-sheet__links a { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 6vw, 2.2rem); letter-spacing: -.02em; color: var(--text); transform: translateY(12px); opacity: 0; transition: transform .5s var(--ease), opacity .5s; }
.nav-sheet__links a small { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.nav-sheet.is-open .nav-sheet__links a { transform: none; opacity: 1; }
.nav-sheet.is-open .nav-sheet__links a:nth-child(2) { transition-delay: .05s; }
.nav-sheet.is-open .nav-sheet__links a:nth-child(3) { transition-delay: .1s; }
.nav-sheet.is-open .nav-sheet__links a:nth-child(4) { transition-delay: .15s; }
.nav-sheet.is-open .nav-sheet__links a:nth-child(5) { transition-delay: .2s; }
.nav-sheet.is-open .nav-sheet__links a:nth-child(6) { transition-delay: .25s; }
.nav-sheet__foot { display: grid; gap: .6rem; }
.nav-sheet__foot .mono { text-align: center; }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
/* the backdrop pins for half a screen while the copy scrolls up over it, so the scroll interaction is actually visible */
.hero { position: relative; min-height: 100svh; padding-top: calc(var(--header-h) + 1.5rem); display: grid; align-items: center; overflow: clip; }
.hero__grid { display: grid; gap: 1.5rem; align-items: center; }
/* Hero backdrop: the studio-window photograph. It is pushed right so the skyline and
   sunburst sit behind the empty half of the grid and the copy keeps the dark left
   side to itself; the scrim then guarantees contrast rather than relying on luck. */
.hero::before, .hero::after { content: ""; position: absolute; pointer-events: none; }
/* Fills the hero edge to edge — no letterbox bands. The picture is 2.5:1 against a
   taller hero, so cover trims the sides; how much depends on the viewport, and a wide
   monitor loses far less than a narrow tall one. No brightness filter: only a
   left-weighted scrim so the small copy has something to sit on while the city and
   sunset keep full strength. */
.hero::before {
  inset: 0; top: 0; translate: none; aspect-ratio: auto; z-index: 0;
  background: url("/assets/img/hero-office-b.jpg?v=20260916zg") right center / cover no-repeat;
  -webkit-mask-image: none; mask-image: none;
}
.hero::after {
  inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .97) 0%, rgba(5, 5, 5, .92) 24%, rgba(5, 5, 5, .7) 44%, rgba(5, 5, 5, .22) 76%, rgba(5, 5, 5, .06) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, .5) 0%, rgba(5, 5, 5, 0) 22%, rgba(5, 5, 5, 0) 74%, rgba(5, 5, 5, .55) 94%, var(--ink) 100%);
}
.hero__grid { position: relative; z-index: 2; }
@media (max-width: 899px) {
  /* phones get the full-bleed crop back: a 2.5:1 band across a 375px screen would
     be a 150px sliver, so here the picture fills the hero and the scrim does the work */
  .hero::before {
    inset: 0; top: 0; translate: none; aspect-ratio: auto;
    background-image: url("/assets/img/hero-office-b-sm.jpg?v=20260916zb");
    background-size: cover; background-position: 72% center;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero::after { background: linear-gradient(180deg, rgba(5, 5, 5, .86) 0%, rgba(5, 5, 5, .74) 40%, rgba(5, 5, 5, .88) 76%, var(--ink) 100%); }
}
.hero__copy { display: grid; gap: 1.25rem; text-align: center; justify-items: center; }
.hero__copy .display--xl { max-width: 12ch; }
.hero__copy .lede { max-width: 40ch; }
.hero__actions { display: grid; gap: .6rem; width: 100%; max-width: 420px; margin-top: .4rem; }
.hero__proof { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.2rem; margin-top: .5rem; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: var(--faint); }
.hero__note { margin-top: .2rem; max-width: 44ch; color: var(--muted); font-size: .95rem; line-height: 1.5; text-wrap: pretty; }
.hero__proof span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__proof i { width: 5px; height: 5px; border-radius: 50%; background: var(--pulse); }
@keyframes scrollcue { 0% { transform: scaleY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }
@media (min-width: 900px) {
  .hero { padding-top: var(--header-h); }
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__copy { text-align: left; justify-items: start; }
  .hero__copy .display--xl { max-width: none; font-size: clamp(3rem, 1rem + 4vw, 4.4rem); }
  .hero__copy .lede { max-width: 46ch; }
  .hero__actions { display: flex; flex-wrap: wrap; width: auto; max-width: none; }
  .hero__proof { justify-content: flex-start; }
}
/* headline lines enter one by one */
.hero__copy > * { opacity: 0; transform: translateY(18px); animation: rise .9s var(--ease) forwards; }
.hero__copy > *:nth-child(1) { animation-delay: .15s; }
.hero__copy > *:nth-child(2) { animation-delay: .3s; }
.hero__copy > *:nth-child(3) { animation-delay: .5s; }
.hero__copy > *:nth-child(4) { animation-delay: .65s; }
.hero__copy > *:nth-child(5) { animation-delay: .8s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Marquee (tools strip) ---------- */
/* tools belt */
.marquee { --logo-gap: clamp(2.6rem, 4.4vw, 4.4rem); position: relative; overflow: hidden; padding-block: 1.2rem 2.3rem; }
.marquee::before { content: ""; position: absolute; inset: 30% 0 0; background: radial-gradient(55% 90% at 50% 70%, rgba(214, 181, 111, .11), transparent 70%); pointer-events: none; }
.marquee__cap { position: relative; display: flex; align-items: center; justify-content: center; gap: clamp(.8rem, 2vw, 1.4rem); margin: 0 auto 1.7rem; padding-inline: clamp(1rem, 5vw, 4rem); text-align: center; text-wrap: balance; font-family: var(--font-display); font-weight: 600; font-size: .84rem; letter-spacing: .13em; text-transform: uppercase; line-height: 1.35; font-variation-settings: 'opsz' 12; color: var(--signal); }
.marquee__cap span { flex: 0 1 auto; min-width: 0; text-wrap: balance; }
@media (min-width: 760px) { .marquee__cap span { flex: 0 0 auto; white-space: nowrap; } }
.marquee__cap::before, .marquee__cap::after { content: ""; flex: 0 1 10rem; min-width: 1.25rem; height: 1px; background: linear-gradient(90deg, transparent, rgba(214, 181, 111, .6)); }
@media (max-width: 640px) { .marquee__cap { letter-spacing: .11em; font-size: .8rem; padding-inline: 1.5rem; } .marquee__cap::before, .marquee__cap::after { display: none; } }
.marquee__cap::after { background: linear-gradient(270deg, transparent, rgba(214, 181, 111, .6)); }
.belt__stage { position: relative; display: grid; gap: 1.45rem; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.belt__row { overflow: hidden; }
.belt__track { display: flex; gap: var(--logo-gap); width: max-content; will-change: transform; }
.belt__row--alt .belt__track { transform: translateX(-38%); }
.logos { display: flex; align-items: center; gap: var(--logo-gap); margin: 0; padding: 0; list-style: none; }
.logos li { display: flex; align-items: center; flex: none; will-change: transform, opacity; }
.logo { display: block; width: auto; height: var(--lh, 30px); transition: filter .35s var(--ease); }
@media (hover: hover) { .logos li:hover .logo { filter: brightness(1.12) drop-shadow(0 0 14px rgba(214, 181, 111, .35)); } }
@media (max-width: 640px) { .marquee { --logo-gap: 1.9rem; } .belt__stage { gap: 1.15rem; } .logo { height: calc(var(--lh, 30px) * .82); } }
/* /tools belt */

/* ---------- Cards ---------- */
.card {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: border-color .35s, transform .5s var(--ease), box-shadow .5s;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent); opacity: .7; }
.card::after { content: ""; position: absolute; inset: -1px; z-index: -1; opacity: 0; transition: opacity .4s; background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(214, 181, 111, .18), transparent 60%); }
.card:hover { border-color: var(--line-2); }
.card:hover::after { opacity: 1; }
.card--feature { background: linear-gradient(160deg, rgba(214, 181, 111, .16), rgba(255, 255, 255, .02) 55%); border-color: rgba(214, 181, 111, .35); }

/* Pillars */
.pillars { display: grid; gap: 1rem; }
.pillar { display: grid; gap: 1rem; align-content: start; min-height: 100%; }
.pillar__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)); box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset; }
.pillar__icon svg { width: 22px; height: 22px; stroke: var(--pulse); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pillar__list { display: grid; gap: .45rem; margin-top: .25rem; }
.pillar__list li { position: relative; padding-left: 1.25rem; color: var(--muted); font-size: .95rem; line-height: 1.45; }
.pillar__list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 1px; background: var(--signal-2); }
.pillar__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: .75rem; }
.pillar__price { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.pillar__price strong { color: var(--text); font-weight: 500; }
@media (max-width: 899px) {
  .pillars { grid-auto-flow: column; grid-auto-columns: min(84vw, 360px); overflow-x: auto; scroll-snap-type: x mandatory; padding-inline: var(--pad); margin-inline: calc(-1 * var(--pad)); padding-bottom: .5rem; scrollbar-width: none; }
  .pillars::-webkit-scrollbar { display: none; }
  .pillars > * { scroll-snap-align: center; }
  .pillars::after { content: ""; width: 1px; }
}
@media (min-width: 900px) { .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1180px) { .pillar__list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.4rem; } .pillar__list li { padding-right: .5rem; } }
.swipe-hint { display: flex; justify-content: center; gap: .4rem; margin-top: .6rem; }
.swipe-hint i { width: 18px; height: 3px; border-radius: 3px; background: var(--line-2); transition: background .3s, width .3s; }
.swipe-hint i.is-on { background: var(--pulse); width: 28px; }
@media (min-width: 900px) { .swipe-hint { display: none; } }

/* Assessment banner */
.banner { display: grid; gap: 1.5rem; padding: clamp(1.6rem, 4vw, 3rem); }
.banner__stages { display: grid; gap: .8rem; }
.stage { display: grid; grid-template-columns: 40px 1fr; gap: .9rem; align-items: start; align-content: start; }
.stage .stage__n { width: 40px; height: 40px; display: grid; place-items: center; margin: 0; border-radius: 50%; border: 1px solid rgba(214, 181, 111, .75); font-family: var(--font-mono); font-size: .8rem; font-weight: 600; line-height: 1; color: var(--signal-2); background: radial-gradient(circle at 50% 35%, rgba(214, 181, 111, .22), rgba(214, 181, 111, .06) 70%); box-shadow: 0 0 18px rgba(214, 181, 111, .16), inset 0 0 0 1px rgba(5, 5, 5, .4); }
.stage strong { display: block; font-weight: 600; }
.stage span { display: block; color: var(--muted); font-size: .95rem; }
.banner__covers { display: grid; gap: .7rem; margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.banner__covers .pillar__list li { font-size: .92rem; }
.banner__cta .plan__note .link { font-size: .85rem; }
.banner__cta { display: grid; gap: .6rem; align-content: end; }
.banner--open { padding: 0; }
.banner--open .banner__cta { align-content: start; align-self: start; padding: clamp(1.4rem, 3vw, 1.9rem); }
@media (min-width: 900px) { .banner--open .banner__cta { position: sticky; top: calc(var(--header-h) + 1.25rem); } .banner--open { grid-template-columns: minmax(0, 1.3fr) minmax(300px, 380px); align-items: start; } }
.banner__price { display: flex; align-items: baseline; gap: .6rem; }
.banner__price .num { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 600; letter-spacing: -.04em; line-height: 1; }
.banner__price small { color: var(--muted); font-size: .85rem; }
@media (min-width: 900px) { .banner { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 3rem; } }

/* ---------- Assessment flow ---------- */
.flow__block { display: grid; gap: .85rem; margin-top: 1.7rem; padding-top: 1.35rem; border-top: 1px solid var(--line); }
.flow__block .body, .flow__close { max-width: none; }
.flow__block .mono { color: var(--signal); }
.steps3 { position: relative; display: grid; gap: .9rem; margin: .1rem 0 0; padding: 0; list-style: none; }
.steps3 .stage strong { font-size: 1rem; }
.steps3 .stage .stage__n { background: radial-gradient(circle at 50% 35%, rgba(214, 181, 111, .22), rgba(214, 181, 111, .06) 70%), var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.chips li { padding: .45rem .85rem; border-radius: 100px; border: 1px solid var(--line-2); background: rgba(214, 181, 111, .06); color: var(--text); font-size: .86rem; line-height: 1; }
.pillar__list--2 { grid-template-columns: 1fr; }
.flow__close { margin-top: 1.7rem; padding-top: 1.35rem; border-top: 1px solid var(--line); }
@media (min-width: 720px) {
  .steps3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
  .steps3::before { content: ""; position: absolute; left: 20px; right: 20px; top: 20px; height: 1px; background: linear-gradient(90deg, var(--signal), rgba(214, 181, 111, .15)); }
  .steps3 .stage { grid-template-columns: 1fr; gap: .85rem; }
  .steps3 .stage .stage__n { position: relative; }
  .pillar__list--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.5rem; }
}

/* ---------- Assessment stages (shared: About page uses the 2x2 variant) ---------- */
.assess__stages { position: relative; display: grid; gap: 1.75rem; margin: clamp(2rem, 5vw, 3.5rem) 0 0; padding: 1.6rem 0 0; list-style: none; border-top: 1px solid var(--line); }
.assess__stages::after { content: ""; position: absolute; left: 0; top: -1px; width: 100%; height: 1px; background: linear-gradient(90deg, var(--pulse), var(--signal), rgba(214, 181, 111, .2)); transform: scaleX(var(--p, 0)); transform-origin: left; box-shadow: 0 0 12px rgba(243, 223, 174, .35); }
.stage-x { display: grid; gap: .45rem; align-content: start; }
.stage-x__n { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 5vw, 3.8rem); letter-spacing: -.045em; line-height: 1; background: var(--chrome); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: .4rem; }
.stage-x__meta { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--signal); }
.stage-x h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); letter-spacing: -.02em; line-height: 1.18; }
.stage-x p { color: var(--muted); font-size: .95rem; line-height: 1.55; }
@media (min-width: 760px) {
  .assess__stages { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem; }
  .assess__stages--four { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 3.5rem; } /* 4 items read better 2x2 than 3+1 */
}
@media (prefers-reduced-motion: reduce) { .assess__stages::after { transform: none; } }

/* ---------- Assessment (homepage): copy + timeline beside a sample of the roadmap ----------
   The section's one object is the deliverable itself: page one of the roadmap deck, set in
   the pricing feature-card material. On desktop it stays put (sticky) while the three steps
   scroll past; the gold rules above each step and the payback bars in the document are drawn
   by scroll (--p from site.js). Phones read heading, document, steps, button, top to bottom. */
.assess { isolation: isolate; overflow: clip; }
.assess__glow { position: absolute; z-index: -1; pointer-events: none; inset: 0 -20% 0 auto; width: 80%; background: radial-gradient(48% 42% at 60% 42%, rgba(214, 181, 111, .2), transparent 70%); filter: blur(28px); }
.assess__grid { display: grid; gap: clamp(2rem, 5vw, 2.75rem); }
.assess__head { display: grid; gap: 1rem; max-width: 640px; }
.assess__head .lede { margin-top: .2rem; }

.assess__path { display: grid; }
.path__step { position: relative; display: grid; grid-template-columns: 3.4rem minmax(0, 1fr); grid-template-rows: auto auto auto; column-gap: .5rem; row-gap: .4rem; padding: 1.35rem 0 1.55rem; border-top: 1px solid var(--line); }
.path__step:last-child { padding-bottom: .4rem; }
.path__step::before { content: ""; position: absolute; left: 0; top: -1px; width: 100%; height: 1px; background: linear-gradient(90deg, var(--pulse), var(--signal), rgba(214, 181, 111, .2)); transform-origin: left; --sp: clamp(0, calc((var(--p, 0) - var(--i, 0) * .2) / .42), 1); transform: scaleX(var(--sp)); box-shadow: 0 0 12px rgba(243, 223, 174, .35); }
.path__n { grid-row: 1 / span 3; padding-top: .15rem; font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; letter-spacing: -.04em; line-height: 1; background: var(--chrome); -webkit-background-clip: text; background-clip: text; color: transparent; }
.path__meta { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--signal); }
.path__step h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 1.02rem + .5vw, 1.4rem); letter-spacing: -.02em; line-height: 1.18; text-wrap: balance; }
.path__step p { color: var(--muted); font-size: .95rem; line-height: 1.55; max-width: 50ch; text-wrap: pretty; }

.assess__buy { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }
.assess__buy .link--quiet { color: var(--faint); font-size: .85rem; font-weight: 400; }

/* the document */
.assess__doc { display: grid; gap: 1.1rem; margin: 0; }
.doc.card { padding: 0; box-shadow: 0 50px 100px -50px rgba(0, 0, 0, .95), 0 0 0 1px rgba(214, 181, 111, .1); }
.doc__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1.35rem; border-bottom: 1px solid rgba(214, 181, 111, .22); font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.doc__brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--text); white-space: nowrap; }
.doc__brand img { width: 18px; height: 18px; mix-blend-mode: screen; }
.doc__type { color: var(--faint); text-align: right; }
/* the visitor's own numbers: three sliders reusing the calculator field styles; every figure below them is live */
.doc__inputs { display: grid; gap: .8rem; padding: 1.05rem 1.35rem 1.15rem; border-bottom: 1px solid var(--line); }
.doc__inputs .mono { color: var(--signal-2); }
.doc__inputs .calc__inputs { gap: .65rem; }
.doc__inputs .field { gap: .15rem; }
.doc__inputs .field__row label { font-size: .86rem; line-height: 1.35; }
.doc__inputs .field__row output { font-size: .86rem; }
.doc__inputs .range { height: 26px; }
.doc__hero { display: grid; gap: .4rem; padding: 1.2rem 1.35rem .9rem; }
.doc__hero .mono { color: var(--signal-2); }
.doc__stat { font-family: var(--font-display); font-weight: 600; font-variation-settings: "opsz" 96; font-size: clamp(2.8rem, 2rem + 2.4vw, 4rem); letter-spacing: -.045em; line-height: .95; }
.doc__sub { color: var(--muted); font-size: .92rem; line-height: 1.5; max-width: 34ch; text-wrap: pretty; }
.doc__sub strong { color: var(--text); font-weight: 600; }
.doc__cap { display: block; padding: .2rem 1.35rem 0; color: var(--faint); }
.doc__rows { display: grid; padding: .2rem 1.35rem 0; }
.doc__row {
  position: relative; display: grid; grid-template-columns: 1.4rem minmax(0, 1fr) auto; grid-template-areas: "rank fix hrs" "rank bar effort";
  column-gap: .75rem; row-gap: .5rem; align-items: center; padding: .75rem 0; border-top: 1px solid var(--line);
  --rp: clamp(0, calc((var(--p, 0) - .1 - var(--i, 0) * .14) / .36), 1);
}
.doc__row:first-child { border-top: 0; }
.doc__rank { grid-area: rank; font-family: var(--font-mono); font-size: .7rem; color: var(--faint); }
.doc__fix { grid-area: fix; font-size: .93rem; font-weight: 500; color: var(--text); line-height: 1.35; text-wrap: pretty; }
.doc__to { color: var(--signal-2); padding: 0 .1em; }
.doc__hrs { grid-area: hrs; justify-self: end; font-family: var(--font-mono); font-size: .82rem; color: var(--text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.doc__hrs small { font-size: .64rem; color: var(--faint); }
.doc__track { grid-area: bar; display: block; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.doc__fill { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--pulse), var(--signal)); transform-origin: left; transform: scaleX(calc(var(--rp) * var(--w, 1))); }
.doc__effort { grid-area: effort; justify-self: end; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--signal-2); white-space: nowrap; }
.doc__effort--build { color: var(--faint); }
.doc__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .35rem; padding: .95rem 1.35rem 1.1rem; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.doc__stamp { display: inline-flex; align-items: center; gap: .45rem; padding: .38rem .7rem; border: 1px solid var(--line-2); border-radius: 100px; color: var(--signal-2); white-space: nowrap; }
.doc__stamp::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--pulse); box-shadow: 0 0 8px var(--pulse); }
.assess__note { color: var(--muted); font-size: .92rem; line-height: 1.55; padding-inline: .2rem; text-wrap: pretty; }
.assess__note strong { color: var(--text); }

@media (max-width: 520px) {
  /* header strip stacks: brand line, then the sample label, rather than breaking mid-phrase */
  .doc__bar { flex-wrap: wrap; row-gap: .45rem; }
  .doc__type { flex-basis: 100%; text-align: left; }
}
@media (max-width: 420px) {
  .doc__bar, .doc__inputs, .doc__hero, .doc__cap, .doc__rows, .doc__foot { padding-inline: 1.05rem; }
  .doc__foot { flex-wrap: wrap; }
}
@media (min-width: 900px) {
  .assess__grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 460px); grid-template-areas: "head doc" "path doc" "buy doc"; column-gap: clamp(2.5rem, 6vw, 6rem); row-gap: 2.25rem; align-items: start; }
  .assess__head { grid-area: head; }
  .assess__path { grid-area: path; }
  .assess__buy { grid-area: buy; }
  .assess__doc { grid-area: doc; position: sticky; top: calc(var(--header-h) + 1.5rem); }
  .assess__glow { inset: -10% -10% -10% auto; width: 62%; }
}
@media (min-width: 1180px) { .assess__grid { grid-template-columns: minmax(0, 1fr) 480px; } }
@media (prefers-reduced-motion: reduce) {
  .path__step::before { transform: none; }
  .doc__fill { transform: scaleX(var(--w, 1)); }
}

/* ---------- Services hero (homepage): full-bleed gold workflow loop ---------- */
/* the workflow loop fills this whole band edge to edge, so the section reads as its own block between the assessment and the handshake */
.services-hero { position: relative; overflow: clip; isolation: isolate; padding-block: clamp(5rem, 11vw, 8.5rem); border-bottom: 1px solid rgba(214, 181, 111, .18); background: linear-gradient(180deg, rgba(214, 181, 111, .07), rgba(214, 181, 111, .03) 50%, rgba(214, 181, 111, .07)); }
/* backdrop is a near-black plate with gold circuit traces and a chip along the bottom/right edge, so it anchors bottom-right and stays bright */
.services-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 100% 100%; opacity: .95; z-index: 0; }
.services-hero__shade { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(5, 5, 5, .08) 0%, rgba(5, 5, 5, .12) 60%, rgba(5, 5, 5, .3) 100%); }
.services-hero__inner { position: relative; z-index: 2; }
.services-hero .lede { color: #d8d4cb; }
.services-hero .way .body { color: #cfcbc2; }
.services-hero .way__list li { color: #cfcbc2; }
.services-hero .ways { border-top-color: rgba(255, 255, 255, .18); }
.services-hero .way + .way::before { background: rgba(255, 255, 255, .18); }
@media (min-width: 900px) { .services-hero { min-height: 92svh; display: grid; align-items: center; justify-items: center; } }
@media (max-width: 899px) { .services-hero__video { opacity: .85; object-position: 100% 100%; } .services-hero__shade { background: linear-gradient(180deg, rgba(5, 5, 5, .15) 0%, rgba(5, 5, 5, .28) 55%, rgba(5, 5, 5, .58) 100%); } }
@media (prefers-reduced-motion: reduce) { .services-hero__video { opacity: .9; } }

/* ---------- Two ways (homepage, open layout) ---------- */
.ways { position: relative; display: grid; gap: 2.6rem; margin-top: clamp(2rem, 5vw, 3.5rem); padding-top: 1.7rem; border-top: 1px solid var(--line); }
.ways::after { content: ""; position: absolute; left: 0; top: -1px; width: 100%; height: 1px; background: linear-gradient(90deg, var(--pulse), var(--signal), rgba(214, 181, 111, .2)); transform: scaleX(var(--p, 0)); transform-origin: left; box-shadow: 0 0 12px rgba(243, 223, 174, .35); }
.way { position: relative; display: grid; gap: .8rem; grid-template-rows: auto auto auto 1fr auto; align-content: start; }
/* Homepage only: those two cards lost their 01/02 numerals, so they have four
   children, not five. /about/ uses .way too with a different shape — leave it alone. */
.services-hero .way { grid-template-rows: auto auto 1fr auto; }
.way__n { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 5vw, 3.8rem); letter-spacing: -.045em; line-height: 1; background: var(--chrome); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: .2rem; }
.way .body { max-width: none; }
.way__list { display: grid; gap: .55rem .9rem; margin: .3rem 0 .2rem; padding: 0; list-style: none; align-self: start; }
.way__list li { position: relative; padding-left: 1.2rem; color: var(--muted); font-size: .95rem; line-height: 1.45; }
.way__list li::before { content: ""; position: absolute; left: 0; top: .66em; width: 8px; height: 1px; background: var(--signal-2); }
.way .link { justify-self: start; align-self: end; margin-top: .4rem; }
@media (min-width: 760px) {
  .ways { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(2.5rem, 6vw, 6rem); }
  .way + .way::before { content: ""; position: absolute; top: .4rem; bottom: .4rem; left: calc(-1 * clamp(2.5rem, 6vw, 6rem) / 2); width: 1px; background: var(--line); }
  .way__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .way__list--single { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { .ways::after { transform: none; } }

/* ---------- Process ---------- */
.process { position: relative; display: grid; gap: 1.25rem; }
.process::before { content: ""; position: absolute; left: 19px; top: 24px; bottom: 24px; width: 1px; background: var(--line); }
.process::after { content: ""; position: absolute; left: 19px; top: 24px; bottom: 24px; width: 1px; background: linear-gradient(180deg, var(--pulse), var(--signal)); transform-origin: top; transform: scaleY(var(--p, 0)); box-shadow: 0 0 12px rgba(243, 223, 174, .6); }
.step { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start; align-content: start; }
.step__n { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-2); background: var(--ink); font-family: var(--font-mono); font-size: .78rem; color: var(--pulse); position: relative; z-index: 1; }
.step__body { padding: .35rem 0 1rem; display: grid; gap: .4rem; }
.step__meta { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
@media (min-width: 900px) {
  .process { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
  .process::before, .process::after { left: 20px; right: 20px; top: 20px; bottom: auto; width: auto; height: 1px; }
  .process::after { transform-origin: left; transform: scaleX(var(--p, 0)); background: linear-gradient(90deg, var(--pulse), var(--signal)); }
  .process { grid-template-rows: auto auto auto auto; }
  .step { grid-template-columns: 1fr; grid-row: span 4; grid-template-rows: subgrid; gap: .4rem; }
  .step__body { display: contents; }
  .step__meta { margin-top: .95rem; }
}

/* ---------- Proof ---------- */
.proof { display: grid; gap: 1rem; }
@media (min-width: 900px) { .proof { grid-template-columns: repeat(12, 1fr); gap: 1.25rem; } .proof > .card:nth-child(1) { grid-column: span 7; } .proof > .card:nth-child(2) { grid-column: span 5; } .proof > .card:nth-child(3) { grid-column: span 12; } .proof__card--wide { grid-template-columns: minmax(0, 1fr) auto; column-gap: 2.5rem; align-items: center; } .proof__card--wide > .eyebrow, .proof__card--wide > h3, .proof__card--wide > .body { grid-column: 1; } .proof__card--wide > .body { max-width: 62ch; } .proof__card--wide > .proof__actions { grid-column: 2; grid-row: 1 / span 3; margin: 0; } }
.proof__card { display: grid; gap: .9rem; align-content: start; }
.proof__card .display--s { margin-top: .25rem; }
.proof__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .4rem; }
.phone-hero { display: grid; gap: .6rem; }
.phone-hero__num { font-family: var(--font-display); font-weight: 600; letter-spacing: -.03em; font-size: clamp(1.9rem, 6vw, 3rem); line-height: 1; }
.phone-hero__num a { color: var(--text); }
.live { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ok); }
.live i { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(214, 181, 111, .6); animation: livepulse 2s infinite; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(214, 181, 111, .6); } 70% { box-shadow: 0 0 0 9px rgba(214, 181, 111, 0); } 100% { box-shadow: 0 0 0 0 rgba(214, 181, 111, 0); } }
.chat-preview { display: grid; gap: .5rem; padding: 1rem; border-radius: 14px; background: rgba(5, 5, 5, .55); border: 1px solid var(--line); }
.chat-preview p { max-width: 88%; padding: .6rem .8rem; border-radius: 14px; font-size: .9rem; line-height: 1.4; opacity: 0; transform: translateY(6px); }
.chat-preview p.u { justify-self: end; background: var(--signal); color: #1a1408; border-bottom-right-radius: 4px; }
.chat-preview p.a { background: rgba(255, 255, 255, .07); color: var(--text); border-bottom-left-radius: 4px; }
.in .chat-preview p { animation: rise .6s var(--ease) forwards; }
.in .chat-preview p:nth-child(1) { animation-delay: .1s; }
.in .chat-preview p:nth-child(2) { animation-delay: .6s; }
.in .chat-preview p:nth-child(3) { animation-delay: 1.1s; }
.in .chat-preview p:nth-child(4) { animation-delay: 1.6s; }

/* ---------- Calculator ---------- */
.calc { display: grid; gap: 1.25rem; }
.calc__inputs { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.field__row label { color: var(--muted); font-size: .92rem; }
.field__row output { flex: none; white-space: nowrap; font-family: var(--font-mono); font-size: .95rem; color: var(--text); font-variant-numeric: tabular-nums; }
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 28px; background: transparent; margin: 0; cursor: pointer; }
.range::-webkit-slider-runnable-track { height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--pulse) 0, var(--signal) var(--v, 50%), rgba(255, 255, 255, .12) var(--v, 50%)); }
.range::-moz-range-track { height: 4px; border-radius: 4px; background: rgba(255, 255, 255, .12); }
.range::-moz-range-progress { height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--pulse), var(--signal)); }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; margin-top: -9px; border-radius: 50%; background: var(--chrome); border: 0; box-shadow: 0 2px 10px rgba(0, 0, 0, .5), 0 0 0 4px rgba(214, 181, 111, .25); }
.range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #e9edf9; border: 0; box-shadow: 0 2px 10px rgba(0, 0, 0, .5), 0 0 0 4px rgba(214, 181, 111, .25); }
.calc__out { display: grid; gap: .8rem; align-content: start; padding: clamp(1.2rem, 3vw, 1.8rem); border-radius: 16px; background: rgba(5, 5, 5, .55); border: 1px solid var(--line-2); }
.calc__big { font-family: var(--font-display); font-size: clamp(2.4rem, 8vw, 3.8rem); font-weight: 600; letter-spacing: -.04em; line-height: 1; }
.calc__line { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-top: 1px solid var(--line); font-size: .92rem; color: var(--muted); }
.calc__line strong { flex: none; white-space: nowrap; color: var(--text); font-family: var(--font-mono); font-weight: 500; font-size: .88rem; font-variant-numeric: tabular-nums; }
.calc__note { font-size: .78rem; color: var(--faint); line-height: 1.45; }
.proof__card { container-type: inline-size; }
@container (min-width: 620px) { .calc { grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr); gap: 2.2rem; align-items: start; } }

/* ---------- Pricing ---------- */
.plans { display: grid; gap: 1rem; }
.plan { display: grid; gap: .9rem; grid-template-rows: auto auto auto 1fr auto; align-content: start; }
.plan__list { align-self: start; }
.plan__actions { align-self: end; }
.plan__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.plan__tag { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; padding: .35rem .6rem; border-radius: 100px; border: 1px solid var(--line-2); color: var(--pulse); white-space: nowrap; }
.plan__price { display: flex; align-items: baseline; gap: .4rem; }
.plan__price .num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 600; letter-spacing: -.04em; line-height: 1; }
.plan__price small { color: var(--muted); font-size: .85rem; }
.plan__list { display: grid; gap: .5rem; padding: .9rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan__list li { position: relative; padding-left: 1.5rem; color: var(--muted); font-size: .94rem; line-height: 1.45; }
.plan__list li::before { content: ""; position: absolute; left: 0; top: .32em; width: 14px; height: 14px; border-radius: 50%; background: rgba(243, 223, 174, .12); border: 1px solid rgba(243, 223, 174, .5); }
.plan__list li::after { content: ""; position: absolute; left: 4px; top: calc(.32em + 3px); width: 6px; height: 4px; border-left: 1.6px solid var(--pulse); border-bottom: 1.6px solid var(--pulse); transform: rotate(-45deg); }
.plan__actions { display: grid; gap: .5rem; }
.plan__note { font-size: .78rem; color: var(--faint); text-align: center; line-height: 1.45; min-height: 1.45em; }
.plan__note a { color: var(--muted); border-bottom: 1px solid var(--line-2); }
.plan__note a:hover { color: var(--text); }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: stretch; } .plans--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 900px; margin-inline: auto; } }
.checkout-notice { position: fixed; left: 50%; bottom: max(1rem, env(safe-area-inset-bottom)); transform: translateX(-50%); z-index: 950; width: min(560px, calc(100% - 2rem)); padding: .9rem 1.1rem; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(12, 12, 14, .95); color: var(--text); font-size: .9rem; line-height: 1.45; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.checkout-notice.is-error { border-color: var(--danger); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .5rem; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, .02); transition: border-color .3s, background .3s; }
.faq details[open] { border-color: var(--line-2); background: rgba(255, 255, 255, .035); }
.faq summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.2rem; cursor: pointer; font-weight: 600; font-size: 1.02rem; letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s; }
.faq summary i::before { content: ""; width: 9px; height: 9px; border-right: 1.5px solid var(--pulse); border-bottom: 1.5px solid var(--pulse); transform: rotate(45deg) translate(-1px, -1px); }
.faq details[open] summary i { transform: rotate(180deg); background: rgba(214, 181, 111, .15); }
.faq .body { padding: 0 1.2rem 1.2rem; max-width: none; font-size: .96rem; }

/* ---------- CTA + footer ---------- */
.cta { position: relative; overflow: clip; }
.cta__glow { position: absolute; inset: 30% -10% -40% -10%; background: radial-gradient(50% 60% at 50% 100%, rgba(214, 181, 111, .3), transparent 70%); filter: blur(24px); pointer-events: none; }
.cta__inner { position: relative; display: grid; gap: 1.5rem; justify-items: center; text-align: center; }
.cta__inner .display--l { max-width: 16ch; }
.cta__actions { display: grid; gap: .6rem; width: 100%; max-width: 380px; }
@media (min-width: 720px) { .cta__actions { grid-template-columns: auto auto; width: auto; max-width: none; } }
.site-foot { border-top: 1px solid var(--line); padding: clamp(2.5rem, 6vw, 4rem) 0 calc(2rem + var(--dock-h, 0px)); }
.site-foot__grid { display: grid; gap: 2rem; }
.site-foot__brand { display: grid; gap: 1rem; align-content: start; max-width: 320px; }
.site-foot__brand p { color: var(--muted); font-size: .92rem; }
.site-foot__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.site-foot__col { display: grid; gap: .45rem; align-content: start; }
.site-foot__col strong { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--signal-2); margin-bottom: .3rem; }
.site-foot__col a { color: var(--muted); font-size: .93rem; transition: color .2s; }
.site-foot__col a:hover { color: var(--text); }
.site-foot__bottom { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: var(--faint); font-size: .8rem; }
@media (min-width: 900px) { .site-foot__grid { grid-template-columns: 1.2fr 2fr; } .site-foot__cols { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Mobile dock ---------- */
.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 800; padding: .6rem var(--pad) calc(.6rem + env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr auto; gap: .5rem; background: rgba(5, 5, 5, .82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .45s var(--ease); }
.dock.is-on { transform: none; }
.dock .btn { min-height: 46px; padding-inline: 1rem; font-size: .9rem; }
.dock .btn--ghost { width: 46px; padding: 0; border-radius: 50%; }
@media (min-width: 900px) { .dock { display: none; } }
body.has-dock { --dock-h: 78px; }

/* ---------- Page (inner) ---------- */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(3rem, 9vw, 6rem)); padding-bottom: clamp(2.5rem, 6vw, 4rem); overflow: clip; }
.page-hero__grid { display: grid; gap: 1.5rem; }
.page-hero .display--xl { font-size: clamp(2.4rem, 1.4rem + 5vw, 5.2rem); max-width: 14ch; }
.page-hero__actions { display: grid; gap: .6rem; max-width: 380px; }
@media (min-width: 900px) { .page-hero__grid { grid-template-columns: minmax(0, 1.4fr) minmax(300px, .8fr); gap: 3rem; align-items: end; } .page-hero__actions { display: flex; flex-wrap: wrap; max-width: none; } .page-hero--calc .page-hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(340px, 480px); align-items: center; gap: 2.5rem; } }
.page-hero__calc { gap: .8rem; }
.page-hero__buy { display: grid; gap: .8rem; align-content: start; padding: clamp(1.4rem, 3vw, 1.9rem); }
.page-hero__buy .pillar__list, .tile .pillar__list, .pillar__list--single { grid-template-columns: 1fr !important; }
.body strong { color: var(--text); font-weight: 600; }
.page-hero__buy .plan__note a { color: var(--text); }
@media (min-width: 900px) { .page-hero--assessment .page-hero__grid { grid-template-columns: minmax(0, 1.25fr) minmax(320px, 400px); align-items: start; gap: 3rem; } .page-hero--assessment .page-hero__grid--single { grid-template-columns: minmax(0, 880px); } }
.buy-band { display: grid; gap: 1.4rem; margin-top: 1.8rem; padding: clamp(1.4rem, 3vw, 2rem); }
.buy-band__main { display: grid; gap: .7rem; align-content: start; }
.buy-band__main .plan__note { max-width: 34ch; }
.buy-band__actions { display: grid; gap: .6rem; align-content: start; }
@media (min-width: 720px) { .buy-band { grid-template-columns: minmax(0, 1fr) minmax(260px, 320px); align-items: center; } }
.page-hero__calc .calc { margin-top: .4rem; }
.grid-2 { display: grid; gap: 1rem; }
.grid-3 { display: grid; gap: 1rem; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.tile { display: grid; gap: .6rem; align-content: start; }
.tile__k { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--pulse); }
.tile h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -.02em; line-height: 1.2; }
.tile p { color: var(--muted); font-size: .95rem; }
.prose { display: grid; gap: 1rem; max-width: 68ch; color: var(--muted); }
.prose h2, .prose h3 { color: var(--text); font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; margin-top: 1rem; }
.prose h2 { font-size: 1.6rem; } .prose h3 { font-size: 1.2rem; }
.prose a { color: var(--text); border-bottom: 1px solid var(--line-2); }
.prose ul { display: grid; gap: .4rem; padding-left: 1.2rem; list-style: disc; }
.prose strong { color: var(--text); }
.legal-nav { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.legal-nav a { padding: .45rem .9rem; border-radius: 100px; border: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.legal-nav a[aria-current="page"] { color: var(--text); border-color: var(--line-2); background: rgba(255, 255, 255, .04); }

/* ---------- Workflow library ---------- */
.wf { display: grid; gap: 1rem; }
.wf__tabs { display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: none; padding: .15rem var(--pad) .5rem; margin-inline: calc(-1 * var(--pad)); scroll-snap-type: x proximity; }
.wf__tabs::-webkit-scrollbar { display: none; }
.wf__tab { flex: none; scroll-snap-align: center; padding: .55rem .95rem; border-radius: 100px; border: 1px solid var(--line); background: rgba(255, 255, 255, .03); color: var(--muted); font-weight: 600; font-size: .86rem; white-space: nowrap; transition: color .2s, border-color .2s, background .2s; }
.wf__tab[aria-selected="true"] { color: #1a1408; border-color: transparent; background: linear-gradient(180deg, #f3dcab, #d6b56f); }
.wf__grid { display: grid; gap: 1rem; }
.wf__panel { display: none; gap: .8rem; align-content: start; padding: clamp(1.2rem, 3vw, 1.6rem); border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)); }
.wf__panel.is-active { display: grid; }
.wf__title { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -.02em; line-height: 1.2; }
.wf__desc { color: var(--muted); font-size: .95rem; line-height: 1.5; margin-top: -.2rem; }
.wf__list { display: grid; gap: .5rem; }
.wf__list li { position: relative; padding-left: 1.2rem; color: var(--muted); font-size: .93rem; line-height: 1.45; }
.wf__list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 1px; background: var(--signal-2); }
.wf__foot { display: grid; gap: .9rem; padding-top: .5rem; }
.wf__foot .body { max-width: none; }
.wf__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
@media (min-width: 900px) {
  .wf__tabs { display: none; }
  .wf__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
  .wf__panel { display: grid; }
  .wf__foot { grid-template-columns: 1fr auto; align-items: center; padding-top: 1rem; }
}
@media (min-width: 1180px) { .wf__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } .wf--detailed .wf__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .wf--detailed .wf__list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.2rem; } }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-tilt] { transform-style: preserve-3d; will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .reveal, [data-stagger] > * { opacity: 1; transform: none; transition: none; }
  .hero__copy > * { animation: none; opacity: 1; transform: none; }
  .in .chat-preview p { animation: none; opacity: 1; transform: none; }
  .live i { animation: none; }
  .btn, .card { transition: none; }
}

/* ---------- Chat widget palette override ---------- */
.gc__peek { border-color: rgba(214, 181, 111, .3); background: rgba(12, 12, 14, .9); }
.gc__peek::after { border-color: rgba(214, 181, 111, .3); }
.gc__launch { background: linear-gradient(180deg, #f3dcab, #b8923e); color: #1a1408; box-shadow: 0 16px 46px rgba(0, 0, 0, .6), 0 0 0 1px rgba(214, 181, 111, .35); font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: .9rem; }
.gc__peek { display: none !important; }
.gc { opacity: 0; transform: translateY(12px); transition: opacity .4s var(--ease), transform .4s var(--ease); pointer-events: none; }
body.is-scrolled .gc, .gc.is-open { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 899px) { .gc:not(.is-open) { display: none; } }
body.has-dock .gc { bottom: calc(var(--dock-h) + 10px); }

/* ---------- Footer bottom bar: legal links ---------- */
.site-foot__meta { display: inline-flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.1rem; }
.site-foot__bottom a { color: inherit; transition: color .2s; }
.site-foot__bottom a:hover { color: var(--text); }
