/* ============================================================
   SERP Agent — "Field Report"
   Warm paper, ink black, single growth-green accent.
   Editorial display type + monospace technical labels.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&display=swap");

:root {
  /* Type */
  --display: "Bricolage Grotesque", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;
  --mono: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;

  /* Dark field — matches the hero's deep violet-ink palette */
  --bg:        oklch(0.145 0.04 286);
  --bg-2:      oklch(0.175 0.04 287);
  --surface:   oklch(0.205 0.035 286);
  --ink:       oklch(0.97 0.01 290);
  --ink-soft:  oklch(0.88 0.012 290);
  --muted:     oklch(0.72 0.013 287);
  --faint:     oklch(0.58 0.012 287);
  --line:      oklch(1 0 0 / 0.12);
  --line-soft: oklch(1 0 0 / 0.07);

  /* Violet accent — brightened to read on the dark field */
  --accent:      oklch(0.62 0.18 290);
  --accent-ink:  oklch(0.80 0.13 292);
  --accent-deep: oklch(0.84 0.12 292);
  --accent-soft: oklch(0.34 0.085 290);
  --accent-line: oklch(0.50 0.13 290);

  /* Signature blue→purple button gradient (admin "Create new project") */
  --grad:        linear-gradient(96deg, oklch(0.58 0.20 268), oklch(0.53 0.22 296));
  --grad-hover:  linear-gradient(96deg, oklch(0.54 0.21 268), oklch(0.49 0.23 296));

  /* Cross / negative */
  --neg: oklch(0.66 0.07 30);

  /* Secondary rose accent — the warm half of the hero duotone (hue ~18) */
  --accent-2:      oklch(0.66 0.16 18);
  --accent-2-ink:  oklch(0.80 0.13 20);
  --accent-2-soft: oklch(0.36 0.09 18);

  /* "dark" sections — slightly raised panels on the dark field */
  --panel:      oklch(0.185 0.045 287);
  --panel-2:    oklch(0.17 0.04 287);
  --panel-line: oklch(1 0 0 / 0.08);
  --on-dark:    var(--ink);

  --radius:   12px;
  --radius-l: 16px;
  --radius-s: 10px;
  --radius-pill: 999px;

  --shadow-s: 0 1px 0 oklch(0 0 0 / 0.3);
  --shadow-m: 0 12px 32px oklch(0.08 0.03 286 / 0.5);
  --shadow-l: 0 26px 64px oklch(0.06 0.03 286 / 0.6);

  --maxw: 1360px;
  --gutter: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Cursor ribbon trail canvas */
#cursor-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: screen;
}

html { overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  position: relative;
  font-family: var(--sans);
  background: var(--bg);
  background-image:
    radial-gradient(120% 60% at 50% -8%, oklch(0.62 0.16 290 / 0.12), transparent 60%),
    radial-gradient(80% 55% at 100% 4%, oklch(0.60 0.14 268 / 0.07), transparent 55%),
    radial-gradient(70% 55% at 2% 96%, oklch(0.62 0.16 18 / 0.13), transparent 60%),
    radial-gradient(60% 45% at 100% 88%, oklch(0.64 0.15 24 / 0.08), transparent 60%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- language toggle visibility ---------- */
html[lang="en"] .uk { display: none !important; }
html[lang="uk"] .en { display: none !important; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: 104px 0; }
@media (max-width: 760px) { section { padding: 68px 0; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px; background: var(--accent);
  display: inline-block; flex: none;
}
.section-head.center .eyebrow::before { display: none; }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(31px, 4.4vw, 50px); letter-spacing: -0.03em; }
.section-head p.lead {
  margin-top: 20px;
  font-size: clamp(16.5px, 1.6vw, 19px);
  color: var(--muted);
  line-height: 1.55;
}

.alt { background: transparent; }
.alt, section { position: relative; z-index: 1; }

.dark {
  background: transparent;
  color: var(--ink);
}
.dark .eyebrow { color: var(--accent-ink); }
.dark .eyebrow::before { background: var(--accent); }
.dark p.lead { color: var(--muted); }
.dark .section-head h2 { color: var(--ink); }

.muted { color: var(--muted); }
.accent { color: var(--accent-ink); }

/* ---------- page-wide background deco (blobs + floating capsules) ---------- */
#page-deco {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
/* static capsules replaced by the falling-capsule layer (effects.js) */
#page-deco .deco-cap { display: none; }

/* falling glass capsules — continuous ambient, viewport-fixed */
#fx-fall {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.fx-cap {
  position: absolute; top: 0; border-radius: 999px;
  border: 1.5px solid oklch(1 0 0 / 0.16);
  box-shadow: inset 0 0 26px oklch(1 0 0 / 0.06);
  opacity: var(--op, 0.16);
  animation-name: fxFall; animation-timing-function: linear; animation-iteration-count: infinite;
  will-change: transform;
}
.fx-cap::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, oklch(1 0 0 / 0.16), transparent 70%);
}
@keyframes fxFall {
  0%   { transform: translateY(-22vh) translateX(0) rotate(var(--rot, 0deg)); }
  100% { transform: translateY(122vh) translateX(var(--drift, 0px)) rotate(var(--rot, 0deg)); }
}
@media (prefers-reduced-motion: reduce) { #fx-fall { display: none; } }
.deco-blob {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(70px); opacity: 0.55;
}
.deco-cap {
  position: absolute; display: block; border-radius: 999px;
  border: 1.5px solid oklch(1 0 0 / 0.13);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  box-shadow: 0 8px 32px oklch(1 0 0 / 0.06), inset 0 0 24px oklch(1 0 0 / 0.05);
  transform: rotate(var(--r, 0deg));
  animation: decoFloat var(--dur, 16s) ease-in-out infinite var(--del, 0s);
}
.deco-cap::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, oklch(1 0 0 / 0.16), transparent 70%);
}
@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(18px) rotate(var(--r, 0deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .deco-cap { animation: none; }
}


.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans);
  font-size: 15.5px; font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn {
  border-radius: var(--radius-pill);
}

/* ---- Liquid glass primary CTA ---- */
.btn-primary, .btn-on-dark {
  position: relative;
  isolation: isolate;
  background: linear-gradient(96deg, oklch(0.54 0.20 268 / 0.92), oklch(0.49 0.22 296 / 0.92));
  color: #fff;
  text-shadow: 0 1px 1px oklch(0.30 0.16 290 / 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  box-shadow:
    inset 1.5px 1.5px 0.5px -1px oklch(1 0 0 / 0.75),
    inset -1.5px -1.5px 0.5px -1px oklch(0.30 0.16 290 / 0.45),
    inset 0 0 8px 4px oklch(1 0 0 / 0.10),
    0 6px 18px oklch(0.50 0.20 290 / 0.30),
    0 0 12px oklch(1 0 0 / 0.12);
  overflow: hidden;
}
/* refraction layer — warps whatever sits behind the button */
.btn-primary::before, .btn-on-dark::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  -webkit-backdrop-filter: url("#container-glass");
  backdrop-filter: url("#container-glass");
  pointer-events: none;
}
/* glossy top highlight */
.btn-primary::after, .btn-on-dark::after {
  content: "";
  position: absolute; left: 6%; right: 6%; top: 2px; height: 42%;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, oklch(1 0 0 / 0.38), oklch(1 0 0 / 0));
  pointer-events: none;
}
.btn-primary:hover, .btn-on-dark:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
  box-shadow:
    inset 1.5px 1.5px 0.5px -1px oklch(1 0 0 / 0.85),
    inset -1.5px -1.5px 0.5px -1px oklch(0.30 0.16 290 / 0.45),
    inset 0 0 8px 4px oklch(1 0 0 / 0.12),
    0 10px 26px oklch(0.50 0.20 290 / 0.36),
    0 0 14px oklch(1 0 0 / 0.16);
}
.btn-primary:active, .btn-on-dark:active { transform: translateY(0) scale(0.985); filter: brightness(0.96); }

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 16.5px; }

.cta-sub {
  font-size: 13px; color: var(--muted); margin-top: 16px;
  font-family: var(--mono); letter-spacing: 0;
}
.dark .cta-sub { color: var(--muted); }

/* ---------- nav — floating translucent glass capsule (single state) ---------- */
.nav {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 60;
  padding: 0 var(--gutter); pointer-events: none;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 9px 9px 9px 20px;
  position: relative;
  display: flex; align-items: center; gap: 30px;
  border-radius: 999px;
  border: 1px solid oklch(1 0 0 / 0.12);
  background: oklch(0.19 0.03 286 / 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 12px 36px oklch(0.10 0.04 286 / 0.34), inset 0 1px 0 oklch(1 0 0 / 0.12);
  pointer-events: auto;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: #fff; }
.brand .brand-logo { height: 36px; width: auto; display: block; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--grad); color: #fff;
  display: grid; place-items: center; font-size: 15px; font-weight: 800; font-family: var(--display);
  box-shadow: 0 2px 8px oklch(0.50 0.20 290 / 0.45);
}
.nav-links { display: flex; gap: 28px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-links a { font-size: 14.5px; color: oklch(0.95 0.01 290 / 0.86); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; margin-top: 4px; border-radius: 2px;
  background: var(--accent-deep);
}
/* hover underline grow for non-active nav links */
.nav-links a:not(.active) { position: relative; }
.nav-links a:not(.active)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px; border-radius: 2px;
  background: var(--accent-deep); opacity: 0.85;
  transform: scaleX(0); transform-origin: left; transition: transform .26s ease;
}
.nav-links a:not(.active):hover::after { transform: scaleX(1); }

/* cursor-spotlight glow on solid cards */
.fx-spot { --mx: 50%; --my: 0px; }
.fx-spot:hover {
  background-image: radial-gradient(300px circle at var(--mx) var(--my), oklch(0.72 0.18 292 / 0.14), transparent 60%);
}
/* magnetic CTAs ease back smoothly */
.fx-magnetic { transition: transform .18s cubic-bezier(.2,.7,.3,1); will-change: transform; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.lang-select {
  position: relative; display: inline-flex; align-items: center;
  border: 1px solid oklch(1 0 0 / 0.18); border-radius: 999px;
  background: oklch(1 0 0 / 0.06); transition: border-color .2s, background .2s;
}
.lang-select:hover { border-color: oklch(1 0 0 / 0.32); background: oklch(1 0 0 / 0.10); }
.lang-select select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  border: 0; outline: 0; background: transparent; cursor: pointer;
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  color: oklch(0.95 0.01 290 / 0.92);
  padding: 7px 30px 7px 14px; border-radius: 999px;
}
.lang-select select option { background: oklch(0.2 0.035 286); color: var(--ink); }
.lang-select .caret {
  position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px; pointer-events: none; color: oklch(0.92 0.01 290 / 0.7);
}

/* ---------- language dropdown (custom; animates open downward) ---------- */
.lang-dd { position: relative; }
.lang-dd-btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid oklch(1 0 0 / 0.18); border-radius: 999px;
  background: oklch(1 0 0 / 0.06); color: oklch(0.95 0.01 290 / 0.92);
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  padding: 7px 13px; cursor: pointer; transition: border-color .2s, background .2s;
}
.lang-dd-btn:hover { border-color: oklch(1 0 0 / 0.32); background: oklch(1 0 0 / 0.10); }
.lang-dd-btn .caret { width: 11px; height: 11px; pointer-events: none; color: oklch(0.92 0.01 290 / 0.7); transition: transform .22s ease; }
.lang-dd.open .lang-dd-btn .caret { transform: rotate(180deg); }
.lang-dd-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 132px;
  margin: 0; padding: 6px; list-style: none;
  background: oklch(0.21 0.035 286); border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: 14px; box-shadow: 0 18px 40px -12px oklch(0 0 0 / 0.55);
  opacity: 0; transform: translateY(-8px) scale(0.98); transform-origin: top right;
  pointer-events: none; transition: opacity .2s ease, transform .2s ease; z-index: 1200;
}
.lang-dd.open .lang-dd-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lang-dd-menu li { margin: 0; }
.lang-dd-menu a {
  display: block; padding: 9px 12px; border-radius: 9px; text-decoration: none;
  color: oklch(0.9 0.01 290 / 0.78); font-family: var(--sans); font-size: 13px; font-weight: 600;
  transition: background .15s, color .15s;
}
.lang-dd-menu a:hover { background: oklch(1 0 0 / 0.08); color: #fff; }
.lang-dd-menu a.active { background: var(--grad); color: #fff; }

/* ---------- mobile nav: hamburger + drawer ---------- */
.nav-burger { display: none; }
.nav-drawer, .nav-scrim { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { gap: 12px; padding: 9px 9px 9px 18px; }
  .nav-right .lang-select, .nav-right .lang-dd { display: none; }
  .nav-right .btn-primary { display: none; }

  .nav-burger {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 0; border-radius: 50%; cursor: pointer;
    border: 1px solid oklch(1 0 0 / 0.18); background: oklch(1 0 0 / 0.06);
    transition: border-color .2s, background .2s;
  }
  .nav-burger:hover { border-color: oklch(1 0 0 / 0.32); background: oklch(1 0 0 / 0.10); }
  .nav-burger span { display: block; width: 18px; height: 2px; border-radius: 2px; background: #fff; transition: transform .25s ease, opacity .2s ease; }
  html.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  html.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  html.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-drawer {
    display: flex; flex-direction: column; gap: 4px;
    position: fixed; top: 76px; left: var(--gutter); right: var(--gutter); z-index: 70;
    padding: 14px;
    background: oklch(0.185 0.038 287 / 0.97);
    -webkit-backdrop-filter: blur(20px) saturate(1.4); backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid oklch(1 0 0 / 0.14); border-radius: 24px;
    box-shadow: 0 24px 60px oklch(0.08 0.04 286 / 0.55), inset 0 1px 0 oklch(1 0 0 / 0.10);
    opacity: 0; transform: translateY(-10px) scale(0.99); pointer-events: none;
    transition: opacity .24s ease, transform .24s ease;
  }
  html.nav-open .nav-drawer { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

  .nav-drawer-links { display: flex; flex-direction: column; }
  .nav-drawer-links a {
    display: block; padding: 14px 14px; border-radius: 13px;
    color: oklch(0.95 0.01 290 / 0.86); font-size: 16px; font-weight: 500;
    transition: background .15s, color .15s;
  }
  .nav-drawer-links a::after { display: none !important; }
  .nav-drawer-links a:hover { background: oklch(1 0 0 / 0.05); color: #fff; }
  .nav-drawer-links a.active { background: oklch(1 0 0 / 0.07); color: #fff; }

  .nav-drawer-foot {
    display: flex; align-items: center; gap: 12px;
    margin-top: 8px; padding-top: 14px; border-top: 1px solid oklch(1 0 0 / 0.10);
  }
  .drawer-lang {
    display: inline-flex; flex: none; border: 1px solid oklch(1 0 0 / 0.18);
    border-radius: 999px; overflow: hidden;
  }
  .drawer-lang button, .drawer-lang a {
    appearance: none; -webkit-appearance: none; border: 0; background: transparent;
    color: oklch(0.9 0.01 290 / 0.66); font-family: var(--mono); font-size: 13px;
    padding: 10px 16px; cursor: pointer; transition: color .15s; text-decoration: none;
  }
  .drawer-lang button.active, .drawer-lang a.active { background: var(--grad); color: #fff; }
  .nav-drawer-foot .btn-primary { flex: 1; display: inline-flex; justify-content: center; }

  .nav-scrim {
    display: block; position: fixed; inset: 0; z-index: 65;
    background: oklch(0.10 0.03 286 / 0.55);
    opacity: 0; pointer-events: none; transition: opacity .24s ease;
  }
  html.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }
  html.nav-open { overflow: hidden; }
}

/* ============================================================
   HERO — editorial headline + contained dashboard panel
   ============================================================ */
.hero { padding: 76px 0 64px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(oklch(0.52 0.16 290 / 0.22) 1px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask: radial-gradient(78% 62% at 50% 26%, #000 0%, transparent 72%);
  mask: radial-gradient(78% 62% at 50% 26%, #000 0%, transparent 72%);
}
.hero .wrap { position: relative; z-index: 1; }

/* ============================================================
   HERO-GEO — dark dramatic hero with floating elegant shapes
   ============================================================ */
.hero-geo {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(120% 90% at 50% -10%, oklch(0.30 0.11 290), transparent 60%),
    linear-gradient(180deg, oklch(0.16 0.045 285), oklch(0.13 0.04 286));
  padding-top: 124px;
  padding-bottom: 88px;
}
/* dot grid → faint light dots on the dark field */
.hero-geo::before {
  background-image: none;
}
/* soft indigo↔rose ambient glow behind everything */
.geo-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 18% 22%, oklch(0.55 0.20 280 / 0.30), transparent 70%),
    radial-gradient(45% 40% at 85% 78%, oklch(0.62 0.16 18 / 0.22), transparent 70%);
  filter: blur(40px);
}
/* floating elegant pill shapes */
.geo-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.geo-shape {
  position: absolute; display: block; border-radius: 999px;
  border: 1.5px solid oklch(1 0 0 / 0.16);
  box-shadow: 0 8px 32px oklch(1 0 0 / 0.06), inset 0 0 24px oklch(1 0 0 / 0.05);
  opacity: 0; transform: translateY(-120px) rotate(var(--r, 0deg));
  animation:
    geoIn 2s cubic-bezier(0.23,0.86,0.39,0.96) forwards var(--in, 0.3s),
    geoFloat 13s ease-in-out infinite var(--in, 0.3s);
}
.geo-shape::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, oklch(1 0 0 / 0.18), transparent 70%);
}
.gs1 { width: 600px; height: 140px; left: -6%;  top: 15%; --r: 12deg;  --in: 0.3s;
  background: linear-gradient(90deg, oklch(0.58 0.21 280 / 0.30), transparent); }
.gs2 { width: 480px; height: 120px; right: -4%; top: 68%; --r: -15deg; --in: 0.5s;
  background: linear-gradient(90deg, oklch(0.62 0.18 16 / 0.30), transparent); }
.gs3 { width: 300px; height: 84px;  left: 5%;   bottom: 8%; --r: -8deg; --in: 0.4s;
  background: linear-gradient(90deg, oklch(0.58 0.21 300 / 0.30), transparent); }
.gs4 { width: 200px; height: 60px;  right: 16%; top: 10%; --r: 20deg;   --in: 0.6s;
  background: linear-gradient(90deg, oklch(0.72 0.16 70 / 0.26), transparent); }
.gs5 { width: 150px; height: 44px;  left: 24%;  top: 5%; --r: -25deg;   --in: 0.7s;
  background: linear-gradient(90deg, oklch(0.66 0.14 200 / 0.26), transparent); }
@keyframes geoIn {
  to { opacity: 1; transform: translateY(0) rotate(var(--r, 0deg)); }
}
@keyframes geoFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(16px) rotate(var(--r, 0deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .geo-shape { opacity: 1; transform: rotate(var(--r,0deg)); animation: none; }
}
/* fade the dark hero into the light page below */
.geo-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 200px; z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--bg));
}

/* --- hero content recolored for the dark field --- */
.hero-geo .social-proof {
  background: transparent; border-color: transparent;
}
.hero-geo .social-proof .lbl { color: oklch(0.92 0.01 290 / 0.75); }
.hero-geo .avatars .av { border-color: oklch(0.20 0.04 286); }

.hero-geo h1.head {
  background: linear-gradient(180deg, #fff, oklch(0.92 0.012 290 / 0.82));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-geo h1.head .lite {
  background: linear-gradient(100deg, var(--accent-deep), oklch(0.82 0.12 22), oklch(0.86 0.11 300), var(--accent-deep));
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: heroShimmer 7s ease-in-out infinite;
}
@keyframes heroShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .hero-geo h1.head .lite { animation: none; } }
.hero-geo h1.head .ul svg { color: oklch(0.74 0.14 18); }
.hero-geo .hero-sub { color: oklch(0.88 0.01 290 / 0.50); }
.hero-geo .hero-actions .link-btn {
  color: oklch(0.94 0.01 290); border-color: oklch(1 0 0 / 0.16); background: oklch(1 0 0 / 0.03);
}
.hero-geo .hero-actions .link-btn:hover { border-color: oklch(1 0 0 / 0.4); background: oklch(1 0 0 / 0.08); }

/* dashboard panel as dark glass */
.hero-geo .hero-panel {
  background: oklch(0.21 0.035 286 / 0.72);
  border-color: oklch(1 0 0 / 0.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 30px 70px oklch(0.10 0.04 286 / 0.55), inset 0 1px 0 oklch(1 0 0 / 0.10);
}
.hero-geo .hp-bar { background: oklch(1 0 0 / 0.04); border-bottom-color: oklch(1 0 0 / 0.08); }
.hero-geo .hp-dots i { background: oklch(1 0 0 / 0.22); }
.hero-geo .hp-url { background: oklch(1 0 0 / 0.05); border-color: oklch(1 0 0 / 0.10); color: oklch(0.9 0.01 290 / 0.7); }
.hero-geo .hp-main { border-right-color: oklch(1 0 0 / 0.08); }
@media (max-width: 760px) { .hero-geo .hp-main { border-right: 0; border-bottom-color: oklch(1 0 0 / 0.08); } }
.hero-geo .hp-main .label,
.hero-geo .hp-stat .k { color: oklch(0.86 0.01 290 / 0.55); }
.hero-geo .hp-main .big .v,
.hero-geo .hp-stat .n { color: #fff; }
.hero-geo .hp-main .big .delta { color: oklch(0.86 0.13 290); background: oklch(0.60 0.18 290 / 0.20); }
.hero-geo .hp-stat .sub,
.hero-geo .hp-xaxis span { color: oklch(0.82 0.01 290 / 0.42); }
.hero-geo .hp-stat + .hp-stat { border-top-color: oklch(1 0 0 / 0.08); }
.hero-geo .hp-bar2 { background: oklch(1 0 0 / 0.10); }
.hero-geo .hp-tag { color: oklch(0.82 0.12 290); }

/* logo cloud on dark */
.hero-geo .logo-cloud .lc-lbl { color: oklch(0.86 0.01 290 / 0.55); }
.hero-geo .logo-cloud .lc-lbl b { color: oklch(0.96 0.01 290); }
.hero-geo .logos-row .logo { color: oklch(0.9 0.01 290 / 0.40); }
.hero-geo .logos-row .logo:hover { color: oklch(0.96 0.01 290 / 0.75); }
.hero-geo .logos-row .logo .lm { background: oklch(0.9 0.01 290 / 0.45); }
.hero-head { max-width: 880px; margin: 0 auto; text-align: center; }

.social-proof {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 30px;
  border: 0; background: transparent;
  border-radius: 999px; padding: 0;
}
.avatars { display: flex; }
.avatars .av { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--surface); margin-left: -9px; }
.avatars .av:first-child { margin-left: 0; }
.avatars .av.a1 { background: oklch(0.58 0.18 288); }
.avatars .av.a2 { background: oklch(0.55 0.15 268); }
.avatars .av.a3 { background: oklch(0.50 0.16 300); }
.avatars .more { display: none; }
.social-proof .lbl { font-family: var(--mono); font-weight: 500; color: var(--ink-soft); font-size: 12.5px; letter-spacing: -0.01em; white-space: nowrap; }

.hero h1.head {
  font-family: var(--display);
  font-size: clamp(40px, 6.6vw, 84px);
  font-weight: 800; letter-spacing: -0.045em; line-height: 0.98;
}
.hero h1.head .lite { color: var(--accent-ink); }
.hero h1.head .ul { position: relative; white-space: nowrap; }
.hero h1.head .ul svg { position: absolute; left: -1%; right: -1%; bottom: -0.16em; width: 102%; height: 0.2em; color: var(--accent); }
.hero-sub {
  margin: 28px auto 0; font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft); max-width: 56ch; line-height: 1.5;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-actions .link-btn {
  font-size: 15.5px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px; padding: 14px 22px;
  border-radius: var(--radius-pill); border: 1px solid var(--line); background: transparent;
  transition: transform .15s, border-color .2s, background .2s;
}
.hero-actions .link-btn:hover { transform: translateY(-1px); border-color: var(--ink); background: var(--surface); }

/* ---- contained dashboard panel ---- */
.hero-panel {
  max-width: 1000px; margin: 64px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  overflow: hidden;
}
.hp-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 18px; border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.hp-dots { display: flex; gap: 6px; }
.hp-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); display: block; }
.hp-url {
  font-family: var(--mono); font-size: 12.5px; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line-soft);
  padding: 5px 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px;
}
.hp-url::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hp-tag { margin-left: auto; font-family: var(--mono); font-size: 11.5px; color: var(--accent-ink); display: flex; align-items: center; gap: 7px; }
.hp-tag .live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
@media (max-width: 620px) { .hp-tag { display: none; } }

.hp-body { display: grid; grid-template-columns: 1.6fr 1fr; }
@media (max-width: 760px) { .hp-body { grid-template-columns: 1fr; } }

.hp-main { padding: 26px 28px; border-right: 1px solid var(--line-soft); }
@media (max-width: 760px) { .hp-main { border-right: 0; border-bottom: 1px solid var(--line-soft); } }
.hp-main .label { font-family: var(--mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hp-main .big { display: flex; align-items: baseline; gap: 12px; margin-top: 8px; }
.hp-main .big .v { font-family: var(--display); font-size: 46px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.hp-main .big .delta { font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--accent-ink); background: var(--accent-soft); padding: 3px 9px; border-radius: 999px; }
.dash-chart { width: 100%; height: 110px; margin-top: 20px; }
.dash-chart svg { width: 100%; height: 100%; display: block; }
.hp-xaxis { display: flex; justify-content: space-between; margin-top: 8px; }
.hp-xaxis span { font-family: var(--mono); font-size: 10.5px; color: var(--faint); }

.hp-side { padding: 24px 26px; display: flex; flex-direction: column; gap: 18px; }
.hp-stat .k { font-family: var(--mono); font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hp-stat .row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 5px; }
.hp-stat .n { font-family: var(--display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.hp-stat .sub { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.hp-stat + .hp-stat { border-top: 1px solid var(--line-soft); padding-top: 16px; }
.hp-bar2 { height: 6px; border-radius: 999px; background: var(--line-soft); margin-top: 9px; overflow: hidden; }
.hp-bar2 i { display: block; height: 100%; background: var(--accent); border-radius: 999px; }

/* logo cloud */
.logo-cloud { margin-top: 64px; text-align: center; }
.logo-cloud .lc-lbl { font-family: var(--mono); font-size: 12.5px; color: var(--muted); margin-bottom: 22px; letter-spacing: 0.01em; }
.logo-cloud .lc-lbl b { color: var(--ink); font-weight: 600; }
.logos-row { display: flex; gap: 48px; justify-content: center; align-items: center; flex-wrap: wrap; }
.logos-row .logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--faint); font-family: var(--display); font-weight: 700; font-size: 27px; letter-spacing: -0.02em;
  transition: color .2s; filter: grayscale(1);
}
.logos-row .logo:hover { color: var(--ink-soft); }
.logos-row .logo .lm { width: 20px; height: 20px; border-radius: 4px; background: var(--faint); }
.logos-row .logo .lm.c { border-radius: 50%; }
.logos-row .logo .lm.d { transform: rotate(45deg); }

/* ---------- flow strip ---------- */
.flow-section { padding: 8px 0 16px; }
.flow-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 14px; align-items: stretch;
}
.flow-card {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 20px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
  transition: transform .18s ease, border-color .2s ease;
}
.flow-card:hover { transform: translateY(-3px); border-color: var(--accent-line); }
.flow-ic {
  width: 46px; height: 46px; flex: none; border-radius: 13px;
  display: grid; place-items: center;
  color: var(--accent-deep); background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.flow-ic svg { width: 23px; height: 23px; }
.flow-card .flow-label {
  font-weight: 600; font-size: 15px; line-height: 1.28; color: var(--ink); text-wrap: balance;
}
.flow-card .flow-step {
  position: absolute; top: 12px; right: 14px;
  font-family: var(--mono); font-size: 11px; color: var(--faint);
}
/* arrow connectors between cards */
.flow-row .flow-card:not(:last-child)::after {
  content: ""; position: absolute; right: -10px; top: 50%; z-index: 2;
  width: 8px; height: 8px; transform: translate(0, -50%) rotate(45deg);
  border-top: 2px solid var(--accent-line); border-right: 2px solid var(--accent-line);
}
@media (max-width: 1100px) {
  .flow-row { grid-template-columns: repeat(3, 1fr); }
  .flow-row .flow-card:not(:last-child)::after { display: none; }
}
@media (max-width: 640px) {
  .flow-row { grid-template-columns: 1fr 1fr; }
}

/* after-publish strip */
.pp-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1000px) { .pp-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pp-row { grid-template-columns: 1fr; } }

/* ---------- stats band ---------- */
.stats-band { padding: 64px 0; background: transparent; }
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
  overflow: hidden;
}
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 40px 34px; }
.stat .n { font-family: var(--display); font-size: clamp(30px, 3.8vw, 46px); font-weight: 800; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.stat .n .accent { color: var(--accent-ink); }
.stat .l { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.45; letter-spacing: 0.01em; }

/* ---------- proof wall (GSC) ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 640px)  { .proof-grid { grid-template-columns: 1fr; } }

.proof-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column;
}
.proof-card .chart { width: 100%; height: 150px; margin-bottom: 16px; }
.proof-niche { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.01em; }
.proof-meta { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.proof-delta {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 12px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--accent-ink); background: var(--accent-soft);
  padding: 4px 9px; border-radius: var(--radius-s); align-self: flex-start;
}
.proof-tag {
  font-family: var(--mono); font-size: 10.5px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
}
.proof-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- cards / problem ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
@media (max-width: 880px) { .cards-3 { grid-template-columns: 1fr; } }
.card {
  padding: 34px 32px 30px; border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  transition: background .2s ease;
}
.card:hover { background: oklch(0.225 0.04 286 / 0.6); }
.card:last-child { border-right: 0; }
@media (max-width: 880px) { .card { border-right: 0; border-bottom: 1px solid var(--line-soft); } .card:last-child { border-bottom: 0; } }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.card-ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  color: var(--accent-deep); background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.card-ic svg { width: 22px; height: 22px; }
.card-num { font-family: var(--mono); font-size: 12px; color: var(--faint); font-weight: 500; letter-spacing: 0.06em; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card-cost {
  margin-top: 18px; align-self: flex-start;
  font-family: var(--mono); font-size: 12px; color: var(--ink-soft);
  padding: 7px 13px; border-radius: var(--radius-pill);
  background: oklch(1 0 0 / 0.04); border: 1px solid var(--line);
}

/* ---------- solution panel ---------- */
.solution {
  position: relative; margin-top: 26px; overflow: hidden;
  display: grid; grid-template-columns: 1.55fr 1fr;
  border-radius: var(--radius-l); border: 1px solid var(--accent-line);
  background: linear-gradient(150deg, oklch(0.235 0.075 292), oklch(0.205 0.07 20));
  box-shadow: var(--shadow-m);
}
@media (max-width: 820px) { .solution { grid-template-columns: 1fr; } }
.sol-body { padding: 44px 46px; }
@media (max-width: 560px) { .sol-body { padding: 34px 28px; } }
.sol-eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-2-ink); display: inline-flex; align-items: center; gap: 9px;
}
.sol-eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--accent-2); display: inline-block; }
.sol-title {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(25px, 3vw, 36px); line-height: 1.08; margin: 16px 0 16px;
}
.sol-title .hl {
  background: linear-gradient(100deg, var(--accent-deep), oklch(0.82 0.12 22));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sol-desc { color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 60ch; }
.sol-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.sol-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft);
  padding: 7px 13px 7px 11px; border-radius: var(--radius-pill);
  background: oklch(1 0 0 / 0.05); border: 1px solid var(--line);
}
.sol-chip svg { width: 13px; height: 13px; color: var(--accent-deep); flex: none; }

.sol-cta {
  padding: 44px 40px; border-left: 1px solid var(--accent-line);
  background: oklch(0 0 0 / 0.18);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px;
}
@media (max-width: 820px) { .sol-cta { border-left: 0; border-top: 1px solid var(--accent-line); padding: 34px 28px; } }
.sol-price { display: flex; align-items: baseline; gap: 8px; font-family: var(--display); }
.sol-price .from { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.sol-price b { font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.sol-price .per { font-family: var(--sans); font-size: 16px; color: var(--muted); }
.sol-vs { font-family: var(--mono); font-size: 12.5px; color: var(--faint); margin-bottom: 18px; }
.sol-cta .btn { width: 100%; justify-content: center; }
.sol-note { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-top: 12px; align-self: center; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 30px 26px 30px;
  background: oklch(0.205 0.035 286 / 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform .18s ease, border-color .2s ease, background .2s ease;
}
.step:hover { transform: translateY(-3px); border-color: var(--accent-line); background: oklch(0.225 0.04 286 / 0.7); }
.step .idx {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 22px;
  font-family: var(--display); font-weight: 800; font-size: 20px; color: #fff;
  background: var(--grad);
  box-shadow: 0 6px 18px oklch(0.50 0.20 290 / 0.40);
}
/* flow arrow between steps (desktop only) */
.step:not(:last-child)::after {
  content: "→";
  position: absolute; right: -19px; top: 51px; z-index: 2;
  width: 20px; text-align: center;
  color: var(--accent-ink); font-size: 18px; font-weight: 600;
}
@media (max-width: 920px) {
  .step:not(:last-child)::after { display: none; }
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }
.how-cta { margin-top: 40px; display: flex; justify-content: center; }

/* ---------- about / video presentation ---------- */
.video-frame {
  position: relative; max-width: 960px; margin: 8px auto 0;
  aspect-ratio: 16 / 9; border-radius: var(--radius-l);
  border: 1px solid var(--line); overflow: hidden;
  background: oklch(0.205 0.035 286);
  box-shadow: var(--shadow-l);
}
.video-frame > video, .video-frame > iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
}
.video-poster {
  position: absolute; inset: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background:
    radial-gradient(60% 80% at 50% 0%, oklch(0.32 0.10 290 / 0.6), transparent 70%),
    linear-gradient(160deg, oklch(0.22 0.05 288), oklch(0.16 0.045 18));
}
.video-stripes {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background: repeating-linear-gradient(135deg, oklch(1 0 0 / 0.04) 0 2px, transparent 2px 16px);
}
.video-play {
  position: relative; width: 88px; height: 88px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 30px oklch(0.50 0.20 290 / 0.45), inset 0 1px 0 oklch(1 0 0 / 0.25);
  transition: transform .18s ease, box-shadow .2s ease;
}
.video-play svg { width: 34px; height: 34px; margin-left: 4px; }
.video-poster:hover .video-play { transform: scale(1.06); box-shadow: 0 14px 40px oklch(0.50 0.20 290 / 0.55), inset 0 1px 0 oklch(1 0 0 / 0.25); }
.video-meta {
  position: relative; font-family: var(--mono); font-size: 13px; letter-spacing: 0.02em;
  color: oklch(0.92 0.01 290 / 0.7);
  background: oklch(0 0 0 / 0.25); border: 1px solid oklch(1 0 0 / 0.12);
  padding: 6px 14px; border-radius: 999px;
}

/* ---------- comparison table ---------- */
.cmp {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.cmp th, .cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.cmp thead th { font-family: var(--mono); font-weight: 500; font-size: 12px; color: var(--muted); background: var(--bg-2); letter-spacing: 0.03em; text-transform: uppercase; }
.cmp thead th.us { color: var(--accent-ink); }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp td.feature { font-weight: 500; color: var(--ink); }
.cmp td.center, .cmp th.center { text-align: center; }
.cmp col.us-col, .cmp th.us, .cmp td.us { background: var(--accent-soft); }
.yes { color: var(--accent-ink); font-weight: 700; }
.no  { color: var(--faint); }
.partial { color: var(--muted); font-size: 13px; font-family: var(--mono); }
.cmp-scroll { overflow-x: auto; }
.cmp-scroll table { min-width: 640px; }

/* ---------- founder ---------- */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 52px; align-items: center; }
@media (max-width: 820px) { .founder { grid-template-columns: 1fr; gap: 30px; } }
.founder image-slot { width: 100%; height: 360px; border: 1px solid var(--line); }
@media (max-width: 820px) { .founder image-slot { height: 280px; max-width: 300px; } }
.founder-quote { font-family: var(--display); font-size: clamp(20px, 2.4vw, 27px); font-weight: 600; line-height: 1.4; letter-spacing: -0.02em; }
.founder-quote p + p { margin-top: 20px; }
.founder-by { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.founder-by .name { font-weight: 600; font-size: 15px; }
.founder-by .role { color: var(--muted); font-size: 14px; }
.founder-by a { color: var(--accent-ink); font-size: 12.5px; font-family: var(--mono); margin-left: auto; white-space: nowrap; }

/* ---------- testimonials carousel ---------- */
.tcarousel { max-width: 1040px; margin: 0 auto; }
.tstage { position: relative; }
.tslide {
  position: absolute; top: 0; left: 0; width: 100%;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .45s ease;
}
.tslide.active { position: relative; opacity: 1; visibility: visible; pointer-events: auto; }

.tphoto {
  width: 440px; height: 440px; flex: none;
  border-radius: 26px; overflow: hidden; position: relative;
  border: 1px solid var(--line); box-shadow: var(--shadow-l);
  background: linear-gradient(150deg, oklch(0.26 0.06 290), oklch(0.22 0.06 20));
}
.tphoto image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }

.tcard2 {
  position: relative; z-index: 2; flex: 1;
  margin-left: -84px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 26px; box-shadow: var(--shadow-l);
  padding: 44px 44px 40px;
}
.tquote-mark {
  position: absolute; top: 18px; right: 34px;
  font-family: var(--display); font-weight: 800; font-size: 84px; line-height: 1;
  color: var(--accent-line); opacity: 0.5; pointer-events: none;
}
.tc-who { margin-bottom: 22px; }
.tc-name { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; font-size: 26px; }
.tc-role { margin-top: 5px; font-family: var(--mono); font-size: 13px; color: var(--muted); }
.tc-quote { font-size: 19px; line-height: 1.6; color: var(--ink-soft); }
.tc-social { display: flex; gap: 12px; margin-top: 30px; }
.tc-soc {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--ink); color: var(--bg);
  transition: transform .16s ease, filter .2s ease;
}
.tc-soc svg { width: 19px; height: 19px; }
.tc-soc:hover { transform: translateY(-2px) scale(1.05); filter: brightness(0.92); }

/* nav */
.tnav { display: flex; justify-content: center; align-items: center; gap: 22px; margin-top: 44px; }
.tnav-btn {
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: var(--ink-soft);
  background: oklch(1 0 0 / 0.05); border: 1px solid var(--line);
  transition: background .2s, border-color .2s, color .2s;
}
.tnav-btn svg { width: 22px; height: 22px; }
.tnav-btn:hover { background: oklch(1 0 0 / 0.10); border-color: var(--accent-line); color: var(--ink); }
.tdots { display: flex; align-items: center; gap: 8px; }
.tdot {
  width: 10px; height: 10px; border-radius: 999px; cursor: pointer; border: 0; padding: 0;
  background: oklch(1 0 0 / 0.22); transition: width .25s ease, background .25s ease;
}
.tdot.active { width: 28px; background: var(--accent-deep); }

@media (max-width: 880px) {
  .tslide { flex-direction: column; align-items: stretch; }
  .tphoto { width: 100%; height: auto; aspect-ratio: 1; max-width: 380px; margin: 0 auto; }
  .tcard2 { margin-left: 0; margin-top: -44px; padding: 40px 28px 32px; text-align: center; }
  .tquote-mark { right: 24px; top: 10px; }
  .tc-social { justify-content: center; }
}

.tcount {
  text-align: center; margin-top: 28px; font-family: var(--mono);
  font-size: 12.5px; color: var(--muted); letter-spacing: 0.01em;
}

/* ---------- savings ---------- */
.save-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .save-grid { grid-template-columns: 1fr; gap: 30px; } }
.save-box { background: linear-gradient(155deg, oklch(0.245 0.065 292), oklch(0.215 0.065 18)); color: var(--ink); border: 1px solid var(--panel-line); border-radius: var(--radius-l); padding: 34px; }
.save-row { display: flex; justify-content: space-between; align-items: baseline; padding: 15px 0; border-bottom: 1px solid var(--panel-line); }
.save-row:last-child { border-bottom: 0; }
.save-row .l { color: var(--muted); font-size: 15px; }
.save-row .v { font-family: var(--mono); font-size: 15px; font-weight: 500; color: var(--ink); }
.save-row.total { padding-top: 20px; }
.save-row.total .l { color: var(--ink); font-weight: 600; font-size: 17px; }
.save-row.total .v { color: var(--accent-ink); font-family: var(--display); font-size: 24px; font-weight: 800; }
.save-note { color: var(--muted); font-size: 14.5px; margin-top: 20px; line-height: 1.5; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; align-items: stretch; background: var(--surface); max-width: 760px; margin: 0 auto; }
@media (max-width: 920px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.plan {
  padding: 34px 30px; display: flex; flex-direction: column; border-right: 1px solid var(--line-soft);
}
.plan:last-child { border-right: 0; }
@media (max-width: 920px) { .plan { border-right: 0; border-bottom: 1px solid var(--line-soft); } .plan:last-child { border-bottom: 0; } }
.plan.featured { background: var(--bg-2); position: relative; }
.plan .pop {
  position: absolute; top: 22px; right: 22px; background: var(--grad); color: #fff;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
.plan .pname { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--accent-ink); letter-spacing: 0.04em; text-transform: uppercase; }
.plan .pprice { font-family: var(--display); font-size: 46px; font-weight: 800; letter-spacing: -0.04em; margin: 14px 0 2px; }
.plan .pprice span { font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan .pfor { color: var(--muted); font-size: 14px; min-height: 42px; margin-bottom: 22px; }
.plan ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan ul li { font-size: 14.5px; color: var(--ink-soft); display: flex; gap: 11px; line-height: 1.4; }
.plan ul li::before {
  content: ""; flex: none; width: 16px; height: 16px; margin-top: 3px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.2 2.3L9.5 3.5' stroke='%23c7b0ff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}
.plan .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; color: var(--muted); font-family: var(--mono); font-size: 13px; margin-top: 28px; }
.price-note a { color: var(--accent-ink); }
.price-note a:hover { text-decoration: underline; }

/* ---------- consultants ---------- */
.consult {
  background: linear-gradient(135deg, oklch(0.245 0.075 292), oklch(0.215 0.07 20));
  color: var(--ink);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-l); padding: 56px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: center;
}
@media (max-width: 820px) { .consult { grid-template-columns: 1fr; padding: 34px; gap: 26px; } }
.consult .eyebrow { color: var(--accent-2-ink); }
.consult .eyebrow::before { background: var(--accent-2); }
.consult h2 { font-size: clamp(25px, 3.2vw, 36px); margin-bottom: 18px; color: var(--ink); }
.consult p { color: var(--muted); font-size: 16px; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--display); font-size: 18.5px; font-weight: 600; letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 18px; font-size: 26px; font-weight: 300;
  color: var(--accent-ink); transition: transform .2s; font-family: var(--mono);
}
.faq details[open] summary::after { content: "\2013"; }
.faq .ans { color: var(--muted); font-size: 16px; line-height: 1.6; padding: 0 44px 24px 0; }

/* ---------- final CTA ---------- */
.final-cta { text-align: center; background: transparent; }
.final-cta h2 { font-size: clamp(32px, 5vw, 56px); max-width: 18ch; margin: 0 auto; color: var(--ink); letter-spacing: -0.035em; }
.final-cta .eyebrow { color: var(--accent-2-ink); }
.final-cta .eyebrow::before { background: var(--accent-2); }
.final-cta .actions { margin-top: 36px; display: flex; justify-content: center; }

/* ---------- footer (capsule panel with hero-like field) ---------- */
.footer { background: transparent; position: relative; z-index: 1; color: var(--muted); padding: 24px 0 56px; }
.footer .wrap {
  position: relative; overflow: hidden;
  border: 1px solid var(--accent-line);
  border-radius: 40px;
  padding: 64px 64px 40px;
  background:
    radial-gradient(120% 130% at 50% -12%, oklch(0.31 0.11 290), transparent 58%),
    radial-gradient(90% 120% at 96% 118%, oklch(0.30 0.10 18 / 0.55), transparent 60%),
    linear-gradient(180deg, oklch(0.175 0.05 287), oklch(0.135 0.04 286));
  box-shadow: var(--shadow-l), inset 0 1px 0 oklch(1 0 0 / 0.06);
}
.footer .wrap::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(60% 50% at 50% 0%, oklch(0.7 0.16 290 / 0.10), transparent 70%);
}
.footer .footer-top, .footer .footer-bot { position: relative; z-index: 1; }
@media (max-width: 640px) { .footer .wrap { padding: 44px 28px 32px; border-radius: 28px; } }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; } }
.footer .brand { color: var(--ink); margin-bottom: 16px; }
.footer .brand .mark { background: var(--grad); color: #fff; }
.footer p.desc { font-size: 14.5px; max-width: 34ch; line-height: 1.55; color: var(--muted); }
.footer h4 { color: var(--ink); font-size: 12px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14.5px; color: var(--muted); transition: color .15s; }
.footer ul a:hover { color: var(--accent-ink); }
.footer-bot {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid oklch(1 0 0 / 0.10);
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--faint); font-family: var(--mono);
}

/* ---------- reveal: content is always visible. Entrance animation was removed
   because preview/embedded render pipelines can pause the compositor, which
   leaves opacity-0 elements stuck invisible. Robustness > a fade-in. ---------- */
.reveal { opacity: 1; transform: none; }

/* ---------- hover life ---------- */
.proof-card, .tcard { transition: transform .16s ease, border-color .2s ease; }
.proof-card:hover, .tcard:hover { transform: translateY(-2px); border-color: var(--accent-line); }

/* ---------- comparison table inside former-dark section (now light) ---------- */
.dark .cmp { background: var(--surface); border-color: var(--line); }
.dark .cmp th, .dark .cmp td { border-color: var(--line-soft); }
.dark .cmp thead th { background: var(--bg-2); color: var(--muted); }
.dark .cmp thead th.us { color: var(--accent-ink); }
.dark .cmp td.feature { color: var(--ink); }
.dark .cmp th.us, .dark .cmp td.us { background: var(--accent-soft); }
.dark .yes { color: var(--accent-ink); }
.dark .no { color: var(--faint); }
.dark .partial { color: var(--muted); }

/* ---------- query ticker ---------- */
.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); padding: 15px 0; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { display: flex; gap: 12px; width: max-content; animation: ticker 42s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-track .q {
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft); white-space: nowrap;
  border: 1px solid var(--line); background: var(--bg); border-radius: var(--radius-s); padding: 7px 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.ticker-track .q::before { content: "⌕"; color: var(--accent-ink); font-size: 14px; }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- tabbed feature section ---------- */
.tabs { display: inline-flex; gap: 8px; margin: 0 auto 48px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); justify-content: center; }
.tabs { display: flex; max-width: max-content; }
@media (max-width: 760px) {
  .tabs {
    max-width: 100%; overflow-x: auto; justify-content: flex-start;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { flex: none; white-space: nowrap; padding: 10px 16px; font-size: 14px; }
}
.tab {
  background: none; border: 0; cursor: pointer; padding: 11px 22px; border-radius: 999px;
  font: 600 15px/1.1 var(--sans); letter-spacing: -0.01em; color: var(--muted); transition: color .2s, background .2s;
  white-space: nowrap;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--bg); background: var(--ink); }
.tab .hl { color: inherit; }
.tabs-wrap { display: flex; justify-content: center; }

.tab-panel { display: none; }
.tab-panel.shown { display: block; }
.tp-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 18px; align-items: stretch; }
@media (max-width: 860px) { .tp-grid { grid-template-columns: 1fr; } }

.tp-visual {
  border-radius: var(--radius-l); padding: 34px;
  background: linear-gradient(150deg, oklch(0.265 0.075 292), oklch(0.23 0.075 20));
  color: var(--ink);
  border: 1px solid var(--accent-line);
  display: flex; flex-direction: column;
}
.tp-visual .tpv-card {
  background: var(--surface); border: 1px solid var(--accent-line); border-radius: var(--radius);
  padding: 28px; margin-top: auto;
}
.tp-visual h3 { font-size: 23px; letter-spacing: -0.025em; line-height: 1.18; max-width: 22ch; color: var(--ink); }
.tp-visual h3 .hl { color: var(--accent-ink); }

/* semicircle arc gauge */
.arc { position: relative; width: 230px; max-width: 100%; margin: 18px auto 0; }
.arc svg { width: 100%; display: block; }
.arc .av { position: absolute; left: 0; right: 0; bottom: 6px; text-align: center; }
.arc .av .n { font-family: var(--display); font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.arc .av .s { font-size: 13px; color: var(--accent-ink); font-weight: 600; }
.arc .av .d { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 3px; }

.tp-list { display: flex; flex-direction: column; gap: 12px; }
.tp-item {
  display: flex; align-items: center; gap: 18px; padding: 24px 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .16s, border-color .2s; flex: 1;
}
.tp-item:hover { transform: translateY(-2px); border-color: var(--accent-line); }
.tp-item .tpi-ic { width: 46px; height: 46px; flex: none; border-radius: var(--radius-s); background: var(--accent-soft); display: grid; place-items: center; color: var(--accent-deep); }
.tp-item .tpi-ic svg { width: 23px; height: 23px; }
.tp-item p { font-size: 16px; color: var(--ink); font-weight: 500; line-height: 1.4; }

/* ============================================================
   Home page — light theme experiment.
   The palette is variable-driven, so flipping the variables on
   <body.page-home> re-themes the content to light; the hero and
   any .dark sections re-declare the dark palette so they stay as
   dark panels on the light page. Scoped to the home page only.
   ============================================================ */
body.page-home {
  --bg:        oklch(0.985 0.004 290);
  --bg-2:      oklch(0.965 0.008 290);
  --surface:   oklch(1 0 0);
  --ink:       oklch(0.23 0.03 286);
  --ink-soft:  oklch(0.34 0.03 286);
  --muted:     oklch(0.50 0.02 286);
  --faint:     oklch(0.60 0.015 286);
  --line:      oklch(0.23 0.03 286 / 0.12);
  --line-soft: oklch(0.23 0.03 286 / 0.07);
  --accent-ink:  oklch(0.52 0.19 292);
  --accent-deep: oklch(0.50 0.19 292);
  --panel:      oklch(0.975 0.006 290);
  --panel-2:    oklch(0.955 0.01 290);
  --panel-line: oklch(0.23 0.03 286 / 0.10);
  --shadow-m: 0 12px 32px oklch(0.45 0.03 286 / 0.10);
  --shadow-l: 0 26px 64px oklch(0.45 0.03 286 / 0.12);
  background: var(--bg);
  color: var(--ink);
}

/* Hero + dark sections keep the original dark palette (panels on light). */
body.page-home .hero,
body.page-home section.dark {
  --bg:        oklch(0.145 0.04 286);
  --bg-2:      oklch(0.175 0.04 287);
  --surface:   oklch(0.205 0.035 286);
  --ink:       oklch(0.97 0.01 290);
  --ink-soft:  oklch(0.88 0.012 290);
  --muted:     oklch(0.72 0.013 287);
  --faint:     oklch(0.58 0.012 287);
  --line:      oklch(1 0 0 / 0.12);
  --line-soft: oklch(1 0 0 / 0.07);
  --accent-ink:  oklch(0.80 0.13 292);
  --accent-deep: oklch(0.84 0.12 292);
  --panel:      oklch(0.185 0.045 287);
  --panel-2:    oklch(0.17 0.04 287);
  --panel-line: oklch(1 0 0 / 0.08);
  background: var(--bg);
}

/* Hero: rounded bottom corners so it reads as a dark panel on the light page. */
body.page-home .hero {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

/* Alternate light sections get a faintly tinted surface for rhythm. */
body.page-home section.alt { background: oklch(0.965 0.008 290); }
