/* ============================================================
   Gentika - landing page
   Black canvas · DM Sans + DM Mono (matched to the gentika wordmark) · monochrome
   ============================================================ */

:root {
  /* Color - black base, white ink, single accent */
  --bg: #000000;
  --bg-raised: #0a0a0c;
  --bg-card: #101013;
  --ink: #ffffff;
  --ink-2: rgba(255, 255, 255, 0.64);
  --ink-3: rgba(255, 255, 255, 0.40);
  --line: rgba(255, 255, 255, 0.12);
  --line-2: rgba(255, 255, 255, 0.22);

  --accent: #ffffff;          /* monochrome - the "accent" is white */
  --accent-2: #ffffff;
  --accent-soft: rgba(255, 255, 255, 0.10);
  --accent-line: rgba(255, 255, 255, 0.34);
  --accent-ink: #000000;      /* text/icons sitting on a white fill */

  /* Type */
  --font-display: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Geometry */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --maxw: 1180px;
  --nav-h: 76px;

  /* Liquid Glass material (dark variant - the functional layer floating over
     the black canvas). Recipe: translucent fill + blur/saturate + specular top
     rim + darkened bottom edge (iOS 27) + wide soft shadow. Glass lives ONLY on
     controls/nav/composer - content stays matte. */
  --glass-fill: rgba(16, 16, 20, 0.55);
  --glass-fill-strong: rgba(14, 14, 18, 0.72);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-specular: rgba(255, 255, 255, 0.22);   /* inset top rim */
  --glass-edge: rgba(0, 0, 0, 0.55);             /* inset dark bottom ring */
  --glass-shadow: 0 18px 48px -20px rgba(0, 0, 0, 0.85);
}

/* Spring easings (shared with the assistant widget - generated curves, real
   damped-spring physics). Referenced as var(--spring-*, <cubic-bezier fallback>)
   so browsers without linear() fall back gracefully. */
@supports (animation-timing-function: linear(0, 0.5, 1)) {
  :root {
    --spring-bouncy: linear(0, 0.051, 0.179, 0.347, 0.529, 0.702, 0.852, 0.972, 1.058, 1.114, 1.142, 1.147, 1.137, 1.117, 1.091, 1.065, 1.04, 1.018, 1.001, 0.99, 0.982, 0.979, 0.978, 0.98, 0.983, 0.987, 0.991, 0.995, 0.998, 1, 1.002, 1.003, 1);
    --spring-soft: linear(0, 0.027, 0.095, 0.188, 0.295, 0.406, 0.513, 0.614, 0.703, 0.782, 0.847, 0.901, 0.944, 0.977, 1.001, 1.018, 1.029, 1.036, 1.038, 1.038, 1.036, 1.033, 1.029, 1.025, 1.02, 1.016, 1.013, 1.01, 1.007, 1.005, 1.003, 1.001, 1);
    --spring-pop: linear(0, 0.038, 0.135, 0.266, 0.411, 0.556, 0.69, 0.806, 0.902, 0.977, 1.031, 1.066, 1.086, 1.094, 1.093, 1.085, 1.074, 1.06, 1.046, 1.033, 1.022, 1.012, 1.004, 0.999, 0.995, 0.992, 0.991, 0.991, 0.992, 0.993, 0.994, 0.995, 1);
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient light - neutral glows on the black canvas so the glass layer has
   something to bend. Fixed (doesn't scroll): the light source is the room, not
   the page. Colour stays inside the screens; this is white light only. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 62% 46% at 16% 6%, rgba(255, 255, 255, 0.075), transparent 62%),
    radial-gradient(ellipse 52% 42% at 88% 34%, rgba(255, 255, 255, 0.055), transparent 64%),
    radial-gradient(ellipse 72% 52% at 46% 100%, rgba(255, 255, 255, 0.045), transparent 60%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; }
p { margin: 0; }
strong { font-weight: 700; color: var(--ink); }

::selection { background: var(--accent); color: var(--accent-ink); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--accent); color: var(--accent-ink); padding: 10px 16px; border-radius: var(--r-sm);
  font-family: var(--font-mono); font-size: 13px; transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

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

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }

.band { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.band + .band { border-top: 1px solid var(--line); }
.page-first { padding-top: clamp(86px, 10vw, 132px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink-3);
  margin: 0 0 22px;
  display: none; align-items: center; gap: 12px;   /* eyebrow labels removed */
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--accent);
  display: inline-block; flex: none;
}
.centered { text-align: center; }
.centered .eyebrow { justify-content: center; }

.band-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 68px); }
.band-head.centered { margin-inline: auto; }
.band-head h2 { font-size: clamp(2.5rem, 5.2vw, 4rem); }
.page-title {
  font-size: clamp(2.7rem, 5.6vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.band-lede {
  margin-top: 20px; font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-2); max-width: 60ch;
}
.band-head.centered .band-lede { margin-inline: auto; }
.accent-word { color: var(--ink); position: relative; }

/* ---------- Buttons - Liquid Glass controls ---------- */
/* Primary = near-opaque bright glass (legibility first, iOS 27); ghost = true
   dark glass. Both flex like gel under the pointer: spring transform, press
   squash on :active. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-size: 15px; font-weight: 500;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.5s var(--spring-bouncy, cubic-bezier(0.22, 1, 0.36, 1)),
    background 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease,
    color 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: color-mix(in srgb, #ffffff 88%, transparent);
  color: var(--accent-ink);
  border-color: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 12px 34px -16px rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  background: color-mix(in srgb, #ffffff 96%, transparent);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 14px 40px -16px rgba(255, 255, 255, 0.5);
}
.btn-primary:active { transform: scale(0.96); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink); border-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.12); }

/* ---------- Header / nav - floating Liquid Glass capsule ---------- */
/* The shell is transparent and non-interactive; only the capsule inside it is
   glass. On scroll (.is-scrolled from app.js) the capsule compresses and its
   fill deepens - the Liquid Glass "bar shrinks as content leads" morph. The
   capsule carries transitions only, never keyframes (frost-freeze rule). */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  padding: 10px 14px 0;
  display: flex; align-items: flex-start;
  background: transparent;
  pointer-events: none;
}
/* Scroll-edge effect: a soft dim that fades in under the capsule once content
   starts sliding beneath it - instead of a hard border-bottom. */
.site-header::before {
  content: ""; position: absolute; inset: 0; height: 140%;
  background: linear-gradient(rgba(0, 0, 0, 0.62), transparent);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.site-header.is-scrolled::before { opacity: 1; }
.header-inner {
  position: relative;
  display: flex; align-items: center; gap: 24px;
  pointer-events: auto;
  min-height: 58px; padding-block: 8px;
  border-radius: 999px;
  background: var(--glass-fill);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-specular),
    inset 0 -1px 0 var(--glass-edge),
    var(--glass-shadow);
  transition: min-height 0.5s var(--spring-soft, cubic-bezier(0.22, 1, 0.36, 1)),
    background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled .header-inner {
  min-height: 50px; padding-block: 5px;
  background: var(--glass-fill-strong);
}
/* Concentric nesting: the trailing pill (CTA, or the hamburger on phones)
   sits the same distance from the capsule's end as from its top and bottom,
   so the two curves share a centre. Scoped selector so the later media-query
   .wrap padding rules can't override it. */
.site-header .header-inner { padding-right: 10px; }

.brand { display: inline-flex; align-items: center; flex: none; }
/* Logo lockup keeps its aspect ratio: lock height, let width follow, and never
   let the global `img { max-width:100% }` reset clamp it when the header is tight. */
.brand-lockup {
  height: 36px; width: auto; max-width: none; display: block;
  transition: height 0.5s var(--spring-soft, cubic-bezier(0.22, 1, 0.36, 1));
}
.site-header.is-scrolled .brand-lockup { height: 30px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
/* :not(.nav-menu-cta) so the cloned "Book a Demo" button in the mobile menu
   keeps its own btn-primary styling instead of the muted nav-link colour. */
.nav a:not(.nav-menu-cta) {
  font-size: 14.5px; color: var(--ink-2); padding: 9px 14px; border-radius: 999px;
  position: relative;
  transition: color 0.18s ease,
    background 0.45s var(--spring-pop, cubic-bezier(0.22, 1, 0.36, 1));
}
/* Gel pill highlight instead of the old underline. */
.nav a:not(.nav-menu-cta):hover { color: var(--ink); background: rgba(255, 255, 255, 0.08); }
.nav a:not(.nav-menu-cta).is-active {
  color: var(--ink); background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}
.nav-cta { margin-left: 8px; padding: 10px 18px; }
/* External-link affordance (PromptRadar opens its own site in a new tab) */
.nav .ext, .footer-nav .ext { font-size: 0.72em; margin-left: 3px; opacity: 0.55; }
.nav a:hover .ext, .footer-nav a:hover .ext { opacity: 1; }

/* Mobile/tablet hamburger toggle (injected by app.js; hidden on desktop).
   A control ON the glass capsule: fill + rim + gel press, but no backdrop
   blur of its own - glass-on-glass is forbidden. */
.nav-toggle {
  display: none; flex: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px;
  color: var(--ink); cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  transition: border-color 0.18s ease, background 0.18s ease,
    transform 0.5s var(--spring-bouncy, cubic-bezier(0.22, 1, 0.36, 1));
}
.nav-toggle:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.12); }
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle svg { width: 20px; height: 20px; display: block; }
.nav-toggle .nav-toggle-x { display: none; }
.nav-toggle.is-open .nav-toggle-bars { display: none; }
.nav-toggle.is-open .nav-toggle-x { display: block; }
.nav-menu-cta { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(64px, 9vw, 120px); }
.product-hero { padding-top: clamp(76px, 10vw, 120px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.hero-copy { max-width: 600px; min-width: 0; }
.hero h1 {
  font-size: clamp(3.2rem, 7.4vw, 5.8rem);
  line-height: 0.98; margin: 0 0 26px; font-weight: 500;
}
.hero-copy.hero-sequence-ready #hero-title {
  opacity: 0;
  transform: translateY(0.08em);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-copy.hero-sequence-ready #hero-title.is-visible {
  opacity: 1;
  transform: none;
}
.hero-copy.hero-sequence-ready #hero-title.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  margin-left: 0.08em;
  vertical-align: -0.04em;
  background: currentColor;
  animation: heroTitleCaret 0.82s step-end infinite;
}
.hero-copy.hero-sequence-ready #hero-title.is-complete {
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
}
.hero-copy.hero-sequence-ready .lede,
.hero-copy.hero-sequence-ready .intent-quotes,
.hero-copy.hero-sequence-ready .hero-sub,
.hero-copy.hero-sequence-ready .hero-actions {
  opacity: 0;
}
.hero-copy.hero-sequence-ready .lede.is-visible,
.hero-copy.hero-sequence-ready .intent-quotes.is-visible,
.hero-copy.hero-sequence-ready .hero-sub.is-visible,
.hero-copy.hero-sequence-ready .hero-actions.is-visible {
  opacity: 1;
}
.hero-copy.hero-sequence-ready .intent-quotes li {
  opacity: 0;
  transform: translateY(12px);
}
.hero-copy.hero-sequence-ready .intent-quotes li.is-visible {
  opacity: 1;
  transform: none;
}
.hero-copy.hero-sequence-ready .lede,
.hero-copy.hero-sequence-ready .hero-sub,
.hero-copy.hero-sequence-ready .intent-quotes li {
  transition: opacity 0.28s ease, transform 0.36s ease;
}
.hero-copy.hero-sequence-ready .lede.is-typing::after,
.hero-copy.hero-sequence-ready .hero-sub.is-typing::after,
.hero-copy.hero-sequence-ready .intent-quotes li.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 1.05em;
  margin-left: 0.12em;
  vertical-align: -0.12em;
  border-right: 2px solid var(--ink);
  animation: heroTypeCaret 0.78s step-end infinite;
}
.hero-copy.hero-sequence-ready + .hero-visual {
  opacity: 0;
  transform: translateY(12px);
  filter: none;
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-copy.hero-sequence-ready + .hero-visual.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
.lede { font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--ink-2); max-width: 46ch; }

.intent-quotes {
  margin: 26px 0; display: grid; gap: 10px; max-width: 440px;
  border-left: 1px solid var(--line); padding-left: 20px;
}
.intent-quotes li {
  font-family: var(--font-mono); font-size: 14.5px; color: var(--ink-2);
  font-style: italic;
}
.hero-sub { font-size: 1.02rem; color: var(--ink-2); max-width: 48ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
/* Give the CTA row a little air off the line above it (tightest on the product hero). */
.product-hero .hero-actions { margin-top: clamp(14px, 2vw, 22px); }

.hero-visual {
  position: relative;
  min-height: 420px;
  min-width: 0;
  align-self: start;
  margin-top: 0;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 80px); }
.split-head h2 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); }
.split-body { display: grid; gap: 22px; max-width: 56ch; }
.split-body p { color: var(--ink-2); font-size: 1.08rem; }
.crutch-list { display: flex; flex-wrap: wrap; gap: 10px; }
.crutch-list li {
  font-family: var(--font-mono); font-size: 14px; color: var(--ink-2);
  border: 1px dashed var(--line-2); border-radius: var(--r-sm); padding: 9px 15px;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.transform {
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: stretch;
  gap: clamp(20px, 4vw, 54px); max-width: 940px; margin-inline: auto;
}
.transform-col {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px;
  background: var(--bg-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  min-height: 292px;
  display: flex;
  flex-direction: column;
}
.transform-label {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.11em; color: var(--ink-3); margin-bottom: 18px;
}
.chip-list { display: flex; flex: 1; flex-direction: column; justify-content: space-between; gap: 12px; }
.chip-list li { font-size: 1.15rem; color: var(--ink); }
.chip-list li::before {
  content: "-"; color: var(--ink-3); margin-right: 12px; font-family: var(--font-mono);
}
.chip-list--solid li::before { content: "+"; color: var(--accent-2); }
.transform-arrow {
  align-self: center;
  font-size: 40px; color: var(--accent); font-family: var(--font-mono);
  line-height: 1; text-align: center;
}
.transform-foot {
  text-align: center; margin-top: 40px; font-size: 1.2rem; color: var(--ink-2);
}

/* ============================================================
   LIVE DEMO - the centerpiece
   ============================================================ */
/* Translucent tint, not opaque - the fixed ambient glows stay visible. */
.demo { background: rgba(255, 255, 255, 0.02); }
.demo .wrap { max-width: 1240px; }
.demo-stage {
  display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.demo-tries-label, .demo-intel-label {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.11em; color: var(--ink-3);
}
.demo-intel {
  margin-top: 28px; padding: 22px 20px; border: 1px solid var(--line);
  border-radius: var(--r); background: var(--bg-card); display: grid; gap: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.demo-intel strong { font-size: 1.05rem; }
.demo-intel p { font-size: 14px; color: var(--ink-2); }

/* ============================================================
   WHY RETAILERS CARE
   ============================================================ */
.benefit-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  grid-auto-rows: 1fr;
}
.benefit {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px;
  background: var(--bg-raised); display: flex; flex-direction: column; gap: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.benefit h3 { font-size: 1.4rem; }
.benefit p { color: var(--ink-2); }
.benefit-example {
  font-family: var(--font-mono); font-size: 14px; color: var(--ink) !important;
  border-left: 2px solid var(--accent); padding-left: 16px; margin-top: 4px;
}
.benefit-example em { color: var(--accent-2); font-style: normal; }
.proof-shot--inline { margin-top: auto; padding-top: 16px; }
.proof-shot--inline img { width: 100%; }

/* ============================================================
   CUSTOMER INTELLIGENCE
   ============================================================ */
.intel-grid {
  display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.intel-copy h2 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); margin-bottom: 32px; }
.intel-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.intel-col {
  border: 1px solid var(--line); border-radius: var(--r); padding: 22px 20px;
  background: var(--bg-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.intel-col--bright { border-color: var(--accent-line); background: var(--accent-soft); }
.intel-col-head {
  font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: 0.11em; color: var(--ink-3); margin-bottom: 16px;
}
.intel-col ul { display: grid; gap: 11px; }
.intel-col li { font-size: 1.05rem; color: var(--ink); }
.intel-col li::before { content: "›"; color: var(--ink-3); margin-right: 10px; }
.intel-col--bright li::before { color: var(--accent-2); }
/* Concluding line - enlarged and pulled down to the dashboard so it reads as the
   backoffice's intro (more space above it, tight gap to the screen below). */
.intel-foot {
  margin-top: clamp(40px, 5.5vw, 64px);
  font-size: clamp(1.45rem, 2.7vw, 2.05rem);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.25;
}
.intelligence .intel-copy { max-width: 880px; }
.analytics-screen--full { margin-top: clamp(12px, 1.8vw, 20px); }
.proof-shot--panel img { width: 100%; box-shadow: 0 30px 60px -36px rgba(0, 0, 0, 0.9); }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.vertical-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vertical {
  border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px;
  background: var(--bg-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease,
    transform 0.5s var(--spring-soft, cubic-bezier(0.22, 1, 0.36, 1));
}
.vertical:hover { border-color: var(--line-2); transform: translateY(-3px); }
.vertical h3 { font-size: 1.35rem; margin-bottom: 12px; }
.vertical p { font-family: var(--font-mono); font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.audience-note { max-width: 64ch; margin: clamp(30px, 4.5vw, 48px) auto 0; text-align: center; color: var(--ink-2); font-size: clamp(1rem, 1.6vw, 1.12rem); line-height: 1.55; }
.audience-note strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   WHY NOW
   ============================================================ */
.whynow-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.whynow-head h2 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); }
.whynow-body { display: grid; gap: 22px; max-width: 60ch; }
.whynow-body p { font-size: 1.15rem; color: var(--ink-2); }
.whynow-kicker { color: var(--ink) !important; font-size: 1.3rem !important; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  scroll-margin-top: calc(var(--nav-h) + 24px);
  background: transparent;   /* let the ambient canvas glows through */
  color: var(--ink);
  padding-top: clamp(86px, 10vw, 132px);
}
.pricing .wrap { max-width: 1220px; }
.pricing strong { color: var(--ink); }
.pricing-hero {
  max-width: 760px;
  margin: 0 auto clamp(34px, 4.8vw, 54px);
  text-align: center;
}
.pricing-hero .page-title {
  color: var(--ink);
  font-size: clamp(3.3rem, 7.1vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.pricing-hero .band-lede {
  margin-inline: auto;
  color: var(--ink-2);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: clamp(48px, 7vw, 82px);
}
.price-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(24px, 2.8vw, 34px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px -52px rgba(255, 255, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.price-card:first-child { border-radius: 14px 0 0 14px; }
.price-card:last-child { border-radius: 0 14px 14px 0; }
.price-card + .price-card { margin-left: -1px; }
.price-card-head {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card h2 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}
.price-card-head p {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.45;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.2vw, 3.55rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.price span {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-3);
}
.price em {
  font-style: normal;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-2);
}
.price--custom { font-size: clamp(2.4rem, 4vw, 3.25rem); }
.price-btn {
  width: 100%;
  border-radius: 10px;
  margin-top: auto;
}
.pricing .price-btn.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.pricing .price-btn.btn-primary:hover {
  background: #e8e8ea;
  box-shadow: 0 18px 38px -24px rgba(255, 255, 255, 0.65);
}
.pricing .price-btn.btn-ghost {
  color: var(--ink);
  border-color: var(--line-2);
}
.pricing .price-btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--ink);
}
.price-includes {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.price-includes p {
  color: var(--ink-3);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.price-includes ul { display: grid; gap: 10px; }
.price-includes li {
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.35;
  display: flex;
  gap: 9px;
}
.price-includes li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  margin-top: 0.48em;
}
.pricing-details {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  margin-top: clamp(-46px, -3.5vw, -28px);
}
.pricing-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  background: var(--bg-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.includes-label {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.11em; color: var(--ink-3);
  margin-bottom: 16px;
}
.includes-list { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.includes-list li { font-size: 14.5px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.includes-list li::before { content: "✓"; color: var(--accent-2); font-size: 13px; }
.addon-list { display: grid; gap: 14px; }
/* Each direct child is a card: the PromptRadar link and the plain rows. */
.addon-list > * {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.4;
}
/* The PromptRadar card is a link - pressable material: specular hairline +
   gel lift (fill + rim only; it sits inside a matte panel). */
.addon-link {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
  transition: border-color 0.18s ease, background 0.18s ease,
    transform 0.5s var(--spring-bouncy, cubic-bezier(0.22, 1, 0.36, 1));
}
.addon-link:hover {
  border-color: rgba(255, 255, 255, 0.34); background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}
.addon-link:active { transform: scale(0.985); }
.addon-link p { display: grid; gap: 5px; }
.addon-link em {
  font-style: normal;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
.addon-link:hover em { color: var(--ink-2); }
.addon-list strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================================
   FINAL CTA / CONTACT
   ============================================================ */
.final { background: rgba(255, 255, 255, 0.02); }
.final-inner { text-align: center; max-width: 860px; margin-inline: auto; }
.final-inner .eyebrow { justify-content: center; }
.final h2 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); }
.final-lede { margin: 22px auto 44px; font-size: 1.2rem; color: var(--ink-2); max-width: 52ch; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 340px));
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  max-width: 760px;
  margin-inline: auto;
}
/* Contact cards are CONTROLS (two giant links), not content - so they carry
   the glass material: dark glass for the email card, bright glass for the
   CTA card, both with the gel hover-lift. */
.contact-card {
  text-align: left; border: 1px solid var(--glass-border); border-radius: var(--r);
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  display: flex;
  min-height: 164px; flex-direction: column; justify-content: space-between; gap: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    var(--glass-shadow);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.25s ease,
    transform 0.5s var(--spring-bouncy, cubic-bezier(0.22, 1, 0.36, 1));
}
.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.34); transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 22px 48px -34px rgba(255, 255, 255, 0.35);
}
.contact-card:active { transform: translateY(-1px) scale(0.98); }
.contact-kind {
  font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: 0.11em; color: var(--ink-3);
}
.contact-card strong { font-size: clamp(1.18rem, 2vw, 1.35rem); line-height: 1.15; }
.contact-go { font-family: var(--font-mono); font-size: 13px; color: var(--ink-2); }
.contact-card--cta {
  background: color-mix(in srgb, #ffffff 88%, transparent);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 22px 54px -30px rgba(255, 255, 255, 0.4);
}
.contact-card--cta strong { color: var(--accent-ink); }
.contact-card--cta .contact-kind { color: rgba(0, 0, 0, 0.6); }
.contact-card--cta .contact-go { color: rgba(0, 0, 0, 0.78); }
.contact-card--cta:hover {
  background: color-mix(in srgb, #ffffff 96%, transparent);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 26px 60px -30px rgba(255, 255, 255, 0.55);
}

/* ============================================================
   FOOTER
   ============================================================ */
/* Bottom padding clears the assistant's floating bar, so the footer links are
   never buried under it at max scroll. */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0 clamp(112px, 14vw, 148px); }
.footer-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.brand--footer .brand-lockup { height: 30px; }
.footer-tag { font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); }
/* Footer links speak the same gel-pill hover language as the header nav. */
.footer-nav { margin-left: auto; display: flex; gap: 4px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 14px; color: var(--ink-2); padding: 7px 11px; border-radius: 999px;
  transition: color 0.18s ease,
    background 0.45s var(--spring-pop, cubic-bezier(0.22, 1, 0.36, 1));
}
.footer-nav a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.07); }

/* ============================================================
   Scroll reveal + keyframes
   ============================================================ */
/* Copy entrance. Was a flat 0.6s `ease` fade-up with every element in a
   section arriving at the same instant, which read as a page-load flicker
   rather than as motion. Now it rides the same damped spring as the rest of
   the site and each element carries its own delay (--rv-d, written by
   app.js), so a block ASSEMBLES - title, then lede, then the cards in
   sequence - instead of appearing all at once.
   Opacity stays on a plain ease and finishes early: a spring on opacity
   makes text visibly wobble in brightness. */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s ease var(--rv-d, 0s),
    transform 0.85s var(--spring-soft, cubic-bezier(0.22, 1, 0.36, 1)) var(--rv-d, 0s);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; will-change: auto; }

@keyframes heroTitleCaret { 50% { opacity: 0; } }
@keyframes heroTypeCaret { 50% { border-color: transparent; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 0; margin-top: 8px; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .transform { grid-template-columns: 1fr; gap: 16px; max-width: 460px; }
  .transform-col { min-height: 0; }
  .chip-list { justify-content: flex-start; }
  .transform-arrow { transform: rotate(90deg); }
  .demo-stage { grid-template-columns: 1fr; gap: 28px; }
  .intel-grid { grid-template-columns: 1fr; }
  .whynow-grid { grid-template-columns: 1fr; gap: 24px; }
  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: minmax(0, 420px); max-width: 420px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .price-card,
  .price-card:first-child,
  .price-card:last-child {
    border-radius: 14px;
    margin-left: 0;
  }
  .price-card-head { min-height: 96px; }
  .pricing-details { grid-template-columns: 1fr; margin-top: -26px; }
}

/* The inline nav (logo + 5 links + CTA) needs ~845px to sit comfortably; below
   that the row crowds and the logo used to get squeezed. Swap the inline nav for
   a hamburger that drops a full-width menu down from the header. */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-cta { margin-left: 8px; }

  /* The nav links drop from the capsule as a detached glass sheet. The sheet
     itself only toggles display (frost-freeze rule); the links inside pop in
     with a small stagger.
     While the menu is open the capsule goes SOLID: a filtered ancestor is a
     backdrop root, which would blind the sheet's own glass (its blur could no
     longer sample the page). !important outranks any inline lens filter on
     the capsule (liquid_glass.js set one before its Aug-10 removal). */
  .site-header.nav-open .header-inner {
    background: #0b0b0e;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  .nav {
    display: none; margin: 0;
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 10px 12px 14px;
    border-radius: 26px;
    /* Deeper fill than the capsule: a navigation sheet sits over arbitrary
       content (often the 90px hero headline) and must diffuse it away. */
    background: rgba(10, 10, 13, 0.84);
    -webkit-backdrop-filter: blur(26px) saturate(1.5);
    backdrop-filter: blur(26px) saturate(1.5);
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 1px 0 var(--glass-specular),
      inset 0 -1px 0 var(--glass-edge),
      0 28px 54px -28px rgba(0, 0, 0, 0.95);
  }
  .site-header.nav-open .nav { display: flex; }
  .site-header.nav-open .nav > a {
    animation: nav-item-in 0.45s var(--spring-pop, cubic-bezier(0.22, 1, 0.36, 1)) backwards;
  }
  .site-header.nav-open .nav > a:nth-child(2) { animation-delay: 0.03s; }
  .site-header.nav-open .nav > a:nth-child(3) { animation-delay: 0.06s; }
  .site-header.nav-open .nav > a:nth-child(4) { animation-delay: 0.09s; }
  .site-header.nav-open .nav > a:nth-child(5) { animation-delay: 0.12s; }
  .site-header.nav-open .nav > a:nth-child(6) { animation-delay: 0.15s; }
  .site-header.nav-open .nav > a:nth-child(7) { animation-delay: 0.18s; }
  /* style the real nav links, but leave the cloned CTA as a button */
  .nav a:not(.nav-menu-cta) {
    font-size: 16px; padding: 14px 16px; border-radius: 16px; color: var(--ink-2);
  }
  .nav a:not(.nav-menu-cta):hover,
  .nav a:not(.nav-menu-cta).is-active { color: var(--ink); background: rgba(255, 255, 255, 0.07); }
  /* The cloned CTA sits INSIDE the glass sheet: no glass-on-glass (and its
     backdrop-filter would sample blind inside the sheet's backdrop root). */
  .nav .nav-menu-cta {
    background: #f2f2f4;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
@keyframes nav-item-in {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
}

/* Very narrow phones: keep the bar to logo + hamburger only, and surface the
   "Book a Demo" CTA at the foot of the menu instead (cloned by app.js). */
@media (max-width: 460px) {
  .site-header .nav-cta { display: none; }
  .site-header.nav-open .nav .nav-menu-cta {
    display: inline-flex; justify-content: center; margin: 8px 0 0; width: 100%;
  }
}

@media (max-width: 640px) {
  .wrap { padding-inline: 20px; }
  .nav { display: none; }
  .header-inner { gap: 12px; }
  .nav-cta { margin-left: auto; }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3rem); }
  .intent-quotes { max-width: none; }
  .demo-input { flex-direction: column; }
  .demo-input .btn { width: 100%; }
  .pricing { padding-top: 72px; }
  .pricing-hero .page-title { font-size: clamp(2.65rem, 14vw, 4rem); }
  .pricing-cards { grid-template-columns: 1fr; gap: 12px; margin-bottom: 44px; }
  .price-card { padding: 24px 22px; gap: 20px; }
  .price-card-head { min-height: 0; }
  .price { font-size: 2.65rem; }
  .pricing-details { margin-top: -18px; }
  .pricing-panel { padding: 20px 22px; }
  .includes-list { display: grid; gap: 10px; }
  .addon-list p { display: grid; gap: 4px; }
  .addon-list strong { white-space: normal; }
  .footer-nav { margin-left: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-copy.hero-sequence-ready #hero-title,
  .hero-copy.hero-sequence-ready .lede,
  .hero-copy.hero-sequence-ready .intent-quotes,
  .hero-copy.hero-sequence-ready .intent-quotes li,
  .hero-copy.hero-sequence-ready .hero-sub,
  .hero-copy.hero-sequence-ready .hero-actions,
  .hero-copy.hero-sequence-ready + .hero-visual {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }
}

/* ============================================================
   EMBEDDED ASSISTANT SCREENS
   Faithful recreations of the real generated agent UI (light product
   screens), framed like real screenshots on the black page. Scoped under
   .screen-frame / .gx-* so the colour lives ONLY inside the screens - the
   surrounding page stays black & white. Palette mirrors the agent baselines.
   ============================================================ */

/* The frame: a light screen floating on black. Radius is concentric with the
   inner .gx-screen (16px inner + 10px padding = 26px outer). The screen casts
   its vertical's light onto the black canvas (--screen-glow via :has()) - the
   ONE place colour escapes the screens, as light, not paint. */
.screen-frame {
  --screen-glow: rgba(255, 255, 255, 0.10);
  max-width: 100%;
  border-radius: 26px; padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 50px 110px -40px rgba(0,0,0,0.95), 0 8px 30px -14px rgba(0,0,0,0.7),
    0 0 110px 4px var(--screen-glow);
}
.screen-frame:has(.gx-screen--grocery)     { --screen-glow: rgba(43, 122, 77, 0.17); }
.screen-frame:has(.gx-screen--supplements) { --screen-glow: rgba(79, 70, 229, 0.19); }
.screen-frame:has(.gx-screen--beauty)      { --screen-glow: rgba(177, 74, 115, 0.17); }
.screen-frame:has(.gx-screen--fashion)     { --screen-glow: rgba(255, 255, 255, 0.09); }
.screen-frame:has(.gx-screen--diy)         { --screen-glow: rgba(194, 96, 29, 0.15); }
.screen-frame:has(.gx-screen--furniture)   { --screen-glow: rgba(150, 118, 84, 0.16); }
.screen-frame--soft { padding: 0; background: none; border: none; box-shadow: 0 30px 70px -34px rgba(0,0,0,0.9); }

/* Light assistant screen - its own palette (per vertical via modifier) */
.gx-screen {
  --s-bg: #f4f4f6; --s-paper: #fff; --s-ink: #0e0e11; --s-muted: #6b6f76; --s-line: #e6e7ea;
  --s-accent: #4f46e5; --s-accent-soft: #eef2ff; --s-user: #0e0e11; --s-user-ink: #fff;
  --s-price: #0e0e11; --s-ph: linear-gradient(135deg, #edeef1, #f6f7f9);
  min-width: 0; max-width: 100%;
  background: var(--s-bg); color: var(--s-ink); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; font-size: 14px; line-height: 1.45;
  font-family: var(--font-display);
}
.gx-screen--grocery     { --s-bg:#f4f6f4; --s-ink:#1d2520; --s-line:#e6e9e6; --s-accent:#2b7a4d; --s-accent-soft:#e8f3ec; --s-user:#2b7a4d; --s-price:#2b7a4d; }
.gx-screen--supplements { --s-accent:#4f46e5; --s-accent-soft:#eef2ff; --s-user:#0e0e11; --s-price:#0e0e11; }
.gx-screen--beauty      { --s-bg:#f8f4f6; --s-ink:#2a1f25; --s-line:#eee0e7; --s-accent:#b14a73; --s-accent-soft:#f7e9f0; --s-user:#b14a73; --s-price:#b14a73; }
.gx-screen--fashion     { --s-bg:#f5f5f6; --s-ink:#1a1a1f; --s-line:#e6e6ea; --s-accent:#1a1a1f; --s-accent-soft:#ececf0; --s-user:#1a1a1f; --s-price:#1a1a1f; }
.gx-screen--diy         { --s-bg:#f7f5f1; --s-ink:#241f1a; --s-line:#eae5dd; --s-accent:#b45a1d; --s-accent-soft:#f7eadd; --s-user:#b45a1d; --s-price:#b45a1d; }
.gx-screen--furniture   { --s-bg:#f6f4f1; --s-ink:#221e1a; --s-line:#e8e3dc; --s-accent:#8a6a4a; --s-accent-soft:#f2ebe2; --s-user:#8a6a4a; --s-price:#8a6a4a; }

/* header (logo + New chat + IT/EN + ··· - no analytics on the customer-facing view) */
.gx-head { display:flex; align-items:center; gap:10px; padding:11px 15px; background:var(--s-paper); border-bottom:1px solid var(--s-line); }
.gx-brand { display:flex; align-items:center; gap:8px; min-width:0; }
.gx-mark { width:22px; height:22px; border-radius:6px; background:var(--s-accent); color:#fff; font-size:12px; font-weight:800; display:flex; align-items:center; justify-content:center; flex:none; }
.gx-logo { box-shadow:inset 0 0 0 1px rgba(255,255,255,0.45); }
.gx-logo svg { width:15px; height:15px; display:block; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.gx-logo--sprout { background:#e6f5ea; color:#287347; }
.gx-logo--bolt { background:#ecebff; color:#4f46e5; }
.gx-logo--drop { background:#f8e5ee; color:#a64269; }
.gx-logo--thread { background:#eeeeef; color:#1a1a1f; }
.gx-logo--analytics { background:#eef2ff; color:#4f46e5; }
.gx-word { font-size:14px; font-weight:700; letter-spacing:-0.01em; color:var(--s-ink); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gx-head-right { margin-left:auto; display:flex; align-items:center; gap:9px; font-size:11px; color:var(--s-muted); flex:none; }
.gx-newchat { display:flex; align-items:center; gap:4px; white-space:nowrap; border:1px solid var(--s-line); border-radius:999px; padding:3px 10px; background:#fff; }
.gx-langtoggle { display:flex; align-items:center; gap:2px; border:1px solid var(--s-line); border-radius:999px; padding:1px; }
.gx-langtoggle b { background:var(--s-ink); color:#fff; border-radius:999px; padding:2px 7px; font-weight:600; }
.gx-langtoggle span { padding:2px 6px; color:var(--s-muted); }
.gx-dots { font-size:14px; color:var(--s-muted); letter-spacing:1px; }

/* chat */
.gx-chat { background:var(--s-bg); padding:14px 16px; display:flex; flex-direction:column; gap:10px; flex:1; }
.gx-msg { max-width:90%; padding:10px 13px; border-radius:13px; font-size:13px; }
.gx-msg--user { align-self:flex-end; background:var(--s-user); color:var(--s-user-ink); border-bottom-right-radius:4px; }
.gx-msg--assistant { align-self:flex-start; background:var(--s-paper); border:1px solid var(--s-line); border-bottom-left-radius:4px; }
.gx-step { display:flex; align-items:center; gap:8px; font-size:11px; color:var(--s-muted); font-family:var(--font-mono); align-self:flex-start; }
.gx-step-dot { width:7px; height:7px; border-radius:50%; background:var(--s-accent); flex:none; }

/* product grid + cards (mirror the real .product-card exactly) */
.gx-products { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:2px; }
.gx-card { background:var(--s-paper); border:1px solid var(--s-line); border-radius:14px; overflow:hidden; display:flex; flex-direction:column; }
.gx-card-img { aspect-ratio:1.4/1; background:var(--s-ph); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.gx-card-img img { width:100%; height:100%; object-fit:cover; }
.gx-ph { color:var(--s-muted); font-weight:800; font-size:18px; opacity:0.85; letter-spacing:0.03em; }
.gx-card-body { padding:11px 12px 12px; display:flex; flex-direction:column; gap:7px; flex:1; }
.gx-card-meta { font-size:10.5px; text-transform:uppercase; letter-spacing:0.05em; color:var(--s-muted); }
.gx-card-name { font-size:13px; font-weight:600; line-height:1.3; color:var(--s-ink); display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.gx-card-chips { display:flex; flex-wrap:wrap; gap:4px; }
.gx-chip { font-size:9.5px; text-transform:uppercase; letter-spacing:0.04em; padding:2px 7px; border-radius:999px; background:#eceef1; color:#3a3f47; font-weight:700; }
.gx-card-price { font-size:14.5px; font-weight:700; color:var(--s-price); margin-top:auto; display:flex; align-items:baseline; gap:6px; }
.gx-var { font-size:10.5px; font-weight:500; color:var(--s-muted); }
.gx-add { display:block; text-align:center; background:var(--s-ink); color:#fff; font-weight:600; font-size:12px; padding:8px 12px; border-radius:8px; }
.gx-note { font-size:11px; color:var(--s-muted); font-family:var(--font-mono); background:var(--s-paper); border:1px solid var(--s-line); border-radius:9px; padding:8px 11px; }

/* recipe card (mirror the real .recipe-card exactly: rows w/ qty + swap/remove,
   accent total, add-everything + create-recipe, pairing chips) */
.gx-recipe { background:var(--s-paper); border:1px solid var(--s-accent); border-radius:14px; padding:13px 15px; display:flex; flex-direction:column; gap:9px; }
.gx-recipe-head { display:flex; align-items:baseline; justify-content:space-between; }
.gx-recipe-dish { font-size:15px; font-weight:700; }
.gx-recipe-serv { font-size:12px; color:var(--s-muted); }
.gx-recipe-desc { font-size:11px; color:var(--s-muted); line-height:1.4; margin-top:-3px; }
.gx-recipe-rows { display:flex; flex-direction:column; }
.gx-ing { display:grid; grid-template-columns:42px 1fr auto auto auto; gap:8px; align-items:center; padding:8px 0; border-bottom:1px solid var(--s-line); }
.gx-ing-thumb { width:42px; height:42px; border-radius:8px; overflow:hidden; background:var(--s-ph); display:flex; align-items:center; justify-content:center; flex:none; }
.gx-ing-thumb img { width:100%; height:100%; object-fit:cover; }
.gx-ing-info { display:flex; flex-direction:column; gap:1px; min-width:0; }
.gx-ing-label { font-size:12.5px; font-weight:600; }
.gx-ing-prod { font-size:10.5px; color:var(--s-muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gx-ing-qty { display:flex; align-items:center; gap:5px; }
.gx-qa { width:19px; height:19px; border:1px solid var(--s-line); border-radius:6px; display:flex; align-items:center; justify-content:center; font-size:12px; color:var(--s-ink); }
.gx-qv { min-width:12px; text-align:center; font-size:12px; font-weight:600; }
.gx-ing-price { font-size:12.5px; font-weight:600; color:var(--s-price); min-width:38px; text-align:right; }
.gx-ing-act { display:flex; gap:5px; align-items:center; }
.gx-ing-swap, .gx-ing-x { width:21px; height:21px; border:1px solid var(--s-line); border-radius:6px; display:flex; align-items:center; justify-content:center; font-size:12px; color:var(--s-muted); }
.gx-recipe-total { display:flex; align-items:center; justify-content:space-between; padding-top:2px; }
.gx-rt-count { font-size:11.5px; color:var(--s-muted); }
.gx-rt-total { font-size:13.5px; color:var(--s-ink); font-weight:600; }
.gx-rt-total b { color:var(--s-accent); font-size:14.5px; }
.gx-recipe-actions { display:flex; gap:8px; }
.gx-add--recipe { flex:1; background:var(--s-accent); color:#fff; padding:11px 14px; border-radius:8px; font-weight:600; font-size:12.5px; text-align:center; }
.gx-createdoc { flex:1; text-align:center; border:1px solid var(--s-line); background:var(--s-paper); border-radius:8px; font-weight:600; font-size:12.5px; padding:11px 14px; color:var(--s-ink); }
.gx-pairings { display:flex; align-items:center; gap:7px; flex-wrap:wrap; padding-top:9px; border-top:1px dashed var(--s-line); }
.gx-pairings-label { font-size:10.5px; text-transform:uppercase; letter-spacing:0.06em; color:var(--s-muted); }
.gx-pair { font-size:11px; padding:4px 10px; border:1px solid var(--s-line); background:var(--s-paper); border-radius:999px; color:var(--s-ink); }

/* cart card (multi-turn outcome: one sentence → paid-ready basket) */
.gx-cart { background:var(--s-paper); border:1px solid var(--s-line); border-radius:14px; padding:13px 15px; display:flex; flex-direction:column; gap:9px; }
.gx-cart-head { display:flex; align-items:baseline; justify-content:space-between; gap:8px; }
.gx-cart-title { font-size:14px; font-weight:700; }
.gx-cart-note { font-size:10.5px; color:var(--s-muted); }
.gx-cart-rows { display:flex; flex-direction:column; }
.gx-cart-row { display:grid; grid-template-columns:34px 1fr auto auto; gap:9px; align-items:center; padding:7px 0; border-bottom:1px solid var(--s-line); }
.gx-cart-thumb { width:34px; height:34px; border-radius:7px; overflow:hidden; background:var(--s-ph); display:flex; align-items:center; justify-content:center; flex:none; }
.gx-cart-thumb img { width:100%; height:100%; object-fit:cover; }
.gx-cart-info { display:flex; flex-direction:column; gap:1px; min-width:0; }
.gx-cart-name { font-size:12.5px; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gx-cart-detail { font-size:10.5px; color:var(--s-muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gx-cart-qty { font-size:11.5px; color:var(--s-muted); }
.gx-cart-price { font-size:12.5px; font-weight:600; color:var(--s-price); min-width:42px; text-align:right; }
.gx-cart-total { display:flex; align-items:center; justify-content:space-between; padding-top:2px; }
.gx-cart-count { font-size:11.5px; color:var(--s-muted); }
.gx-cart-sum { font-size:13.5px; color:var(--s-ink); font-weight:600; }
.gx-cart-sum b { color:var(--s-accent); font-size:15px; }
.gx-cart-actions { display:flex; }
.gx-add--cart { flex:1; background:var(--s-accent); color:#fff; padding:11px 14px; border-radius:8px; font-weight:600; font-size:12.5px; text-align:center; }

/* order-confirmation card (the checkout outcome) */
.gx-order { background:var(--s-paper); border:1px solid var(--s-accent); border-radius:14px; padding:14px 15px; display:flex; flex-direction:column; gap:11px; }
.gx-order-top { display:flex; align-items:center; gap:10px; }
.gx-order-check { width:26px; height:26px; border-radius:50%; background:var(--s-accent); color:#fff; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; flex:none; }
.gx-order-headings { display:flex; flex-direction:column; gap:1px; }
.gx-order-title { font-size:14px; font-weight:700; color:var(--s-ink); }
.gx-order-num { font-size:11px; color:var(--s-muted); font-family:var(--font-mono); }
.gx-order-rows { display:flex; flex-direction:column; gap:6px; padding-top:10px; border-top:1px solid var(--s-line); }
.gx-order-line { display:flex; align-items:baseline; justify-content:space-between; gap:10px; }
.gx-order-k { font-size:11.5px; color:var(--s-muted); }
.gx-order-v { font-size:12.5px; color:var(--s-ink); font-weight:600; text-align:right; }
.gx-order-total { color:var(--s-accent); font-size:14px; }

/* composer + gentika footer */
.gx-composer { display:flex; align-items:center; gap:8px; margin:0 16px 12px; background:var(--s-paper); border:1px solid var(--s-line); border-radius:999px; padding:6px 6px 6px 16px; }
.gx-mic { flex:none; width:24px; height:24px; display:flex; align-items:center; justify-content:center; color:var(--s-muted); }
.gx-mic svg { width:17px; height:17px; }
.gx-send { flex:none; width:30px; height:30px; border-radius:50%; background:var(--s-ink); color:#fff; display:flex; align-items:center; justify-content:center; font-size:15px; }
/* embedded screens are non-interactive previews: the ONLY movable thing is the
   chat scroll. Everything else (buttons, qty, send…) is inert and unselectable. */
.gx-screen { pointer-events: none; user-select: none; }
.gx-chat { pointer-events: auto; cursor: default; }            /* scroll up/down only */
.gx-chat .gx-add, .gx-chat .gx-qa, .gx-chat .gx-ing-swap, .gx-chat .gx-ing-x,
.gx-chat .gx-pair, .gx-chat .gx-createdoc { pointer-events: none; }
.gx-foot { display:flex; align-items:center; justify-content:flex-end; gap:5px; padding:9px 16px; background:var(--s-paper); border-top:1px solid var(--s-line); }
.gx-foot span { font-size:10.5px; color:var(--s-muted); }
.gx-foot img { width:auto; display:block; }
.gx-foot .gx-pw-mark { height:13px; }
.gx-foot .gx-pw-word { height:9px; }

/* light analytics backoffice (Customer Intelligence) */
.gx-screen--analytics { --s-accent:#4f46e5; --s-accent-soft:#eef2ff; }
.gx-bo-body { background:var(--s-bg); padding:14px 16px; display:flex; flex-direction:column; gap:11px; }
.gx-bo-range { border:1px solid var(--s-line); border-radius:999px; padding:2px 9px; }
.gx-bo-note { font-size:10.5px; color:var(--s-accent); background:var(--s-accent-soft); border-radius:8px; padding:7px 11px; }
.gx-kpis { display:grid; grid-template-columns:repeat(5, minmax(0,1fr)); gap:8px; }
.gx-kpi { background:var(--s-paper); border:1px solid var(--s-line); border-radius:10px; padding:10px 11px; display:flex; flex-direction:column; gap:3px; }
.gx-kpi span { font-size:9.5px; text-transform:uppercase; letter-spacing:0.04em; color:var(--s-muted); }
.gx-kpi strong { font-size:18px; color:var(--s-ink); }
.gx-kpi em { font-size:10.5px; font-style:normal; color:var(--s-muted); }
.gx-kpi em.up { color:#1a7f43; }
.gx-bo-card { background:var(--s-paper); border:1px solid var(--s-line); border-radius:10px; padding:11px 13px; }
.gx-bo-card-head { display:flex; align-items:baseline; gap:8px; margin-bottom:9px; }
.gx-bo-card-head span:first-child { font-size:12.5px; font-weight:700; color:var(--s-ink); }
.gx-bo-meta { font-size:10px; color:var(--s-muted); margin-left:auto; }
.gx-bars { display:flex; flex-direction:column; gap:9px; }
.gx-bars li { display:flex; flex-direction:column; gap:5px; }
.gx-bars li span { font-size:11.5px; color:var(--s-ink); }
.gx-bars li i { display:block; height:8px; border-radius:999px; background:var(--s-accent); }
.gx-gaps { display:flex; flex-direction:column; gap:7px; }
.gx-gaps li { display:flex; justify-content:space-between; gap:10px; font-size:11.5px; color:var(--s-ink); }
.gx-gaps li span { min-width:0; }
.gx-gaps li strong { color:var(--s-accent); flex:none; }

/* ---------- full backoffice (recipe-economy dashboard) ---------- */
.gx-screen.gx-bo { height:auto; }
.gx-bo-tag { font-size:9.5px; text-transform:uppercase; letter-spacing:0.1em; color:var(--s-muted); border:1px solid var(--s-line); border-radius:999px; padding:1px 7px; margin-left:2px; }
.gx-bo-filter { border:1px solid var(--s-line); border-radius:999px; padding:2px 10px; }
.gx-bo-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:11px; }
.gx-bo-grid3 { display:grid; grid-template-columns:repeat(3,1fr); gap:11px; }
.gx-bo-uplift { margin-top:auto; font-size:11px; line-height:1.4; color:var(--s-accent); background:var(--s-accent-soft); border-radius:8px; padding:8px 11px; }
.gx-bo-grid2 .gx-bo-card, .gx-bo-grid3 .gx-bo-card { display:flex; flex-direction:column; }
.gx-bo-grid2 .gx-bo-card > ul, .gx-bo-grid2 .gx-bo-card > svg { flex:none; }
/* trend chart */
.gx-trend { width:100%; height:88px; display:block; }
.gx-trend polyline { fill:none; stroke-width:2; vector-effect:non-scaling-stroke; stroke-linecap:round; stroke-linejoin:round; }
.gx-tr-a { stroke:var(--s-accent); }
.gx-tr-b { stroke:var(--s-muted); stroke-dasharray:3 2.5; }
.gx-tr-axis { display:flex; justify-content:space-between; margin-top:6px; }
.gx-tr-axis span { font-size:9px; color:var(--s-muted); }
.gx-tr-legend { display:flex; gap:14px; margin-top:9px; }
.gx-tr-k { font-size:10.5px; color:var(--s-muted); display:flex; align-items:center; gap:5px; }
.gx-tr-k::before { content:""; width:12px; height:2px; border-radius:2px; background:currentColor; flex:none; }
.gx-tr-k--a { color:var(--s-accent); }
/* recipe-to-cart funnel */
.gx-funnel { display:flex; flex-direction:column; gap:10px; }
.gx-funnel li { display:flex; flex-direction:column; gap:4px; }
.gx-fn-top { display:flex; align-items:baseline; justify-content:space-between; gap:8px; }
.gx-fn-top span { font-size:11.5px; color:var(--s-ink); }
.gx-fn-step { font-size:10px; color:var(--s-muted); white-space:nowrap; }
.gx-fn-bar { position:relative; display:flex; align-items:center; min-height:18px; }
.gx-fn-bar i { display:block; height:18px; border-radius:5px; background:var(--s-accent); opacity:0.92; }
.gx-fn-bar b { position:absolute; left:9px; font-size:11px; font-weight:700; color:#fff; }
/* most-requested dishes (bar list with counts) */
.gx-bar-row { display:flex; align-items:baseline; justify-content:space-between; gap:8px; }
.gx-bar-row span { font-size:11.5px; color:var(--s-ink); min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.gx-bar-row b { font-size:12px; font-weight:700; color:var(--s-ink); flex:none; }
/* pairings attach-rate */
.gx-pairlist { display:flex; flex-direction:column; gap:10px; }
.gx-pairlist li { display:flex; align-items:center; gap:9px; }
.gx-pa-ic { font-size:14px; flex:none; }
.gx-pa-n { font-size:12px; color:var(--s-ink); flex:1; }
.gx-pa-p { font-size:12.5px; font-weight:700; color:var(--s-accent); }
/* tables (recommended products + recent activity) */
.gx-bo-table { width:100%; border-collapse:collapse; font-size:11px; }
.gx-bo-table th { text-align:left; font-size:9px; text-transform:uppercase; letter-spacing:0.04em; color:var(--s-muted); font-weight:700; padding:0 8px 7px 0; border-bottom:1px solid var(--s-line); }
.gx-bo-table td { padding:8px 8px 8px 0; border-bottom:1px solid var(--s-line); color:var(--s-ink); vertical-align:middle; }
.gx-bo-table tr:last-child td { border-bottom:none; }
.gx-bo-table td:first-child { font-weight:600; }
.gx-bo-table--num th:not(:first-child), .gx-bo-table--num td:not(:first-child) { text-align:right; white-space:nowrap; }
.gx-bo-activity th:last-child, .gx-bo-activity td:last-child { text-align:right; }
.gx-ac-t { color:var(--s-muted); font-family:var(--font-mono); white-space:nowrap; }
.gx-ac-q { color:var(--s-muted); font-style:italic; }
.gx-ac-v { font-weight:700; color:var(--s-accent); white-space:nowrap; }
.gx-pill { display:inline-block; font-size:9px; font-weight:700; text-transform:uppercase; letter-spacing:0.03em; padding:3px 9px; border-radius:999px; white-space:nowrap; }
.gx-pill--cart { background:var(--s-accent-soft); color:var(--s-accent); }
.gx-pill--ok { background:#eef2ff; color:#4f46e5; }
.gx-pill--rec { background:#eceef1; color:#3a3f47; }
@media (max-width: 860px) {
  .gx-bo-grid2, .gx-bo-grid3 { grid-template-columns:1fr; }
  .gx-kpis { grid-template-columns:repeat(3,1fr); }
}

/* ---------- demo section layout (dark page chrome around the screen) ---------- */
.real-demo { display:grid; grid-template-columns:0.72fr 1.28fr; gap:clamp(24px,4vw,48px); align-items:center; min-width:0; }   /* the stage centres on the rail - the axis every step is seated on */
.demo-rail, .demo-stage-screen { min-width:0; }
.demo-rail { display:flex; flex-direction:column; }
.scenario-tabs { display:grid; gap:8px; margin-top:14px; position:relative; }
/* Liquid selection: one shared highlight that springs between tabs instead of
   each button repainting. Sized/positioned by app.js; sits behind the buttons. */
.tab-glider {
  position: absolute; left: 0; right: 0; top: 0; height: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  pointer-events: none; opacity: 0;
  transition: transform 0.55s var(--spring-bouncy, cubic-bezier(0.22, 1, 0.36, 1)),
    height 0.55s var(--spring-bouncy, cubic-bezier(0.22, 1, 0.36, 1)),
    opacity 0.2s ease;
  will-change: transform;
}
.tab-glider.is-on { opacity: 1; }
.scenario-tabs button { position: relative; z-index: 1; }
/* Glass control pills: frosted fill, specular rim, gel press. */
.scenario-tabs button {
  text-align:left; cursor:pointer; display:flex; flex-direction:column; gap:2px;
  padding:12px 16px; border-radius:16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  transition: border-color .2s ease, background .2s ease,
    transform 0.5s var(--spring-bouncy, cubic-bezier(0.22, 1, 0.36, 1)),
    box-shadow .25s ease;
}
.scenario-tabs button:hover { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.08); }
.scenario-tabs button:active { transform: scale(0.97); }
/* The moving glider carries the active fill; the button keeps only the rim. */
.scenario-tabs button.active {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 10px 28px -16px rgba(255, 255, 255, 0.3);
}
.gx-tab-label { font-size:14px; font-weight:600; color:var(--ink); }
.gx-tab-q { font-size:12px; color:var(--ink-3); font-family:var(--font-mono); }
.scenario-tabs button.active .gx-tab-q { color:var(--ink-2); }
.hero-visual .screen-frame { transform: none; }

@media (max-width: 960px) {
  .real-demo { grid-template-columns:1fr; gap:26px; }
  .hero-visual .screen-frame { transform:none; }
}
@media (max-width: 640px) {
  .gx-products { grid-template-columns:repeat(2,1fr); }
  .gx-kpis { grid-template-columns:repeat(2,1fr); }
}

/* ---------- live typing flow ---------- */
.gx-screen { height: 560px; }                 /* stable frame; chat scrolls inside */
.gx-screen--compact { height: 520px; }
.gx-screen--analytics { height: auto; }
.gx-chat { overflow-y: auto; scroll-behavior: smooth; }
.gx-chat::-webkit-scrollbar { width: 7px; }
.gx-chat::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 999px; }

.gx-anim { opacity: 0; transform: translateY(9px); transition: opacity .58s ease, transform .58s ease; }
.gx-anim.in { opacity: 1; transform: none; }

.gx-typing { align-self:flex-start; display:flex; gap:5px; align-items:center;
  background:var(--s-paper); border:1px solid var(--s-line); border-radius:13px; border-bottom-left-radius:4px; padding:13px 15px; }
.gx-typing i { width:6px; height:6px; border-radius:50%; background:var(--s-muted); animation: gx-bounce 1.6s infinite ease-in-out; }
.gx-typing i:nth-child(2) { animation-delay:.24s; }
.gx-typing i:nth-child(3) { animation-delay:.48s; }
@keyframes gx-bounce { 0%,80%,100% { transform:translateY(0); opacity:.35; } 40% { transform:translateY(-5px); opacity:1; } }

.gx-composer .gx-draft { flex:1; font-size:12.5px; color:var(--s-ink); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gx-composer .gx-draft.placeholder { color:var(--s-muted); }
.gx-composer .gx-draft.typing::after { content:""; display:inline-block; width:2px; height:1.05em; background:var(--s-ink); margin-left:1px; vertical-align:-2px; animation: gx-caret 1s step-end infinite; }
@keyframes gx-caret { 50% { opacity:0; } }

@media (prefers-reduced-motion: reduce) {
  .gx-anim { opacity:1; transform:none; }
  .gx-typing i { animation:none; }
  .gx-composer .gx-draft.typing::after { display:none; }
}

/* ============================================================
   Accessibility: reduced transparency - every glass surface goes solid.
   (Reduced motion is handled by the global animation/transition kill above.)
   ============================================================ */
@media (prefers-reduced-transparency: reduce) {
  body::before { display: none; }
  .header-inner,
  .site-header.is-scrolled .header-inner {
    background: #0c0c0f;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav { background: #0c0c0f; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .btn-primary {
    background: var(--accent);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .btn-ghost {
    background: rgba(255, 255, 255, 0.07);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .scenario-tabs button {
    background: var(--bg-card);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .scenario-tabs button.active { background: #1c1c20; }
  .contact-card {
    background: var(--bg-card);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .contact-card--cta { background: var(--accent); }
}
