/* ============================================================
   UNTANGLED — landing page (untanglebot.app/)

   This is the original homepage layout, kept intact, plus the
   pieces it was missing: a live status pill, concrete numbers,
   a trust row and the ⌘K command palette.

   Everything below the "additions" divider is new. Everything
   above it is the page as it was — same values, just moved out
   of an inline <style> into a file.
   ============================================================ */

/* ---------- layout shell ---------- */
.shell { min-height: 100vh; display: flex; flex-direction: column; position: relative; z-index: 1; }

/* ---------- navbar ---------- */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 32px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.lg-ring { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; }
.lg-core { width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: var(--glow-led); }
.wordmark { font-family: var(--font-display); font-weight: 900; letter-spacing: .22em; font-size: 1rem; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta { padding: 9px 18px; font-size: .62rem; }
/* gradient hairline under the navbar */
.nav-divider { height: 1px; margin-top: 3px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); }

/* ---------- hero ---------- */
.hero { flex: 1; position: relative; overflow: visible; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
/* The strands fade out behind the headline and tagline. They were running
   straight through the copy at full strength, which cost legibility for no
   gain — and confining the tangle to the edges is more on-message anyway:
   knotted at the perimeter, clear where you actually read. */
#heroString {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .55;
  -webkit-mask-image: radial-gradient(ellipse 42% 27% at 50% 47%, transparent 22%, #000 86%);
          mask-image: radial-gradient(ellipse 42% 27% at 50% 47%, transparent 22%, #000 86%);
}
@media (max-width: 560px) {
  /* Narrow screens wrap the headline to more lines, so the clear area grows. */
  #heroString {
    -webkit-mask-image: radial-gradient(ellipse 66% 27% at 50% 45%, transparent 30%, #000 90%);
            mask-image: radial-gradient(ellipse 66% 27% at 50% 45%, transparent 30%, #000 90%);
  }
}
/* soft static spotlight behind the headline (not clipped — hero is overflow:visible) */
.hero-glow {
  position: absolute; top: 50%; left: 50%; width: min(900px, 92vw); height: 460px;
  transform: translate(-50%, -56%); z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.10), rgba(255,255,255,0) 70%);
  filter: blur(46px);
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
h1.title { font-size: clamp(2.8rem, 9vw, 6rem); font-weight: 900; letter-spacing: .02em; line-height: 1.02; text-wrap: balance; }
.tagline { color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.25rem); line-height: 1.6; margin: 18px auto 32px; max-width: 540px; text-wrap: pretty; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
#authNote { margin-top: 16px; font-size: .78rem; min-height: 18px; }

/* ---------- bottom feature strip (marquee) ---------- */
.proof { padding: 0 24px 40px; }
.proof-inner { max-width: 1024px; margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.proof-label { flex: 0 0 auto; max-width: 190px; color: var(--dim); font-size: .82rem; line-height: 1.45; }
.marquee { flex: 1; overflow: hidden; min-width: 0;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.feat { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.feat .ic { width: 28px; height: 28px; border-radius: var(--radius-xs); display: grid; place-items: center; font-size: .95rem; flex: 0 0 auto; }
.feat .nm { font-size: 1rem; font-weight: 600; color: var(--white); }

@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

@media (max-width: 720px) {
  .nav { padding: 16px 18px; }
  .proof-inner { flex-direction: column; gap: 18px; align-items: flex-start; }
  .proof-label { max-width: none; }
  /* align-items:flex-start stops .marquee stretching, so it sized to its own
     max-content track (5343px) and pushed the whole page sideways. */
  .marquee { width: 100%; }
}

/* Short viewports (600px-tall laptops, landscape phones). The page is meant to
   be one screen; without this the hero alone is taller than the window and the
   feature strip falls off the bottom. Everything stays — it just tightens. */
@media (max-height: 700px) {
  h1.title { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
  .tagline { font-size: 1rem; margin: 12px auto 20px; max-width: 480px; }
  .status-pill { margin-bottom: 13px; }
  .trust { margin-top: 16px; }
  #authNote { margin-top: 10px; min-height: 0; }
  .proof { padding-bottom: 24px; }
}

/* ============================================================
   ADDITIONS
   ============================================================ */

/* ---------- nav links ----------
   The bar had a logo and one button. These give it somewhere to go
   without changing its character. */
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; margin-right: 6px; }
.nav-link {
  font-family: var(--font-display); font-weight: 500;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dim); background: none; border: none; padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--white); }
.nav-link kbd { margin-left: 8px; }

kbd.kbd {
  font-family: var(--font-display); font-size: .52rem; font-weight: 700; letter-spacing: .1em;
  color: var(--dim); background: rgba(255,255,255,.03);
  border: 1px solid var(--line-bright); border-radius: var(--radius-2xs);
  padding: 3px 6px; line-height: 1; white-space: nowrap;
}

/* ---------- live status pill (above the headline) ----------
   Not decoration: it reflects a real request to the API. If the bot is
   unreachable this says so instead of lying. */
.status-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 13px; border-radius: 999px; margin-bottom: 22px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(.54rem, 1.1vw, .62rem); letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.status-pill .dot { width: 6px; height: 6px; flex: 0 0 auto; }
/* Only the live dot breathes — one moving thing, not a page of them. */
@media (prefers-reduced-motion: no-preference) {
  .status-pill .dot--lime { animation: pulse 2.6s var(--ease) infinite; }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
.status-sep { color: var(--line-bright); }

/* ---------- trust row (below the CTAs) ----------
   Three plain facts. The competitor sells on "54 modules, 37 free" —
   specifics beat adjectives, so these are specifics. */
.trust {
  display: flex; align-items: center; justify-content: center; gap: 10px 18px; flex-wrap: wrap;
  margin-top: 26px; font-size: .78rem; color: var(--dim);
}
.trust b { color: var(--muted); font-weight: 600; font-variant-numeric: tabular-nums; }
.trust-sep { color: var(--line-bright); }

/* ---------- command palette ----------
   Lives at BODY level: a fixed overlay inside a transformed ancestor gets
   trapped by the containing block it creates. */
.palette { position: fixed; inset: 0; z-index: 9500; display: grid; place-items: start center; }
.palette[hidden] { display: none; }
.palette-scrim {
  position: absolute; inset: 0;
  background: rgba(2,3,7,.62);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  animation: pFade .25s var(--ease);
}
.palette-box {
  position: relative;
  width: min(660px, calc(100vw - 36px));
  margin-top: min(14vh, 120px);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column;
  max-height: min(62vh, 560px);
  animation: pRise .38s var(--spring);
}
@keyframes pFade { from { opacity: 0; } }
@keyframes pRise { from { opacity: 0; transform: translateY(-14px) scale(.985); } }

.palette-head {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 15px 15px 18px;
  border-bottom: 1px solid var(--line); flex: 0 0 auto;
}
.palette-head svg { width: 16px; height: 16px; opacity: .55; flex: 0 0 auto; }
#paletteInput {
  flex: 1 1 auto; min-width: 0;
  background: none; border: none; outline: none;
  color: var(--white); font-family: var(--font-body); font-size: .96rem;
}
#paletteInput::placeholder { color: var(--dim); }

.palette-list { overflow-y: auto; padding: 8px; flex: 1 1 auto; overscroll-behavior: contain; }
.cmd {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 11px; border-radius: var(--radius-xs);
  cursor: pointer; scroll-margin: 8px; border: 1px solid transparent;
}
.cmd[aria-selected="true"] { background: rgba(255,255,255,.055); border-color: var(--line-bright); }
.cmd .e { font-size: .95rem; width: 20px; text-align: center; flex: 0 0 auto; }
.cmd .t { min-width: 0; flex: 1 1 auto; }
.cmd .n { font-family: var(--font-display); font-weight: 500; font-size: .74rem; letter-spacing: .06em; color: var(--white); }
.cmd .d { font-size: .78rem; color: var(--dim); line-height: 1.45; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cmd .c {
  flex: 0 0 auto; font-family: var(--font-display); font-weight: 500;
  font-size: .52rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dim);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px;
}
.palette-empty { padding: 34px 16px; text-align: center; color: var(--dim); font-size: .86rem; }
.palette-foot {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 11px 16px; border-top: 1px solid var(--line);
  font-size: .7rem; color: var(--dim); flex: 0 0 auto;
}
.palette-foot span { display: inline-flex; align-items: center; gap: 6px; }
.palette-count { margin-left: auto; font-variant-numeric: tabular-nums; }

/* ---------- responsive for the additions ---------- */
@media (max-width: 860px) {
  .nav-links { gap: 18px; }
  .nav-link[data-desktop] { display: none; }   /* ⌘K has no meaning on touch */
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  .cmd .d { display: none; }
  .status-pill { margin-bottom: 18px; }
}

/* ============================================================
   SCROLL SECTIONS
   The hero stays a full screen; everything below is the tour.
   ============================================================ */

/* ---------- scroll cue ---------- */
.scroll-cue {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-family: var(--font-display); font-size: .5rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--dim); z-index: 2;
}
.scroll-cue i {
  width: 1px; height: 26px; display: block;
  background: linear-gradient(180deg, rgba(255,255,255,.5), transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue i { animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
}
@keyframes cue { 0% { transform: scaleY(0); opacity: 0; } 40% { opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

/* ---------- section scaffolding ---------- */
.sec { position: relative; padding: clamp(72px, 11vh, 132px) clamp(18px, 4vw, 40px); }
.sec-inner { max-width: 1180px; margin: 0 auto; }
.sec-head { max-width: 640px; margin: 0 auto clamp(38px, 6vh, 64px); text-align: center; }
.sec-head--left { margin-left: 0; margin-right: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display); font-weight: 500;
  font-size: .56rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 14px;
}
h2.sec-title {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem); font-weight: 700;
  letter-spacing: .01em; line-height: 1.12; color: var(--white);
  text-shadow: 0 0 24px rgba(255,255,255,.13);
}
.sec-sub { color: var(--muted); font-size: 1rem; line-height: 1.62; margin-top: 14px; text-wrap: pretty; }

/* A hairline that fades at both ends — separates sections without a hard rule. */
.sec + .sec::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1180px, 92vw); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
}

/* ---------- floating product shot ----------
   Three nested elements, one transform each, so they can never fight:
     .shot-parallax  JS scroll offset
     .shot-float     CSS idle drift
     .shot-frame     pointer tilt
   The outer .shot reveals with OPACITY ONLY for the same reason. */
.shot { opacity: 0; transition: opacity .9s var(--ease); perspective: 1600px; }
.shot.in { opacity: 1; }
.shot-parallax { will-change: transform; }
.shot-float { will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
  .shot-float { animation: drift 9s ease-in-out infinite; }
}
@keyframes drift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

.shot-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-bright);
  background: var(--bg-1);
  box-shadow:
    0 40px 90px -30px rgba(0,0,0,.9),
    0 0 70px -20px rgba(255,255,255,.09);
  transition: transform .5s var(--ease);
  transform-style: preserve-3d;
}
.shot-frame img { display: block; width: 100%; height: auto; }
/* Top hairline, same language as .panel */
.shot-frame::after {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
}
/* Light pooling under a floating object. */
.shot::after {
  content: ''; position: absolute; left: 50%; bottom: -6%; transform: translateX(-50%);
  width: 76%; height: 60px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.09), transparent 72%);
  filter: blur(26px);
}

/* ---------- systems grid ---------- */
.sys-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(212px, 1fr));
}
.sys-card {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 16px; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid var(--line);
  transition: transform .45s var(--spring), border-color .3s var(--ease), background .3s var(--ease);
}
.sys-card:hover { transform: translateY(-4px); border-color: var(--line-bright); background: rgba(255,255,255,.055); }
.sys-card .ic {
  width: 34px; height: 34px; border-radius: var(--radius-xs); flex: 0 0 auto;
  display: grid; place-items: center; font-size: 1.05rem;
}
.sys-card .tx { min-width: 0; }
.sys-card .nm {
  font-family: var(--font-display); font-weight: 500; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--white);
}
.sys-card .ds { font-size: .78rem; color: var(--dim); line-height: 1.45; margin-top: 3px; }

/* ---------- alternating feature rows ---------- */
.row {
  display: grid; gap: clamp(28px, 5vw, 68px); align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
}
.row + .row { margin-top: clamp(64px, 10vh, 118px); }
.row--flip .row-copy { order: 2; }
.row-copy h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-weight: 700;
  letter-spacing: .01em; line-height: 1.2; color: var(--white);
}
.row-copy p { color: var(--muted); font-size: .98rem; line-height: 1.65; margin-top: 13px; text-wrap: pretty; }
.row-list { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.row-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--muted); list-style: none; }
.row-list .tick {
  flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; border-radius: 50%;
  display: grid; place-items: center; font-size: .6rem; color: var(--bg-0);
  background: var(--neon-lime);
}

/* ---------- final CTA ---------- */
.cta-final { text-align: center; }
.cta-final .cta-row { margin-top: 30px; }
.cta-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(820px, 92vw); height: 340px; pointer-events: none; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.09), transparent 70%);
  filter: blur(52px);
}

/* ---------- footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 30px clamp(18px, 4vw, 40px) 38px;
}
.foot-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.foot-brand { display: flex; align-items: center; gap: 11px; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a {
  font-family: var(--font-display); font-size: .58rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim); transition: color .3s var(--ease);
}
.foot-links a:hover { color: var(--white); }
.foot-note { font-size: .76rem; color: var(--dim); }

/* ---------- reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(24px); }
.rv.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv-1.in { transition-delay: .07s; }
.rv-2.in { transition-delay: .14s; }
.rv-3.in { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
  .shot { opacity: 1; }
  .shot-float, .scroll-cue i { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .row { grid-template-columns: 1fr; }
  .row--flip .row-copy { order: 0; }
  .sec-head { text-align: center; }
}
@media (max-height: 700px) { .scroll-cue { display: none; } }

/* ============================================================
   FUNNEL COMPONENTS
   Same material as the rest of the site: dark glass, white LED
   accent, spring motion. No new colours — emphasis is weight + glow.
   ============================================================ */

.sec-inner--narrow { max-width: 760px; }

/* ---------- bot introduction ---------- */
.bot-intro {
  display: flex; align-items: center; gap: clamp(20px, 4vw, 42px);
  max-width: 940px; margin: 0 auto clamp(34px, 5vh, 56px); text-align: left;
}
.bot-intro .sec-title, .bot-intro .sec-sub { text-align: left; margin-left: 0; margin-right: 0; }
.bot-intro-tx { min-width: 0; }
.bot-orb {
  position: relative; width: clamp(76px, 12vw, 104px); aspect-ratio: 1; flex: 0 0 auto;
  display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, rgba(255,255,255,.16), rgba(255,255,255,.02) 68%);
  border: 1px solid var(--line-bright);
  box-shadow: 0 0 50px -14px rgba(255,255,255,.35), inset 0 1px 1px rgba(255,255,255,.18);
}
.bot-orb-core { width: 20%; aspect-ratio: 1; border-radius: 50%; background: #fff; box-shadow: var(--glow-led); }
.bot-orb-ring {
  position: absolute; inset: 10%; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14); border-top-color: rgba(255,255,255,.6);
}
.bot-orb-ring--2 { inset: 24%; border-top-color: transparent; border-left-color: rgba(255,255,255,.45); }
@media (prefers-reduced-motion: no-preference) {
  .bot-orb-ring { animation: orbSpin 7s linear infinite; }
  .bot-orb-ring--2 { animation: orbSpin 10s linear infinite reverse; }
}
@keyframes orbSpin { to { transform: rotate(360deg); } }
@media (max-width: 640px) {
  .bot-intro { flex-direction: column; text-align: center; align-items: center; }
  .bot-intro .sec-title, .bot-intro .sec-sub { text-align: center; }
}

/* ---------- module grid + filters ---------- */
.mod-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 28px; }
.mod-chip {
  font-family: var(--font-display); font-weight: 500;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim); padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.02); cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.mod-chip:hover, .mod-chip:focus-visible { color: var(--white); border-color: var(--line-bright); }
.mod-chip.on { color: var(--bg-0); background: #fff; border-color: #fff; box-shadow: 0 0 18px rgba(255,255,255,.28); }
.mod-chip .n { font-variant-numeric: tabular-nums; opacity: .6; margin-left: 6px; }
.mod-chip.on .n { opacity: .5; }

.mod-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.mod-card {
  position: relative; display: flex; flex-direction: column; gap: 9px; padding: 17px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid var(--line);
  transition: transform .45s var(--spring), border-color .3s var(--ease), background .3s var(--ease);
}
.mod-card:hover { transform: translateY(-4px); border-color: var(--line-bright); background: rgba(255,255,255,.055); }
.mod-card.hide { display: none; }
.mod-card-top { display: flex; align-items: center; gap: 11px; }
.mod-ic {
  width: 38px; height: 38px; border-radius: var(--radius-xs); flex: 0 0 auto;
  display: grid; place-items: center; font-size: 1.15rem;
  background: rgba(255,255,255,.04);
}
.mod-nm {
  font-family: var(--font-display); font-weight: 500; font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--white); min-width: 0;
}
.mod-badge {
  margin-left: auto; flex: 0 0 auto;
  font-family: var(--font-display); font-size: .46rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--neon-lime);
  border: 1px solid color-mix(in srgb, var(--neon-lime) 38%, transparent);
  border-radius: 999px; padding: 3px 8px;
}
.mod-ds { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.mod-note { text-align: center; margin-top: 24px; font-size: .82rem; color: var(--dim); }
.mod-note b { color: var(--neon-lime); font-weight: 600; }

/* ---------- automation flow ---------- */
.flow { display: flex; align-items: stretch; justify-content: center; gap: 12px; flex-wrap: wrap; max-width: 940px; margin: 0 auto; }
.flow-step {
  flex: 1 1 168px; max-width: 214px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px;
  padding: 24px 16px; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid var(--line);
}
.flow-ic { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-size: 1.3rem; }
.flow-step b { font-family: var(--font-display); font-weight: 500; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--white); }
.flow-step small { font-size: .66rem; color: var(--dim); letter-spacing: .02em; }
.flow-arrow { align-self: center; flex: 0 0 auto; width: 22px; display: grid; place-items: center; opacity: .5; }
.flow-arrow::before { content: '\2192'; color: var(--white); font-size: 1.05rem; }
@media (max-width: 720px) {
  .flow-step { flex-basis: 100%; max-width: 320px; }
  .flow-arrow { transform: rotate(90deg); }
}

/* ---------- AI demo ---------- */
.ai-demo {
  display: flex; flex-direction: column; gap: 12px; padding: 22px;
  border-radius: var(--radius); border: 1px solid var(--line-bright);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  box-shadow: 0 40px 90px -34px rgba(0,0,0,.9), 0 0 70px -24px rgba(255,255,255,.08);
}
.ai-msg { display: flex; gap: 11px; align-items: flex-start; }
.ai-av {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; font-size: 1rem;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
}
.ai-av--bot { background: radial-gradient(circle at 50% 38%, rgba(255,255,255,.18), rgba(255,255,255,.02) 68%); }
.ai-av--bot .bot-orb-core { width: 11px; height: 11px; }
.ai-bubble {
  padding: 11px 15px;
  border-radius: var(--radius-2xs) var(--radius-sm) var(--radius-sm) var(--radius-sm);
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  font-size: .9rem; line-height: 1.5; color: var(--muted); max-width: 100%;
}
.ai-bubble--bot { background: rgba(255,255,255,.07); color: var(--white); }
/* @mention pill — derived from the --neon-violet (silver) token, not a new literal. */
.ai-bubble b { color: var(--neon-violet); background: rgba(174,190,214,.14); border-radius: var(--radius-2xs); padding: 0 5px; font-weight: 600; }

/* ---------- reliability ---------- */
.rely { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 840px; margin: 0 auto; }
.rely-stat {
  text-align: center; padding: 26px 14px; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid var(--line);
}
.rely-stat b {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--white);
  text-shadow: 0 0 20px rgba(255,255,255,.18); font-variant-numeric: tabular-nums;
}
.rely-stat small { display: block; margin-top: 6px; font-size: .72rem; color: var(--dim); letter-spacing: .03em; }
@media (max-width: 620px) { .rely { grid-template-columns: repeat(2, 1fr); } }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 900px; margin: 0 auto; }
.price-card {
  position: relative; display: flex; flex-direction: column; padding: 32px 30px;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}
.price-card--free { border-color: var(--line-bright); box-shadow: 0 0 70px -22px rgba(255,255,255,.16); }
.price-card--soon { opacity: .82; }
.price-badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-display); font-size: .5rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bg-0); background: #fff; border-radius: 999px; padding: 4px 10px;
}
.price-badge--soon { color: var(--dim); background: rgba(255,255,255,.06); border: 1px solid var(--line-bright); }
.price-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); }
.price-amt { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 8px; }
.price-amt b { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.2rem, 5vw, 2.7rem); color: var(--white); line-height: 1; }
.price-amt span { color: var(--dim); font-size: .86rem; }
.price-tag { color: var(--muted); font-size: .9rem; line-height: 1.55; min-height: 42px; }
.price-list { list-style: none; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 11px; }
.price-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; color: var(--muted); }
.price-list--soon li { color: var(--dim); }
.price-list .tick {
  flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%;
  display: grid; place-items: center; font-size: .62rem; color: var(--bg-0); background: var(--neon-lime);
}
.price-list .tick--soon { color: var(--dim); background: rgba(255,255,255,.08); }
.price-cta { margin-top: auto; justify-content: center; }
.price-cta[disabled] { opacity: .55; cursor: not-allowed; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.02); overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq-item.open { border-color: var(--line-bright); background: rgba(255,255,255,.035); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; padding: 18px 20px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .98rem; font-weight: 500; color: var(--white);
}
.faq-q i { flex: 0 0 auto; width: 12px; height: 12px; position: relative; transition: transform .35s var(--spring); }
.faq-q i::before, .faq-q i::after { content: ''; position: absolute; background: var(--muted); }
.faq-q i::before { top: 5px; left: 0; width: 12px; height: 2px; }
.faq-q i::after { top: 0; left: 5px; width: 2px; height: 12px; transition: opacity .3s var(--ease); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open .faq-q i::after { opacity: 0; }
/* grid-template-rows 0fr→1fr collapses height with no layout-thrash and no
   JS scrollHeight measuring — the inner <p> just needs overflow clipping. */
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { overflow: hidden; min-height: 0; margin: 0; padding: 0 20px 20px; color: var(--muted); font-size: .92rem; line-height: 1.62; }
.faq-a a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- footer legal row ---------- */
.foot-legal { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); justify-content: center; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .bot-orb-ring { animation: none; }
}
