/* ============================================================
   Ecomli — "The Operator's Ledger" landing page, v2
   Standalone stylesheet, loaded only by templates/landing_fresh_v2.html
   v2 = v1 design system + proof, competitor-intel, engines,
   community, and trial-offer components.
   Fonts: Zodiak (display serif) · Switzer (body) · Spline Sans Mono (data)
   ============================================================ */

:root {
  /* ecomli.com brand DNA (mirrors :root in static/css/main.css):
     bg #0a0b0f · raised #0d0f14 · elevated #13151b · primary #7c5cff
     teal #00c9a7 · warn #f59e0b · rose #f43f5e · white-alpha borders.
     Legacy variable names kept so component rules stay untouched. */
  --paper: #0a0b0f;                            /* page bg        */
  --paper-2: #0d0f14;                          /* raised section */
  --card: #13151b;                             /* elevated card  */
  --ink: #f5f6f8;                              /* fg             */
  --ink-2: #a0a4b0;                            /* fg muted       */
  --ink-3: #848a99;                            /* fg dim         */
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.16);
  --green: #00c9a7;                            /* teal: checks, passes, positive data */
  --green-deep: #00b294;
  --brand: #7c5cff;                            /* primary purple */
  --brand-btn: #7152f5;                        /* AA-safe button purple */
  --brand-deep: #5b3ee8;
  --brand-light: #a78bfa;
  --brand-soft: rgba(124, 92, 255, 0.12);
  --pine: #13151b;                             /* elevated panel */
  --pine-deep: #0d0f14;                        /* framed surface */
  --pine-line: rgba(255, 255, 255, 0.09);
  --mint: #00c9a7;
  --mint-soft: rgba(0, 201, 167, 0.12);
  --copper: #f59e0b;                           /* warn amber     */
  --copper-text: #f5a623;
  --copper-soft: rgba(245, 158, 11, 0.12);
  --paper-on-dark: #f5f6f8;
  --paper-on-dark-2: rgba(245, 246, 248, 0.65);

  --font-display: "Zodiak", "Iowan Old Style", Georgia, serif;
  --font-body: "Switzer", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Spline Sans Mono", "SFMono-Regular", Consolas, monospace;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.35), 0 14px 36px -18px rgba(0, 0, 0, 0.6);
  --shadow-pop: 0 2px 4px rgba(0, 0, 0, 0.4), 0 28px 60px -24px rgba(0, 0, 0, 0.75);
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-feature-settings: "ss01" on;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }

a { color: var(--brand-light); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #c4b5fd; }

:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--brand); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; color: var(--paper); }

/* ---------- shared atoms ---------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--line-strong);
}
.eyebrow .idx { color: var(--copper-text); }

.on-dark .eyebrow { color: var(--paper-on-dark-2); }
.on-dark .eyebrow::before { background: var(--pine-line); }

.section-head {
  display: grid;
  gap: 1.1rem;
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}
.section-head .lede {
  color: var(--ink-2);
  font-size: 1.0625rem;
  max-width: 38rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand-btn);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-deep); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(255, 255, 255, 0.06); }

.btn-paper {
  background: var(--ink);
  color: var(--paper);
}
.btn-paper:hover { background: #fff; color: var(--paper); }

.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--brand-light); border-color: var(--brand-light); }

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" on;
}

/* ---------- reveal animation ----------
   Hidden state only applies when JS has tagged <html class="js">,
   so all content is visible without JavaScript. */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 15, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark { flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}
.main-nav a:hover { color: var(--ink); border-color: var(--line-strong); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.header-actions .sign-in {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.header-actions .sign-in:hover { color: var(--green); }
.header-actions .btn { padding: 0.7rem 1.15rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu: visibility-hidden when closed so it can never
   intercept taps over the header band. */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 1rem var(--gutter) 1.5rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.mobile-menu nav { display: grid; gap: 0.25rem; }
.mobile-menu nav a {
  display: block;
  padding: 0.8rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .mobile-cta {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

@media (max-width: 860px) {
  .main-nav, .header-actions .sign-in, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}

/* faint ledger grid behind the hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 70% 10%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 70% 10%, black 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy { display: grid; gap: 1.6rem; justify-items: start; }

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.35rem);
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-light);
}

.hero-sub {
  color: var(--ink-2);
  font-size: 1.125rem;
  max-width: 33rem;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.hero-meta li { list-style: none; display: flex; align-items: center; gap: 0.45rem; }
.hero-meta { padding: 0; margin: 0.4rem 0 0; }
.hero-meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* load-in stagger */
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero .rise { animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero .rise-1 { animation-delay: 0.05s; }
.hero .rise-2 { animation-delay: 0.15s; }
.hero .rise-3 { animation-delay: 0.25s; }
.hero .rise-4 { animation-delay: 0.35s; }
.hero .rise-5 { animation-delay: 0.45s; }

/* --- hero console collage --- */

.hero-visual {
  position: relative;
  min-height: 545px;
}

.panel {
  background: var(--pine);
  color: var(--paper-on-dark);
  border: 1px solid rgba(245, 246, 248, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
}

.panel-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--pine-line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-on-dark-2);
}
.panel-bar .dots { display: flex; gap: 5px; }
.panel-bar .dots i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(245, 246, 248, 0.22);
}
.panel-bar .live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--mint);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 201, 167, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0, 201, 167, 0); }
}

.hero-console {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.console-table { padding: 0.45rem 0.45rem 0.6rem; }
.console-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.66rem 0.65rem;
  border-radius: 8px;
  font-size: 0.82rem;
}
.console-row + .console-row { border-top: 1px dashed rgba(245, 246, 248, 0.09); }
.console-row .item { display: grid; gap: 2px; min-width: 0; }
.console-row .item b {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.console-row .item span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--paper-on-dark-2);
  letter-spacing: 0.05em;
}
.console-row .delta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-align: right;
  white-space: nowrap;
}
.console-row .delta small { display: block; font-size: 0.64rem; color: var(--paper-on-dark-2); }
.up { color: var(--mint); }
.warn { color: #f7b955; }

.tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 99px;
  white-space: nowrap;
}
.tag-held { background: var(--mint-soft); color: var(--mint); }
.tag-floor { background: rgba(245, 158, 11, 0.14); color: #f7b955; }
.tag-paused { background: rgba(245, 246, 248, 0.1); color: var(--paper-on-dark-2); }

/* floating shield card */
.hero-shield {
  position: absolute;
  right: 0;
  bottom: 2.25rem;
  rotate: 1.2deg;
  width: min(250px, 50%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.65rem;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}
.hero-shield .shield-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-2);
}
.hero-shield .scan-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  padding: 0.45rem 0;
  border-top: 1px dashed var(--line);
}
.hero-shield .scan-line:first-of-type { border-top: 0; }
.verdict {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.5rem;
  border-radius: 99px;
}
.verdict-pass { background: rgba(0, 201, 167, 0.12); color: var(--green); }
.verdict-block { background: var(--copper-soft); color: var(--copper-text); }

/* floating message card */
.hero-message {
  position: absolute;
  left: 0;
  bottom: 0;
  rotate: -1deg;
  width: min(264px, 52%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.5rem;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
.hero-message .msg-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero-message p { font-size: 0.86rem; color: var(--ink-2); }
.hero-message p b { color: var(--ink); font-weight: 600; }
.msg-check {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--green);
}

/* sync ticker */
.sync-ticker {
  margin-top: clamp(2.75rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.sync-ticker .track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  padding: 0.8rem 0;
  animation: ticker 36s linear infinite;
}
.sync-ticker:hover .track { animation-play-state: paused; }
.sync-ticker span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.sync-ticker span::before { content: "·"; color: var(--copper); font-weight: 700; }
.sync-ticker b { color: var(--ink); font-weight: 600; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sync-ticker .track { animation: none; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; margin-top: 1rem; }
  .hero-console { position: relative; inset: auto; }
  .hero-shield { position: relative; inset: auto; width: min(340px, 100%); margin: 0.75rem 0 0 auto; }
  .hero-message { position: relative; inset: auto; width: min(360px, 100%); margin-top: 0.75rem; }
}

/* ============================================================
   FACT STRIP
   ============================================================ */

.facts { padding: clamp(3rem, 7vw, 5rem) 0 0; }

.facts-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.4rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
}
.fact {
  padding: 1.6rem 1.5rem 1.8rem 0;
  border-top: 3px solid transparent;
  margin-top: -1px;
}
.fact + .fact { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.fact .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.fact .num sup {
  font-size: 0.45em;
  color: var(--copper-text);
  font-family: var(--font-mono);
  letter-spacing: 0;
}
.fact p {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  max-width: 16rem;
}

@media (max-width: 860px) {
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(odd) { padding-left: 0; border-left: 0; }
  .fact:nth-child(n + 3) { border-top: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .facts-grid { grid-template-columns: 1fr; }
  .fact { padding-left: 0 !important; border-left: 0 !important; }
  .fact + .fact { border-top: 1px solid var(--line); }
}

/* ============================================================
   PROBLEM — the leak ledger
   ============================================================ */

.problem { padding: clamp(5rem, 10vw, 8rem) 0; }

.problem-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.problem-copy { display: grid; gap: 1.4rem; }
.problem-copy h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.problem-copy h2 em { font-style: italic; color: var(--copper-text); }
.problem-copy .lede { color: var(--ink-2); max-width: 34rem; }
.problem-points { display: grid; gap: 0; margin-top: 0.5rem; }
.problem-points li {
  list-style: none;
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--ink-2);
}
.problem-points { padding: 0; margin: 0.5rem 0 0; }
.problem-points li b { color: var(--ink); font-weight: 600; }
.problem-points li::before {
  content: "—";
  color: var(--copper);
  flex: none;
  font-weight: 600;
}

/* the receipt */
.receipt {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  padding: 1.8rem 1.7rem 2rem;
  font-family: var(--font-mono);
  position: relative;
  transform: rotate(1.2deg);
}
.receipt::before, .receipt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background-image: radial-gradient(circle at 6px -2px, transparent 6px, var(--paper) 6.5px);
  background-size: 14px 8px;
  background-position: 0 0;
}
.receipt::before { top: -1px; transform: scaleY(-1) translateY(7px); display: none; }
.receipt::after { bottom: -8px; }
.receipt-head {
  text-align: center;
  display: grid;
  gap: 0.3rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed var(--line-strong);
}
.receipt-head .rc-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.receipt-head .rc-sub { font-size: 0.66rem; color: var(--ink-3); letter-spacing: 0.08em; }
.receipt-lines { padding: 0.8rem 0; margin: 0; display: grid; }
.receipt-lines li {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  font-size: 0.8rem;
}
.receipt-lines .rl-name { color: var(--ink); white-space: nowrap; }
.receipt-lines .rl-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-3px);
  min-width: 1.5rem;
}
.receipt-lines .rl-cost { color: var(--copper-text); white-space: nowrap; font-size: 0.76rem; }
.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px dashed var(--line-strong);
  padding-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.receipt-total .rt-val { color: var(--copper-text); }
.receipt-foot {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.64rem;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .problem-inner { grid-template-columns: 1fr; }
  .receipt { transform: rotate(0.8deg); max-width: 30rem; }
}

/* ============================================================
   SOLUTION — three pillars
   ============================================================ */

.solution {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.pillar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 2rem;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.9rem;
  align-content: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.pillar .p-idx {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--copper-text);
}
.pillar h3 { font-size: 1.45rem; }
.pillar p { color: var(--ink-2); font-size: 0.96rem; }
.pillar .p-list { display: grid; gap: 0.4rem; padding: 0.4rem 0 0; margin: 0; }
.pillar .p-list li {
  list-style: none;
  font-size: 0.88rem;
  color: var(--ink-2);
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}
.pillar .p-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex: none; }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; max-width: 32rem; }
}

/* ============================================================
   FEATURES
   ============================================================ */

.features { padding: clamp(5rem, 10vw, 8rem) 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
  border-color: rgba(0, 201, 167, 0.35);
}
.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(0, 201, 167, 0.09);
  color: var(--green);
  display: grid;
  place-items: center;
}
.feature .f-idx {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.feature h3 { font-size: 1.3rem; }
.feature p { color: var(--ink-2); font-size: 0.94rem; flex: 1; }
.feature .f-proof {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  border-top: 1px dashed var(--line);
  padding-top: 0.8rem;
}
.feature .f-proof b { color: var(--green); font-weight: 600; }

@media (max-width: 1000px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WORKFLOW
   ============================================================ */

.workflow {
  background: var(--pine);
  color: var(--paper-on-dark);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.workflow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--pine-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--pine-line) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black, transparent 75%);
}
.workflow .container { position: relative; }
.workflow h2 { color: var(--paper-on-dark); }
.workflow .lede { color: var(--paper-on-dark-2); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(245, 246, 248, 0.04);
  border: 1px solid var(--pine-line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}
.step .s-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.step .s-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--pine-line);
}
.step h3 { font-size: 1.3rem; color: var(--paper-on-dark); }
.step p { font-size: 0.92rem; color: var(--paper-on-dark-2); }
.step .s-detail {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: rgba(0, 201, 167, 0.85);
  padding-top: 0.5rem;
  border-top: 1px dashed var(--pine-line);
}

@media (max-width: 1000px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   CONSOLE (big product mockup)
   ============================================================ */

.console-section { padding: clamp(5rem, 10vw, 8rem) 0; }

.console-frame {
  background: var(--pine-deep);
  border-radius: 20px;
  border: 1px solid rgba(245, 246, 248, 0.1);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  color: var(--paper-on-dark);
}

.console-chrome {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--pine-line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--paper-on-dark-2);
}
.console-chrome .dots { display: flex; gap: 6px; }
.console-chrome .dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(245, 246, 248, 0.18); }
.console-chrome .url {
  margin-inline: auto;
  background: rgba(245, 246, 248, 0.07);
  border-radius: 6px;
  padding: 0.3rem 1.1rem;
  letter-spacing: 0.05em;
}

.console-body {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 250px;
  min-height: 430px;
}

.console-side {
  border-right: 1px solid var(--pine-line);
  padding: 1.2rem 0.9rem;
  display: grid;
  gap: 0.2rem;
  align-content: start;
  font-size: 0.84rem;
}
.console-side .cs-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  color: var(--paper-on-dark-2);
}
.console-side .cs-item.active {
  background: rgba(0, 201, 167, 0.1);
  color: var(--mint);
  font-weight: 500;
}
.console-side .cs-item svg { opacity: 0.8; }

.console-main { padding: 1.4rem 1.5rem; min-width: 0; }
.console-main .cm-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.console-main .cm-head h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--paper-on-dark);
  letter-spacing: 0;
}
.console-main .cm-head .mono { font-size: 0.68rem; color: var(--paper-on-dark-2); }

.cm-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.cm-table th {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-on-dark-2);
  text-align: left;
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid var(--pine-line);
}
.cm-table td {
  padding: 0.62rem 0.6rem;
  border-bottom: 1px dashed rgba(245, 246, 248, 0.08);
  white-space: nowrap;
}
.cm-table td:first-child { white-space: normal; min-width: 11rem; }
.cm-table .num { font-family: var(--font-mono); font-size: 0.76rem; }
.cm-table tr:hover td { background: rgba(245, 246, 248, 0.03); }

.console-rail {
  border-left: 1px solid var(--pine-line);
  padding: 1.3rem 1.2rem;
  display: grid;
  gap: 1.2rem;
  align-content: start;
}
.rail-card {
  background: rgba(245, 246, 248, 0.04);
  border: 1px solid var(--pine-line);
  border-radius: 10px;
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.55rem;
}
.rail-card .rc-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-on-dark-2);
}
.rail-card .rc-big {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}
.rail-card .rc-big small { font-size: 0.55em; color: var(--mint); font-family: var(--font-mono); }
.rail-feed { display: grid; gap: 0.55rem; padding: 0; margin: 0; }
.rail-feed li {
  list-style: none;
  font-size: 0.74rem;
  color: var(--paper-on-dark-2);
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}
.rail-feed li b { color: var(--paper-on-dark); font-weight: 500; }
.rail-feed .t { font-family: var(--font-mono); font-size: 0.62rem; color: rgba(0, 201, 167, 0.8); flex: none; }

/* spark bars */
.spark {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
}
.spark i {
  flex: 1;
  background: linear-gradient(to top, rgba(0, 201, 167, 0.25), rgba(0, 201, 167, 0.85));
  border-radius: 3px 3px 0 0;
  min-height: 8%;
  transform-origin: bottom;
  animation: grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.spark i:nth-child(2n) { animation-delay: 0.1s; }
.spark i:nth-child(3n) { animation-delay: 0.2s; }
@keyframes grow { from { transform: scaleY(0); } }

.console-annotations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 1.6rem;
}
.annot {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--ink-2);
  padding-top: 0.9rem;
  border-top: 2px solid var(--ink);
}
.annot b { color: var(--ink); font-weight: 600; }
.annot .a-idx {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--copper-text);
}

@media (max-width: 1020px) {
  .console-body { grid-template-columns: 180px minmax(0, 1fr); }
  .console-rail { display: none; }
}
@media (max-width: 700px) {
  .console-body { grid-template-columns: 1fr; }
  .console-side { display: none; }
  .cm-table th:nth-child(4), .cm-table td:nth-child(4) { display: none; }
  .console-annotations { grid-template-columns: 1fr; }
}

/* ============================================================
   PROOF — seller-submitted Seller Hub screenshots
   ============================================================ */

.proof {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  align-items: stretch;
}
.proof-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
/* cards sit flat and aligned; uniform image crop keeps all four rows level */

.pc-head {
  padding: 1.1rem 1.15rem 0.95rem;
  display: grid;
  gap: 0.3rem;
  border-bottom: 1px dashed var(--line-strong);
}
.pc-amount {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.45vw, 1.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.pc-period {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-3);
}
.pc-img {
  display: block;
  border-bottom: 1px dashed var(--line);
  background: var(--paper-2);
}
.pc-img {
  aspect-ratio: 5 / 8;
  overflow: hidden;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.pc-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  padding: 0.85rem 1.15rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.pc-stats b { color: var(--green); font-weight: 600; }

.proof-disclaimer {
  margin-top: 2.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem 2rem;
}
.proof-disclaimer p {
  font-size: 0.84rem;
  color: var(--ink-3);
  max-width: 44rem;
}

@media (max-width: 1000px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .proof-grid { grid-template-columns: 1fr; max-width: 22rem; margin-inline: auto; }
}

/* ============================================================
   COMPETITOR INTELLIGENCE
   ============================================================ */

.intel { padding: clamp(5rem, 10vw, 8rem) 0; }

.intel-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.intel-steps { display: grid; gap: 0; padding: 0; margin: 0.5rem 0 0; }
.intel-steps li {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}
.intel-steps .is-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--copper-text);
  flex: none;
  padding-top: 0.25rem;
}
.intel-steps b { display: block; font-weight: 600; margin-bottom: 0.2rem; }
.intel-steps p { font-size: 0.93rem; color: var(--ink-2); }

.terminal {
  background: var(--pine-deep);
  color: var(--paper-on-dark);
  border: 1px solid rgba(245, 246, 248, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  rotate: 0.6deg;
}
.terminal .panel-bar { border-color: var(--pine-line); }
.term-lines {
  padding: 1.2rem 1.3rem 1.4rem;
  display: grid;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.5;
}
.term-lines .tl { color: var(--paper-on-dark-2); }
.term-lines .tl::before { content: "> "; color: rgba(245, 246, 248, 0.35); }
.term-lines .tl.cmd { color: var(--paper-on-dark); }
.term-lines .tl.cmd::before { content: "$ "; color: var(--mint); }
.term-lines .ok { color: var(--mint); }
.term-lines .em { color: #f7b955; }
.term-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--mint);
  vertical-align: -2px;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 900px) {
  .intel-inner { grid-template-columns: 1fr; }
  .terminal { rotate: 0deg; }
}

/* ============================================================
   TWO ENGINES
   ============================================================ */

.engines {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.engine {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.8rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}
.engine-dark {
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.12), rgba(124, 92, 255, 0.02) 45%), var(--card);
  border-color: rgba(124, 92, 255, 0.32);
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.12), 0 0 40px rgba(124, 92, 255, 0.08), var(--shadow-card);
  color: var(--paper-on-dark);
}
.engine .e-pill {
  justify-self: start;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 99px;
  background: rgba(0, 201, 167, 0.09);
  color: var(--green);
}
.engine-dark .e-pill { background: var(--brand-soft); color: var(--brand-light); }
.engine h3 { font-size: 1.6rem; }
.engine > p { font-size: 0.96rem; color: var(--ink-2); }
.engine-dark > p { color: var(--paper-on-dark-2); }
.engine .e-list { display: grid; gap: 0.55rem; padding: 0.4rem 0 0; margin: 0; }
.engine .e-list li {
  list-style: none;
  font-size: 0.9rem;
  color: var(--ink-2);
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
}
.engine .e-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex: none; }
.engine-dark .e-list li { color: var(--paper-on-dark-2); }
.engine-dark .e-list li::before { color: var(--brand-light); }
.engine .e-foot {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  border-top: 1px dashed var(--line);
  padding-top: 0.85rem;
}
.engine-dark .e-foot { color: rgba(245, 246, 248, 0.55); border-color: var(--pine-line); }

.engines-foot {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.engines-foot b { color: var(--ink); font-weight: 600; }

@media (max-width: 860px) {
  .engine-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMMUNITY / MENTORSHIP
   ============================================================ */

.community {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.community-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.community-points { display: grid; gap: 0; margin-top: 0.5rem; }
.community-point {
  display: flex;
  gap: 1.1rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
}
.community-point .cp-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(0, 201, 167, 0.09);
  color: var(--green);
  display: grid;
  place-items: center;
}
.community-point b { display: block; font-weight: 600; margin-bottom: 0.25rem; }
.community-point p { font-size: 0.93rem; color: var(--ink-2); }

.chat-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 1.2rem 1.3rem 1.4rem;
  display: grid;
  gap: 0;
  rotate: -0.6deg;
}
.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed var(--line-strong);
}
.chat-msg {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 0;
}
.chat-msg + .chat-msg { border-top: 1px dashed var(--line); }
.chat-msg .cm-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}
.chat-msg .cm-who {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--copper-text);
}
.chat-msg.member .cm-who { color: var(--green); }
.chat-msg .cm-time { color: var(--ink-3); }
.chat-msg p { font-size: 0.9rem; color: var(--ink-2); }

@media (max-width: 900px) {
  .community-inner { grid-template-columns: 1fr; }
  .chat-panel { rotate: 0deg; max-width: 32rem; }
}

/* ============================================================
   TRIAL BANNER + GUARANTEE
   ============================================================ */

.trial-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  background: linear-gradient(120deg, rgba(124, 92, 255, 0.16), rgba(124, 92, 255, 0.03) 60%), var(--card);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: var(--paper-on-dark);
  border-radius: var(--radius);
  padding: 1.4rem 1.7rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}
.trial-banner .tb-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--mint);
  flex: none;
}
.trial-banner .tb-copy { flex: 1 1 20rem; display: grid; gap: 0.2rem; }
.trial-banner .tb-copy b { font-weight: 600; font-size: 1.02rem; }
.trial-banner .tb-copy span { font-size: 0.88rem; color: var(--paper-on-dark-2); }
.trial-banner .btn { flex: none; }

.plan .pl-badge {
  position: absolute;
  top: -0.7rem;
  right: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--copper);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 99px;
}
.plan { position: relative; }

.guarantee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0;
  border: 1px dashed rgba(245, 246, 248, 0.3);
  border-radius: 99px;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245, 246, 248, 0.75);
}
.guarantee span { display: inline-flex; align-items: center; }
.guarantee span + span::before { content: "·"; margin: 0 1rem; color: var(--mint); }

/* ============================================================
   PRICING TEASER
   ============================================================ */

.pricing { padding: clamp(5rem, 10vw, 8rem) 0; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.plan-dark {
  background: var(--pine);
  border-color: rgba(245, 246, 248, 0.12);
  color: var(--paper-on-dark);
}
.plan .pl-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.plan-dark .pl-name { color: var(--mint); }
.plan .pl-price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1;
}
.plan .pl-price small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.plan-dark .pl-price small { color: var(--paper-on-dark-2); }
.plan .pl-line { font-size: 0.88rem; color: var(--ink-2); }
.plan-dark .pl-line { color: var(--paper-on-dark-2); }
.plan .pl-spec {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  border-top: 1px dashed var(--line);
  padding-top: 0.8rem;
  line-height: 1.7;
}
.plan-dark .pl-spec { color: rgba(245, 246, 248, 0.55); border-color: var(--pine-line); }

.pricing-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.92rem;
}

@media (max-width: 1000px) { .plan-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .plan-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.25rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 400;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-idx {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--copper-text);
  letter-spacing: 0.1em;
  flex: none;
  transform: translateY(-2px);
}
.faq-item summary .q-mark {
  margin-left: auto;
  flex: none;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ink-2);
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item[open] summary .q-mark {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.faq-item summary:hover { color: var(--brand-light); }
.faq-item .faq-a {
  padding: 0 0.25rem 1.4rem calc(1rem + 1.6rem);
  color: var(--ink-2);
  font-size: 0.97rem;
  max-width: 38rem;
}

@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; }
  .faq-item .faq-a { padding-left: 0.25rem; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  background: var(--pine-deep);
  color: var(--paper-on-dark);
  padding: clamp(5.5rem, 11vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(ellipse 50% 40% at 30% 60%, rgba(124, 92, 255, 0.22), transparent 70%),
    radial-gradient(ellipse 40% 35% at 75% 30%, rgba(0, 201, 167, 0.1), transparent 70%);
  pointer-events: none;
}
.final-cta .container {
  position: relative;
  display: grid;
  gap: 1.8rem;
  justify-items: center;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--paper-on-dark);
  max-width: 22ch;
}
.final-cta h2 em { font-style: italic; color: var(--brand-light); }
.final-cta .lede {
  color: var(--paper-on-dark-2);
  max-width: 36rem;
  font-size: 1.07rem;
}
.final-cta .cta-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.final-cta .reassure {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(245, 246, 248, 0.55);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--pine-deep);
  color: var(--paper-on-dark-2);
  border-top: 1px solid var(--pine-line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--pine-line);
}
.footer-brand { display: grid; gap: 1rem; align-content: start; justify-items: start; }
.footer-brand .brand { color: var(--paper-on-dark); }
.footer-brand p { font-size: 0.9rem; max-width: 22rem; }
.footer-col h2 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-on-dark);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; padding: 0; margin: 0; }
.footer-col li { list-style: none; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--paper-on-dark-2);
  text-decoration: none;
}
.footer-col a:hover { color: var(--mint); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(245, 246, 248, 0.64);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   v2.1 — cold-buyer promise components
   ============================================================ */

/* hero proof pill + beginner pills */
.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.22);
  border-radius: 99px;
  padding: 0.45rem 0.9rem;
}
.proof-pill .pp-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.hero-pills li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 0.45rem 0.9rem;
}
.hero-pills li::before { content: "✓"; color: var(--green); font-weight: 700; }

/* repeated section-level CTA */
.sec-cta {
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  text-align: center;
}
.sec-cta .sc-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  color: var(--ink-3);
}
.on-dark .sec-cta .sc-note { color: rgba(245, 246, 248, 0.55); }

/* ---------- how the business works ---------- */
.model { padding: clamp(5rem, 10vw, 8rem) 0; }
.model-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.model-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem 1.3rem;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}
.model-step .m-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--copper-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.model-step .m-num::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.model-step h3 { font-size: 1.18rem; }
.model-step p { font-size: 0.88rem; color: var(--ink-2); }
@media (max-width: 1020px) { .model-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .model-grid { grid-template-columns: 1fr; } }

/* ---------- income opportunity ---------- */
.income {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.income-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.milestone {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.8rem 1.6rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  border-top: 3px solid var(--green);
}
.milestone:nth-child(2) { border-top-color: var(--brand); }
.milestone:nth-child(3) { border-top-color: var(--copper); }
.milestone .ms-when {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.milestone h3 { font-size: 1.45rem; }
.milestone p { font-size: 0.92rem; color: var(--ink-2); }

.income-aside {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.3rem;
  align-items: stretch;
}
.income-callout {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(124, 92, 255, 0.04) 55%), var(--card);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: var(--paper-on-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.9rem 1.8rem;
  display: grid;
  gap: 0.8rem;
  align-content: center;
}
.income-callout h3 { color: var(--paper-on-dark); font-size: 1.6rem; }
.income-callout p { color: var(--paper-on-dark-2); font-size: 0.95rem; }

.chart-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem 1.5rem 1.2rem;
  display: grid;
  gap: 0.9rem;
  align-content: space-between;
}
.chart-card .cc-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 130px;
}
.bars .bar {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 0.4rem;
  justify-items: center;
  height: 100%;
}
.bars .bar i {
  align-self: end;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 201, 167, 0.5), var(--green));
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  animation: grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.bars .bar:last-child i { background: linear-gradient(to top, rgba(245, 158, 11, 0.55), var(--copper)); }
.bars .bar b {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}
.bars .bar span {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  color: var(--ink-3);
  white-space: nowrap;
}
.income-disclaimer {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--ink-3);
  max-width: 44rem;
}
@media (max-width: 900px) {
  .income-grid { grid-template-columns: 1fr; }
  .income-aside { grid-template-columns: 1fr; }
}

/* ---------- trusted strip ---------- */
.trusted {
  border-block: 1px solid var(--line);
  background: var(--paper);
  padding: 1.1rem 0;
}
.trusted .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.trusted b { color: var(--ink); font-weight: 600; }
.trusted .t-rev { color: var(--green); font-weight: 600; }

/* ---------- marketplaces ---------- */
.market { padding: clamp(5rem, 10vw, 8rem) 0; }
.market-status {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 2.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.market-status span { display: inline-flex; align-items: center; gap: 0.5rem; }
.market-status i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
}
.market-status .ms-beta i { background: var(--copper); }
.market-status .ms-soon i { background: #f43f5e; }

/* ---------- what you get ---------- */
.gets {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.gets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.4rem;
}
.get-item {
  display: flex;
  gap: 0.85rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.get-item .gi-check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0, 201, 167, 0.1);
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
}
.get-item b { font-weight: 600; }
.get-item p { font-size: 0.88rem; color: var(--ink-2); margin-top: 0.15rem; }
.value-box {
  margin-top: 1.6rem;
  background: linear-gradient(120deg, rgba(124, 92, 255, 0.16), rgba(124, 92, 255, 0.03) 60%), var(--card);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: var(--paper-on-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.7rem 1.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.value-box .vb-copy { flex: 1 1 20rem; display: grid; gap: 0.25rem; }
.value-box .vb-copy b { font-size: 1.15rem; font-weight: 600; }
.value-box .vb-copy span { font-size: 0.9rem; color: var(--paper-on-dark-2); }
.value-box .vb-price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--mint);
}
.value-box .vb-price small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--paper-on-dark-2);
  margin-top: 0.4rem;
}
@media (max-width: 760px) { .gets-grid { grid-template-columns: 1fr; } }

/* ---------- 3-step how-it-works variant ---------- */
.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps-3 { grid-template-columns: 1fr; } }

/* ---------- risk analysis ---------- */
.risk { padding: clamp(5rem, 10vw, 8rem) 0; }
.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.risk-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.9rem 1.7rem;
  display: grid;
  gap: 0;
  align-content: start;
}
.risk-card .rk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line-strong);
}
.risk-card h3 { font-size: 1.45rem; }
.risk-card .rk-sign {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.risk-start .rk-sign { background: rgba(0, 201, 167, 0.1); color: var(--green); }
.risk-wait .rk-sign { background: var(--copper-soft); color: var(--copper-text); }
.risk-card ul { display: grid; padding: 0; margin: 0; }
.risk-card li {
  list-style: none;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
}
.risk-card li b { display: block; font-weight: 600; }
.risk-card li p { font-size: 0.88rem; color: var(--ink-2); margin-top: 0.15rem; }
.risk-card .rk-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.risk-start .rk-total .rt-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
}
.risk-wait .rk-total { color: var(--copper-text); }
@media (max-width: 860px) { .risk-grid { grid-template-columns: 1fr; } }

/* ============================================================
   v2.2 — polish pass + demo embed + pricing page
   ============================================================ */

/* anchor targets clear the sticky header */
[id] { scroll-margin-top: 5.5rem; }

/* visible keyboard focus on dark surfaces */
.on-dark :focus-visible,
.site-footer :focus-visible,
.engine-dark :focus-visible,
.income-callout :focus-visible,
.value-box :focus-visible,
.trial-banner :focus-visible,
.terminal :focus-visible {
  outline-color: var(--mint);
}

/* ghost button variant for dark sections (replaces inline styles) */
.btn-ghost-dark {
  background: transparent;
  color: var(--paper-on-dark);
  border-color: rgba(245, 246, 248, 0.3);
}
.btn-ghost-dark:hover {
  color: var(--paper-on-dark);
  border-color: var(--paper-on-dark);
  background: rgba(245, 246, 248, 0.06);
}

.eyebrow-center { justify-content: center; }
.eyebrow-center::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--line-strong);
}
.on-dark .eyebrow-center::after { background: var(--pine-line); }

.scan-note { font-size: 0.7rem; color: var(--ink-3); }

/* consistent card hover language */
.model-step,
.get-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.model-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.get-item:hover { border-color: rgba(0, 201, 167, 0.35); }

/* ---------- demo video embed ---------- */
.demo { padding: clamp(3.5rem, 7vw, 5.5rem) 0 0; }
.demo-frame {
  background: var(--pine-deep);
  border: 1px solid rgba(245, 246, 248, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  max-width: 920px;
  margin-inline: auto;
}
.demo-frame .panel-bar { border-color: var(--pine-line); }
.demo-stage { position: relative; aspect-ratio: 16 / 9; }
.demo-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--pine-deep);
}
.demo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  color: var(--paper-on-dark-2);
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(124, 92, 255, 0.3), transparent 70%),
    var(--pine-deep);
  padding: 2rem;
}
.demo-placeholder .play-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(245, 246, 248, 0.25);
  background: rgba(245, 246, 248, 0.06);
  display: grid;
  place-items: center;
  color: var(--mint);
}
.demo-placeholder b {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--paper-on-dark);
}
.demo-placeholder p { font-size: 0.9rem; max-width: 30rem; }
.demo-placeholder .demo-hint {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  color: rgba(245, 246, 248, 0.4);
}
.demo-caption {
  text-align: center;
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

/* ---------- pricing page ---------- */
.pricing-hero { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem); }
.pricing-hero .section-head { margin-bottom: 1.8rem; }

.status-key {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  font-size: 0.84rem;
  color: var(--ink-2);
  margin-bottom: 1.8rem;
}
.status-key span { display: inline-flex; align-items: center; gap: 0.5rem; }

.badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 99px;
  white-space: nowrap;
}
.badge-live { background: rgba(0, 201, 167, 0.1); color: var(--green); }
.badge-beta { background: var(--copper-soft); color: var(--copper-text); }
.badge-roadmap { background: rgba(255, 255, 255, 0.08); color: var(--ink-2); }

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 4px;
  background: var(--card);
}
.billing-toggle button {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
  background: none;
  border: 0;
  border-radius: 99px;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.billing-toggle button[aria-pressed="true"] {
  background: var(--brand-btn);
  color: #fff;
}
.billing-toggle .save-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.45rem;
  border-radius: 99px;
  background: rgba(0, 201, 167, 0.12);
  color: var(--green);
}
.billing-toggle button[aria-pressed="true"] .save-tag {
  background: var(--mint-soft);
  color: var(--mint);
}

.plans { padding-bottom: clamp(4rem, 8vw, 6rem); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.plan-card.featured {
  border-color: rgba(124, 92, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.3), 0 0 60px rgba(124, 92, 255, 0.12), var(--shadow-pop);
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.07), transparent 40%), var(--card);
}
.plan-card .plc-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: 99px;
  background: var(--brand-btn);
  color: #fff;
  white-space: nowrap;
}
.plan-card .plc-badge.plc-badge-copper { background: var(--copper); color: #1c1303; }
.plan-card .plc-fit {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.plan-card h2 {
  font-size: 1.9rem;
  margin-top: 0.45rem;
}
.plan-card .plc-tagline {
  font-size: 0.9rem;
  color: var(--ink-2);
  margin-top: 0.5rem;
  min-height: 2.7em;
}
.plan-card .plc-price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  margin-top: 1.2rem;
}
.plan-card .plc-price small {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.plan-card .plc-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-3);
  letter-spacing: 0.03em;
  margin-top: 0.45rem;
}
.plan-card .plc-spec {
  font-size: 0.86rem;
  color: var(--ink-2);
  border-block: 1px dashed var(--line);
  padding: 0.8rem 0;
  margin-top: 1.1rem;
}
.plan-card .btn { margin-top: 1.2rem; width: 100%; }
.plan-card .plc-sub {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-top: 0.7rem;
}
.plan-card .plc-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 1.4rem;
}
.plan-card .plc-features {
  display: grid;
  gap: 0.6rem;
  padding: 0.9rem 0 0;
  margin: 0;
}
.plan-card .plc-features li {
  list-style: none;
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.plan-card .plc-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex: none;
}
.plan-card .plc-features li .badge { margin-left: 0.35rem; vertical-align: 1px; }

@media (max-width: 1000px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .plan-card .plc-tagline { min-height: 0; }
}

/* volume tiers */
.volume {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.volume-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.9rem;
}
.volume-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.volume-pills button {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.volume-pills button:hover { border-color: var(--ink); color: var(--ink); }
.volume-pills button[aria-pressed="true"] {
  background: var(--brand-btn);
  border-color: var(--brand-btn);
  color: #fff;
}
.volume-result {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  border-top: 1px dashed var(--line-strong);
  margin-top: 1.5rem;
  padding-top: 1.4rem;
}
.volume-result .vr-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
}
.volume-result .vr-price small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-3);
}
.volume-result .vr-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-3);
  margin-top: 0.4rem;
}
.volume-enterprise {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: baseline;
}

/* comparison table */
.compare { padding: clamp(4rem, 8vw, 6rem) 0; }
.swipe-hint {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  margin: 0 0 0.6rem;
}
@media (max-width: 700px) { .swipe-hint { display: block; } }
.compare-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 640px;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px dashed var(--line);
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper-2);
}
.compare-table .ct-group td {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-text);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.compare-table td:first-child { color: var(--ink-2); max-width: 24rem; }
.compare-table td:not(:first-child), .compare-table th:not(:first-child) { white-space: nowrap; }
.compare-table .ct-pro { background: rgba(124, 92, 255, 0.08); }
.compare-table .ct-dash { color: var(--ink-3); }
.compare-table tbody tr:last-child td { border-bottom: 0; font-weight: 600; color: var(--ink); }

@media (max-width: 700px) {
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 0.7rem 0.85rem; }
}

/* ============================================================
   v2.3 — subpages (about · legal · blog)
   ============================================================ */

.page-hero { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem); }
.page-hero .section-head { margin-bottom: 0; }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.page-hero h1 em { font-style: italic; color: var(--brand-light); }
.page-hero.centered .section-head {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}
.page-hero.centered .eyebrow { justify-content: center; }
.page-hero.centered .eyebrow::after {
  content: "";
  width: 2rem; height: 1px;
  background: var(--line-strong);
}

/* long-form / legal / article prose */
.prose {
  max-width: 46rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink-2);
}
.prose h2 {
  font-size: 1.55rem;
  color: var(--ink);
  margin: 2.4rem 0 0.9rem;
  line-height: 1.25;
}
.prose h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin: 1.9rem 0 0.7rem;
}
.prose p { margin: 0 0 1.15rem; }
.prose ul, .prose ol { margin: 0 0 1.15rem 1.4rem; padding: 0; }
.prose li { margin-bottom: 0.45rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  border-left: 3px solid var(--brand);
  background: var(--brand-soft);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.4rem;
  margin: 1.5rem 0;
  font-style: italic;
}
.prose blockquote p { margin: 0; }
.prose img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.5rem 0; }
.prose pre {
  background: #07080c;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  margin: 1.5rem 0;
}
.prose code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--brand-soft);
  border-radius: 5px;
  padding: 0.1em 0.4em;
}
.prose pre code { background: none; padding: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.92rem; }
.prose th, .prose td { border: 1px solid var(--line-strong); padding: 0.6rem 0.9rem; text-align: left; }
.prose th { background: var(--brand-soft); color: var(--ink); }
.prose hr { border: 0; height: 1px; background: var(--line); margin: 2rem 0; }

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

/* about page */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: minmax(0, 1fr); } }

.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem 1.5rem;
  display: grid;
  gap: 0.5rem;
}
.stat-card .sc-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--green);
}
.stat-card p { margin: 0; font-size: 0.9rem; color: var(--ink-2); }
.stat-card.sc-brand { border-top-color: var(--brand); }
.stat-card.sc-brand .sc-num { color: var(--brand-light); }
.stat-card.sc-warn { border-top-color: var(--copper); }
.stat-card.sc-warn .sc-num { color: var(--copper-text); }

.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  background: linear-gradient(120deg, rgba(124, 92, 255, 0.16), rgba(124, 92, 255, 0.03) 60%), var(--card);
  border: 1px solid rgba(124, 92, 255, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem 1.8rem;
}
.callout p { margin: 0; flex: 1 1 22rem; font-size: 1.05rem; font-weight: 600; color: var(--ink); }

.team-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.8rem 1.5rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.team-card .tc-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  background: var(--brand-soft);
  border: 2px solid rgba(124, 92, 255, 0.3);
  color: var(--brand-light);
  margin-bottom: 0.5rem;
}
.team-card.tc-teal .tc-avatar { background: var(--mint-soft); border-color: rgba(0, 201, 167, 0.3); color: var(--green); }
.team-card.tc-warn .tc-avatar { background: var(--copper-soft); border-color: rgba(245, 158, 11, 0.3); color: var(--copper-text); }
.team-card h3 { font-size: 1.25rem; }
.team-card .tc-role {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-light);
}
.team-card.tc-teal .tc-role { color: var(--green); }
.team-card.tc-warn .tc-role { color: var(--copper-text); }
.team-card p { margin: 0.3rem 0 0; font-size: 0.88rem; color: var(--ink-2); }

.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }

/* blog */
.cat-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cat-pills a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 0.45rem 0.95rem;
  transition: all 0.15s ease;
}
.cat-pills a:hover { color: var(--ink); border-color: var(--ink); }
.cat-pills a[aria-current="true"] {
  background: var(--brand-btn);
  border-color: var(--brand-btn);
  color: #fff;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
@media (max-width: 1000px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: minmax(0, 1fr); } }

.post-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.4);
  box-shadow: 0 0 32px rgba(124, 92, 255, 0.1), var(--shadow-pop);
  color: inherit;
}
.post-card .pcv {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 30% 20%, rgba(124, 92, 255, 0.16), transparent 65%),
    var(--paper-2);
  display: grid;
  place-items: center;
  color: rgba(124, 92, 255, 0.45);
  border-bottom: 1px solid var(--line);
}
.post-card .pcv img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card .pc-body { padding: 1.2rem 1.3rem 1.3rem; display: grid; gap: 0.55rem; align-content: start; }
.post-card .pc-meta { display: flex; align-items: center; gap: 0.7rem; }
.cat-chip {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: var(--brand-soft);
  border-radius: 6px;
  padding: 0.25rem 0.55rem;
  text-decoration: none;
}
.read-time {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--ink-3);
}
.post-card h2 {
  font-size: 1.18rem;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 400;
}
.post-card .pc-excerpt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-2);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card .pc-date {
  margin-top: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--ink-3);
}

.article-head { max-width: 46rem; display: grid; gap: 1rem; }
.article-head h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; }
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--ink-3);
}
.article-cover {
  max-width: 46rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  margin-top: 1.6rem;
}
.article-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
}
.back-link:hover { color: var(--brand-light); }

.empty-blog {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: 3.5rem 1.5rem;
  background: var(--card);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  max-width: 36rem;
  margin-inline: auto;
}
.empty-blog .eb-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand-light);
  display: grid;
  place-items: center;
}
.empty-blog b { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; }
.empty-blog p { margin: 0; font-size: 0.9rem; color: var(--ink-2); max-width: 26rem; }

/* unlinked footer item (YouTube — link coming later) */
.footer-col .soon {
  font-size: 0.9rem;
  color: var(--ink-3);
  cursor: default;
}

/* ============================================================
   v2.4 — auth pages (login/signup) + 404, in the brand system
   ============================================================ */

.auth-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 3rem) var(--gutter);
  position: relative;
  overflow-x: hidden;
}
.auth-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.auth-body::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 90vw);
  height: 460px;
  background: radial-gradient(ellipse, rgba(124, 92, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.auth-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 27rem;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.auth-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.auth-card {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: grid;
  gap: 1.25rem;
}
.auth-head { display: grid; gap: 0.4rem; text-align: center; }
.auth-head h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.1;
}
.auth-head p { color: var(--ink-2); font-size: 0.92rem; }

.btn-google {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--ink-3);
  cursor: not-allowed;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-form { display: grid; gap: 1rem; }
.auth-field { display: grid; gap: 0.4rem; }
.auth-field .lbl-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}
.auth-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
}
.auth-field .field-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-light);
  text-decoration: none;
}
.auth-field .field-link:hover { color: #c4b5fd; }
.auth-input {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.auth-input::placeholder { color: var(--ink-3); }
.auth-input:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.18);
}
select.auth-input {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23848a99' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.1rem;
}
.auth-hint {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--ink-3);
}
.auth-hint svg { flex: none; opacity: 0.8; }

.auth-form .btn { width: 100%; padding: 0.9rem 1.2rem; font-size: 0.95rem; margin-top: 0.2rem; }

.auth-alert {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244, 63, 94, 0.35);
  background: rgba(244, 63, 94, 0.1);
  color: #fda4af;
  font-size: 0.85rem;
  padding: 0.7rem 0.9rem;
}

.auth-alt {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.auth-alt a { font-weight: 600; }

.auth-fine {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-3);
  max-width: 24rem;
}
.auth-fine a { color: var(--ink-2); }

.auth-legal {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

/* ---------- 404 ---------- */
.notfound {
  min-height: 62vh;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  gap: 1.2rem;
  padding: clamp(3.5rem, 9vw, 7rem) var(--gutter);
}
.notfound .nf-code {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-light);
}
.notfound h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}
.notfound h1 em { font-style: italic; color: var(--brand-light); }
.notfound p { color: var(--ink-2); max-width: 34rem; }
.notfound .nf-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 0.5rem; }

/* auth: OTP code input, success state, text button, info alerts */
.auth-input.auth-code {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  letter-spacing: 0.4em;
  padding-right: 0.55rem;
}
.btn-textlink {
  background: none;
  border: 0;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-light);
  cursor: pointer;
  padding: 0.3rem;
}
.btn-textlink:hover { color: #c4b5fd; }
.auth-note {
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid;
}
.auth-note.info { border-color: rgba(124, 92, 255, 0.35); background: var(--brand-soft); color: var(--brand-light); }
.auth-note.ok { border-color: rgba(0, 201, 167, 0.35); background: var(--teal-soft); color: var(--teal); }
.auth-success { display: grid; justify-items: center; gap: 0.9rem; text-align: center; padding: 0.6rem 0 0.3rem; }
.auth-success .as-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal-soft);
  border: 1px solid rgba(0, 201, 167, 0.3);
  color: var(--teal);
  display: grid;
  place-items: center;
}
.auth-success h1, .auth-success .as-title { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin: 0; }
.auth-success p { color: var(--ink-2); font-size: 0.9rem; }
