/* ---------- self-hosted fonts (latin subset, variable) ---------- */
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- tokens ---------- */
:root {
  --gold:        #d4a659;
  --gold-bright: #e6b966;
  --gold-soft:   rgba(212, 166, 89, 0.14);
  --gold-line:   rgba(212, 166, 89, 0.32);

  --bg:          #17171a;
  --surface:     #1e1e21;
  --surface-2:   #26262a;
  --surface-3:   #2e2e32;
  --border:      rgba(234, 226, 207, 0.08);
  --border-2:    rgba(234, 226, 207, 0.14);
  --text:        #eae6dd;
  --text-2:      #9c9992;
  --text-3:      #6a6862;

  --grid-color:  rgba(234, 226, 207, 0.035);
  --shadow-lg:   0 30px 80px -30px rgba(0,0,0,0.7), 0 10px 30px -15px rgba(0,0,0,0.5);
  --shadow-md:   0 10px 40px -20px rgba(0,0,0,0.6);

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   22px;

  --measure:     62ch;
  --section-pad: clamp(5rem, 10vw, 9rem);
}

html[data-theme="light"] {
  --gold:        #a67a2e;
  --gold-bright: #8f651d;
  --gold-soft:   rgba(166, 122, 46, 0.16);
  --gold-line:   rgba(166, 122, 46, 0.35);

  --bg:          #f1ead5;
  --surface:     #ebe3cb;
  --surface-2:   #e0d4b2;
  --surface-3:   #d5c59b;
  --border:      rgba(30, 20, 10, 0.10);
  --border-2:    rgba(30, 20, 10, 0.18);
  --text:        #2a2319;
  --text-2:      #5f564a;
  --text-3:      #8c8373;

  --grid-color:  rgba(30, 20, 10, 0.045);
  --shadow-lg:   0 30px 80px -40px rgba(60, 40, 15, 0.35), 0 10px 30px -15px rgba(60, 40, 15, 0.18);
  --shadow-md:   0 10px 40px -20px rgba(60, 40, 15, 0.22);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  transition: background-color 320ms ease, color 320ms ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- backdrop ---------- */
.grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.9), rgba(0,0,0,0.35) 60%, rgba(0,0,0,0) 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.9), rgba(0,0,0,0.35) 60%, rgba(0,0,0,0) 85%);
  pointer-events: none;
  z-index: 0;
  transition: background-image 320ms ease;
}
.glow {
  position: fixed; inset: auto 0 auto 0;
  top: -20vh; height: 80vh;
  background: radial-gradient(ellipse at 50% 0%, var(--gold-soft), transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ---------- typography primitives ---------- */
.serif { font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif; font-style: italic; letter-spacing: -0.005em; }
.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-3);
  font-weight: 500;
}
.eyebrow--gold { color: var(--gold); }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--text-2);
}
.tag--gold {
  color: var(--gold);
  border-color: var(--gold-line);
  background: var(--gold-soft);
}

/* ---------- layout ---------- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 1;
}

section { position: relative; z-index: 1; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: saturate(1.2) blur(16px);
  -webkit-backdrop-filter: saturate(1.2) blur(16px);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav__links {
  display: flex; gap: 28px;
  font-size: 14px; color: var(--text-2);
}
.nav__links a { transition: color 180ms; }
.nav__links a:hover { color: var(--text); }

.nav__right { display: flex; align-items: center; gap: 14px; }

.theme-toggle {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  color: var(--text-2);
  transition: all 200ms;
}
.theme-toggle:hover { color: var(--gold); border-color: var(--gold-line); }
.theme-toggle svg { width: 14px; height: 14px; }
html[data-theme="dark"]  .theme-toggle .icon-sun  { display: block; }
html[data-theme="dark"]  .theme-toggle .icon-moon { display: none; }
html[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }

html[data-theme="dark"]  .hero__img--light { display: none; }
html[data-theme="dark"]  .hero__img--dark  { display: block; }
html[data-theme="light"] .hero__img--light { display: block; }
html[data-theme="light"] .hero__img--dark  { display: none; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  transition: all 200ms;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: #1a1208;
  border-color: var(--gold);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 10px 30px -15px rgba(212,166,89,0.5);
}
.btn--primary:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn--ghost {
  color: var(--text);
  border-color: var(--border-2);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}
.btn--ghost:hover { border-color: var(--gold-line); color: var(--gold); }
.btn--lg { padding: 14px 24px; font-size: 15px; }

/* ---------- hero ---------- */
.hero {
  padding-top: clamp(3rem, 10vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
}
.hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { max-width: 640px; }

.hero__media {
  position: relative;
  perspective: 2000px;
  isolation: isolate;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: -18% -10% -10% -8%;
  background: radial-gradient(55% 55% at 65% 45%, color-mix(in oklab, var(--gold) 40%, transparent) 0%, transparent 70%);
  filter: blur(48px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
html[data-theme="light"] .hero__media::before { opacity: 0.35; }

.hero__media__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-lg);
  background: var(--surface-2);
  transform: rotateX(4deg) rotateY(-3deg);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__media__frame:hover { transform: rotateX(0deg) rotateY(0deg) translateY(-6px); }
.hero__media__frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}
.hero__media__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 65%, color-mix(in oklab, var(--bg) 55%, transparent) 100%),
    linear-gradient(135deg, color-mix(in oklab, var(--gold) 12%, transparent) 0%, transparent 40%);
}

.hero__media__corner {
  position: absolute;
  top: -1px; left: -1px;
  width: 54px; height: 54px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  border-top-left-radius: var(--radius-xl);
  pointer-events: none;
  opacity: 0.7;
}

.hero__media__badge {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 10px;
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero__media__badge b { color: var(--gold); font-weight: 500; }
.hero__media__badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: heroPulse 1.8s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}

.hero__media__controls {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}
.hero__media__frame:hover .hero__media__controls,
.hero__media__frame:focus-within .hero__media__controls,
.hero__media__frame.is-fullscreen .hero__media__controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero__media__ctrl {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-2);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.hero__media__ctrl:hover {
  color: var(--gold);
  border-color: color-mix(in oklab, var(--gold) 55%, var(--border-2));
  transform: translateY(-1px);
}
.hero__media__ctrl:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.hero__media__ctrl .ic { display: block; }
.hero__media__ctrl .ic--unmuted,
.hero__media__ctrl .ic--exit { display: none; }
.hero__media__ctrl.is-on .ic--muted,
.hero__media__ctrl.is-on .ic--enter { display: none; }
.hero__media__ctrl.is-on .ic--unmuted,
.hero__media__ctrl.is-on .ic--exit { display: block; }
.hero__media__frame.is-fullscreen {
  transform: none !important;
  border-radius: 0;
  border: 0;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  background: #000;
}
.hero__media__frame.is-fullscreen video { object-fit: contain; }
.hero__media__frame.is-fullscreen::after,
.hero__media__frame.is-fullscreen .hero__media__corner { display: none; }

.hero__media__caption {
  margin-top: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex; align-items: center; gap: 10px;
}
.hero__media__caption::before {
  content: "";
  width: 24px; height: 1px; background: var(--border-2);
}

@media (min-width: 961px) and (max-width: 1280px) {
  .hero h1 { font-size: clamp(2.75rem, 5.2vw, 4.5rem); }
  .hero__top {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
  }
  .hero__media__frame { transform: rotateX(3deg) rotateY(-2deg); }
  .hero__media__badge { top: 12px; right: 12px; font-size: 10px; padding: 6px 10px 6px 8px; }
}
@media (max-width: 960px) {
  .hero__top { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  .hero__copy { max-width: 100%; }
  .hero__media__frame { transform: none; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
}
.hero__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px var(--gold);
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(3rem, 7.2vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0 0 28px;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
html[data-theme="light"] .hero h1 em {
  background: linear-gradient(180deg, var(--gold), #6f4e18);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  max-width: 58ch;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 40px;
}
.hero__sub strong {
  font-weight: 500; color: var(--text);
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
}

.hero__fineprint {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: var(--text-3);
}
.hero__fineprint span::before { content: "·"; margin-right: 14px; color: var(--border-2); }
.hero__fineprint span:first-child::before { display: none; }

.hero__visual {
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  max-width: 1100px;
  position: relative;
  perspective: 2000px;
}
.hero__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-lg);
  transform: rotateX(2deg);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__frame:hover { transform: rotateX(0deg) translateY(-4px); }
.hero__frame img { width: 100%; height: auto; display: block; }
.hero__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--bg) 100%);
  pointer-events: none;
  opacity: 0.4;
}
.hero__caption {
  position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.hero__caption b { color: var(--gold); font-weight: 500; margin-right: 6px; }

/* ---------- hero stage (animated workflow carousel) ---------- */
:root {
  --stg-cycle: 28s;
}

.hero__stage {
  background:
    radial-gradient(ellipse at 18% 0%, var(--gold-soft), transparent 55%),
    radial-gradient(ellipse at 82% 110%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 0;
  aspect-ratio: 16 / 10;
  min-height: 420px;
}
.hero__stage::after { display: none; }

.stg__chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  backdrop-filter: blur(6px);
}
.stg__tl {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--border-2);
}
.stg__tl:nth-child(1) { background: #e56a6a; opacity: 0.75; }
.stg__tl:nth-child(2) { background: #e8b04a; opacity: 0.75; }
.stg__tl:nth-child(3) { background: #6ec27a; opacity: 0.75; }

.stg__paths {
  position: relative;
  display: inline-block;
  margin-left: 14px;
  height: 14px;
  min-width: 240px;
}
.stg__path {
  position: absolute; inset: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-3);
  white-space: nowrap;
  opacity: 0;
  animation: stgCycle var(--stg-cycle) infinite;
}
.stg__path span { color: var(--gold); margin: 0 6px; }
.stg__path--1 { animation-delay: 0s; }
.stg__path--2 { animation-delay: calc(var(--stg-cycle) * 0.25); }
.stg__path--3 { animation-delay: calc(var(--stg-cycle) * 0.5); }
.stg__path--4 { animation-delay: calc(var(--stg-cycle) * 0.75); }

.stg__body {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  height: calc(100% - 43px);
  min-height: 340px;
}

.stg__rail {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 22px 0;
  border-right: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 45%, transparent);
}
.stg__rail-logo {
  width: 18px; height: 18px; border-radius: 5px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 14px color-mix(in srgb, var(--gold) 55%, transparent);
  margin-bottom: 8px;
}
.stg__rail-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border-2);
  transition: none;
}
.stg__rail-dot--a1,
.stg__rail-dot--a2,
.stg__rail-dot--a3,
.stg__rail-dot--a4 {
  animation: stgRailGlow var(--stg-cycle) infinite;
}
.stg__rail-dot--a1 { animation-delay: 0s; }
.stg__rail-dot--a2 { animation-delay: calc(var(--stg-cycle) * 0.25); }
.stg__rail-dot--a3 { animation-delay: calc(var(--stg-cycle) * 0.5); }
.stg__rail-dot--a4 { animation-delay: calc(var(--stg-cycle) * 0.75); }

@keyframes stgRailGlow {
  0%, 1%   { background: var(--border-2); box-shadow: none; }
  3%, 23%  { background: var(--gold);     box-shadow: 0 0 10px color-mix(in srgb, var(--gold) 70%, transparent); }
  25%, 100%{ background: var(--border-2); box-shadow: none; }
}

/* slides wrapper & crossfade */
.stg__slides {
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px;
}
.stg__slide {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0;
  animation: stgCycle var(--stg-cycle) infinite;
}
.stg__slide--1 { animation-delay: 0s; }
.stg__slide--2 { animation-delay: calc(var(--stg-cycle) * 0.25); }
.stg__slide--3 { animation-delay: calc(var(--stg-cycle) * 0.5); }
.stg__slide--4 { animation-delay: calc(var(--stg-cycle) * 0.75); }

@keyframes stgCycle {
  0%               { opacity: 0; transform: translateY(6px) scale(0.995); }
  2%               { opacity: 1; transform: translateY(0) scale(1); }
  23%              { opacity: 1; transform: translateY(0) scale(1); }
  25%              { opacity: 0; transform: translateY(-6px) scale(0.995); }
  100%             { opacity: 0; transform: translateY(-6px) scale(0.995); }
}

.stg__card {
  width: min(94%, 560px);
  padding: clamp(1.4rem, 2.6vw, 2.2rem) clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface-2) 85%, transparent);
  box-shadow:
    0 20px 60px -30px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}
.stg__step {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.stg__q {
  margin: 0 0 18px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 500;
}
.stg__q .serif { color: var(--gold); }

.stg__input {
  position: relative;
  display: flex; align-items: flex-start;
  padding: 14px 16px;
  min-height: 72px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg) 65%, transparent);
  box-shadow: 0 0 0 4px var(--gold-soft);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text);
  overflow: hidden;
}
.stg__typed {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  clip-path: inset(0 100% 0 0);
  animation: stgType var(--stg-cycle) cubic-bezier(0.55, 0, 0.35, 1) infinite;
}
.stg__caret {
  display: inline-block;
  width: 2px; height: 1.25em;
  margin-left: 2px;
  background: var(--gold);
  vertical-align: text-bottom;
  animation: stgBlink 1s steps(2) infinite;
}
@keyframes stgType {
  0%, 2%    { clip-path: inset(0 100% 0 0); }
  18%       { clip-path: inset(0 0 0 0); }
  25%       { clip-path: inset(0 0 0 0); }
  26%, 100% { clip-path: inset(0 100% 0 0); }
}
@keyframes stgBlink {
  50% { opacity: 0; }
}

.stg__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.stg__hint {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.stg__hint kbd {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  padding: 2px 6px;
  border: 1px solid var(--border-2);
  border-radius: 4px;
  background: var(--surface);
  color: var(--text-2);
  margin: 0 2px;
}
.stg__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1408;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 6px 18px -8px color-mix(in srgb, var(--gold) 75%, transparent);
  opacity: 0;
  transform: translateY(4px);
  animation: stgCta var(--stg-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes stgCta {
  0%, 18%   { opacity: 0; transform: translateY(4px); }
  21%       { opacity: 1; transform: translateY(0); }
  25%       { opacity: 1; transform: translateY(0); }
  26%, 100% { opacity: 0; transform: translateY(4px); }
}

/* ---------- slide 2 · prototype preview ---------- */
.stg__proto {
  width: min(94%, 560px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-2);
  background: color-mix(in srgb, var(--surface-2) 88%, transparent);
  box-shadow: 0 20px 60px -30px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
}
.stg__proto-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}
.stg__proto-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.stg__proto-tabs { display: inline-flex; gap: 6px; }
.stg__proto-tabs span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-3);
}
.stg__proto-tabs .on {
  color: var(--gold);
  border-color: var(--gold-line);
  background: var(--gold-soft);
}
.stg__proto-canvas {
  position: relative;
  padding: 22px 22px 18px;
  background: var(--bg);
  min-height: 180px;
}
.stg__sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    color-mix(in srgb, #ffb060 40%, var(--bg)) 0%,
    color-mix(in srgb, #d85f3c 20%, var(--bg)) 45%,
    var(--bg) 100%);
  opacity: 0.65;
  filter: saturate(1.1);
}
.stg__sun {
  position: absolute; top: 22%; left: 18%;
  width: 54px; height: 54px; border-radius: 50%;
  background: radial-gradient(circle, #ffd98a 0%, #f0a55a 60%, transparent 70%);
  filter: blur(2px);
  opacity: 0.9;
}
.stg__temp {
  position: relative;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 56px; line-height: 1; letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 14px;
}
.stg__loc {
  position: relative;
  font-size: 12px; color: var(--text-2);
  margin-top: 6px; letter-spacing: 0.04em;
}
.stg__chips {
  position: relative;
  display: flex; gap: 6px; margin-top: 14px;
}
.stg__chips span {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: color-mix(in srgb, var(--surface-2) 60%, transparent);
  color: var(--text-2);
  backdrop-filter: blur(4px);
}
.stg__proto-chat {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}
.stg__bubble {
  font-size: 11.5px;
  padding: 6px 10px;
  border-radius: 12px;
  max-width: 60%;
}
.stg__bubble--you {
  background: var(--surface-3);
  color: var(--text);
}
.stg__bubble--ai {
  background: var(--gold-soft);
  color: var(--text);
  border: 1px solid var(--gold-line);
}

/* ---------- slide 3 · build pipeline ---------- */
.stg__pipe {
  width: min(94%, 560px);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-2);
  background: color-mix(in srgb, var(--surface-2) 88%, transparent);
  box-shadow: 0 20px 60px -30px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
}
.stg__pipe-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.stg__pipe-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.stg__pipe-pct {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px; color: var(--text-2);
}
.stg__pipe-bar {
  position: relative;
  height: 4px; border-radius: 999px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 14px;
}
.stg__pipe-bar span {
  position: absolute; inset: 0 auto 0 0;
  width: 37%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 999px;
  box-shadow: 0 0 10px color-mix(in srgb, var(--gold) 60%, transparent);
  animation: stgBarPulse 2.4s ease-in-out infinite;
}
@keyframes stgBarPulse {
  0%,100% { width: 35%; }
  50%     { width: 40%; }
}
.stg__pipe-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.stg__pipe-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--text-3);
  background: color-mix(in srgb, var(--bg) 40%, transparent);
  border: 1px solid transparent;
}
.stg__pipe-list li .t {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  color: var(--text-3);
  margin-left: auto;
  letter-spacing: 0.04em;
}
.stg__pipe-list li.done { color: var(--text-2); }
.stg__pipe-list li.done .stg__dotm {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-soft);
}
.stg__pipe-list li.now {
  color: var(--text);
  background: var(--gold-soft);
  border-color: var(--gold-line);
}
.stg__pipe-list li.now .stg__dotm {
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold);
  animation: stgDotPulse 1.4s ease-out infinite;
}
.stg__pipe-list li.now .t { color: var(--gold); }
.stg__dotm {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-2);
  flex-shrink: 0;
}
@keyframes stgDotPulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--gold) 70%, transparent); }
  100% { box-shadow: 0 0 0 10px color-mix(in srgb, var(--gold) 0%, transparent); }
}

/* ---------- slide 4 · mobile app ---------- */
.stg__phone {
  position: relative;
  width: 248px;
  aspect-ratio: 9 / 19;
  border-radius: 38px;
  padding: 10px;
  background: linear-gradient(180deg, #2b2b2f 0%, #141416 100%);
  box-shadow:
    0 30px 70px -30px rgba(0,0,0,0.6),
    0 0 0 2px color-mix(in srgb, var(--border-2) 60%, transparent),
    inset 0 2px 2px rgba(255,255,255,0.05);
}
.stg__phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 20px;
  background: #0a0a0c;
  border-radius: 999px;
  z-index: 3;
}
.stg__phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #0e0e10;
  display: flex; flex-direction: column;
}
.stg__phone-sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #ffb060 0%,
    #e87548 28%,
    #6b3a7e 60%,
    #1a1a2e 100%);
  opacity: 0.9;
  animation: stgSkyShift 8s ease-in-out infinite alternate;
}
@keyframes stgSkyShift {
  0%   { filter: hue-rotate(0deg) saturate(1); }
  100% { filter: hue-rotate(-14deg) saturate(1.15); }
}
.stg__phone-sun {
  position: absolute; top: 22%; right: 20%;
  width: 60px; height: 60px; border-radius: 50%;
  background: radial-gradient(circle, #ffe2a8 0%, #f3a95c 55%, transparent 70%);
  filter: blur(3px);
}
.stg__phone-status {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 18px 4px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.06em;
  z-index: 2;
}
.stg__phone-temp {
  position: relative;
  padding: 24px 18px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 72px; line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  z-index: 2;
}
.stg__phone-cond {
  position: relative;
  padding: 4px 18px 0;
  font-size: 11.5px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  z-index: 2;
}
.stg__phone-hours {
  position: relative;
  display: flex; justify-content: space-between;
  padding: 22px 14px 0;
  z-index: 2;
}
.stg__phone-hours span {
  display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 11px; color: rgba(255,255,255,0.85);
  padding: 6px 6px;
  border-radius: 10px;
}
.stg__phone-hours span b {
  font-weight: 500;
  font-size: 9.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
}
.stg__phone-hours span.on {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
}
.stg__phone-hours span.on b { color: rgba(255,255,255,0.85); }
.stg__phone-badges {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 18px 14px 16px;
  margin-top: auto;
  z-index: 2;
}
.stg__phone-badges span {
  font-size: 10.5px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.06em;
}
.stg__phone-badges .go {
  background: rgba(110, 194, 122, 0.22);
  color: #bfe9c7;
  border: 1px solid rgba(110, 194, 122, 0.4);
}
.stg__phone-badges .wait {
  background: rgba(232, 176, 74, 0.18);
  color: #f0d699;
  border: 1px solid rgba(232, 176, 74, 0.4);
}

/* ---------- carousel dots ---------- */
.stg__dots {
  position: absolute;
  bottom: 12px; left: 50%; transform: translateX(-50%);
  display: inline-flex; gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  z-index: 3;
}
.stg__ddot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-2);
  animation: stgDdot var(--stg-cycle) infinite;
}
.stg__ddot--1 { animation-delay: 0s; }
.stg__ddot--2 { animation-delay: calc(var(--stg-cycle) * 0.25); }
.stg__ddot--3 { animation-delay: calc(var(--stg-cycle) * 0.5); }
.stg__ddot--4 { animation-delay: calc(var(--stg-cycle) * 0.75); }
@keyframes stgDdot {
  0%, 1%    { background: var(--border-2); width: 6px; }
  3%, 23%   { background: var(--gold); width: 18px; border-radius: 999px; }
  25%, 100% { background: var(--border-2); width: 6px; }
}

/* ---------- animated caption ---------- */
.hero__caption {
  min-width: 300px;
  display: grid;
  grid-template-areas: "cap";
  justify-items: center;
  align-items: center;
}
.stg__cap {
  grid-area: cap;
  white-space: nowrap;
  opacity: 0;
  animation: stgCycle var(--stg-cycle) infinite;
}
.stg__cap--1 { animation-delay: 0s; }
.stg__cap--2 { animation-delay: calc(var(--stg-cycle) * 0.25); }
.stg__cap--3 { animation-delay: calc(var(--stg-cycle) * 0.5); }
.stg__cap--4 { animation-delay: calc(var(--stg-cycle) * 0.75); }

@media (max-width: 720px) {
  .hero__visual { margin-top: clamp(2rem, 5vw, 3rem); }
  .hero__stage { aspect-ratio: 3 / 4; min-height: 480px; }
  .stg__chrome { padding: 10px 14px; gap: 6px; }
  .stg__tl { width: 9px; height: 9px; }
  .stg__paths { min-width: 0; flex: 1 1 auto; margin-left: 10px; }
  .stg__path { font-size: 10px; overflow: hidden; text-overflow: ellipsis; }

  .stg__body { grid-template-columns: 36px 1fr; }
  .stg__rail { gap: 12px; padding: 14px 0; }
  .stg__rail-logo { width: 15px; height: 15px; margin-bottom: 4px; }
  .stg__rail-dot { width: 6px; height: 6px; }

  .stg__slides,
  .stg__slide { padding: 12px; }

  .stg__card,
  .stg__proto,
  .stg__pipe { width: 100%; max-width: 100%; }
  .stg__card { padding: 1rem 1.1rem; }
  .stg__step { font-size: 9px; margin-bottom: 10px; }
  .stg__q { font-size: 18px; margin-bottom: 14px; }
  .stg__input { min-height: 84px; font-size: 12px; padding: 12px 14px; }
  .stg__row { margin-top: 12px; }
  .stg__hint { font-size: 11px; }
  .stg__cta { font-size: 11.5px; padding: 7px 12px; }

  .stg__proto-head { padding: 8px 12px; }
  .stg__proto-label { font-size: 9px; letter-spacing: 0.14em; }
  .stg__proto-tabs span { font-size: 9px; padding: 3px 8px; }
  .stg__proto-canvas { padding: 16px; min-height: 140px; }
  .stg__temp { font-size: 42px; }
  .stg__loc { font-size: 11px; }
  .stg__chips span { font-size: 10px; padding: 4px 8px; }
  .stg__proto-chat { padding: 10px 12px; }
  .stg__bubble { font-size: 10.5px; padding: 5px 9px; max-width: 100%; }

  .stg__pipe { padding: 1rem; }
  .stg__pipe-label { font-size: 10px; }
  .stg__pipe-list { gap: 6px; }
  .stg__pipe-list li { font-size: 11.5px; padding: 6px 8px; gap: 8px; min-width: 0; }
  .stg__pipe-list li .t { font-size: 9.5px; white-space: nowrap; }

  .stg__phone { width: 180px; border-radius: 30px; padding: 8px; }
  .stg__phone-notch { width: 70px; height: 16px; top: 11px; }
  .stg__phone-screen { border-radius: 23px; }
  .stg__phone-status { padding: 22px 14px 2px; font-size: 9px; }
  .stg__phone-temp { padding: 18px 14px 0; font-size: 54px; }
  .stg__phone-cond { padding: 4px 14px 0; font-size: 10.5px; }
  .stg__phone-hours { padding: 16px 10px 0; }
  .stg__phone-hours span { font-size: 10px; padding: 4px 4px; }
  .stg__phone-hours span b { font-size: 8.5px; }
  .stg__phone-badges { padding: 14px 10px 12px; gap: 5px; }
  .stg__phone-badges span { font-size: 9.5px; padding: 4px 8px; }

  .stg__dots { bottom: 10px; padding: 4px 8px; gap: 6px; }
  .stg__ddot { width: 5px; height: 5px; }
  @keyframes stgDdot {
    0%, 1%    { background: var(--border-2); width: 5px; }
    3%, 23%   { background: var(--gold); width: 14px; border-radius: 999px; }
    25%, 100% { background: var(--border-2); width: 5px; }
  }

  .hero__caption { min-width: 0; max-width: calc(100% - 32px); padding: 6px 14px; }
  .stg__cap { font-size: 10px; letter-spacing: 0.14em; white-space: normal; text-align: center; }
}

@media (max-width: 420px) {
  .hero__stage { aspect-ratio: auto; min-height: 460px; }
  .stg__body { grid-template-columns: 30px 1fr; }
  .stg__rail { gap: 10px; padding: 12px 0; }
  .stg__rail-logo { width: 13px; height: 13px; }
  .stg__path { letter-spacing: 0; }

  .stg__slides,
  .stg__slide { padding: 10px; }
  .stg__card { padding: 0.9rem; }
  .stg__q { font-size: 16px; line-height: 1.2; }
  .stg__input { min-height: 76px; font-size: 11.5px; padding: 10px 12px; }
  .stg__row { flex-wrap: wrap; gap: 8px; }

  .stg__proto-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .stg__proto-tabs { flex-wrap: wrap; }
  .stg__temp { font-size: 38px; }

  .stg__phone { width: 158px; border-radius: 26px; padding: 7px; }
  .stg__phone-screen { border-radius: 19px; }
  .stg__phone-notch { width: 60px; height: 14px; top: 10px; }
  .stg__phone-status { padding: 20px 12px 2px; }
  .stg__phone-temp { font-size: 46px; padding: 14px 12px 0; }
  .stg__phone-cond { font-size: 9.5px; padding: 3px 12px 0; }
  .stg__phone-hours { padding: 12px 8px 0; }
  .stg__phone-hours span { font-size: 9px; padding: 3px; gap: 2px; }
  .stg__phone-hours span b { font-size: 8px; }
  .stg__phone-badges { padding: 12px 8px 10px; gap: 4px; }
  .stg__phone-badges span { font-size: 8.5px; padding: 3px 7px; }
}

/* ---------- bridge ---------- */
/* ---------- social proof ---------- */
.proof {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 0;
}
.proof__card {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.75rem, 4vw, 2.8rem);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  position: relative;
  text-align: center;
}
.proof__card::before {
  content: "";
  position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.proof__stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.proof__stars svg {
  width: 16px; height: 16px;
  fill: currentColor;
}
.proof__quote {
  margin: 0 0 1.1rem;
  padding: 0;
}
.proof__quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
}
.proof__quote em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.proof__translation {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 1.4rem;
  font-style: italic;
}
.proof__translation em {
  color: var(--text);
  font-style: italic;
}
.proof__translation-label {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 2px 8px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: 2px;
  font-style: normal;
}
.proof__cite {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.proof__cite-role { color: var(--text-2); }
.proof__cite-sep { color: var(--border-2); }
@media (max-width: 640px) {
  .proof__cite { flex-direction: column; gap: 6px; letter-spacing: 0.16em; }
  .proof__cite-sep { display: none; }
}

.bridge {
  padding-top: var(--section-pad); padding-bottom: var(--section-pad);
}
.bridge__card {
  max-width: 880px; margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: color-mix(in srgb, var(--surface) 50%, transparent);
  position: relative;
}
.bridge__card::before {
  content: "";
  position: absolute; top: -1px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.bridge__line {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-2);
  margin: 0 0 1.1em;
  letter-spacing: -0.01em;
}
.bridge__line:last-child { margin-bottom: 0; }
.bridge__line em {
  font-style: italic;
  color: var(--text);
  font-weight: 500;
}
.bridge__line--final {
  padding-top: 1em;
  border-top: 1px solid var(--border);
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

/* ---------- section header ---------- */
.section-head {
  text-align: center;
  max-width: 640px; margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}
.section-head .eyebrow { margin-bottom: 14px; display: block; }
.section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--text);
}
.section-head p {
  color: var(--text-2);
  font-size: 16px;
  margin: 0;
}

/* ---------- flow (how it works v2) ---------- */
.flow { padding-bottom: var(--section-pad); }

.flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 7vw, 6rem);
}

.flow__step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.flow__step:nth-child(even) .flow__mockup { order: 2; }
.flow__step:nth-child(even) .flow__copy   { order: 1; }

@media (max-width: 900px) {
  .flow__step,
  .flow__step:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .flow__step .flow__mockup,
  .flow__step:nth-child(even) .flow__mockup { order: 0; max-width: 520px; margin-inline: auto; width: 100%; }
  .flow__step .flow__copy,
  .flow__step:nth-child(even) .flow__copy   { order: 0; }
}

.flow__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.flow__num::before {
  content: ""; width: 22px; height: 1px; background: var(--gold-line);
}

.flow__copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  margin: 0 0 16px;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.flow__copy p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 52ch;
}
.flow__meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed var(--border-2);
  font-size: 13px;
  color: var(--text-3);
  max-width: 52ch;
}
.flow__meta-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- mockup shell --- */
.flow__mockup {
  position: relative;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  box-shadow: var(--shadow-md);
  padding: 14px;
  font-size: 12px;
  color: var(--text);
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms;
}
.flow__mockup:hover { transform: translateY(-2px); border-color: var(--gold-line); }
.flow__mockup::before {
  content: "";
  position: absolute; top: -1px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  opacity: 0.5;
}

.mk-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); border: 1px solid var(--border-2); display: inline-block; }

/* ---- mockup: wizard ---- */
.flow__mockup--wizard {
  padding: 18px 18px 16px;
}
.wz-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.wz-bar__close {
  width: 20px; height: 20px; display: grid; place-items: center;
  border-radius: 50%;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1;
}
.wz-q {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 20px;
  text-align: center;
  color: var(--text);
  margin: 4px 10px 20px;
  line-height: 1.3;
}
.wz-opts { display: flex; flex-direction: column; gap: 8px; }
.wz-opt {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-2) 40%, transparent);
}
.wz-opt--sel {
  border-color: var(--gold-line);
  background: var(--gold-soft);
}
.wz-opt__dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--bg);
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
}
.wz-opt--sel .wz-opt__dot {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--gold) 20%, transparent);
}
.wz-opt__body { flex: 1; min-width: 0; }
.wz-opt__title { font-size: 13px; font-weight: 500; color: var(--text); }
.wz-opt__sub   { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.wz-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed var(--border-2);
  font-size: 11px;
  color: var(--text-3);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.wz-foot__send {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 14px; line-height: 1;
}

/* ---- mockup: sketch (prototype split) ---- */
.flow__mockup--sketch { padding: 0; }
.sk-chrome {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--surface-2) 60%, transparent);
  border-bottom: 1px solid var(--border);
}
.sk-chrome__dots { display: flex; gap: 6px; }
.sk-chrome__dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
}
.sk-chrome__tabs {
  display: flex; gap: 4px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 60%, transparent);
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.sk-chrome__tab {
  padding: 4px 10px;
  border-radius: 999px;
}
.sk-chrome__tab--active {
  background: var(--gold-soft);
  color: var(--gold);
}
.sk-chrome__zoom {
  display: flex; gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-3);
}

.sk-split {
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 190px;
}
.sk-chat {
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}
.sk-bubble {
  font-size: 11.5px;
  line-height: 1.45;
  max-width: 100%;
}
.sk-bubble__who {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 3px;
}
.sk-bubble--user .sk-bubble__body {
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
}
.sk-bubble--ai .sk-bubble__body {
  padding: 8px 10px 8px 0;
  color: var(--text-2);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.sk-bubble--ai .sk-bubble__who { color: var(--gold); }

.sk-preview {
  padding: 14px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 60% 40%, var(--gold-soft), transparent 65%),
    color-mix(in srgb, var(--bg) 60%, transparent);
}
.sk-page {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 12px;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  display: flex; flex-direction: column; gap: 10px;
}
.sk-head {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: 15px;
  color: var(--gold);
  line-height: 1;
}
.sk-rule { height: 1px; background: var(--gold-line); width: 40%; }
.sk-line { height: 5px; border-radius: 2px; background: var(--border-2); width: 80%; }
.sk-line--short { width: 55%; }
.sk-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-top: 4px;
}
.sk-tile {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  border-radius: 4px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--gold) 10%, transparent), transparent 70%),
    var(--surface-2);
}

/* ---- mockup: overview ---- */
.flow__mockup--overview {
  --lilac: #afa9ec;
  padding: 16px 16px 14px;
}
.ov-cap {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.ov-progress {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-2) 45%, transparent);
  margin-bottom: 18px;
}
.ov-progress__bar {
  flex: 1; height: 4px; border-radius: 999px;
  background: var(--surface-3);
  overflow: hidden;
}
.ov-progress__fill {
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: inherit;
}
.ov-progress__count {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-2);
  white-space: nowrap;
}
.ov-progress__count b { color: var(--gold); font-weight: 500; }
.ov-add {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ov-sec {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 14px 0 8px;
  display: flex; align-items: center; gap: 10px;
}
.ov-sec::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}
.ov-sec--sketch { color: var(--lilac); }
.ov-sec--now    { color: var(--gold); }
.ov-sec--next   { color: var(--text-2); }

.ov-card {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-2) 40%, transparent);
}
.ov-card__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--surface-3);
  flex-shrink: 0;
}
.ov-card__title { flex: 1; font-size: 13px; color: var(--text); }
.ov-card__view {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.ov-card--sketch {
  border-left: 2px solid var(--lilac);
}
.ov-card--sketch .ov-card__dot {
  background: var(--lilac);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lilac) 20%, transparent);
}

.ov-card--now {
  border-color: var(--gold-line);
  background: linear-gradient(180deg, var(--gold-soft), transparent 70%), color-mix(in srgb, var(--surface-2) 40%, transparent);
  position: relative;
}
.ov-card--now .ov-card__dot {
  background: var(--gold);
  position: relative;
}
.ov-card--now .ov-card__dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.6;
  animation: nowPulse 1.6s ease-out infinite;
}
@keyframes nowPulse {
  0%   { transform: scale(0.9); opacity: 0.7; }
  80%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

.ov-next {
  display: flex; flex-direction: column; gap: 6px;
}
.ov-next__row {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px 9px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 50%, transparent);
}
.ov-next__num {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--border-2);
  display: grid; place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--text-2);
  flex-shrink: 0;
}
.ov-next__title { flex: 1; font-size: 12.5px; color: var(--text); }
.ov-next__btn {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 4px 10px;
  border-radius: 999px;
}
.ov-next__add {
  border: 1px dashed var(--gold-line);
  color: var(--gold);
  justify-content: center;
  gap: 10px;
  padding: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 13.5px;
  background: transparent;
}
.ov-next__add::before {
  content: "+";
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  font-size: 14px;
}
.ov-next__add em {
  color: var(--text-3);
  font-style: italic;
  font-size: 11.5px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- mockup: pipeline ---- */
.flow__mockup--pipeline { padding: 16px; }
.pl-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: center;
}

.pl-ring {
  padding: 16px 14px;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface-2) 45%, transparent);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
}
.pl-ring__svg {
  width: 72px; height: 72px;
  position: relative;
}
.pl-ring__svg svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.pl-ring__svg circle { fill: none; }
.pl-ring__track { stroke: var(--border-2); stroke-width: 5; }
.pl-ring__fill  { stroke: var(--gold); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 188.5; stroke-dashoffset: 71.6; }
.pl-ring__pct {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}
.pl-ring__eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.pl-ring__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: 15px;
  color: var(--text);
  line-height: 1.2;
}
.pl-ring__time {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--gold);
}

.pl-stages { display: flex; flex-direction: column; gap: 4px; }
.pl-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 4px;
  font-size: 12px;
  color: var(--text-2);
}
.pl-row__dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--bg);
  display: grid; place-items: center;
  font-size: 9px;
  flex-shrink: 0;
  position: relative;
}
.pl-row__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--text-3);
  width: 16px;
  flex-shrink: 0;
}
.pl-row__title { flex: 1; font-family: "Geist", sans-serif; }

.pl-row--done { color: var(--text); }
.pl-row--done .pl-row__dot {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1208;
  font-weight: 600;
}
.pl-row--done .pl-row__dot::after { content: "\2713"; }

.pl-row--now { color: var(--text); }
.pl-row--now .pl-row__dot {
  background: var(--gold-soft);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 20%, transparent);
}
.pl-row--now .pl-row__dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.6;
  animation: nowPulse 1.6s ease-out infinite;
}

.pl-ctrl {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-2);
  font-size: 11px;
  color: var(--text-3);
}
.pl-ctrl__check {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pl-ctrl__check::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 3px;
  border: 1px solid var(--gold);
  background: var(--gold-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23d4a659' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pl-ctrl__btns { margin-left: auto; display: flex; gap: 6px; }
.pl-ctrl__btn {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--text-2);
}

/* ---- mockup: launchpad ---- */
.flow__mockup--launchpad { padding: 16px; }
.lp-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.lp-head__title {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.lp-head__btn {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--text-3);
}

.lp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp-card {
  padding: 12px 12px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-2) 45%, transparent);
  display: flex; flex-direction: column; gap: 8px;
  min-height: 104px;
  transition: all 250ms;
}
.lp-card:hover {
  border-color: var(--gold-line);
  background: color-mix(in srgb, var(--surface-2) 65%, transparent);
}
.lp-card__icon {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 6px;
  background: var(--gold-soft);
  color: var(--gold);
}
.lp-card__icon svg { width: 14px; height: 14px; }
.lp-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: 16px;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.lp-card__sub {
  font-size: 11.5px;
  color: var(--text-2);
  line-height: 1.45;
  flex: 1;
}
.lp-card__run {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
}
.lp-card__run::after { content: "\2192"; font-size: 11px; }

/* ---------- showcase ---------- */
.showcase { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) {
  .showcase__grid { grid-template-columns: 1fr; }
}
.showcase__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: color-mix(in srgb, var(--surface) 50%, transparent);
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
  margin: 0;
}
.showcase__item:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.showcase__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--surface);
}
.showcase__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.showcase__item:hover .showcase__img img { transform: scale(1.03); }

.showcase__body {
  padding: 26px 28px 30px;
}
.showcase__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.showcase__body h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: 30px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.showcase__body p {
  color: var(--text-2);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}
.showcase__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.showcase__meta b { color: var(--gold); font-weight: 500; }

/* ---------- audiences ---------- */
.audiences { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.audiences__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (max-width: 720px) {
  .audiences__grid { grid-template-columns: 1fr; }
}
.audience {
  background: var(--bg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  transition: background 300ms;
}
.audience:hover { background: color-mix(in srgb, var(--surface) 50%, var(--bg)); }
.audience__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.audience h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.audience h3 em { font-style: italic; font-weight: 500; color: var(--gold); }
.audience p {
  color: var(--text-2);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.6;
}
.audience__use {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-3);
  padding-top: 14px;
  border-top: 1px dashed var(--border-2);
}

/* ---------- features ---------- */
.features { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features__grid { grid-template-columns: 1fr; } }

.feature {
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 30%, transparent);
  transition: all 250ms;
}
.feature:hover {
  border-color: var(--border-2);
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}
.feature__icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 16px;
}
.feature__icon svg { width: 16px; height: 16px; }
.feature h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: 21px;
  margin: 0 0 8px;
  color: var(--text);
}
.feature p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* ---------- pricing ---------- */
.pricing { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.pricing__card {
  max-width: 620px; margin: 0 auto;
  padding: 44px 40px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--gold-soft), transparent 70%), color-mix(in srgb, var(--surface) 50%, transparent);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.pricing__code {
  display: inline-flex; gap: 10px; align-items: center;
  padding: 8px 14px;
  background: var(--surface-2);
  border: 1px dashed var(--gold-line);
  border-radius: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.pricing__price {
  font-family: "Cormorant Garamond", Georgia, serif;
  display: flex; align-items: baseline; justify-content: center; gap: 14px;
  margin: 8px 0 8px;
}
.pricing__price .now {
  font-style: italic; font-weight: 500;
  font-size: 80px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
html[data-theme="light"] .pricing__price .now {
  background: linear-gradient(180deg, var(--gold), #6f4e18);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing__price .was {
  font-size: 26px;
  color: var(--text-3);
  text-decoration: line-through;
  font-style: italic;
}
.pricing__type {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pricing__list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
  max-width: 400px;
  margin-inline: auto;
}
.pricing__list li {
  display: flex; gap: 12px; align-items: start;
  font-size: 14px;
  color: var(--text-2);
}
.pricing__list li::before {
  content: ""; flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23d4a659' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 3px;
}
.pricing__legal {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 16px;
  max-width: 440px;
  margin-inline: auto;
  line-height: 1.5;
}
.pricing__legal a {
  color: var(--gold);
  border-bottom: 1px dotted var(--gold-line);
}
.pricing__legal a:hover { color: var(--gold-bright); }
.pricing__note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 14px;
  font-style: italic;
  max-width: 440px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ---------- faq ---------- */
.faq { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.faq__list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.faq__item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%;
  padding: 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
}
.faq__q::after {
  content: "";
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4a659' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 260ms;
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  margin-top: 14px;
  padding-right: 32px;
}
.faq__a a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- cta ---------- */
.final-cta {
  padding-top: var(--section-pad); padding-bottom: var(--section-pad);
  text-align: center;
}
.final-cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 auto 20px;
  max-width: 18ch;
}
.final-cta h2 em {
  font-weight: 500;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
html[data-theme="light"] .final-cta h2 em {
  background: linear-gradient(180deg, var(--gold), #6f4e18);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-cta p {
  color: var(--text-2);
  font-size: 16px;
  margin: 0 auto 28px;
  max-width: 50ch;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 48px; padding-bottom: 40px;
  margin-top: 40px;
}
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-3);
}
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__links a { transition: color 180ms; }
.footer__links a:hover { color: var(--gold); }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__media video { display: none; }
  .hero__media__frame::after {
    content: "";
    position: absolute; inset: 0;
    background-image: url("../images/archstage-demo-poster.jpg");
    background-size: cover;
    background-position: center;
  }
  .hero__media__badge .dot { animation: none !important; }
  .stg__slides, .stg__caret, .stg__ddot, .pl-ring__fill { animation: none !important; }
}

/* ---------- comparison pages ---------- */
.cmp-hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.cmp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}
.cmp-hero__eyebrow b { color: var(--gold); font-weight: 500; }
.cmp-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text);
}
.cmp-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.cmp-hero__sub {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-2);
}

.cmp-table-wrap {
  max-width: 960px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: 0 clamp(4px, 2vw, 16px);
}
.cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: color-mix(in srgb, var(--surface) 45%, transparent);
}
.cmp-table th, .cmp-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.cmp-table thead th {
  background: color-mix(in srgb, var(--surface-2) 65%, transparent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
  padding: 14px 18px;
}
.cmp-table thead th.is-us {
  color: var(--gold);
  background: var(--gold-soft);
}
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table td.dim { color: var(--text-3); }
.cmp-table td.win { color: var(--text); }
.cmp-table td.win::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 600;
  margin-right: 2px;
}
.cmp-table td.lose::before {
  content: "— ";
  color: var(--text-3);
  margin-right: 2px;
}
.cmp-table .cmp-row-label {
  font-weight: 500;
  color: var(--text);
  width: 32%;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .cmp-table th, .cmp-table td { padding: 10px 12px; font-size: 13px; }
  .cmp-table .cmp-row-label { white-space: normal; }
}

.cmp-points {
  max-width: 900px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.cmp-point {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 3vw, 1.8rem);
  background: color-mix(in srgb, var(--surface) 40%, transparent);
}
.cmp-point__num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cmp-point h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  line-height: 1.2;
  margin: 0 0 0.6rem;
  color: var(--text);
}
.cmp-point p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

.cmp-verdict {
  max-width: 780px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--gold-soft), transparent 70%), color-mix(in srgb, var(--surface) 40%, transparent);
  text-align: center;
}
.cmp-verdict h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
  color: var(--text);
}
.cmp-verdict p {
  max-width: 580px;
  margin: 0 auto 1.5rem;
  color: var(--text-2);
  line-height: 1.6;
}
.cmp-back {
  text-align: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.cmp-back a {
  color: var(--gold);
  border-bottom: 1px dotted var(--gold-line);
}
.cmp-back a:hover { color: var(--gold-bright); }

/* ---------- small screens polish ---------- */
@media (max-width: 720px) {
  .nav__links { display: none; }
  .hero__caption { font-size: 10px; letter-spacing: 0.14em; padding: 6px 12px; }
  .pricing__price .now { font-size: 64px; }
}
