/* ============================================================
   GRADEL — premium market-intelligence landing
   Design system + components
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces (warm paper) */
  --paper:    oklch(0.988 0.006 83);
  --paper-2:  oklch(0.968 0.008 83);
  --paper-3:  oklch(0.945 0.010 82);
  --card:     oklch(1 0 0);

  /* Ink */
  --ink:    oklch(0.235 0.012 62);
  --ink-2:  oklch(0.448 0.012 62);
  --ink-3:  oklch(0.585 0.010 64);

  /* Lines */
  --line:    oklch(0.905 0.008 80);
  --line-2:  oklch(0.860 0.010 78);

  /* Accent (overridden by Tweaks) */
  --accent:      oklch(0.555 0.182 256);
  --accent-deep: oklch(0.470 0.170 256);
  --accent-soft: oklch(0.945 0.040 256);
  --accent-ink:  oklch(0.985 0.004 256);

  /* Radius (tweakable) */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Type families (tweakable) */
  --font-display: "Source Serif 4", Georgia, serif;
  --font-sans: "Manrope", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Shadows (warm, low) */
  --sh-1: 0 1px 2px oklch(0.3 0.02 70 / 0.05), 0 1px 1px oklch(0.3 0.02 70 / 0.04);
  --sh-2: 0 2px 6px oklch(0.3 0.02 70 / 0.06), 0 8px 24px oklch(0.3 0.02 70 / 0.06);
  --sh-3: 0 4px 14px oklch(0.3 0.02 70 / 0.08), 0 22px 50px oklch(0.3 0.02 70 / 0.10);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }

/* Editorial section index — market-report numbering */
.sec-index { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.si-num {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--accent-deep); white-space: nowrap;
}
.si-num b { color: var(--ink-3); font-weight: 600; }
.si-k {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); white-space: nowrap;
}
.si-rule { flex: 1; height: 1px; background: var(--line); min-width: 24px; }
.si-rule::after { content: ""; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); transform: translate(0, -2px); margin-left: auto; }

/* Eyebrow / kicker */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.kicker--plain::before { display: none; }

/* Headlines */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
h2.display { font-size: clamp(30px, 4.4vw, 52px); }
.lede { color: var(--ink-2); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; text-wrap: pretty; }

.section-head { max-width: 720px; }
.section-head .kicker { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  padding: 13px 22px; border-radius: var(--r-sm);
  border: 1px solid transparent; transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--sh-1); }
.btn--primary:hover { background: var(--accent-deep); box-shadow: var(--sh-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: var(--card); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: oklch(0.18 0.012 62); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ============================================================
   Ticker (market data strip)
   ============================================================ */
.ticker {
  background: var(--ink); color: var(--paper);
  overflow: hidden; white-space: nowrap; border-bottom: 1px solid oklch(0.32 0.012 62);
}
.ticker__track {
  display: inline-flex; align-items: center; gap: 0;
  padding-block: 9px; will-change: transform;
  animation: ticker-roll 42s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: oklch(0.82 0.008 70); padding-inline: 22px;
  display: inline-flex; align-items: center; gap: 22px;
}
.ticker__item::after { content: "◆"; color: var(--accent); font-size: 8px; }
.ticker__item b { color: var(--paper); font-weight: 600; }
.ticker__live { color: var(--accent) !important; }
.ticker__live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; margin-right: 9px; box-shadow: 0 0 0 0 var(--accent); animation: live-pulse 2s ease-out infinite; }
@keyframes ticker-roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes live-pulse { 0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 60%, transparent); } 70%,100% { box-shadow: 0 0 0 7px transparent; } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } .ticker__live::before { animation: none; } }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklch, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.header.is-stuck { border-bottom-color: var(--line); background: color-mix(in oklch, var(--paper) 92%, transparent); }
.header__bar { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 26px; height: 26px; flex: none; }
.brand__name { font-weight: 700; font-size: 18px; letter-spacing: 0.02em; }
.brand__sub { display: none; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2); white-space: nowrap;
  padding: 8px 13px; border-radius: var(--r-sm); transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--ink); background: var(--paper-2); }
.nav a.active { color: var(--ink); }
.nav a.active::after { content: ""; display: block; height: 2px; margin-top: 5px; border-radius: 2px; background: var(--accent); animation: nav-underline .25s ease; }
@keyframes nav-underline { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.header__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.header__cta .login { font-size: 14.5px; font-weight: 600; padding: 9px 14px; border-radius: var(--r-sm); color: var(--ink); }
.header__cta .login:hover { background: var(--paper-2); }

.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: var(--r-sm); align-items: center; justify-content: center; }
.burger span { width: 18px; height: 1.5px; background: var(--ink); position: relative; display: block; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink); transition: transform .25s ease; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 70px 0 auto 0; z-index: 55;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 18px var(--pad) 28px; display: none; flex-direction: column; gap: 4px;
  box-shadow: var(--sh-2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 8px; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu .mm-cta { display: flex; gap: 10px; margin-top: 16px; }
.mobile-menu .mm-cta .btn { flex: 1; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(40px, 5vw, 64px); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(32px, 4vw, 72px); align-items: center; }
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 5vw, 72px); line-height: 1.0; letter-spacing: -0.02em;
  margin: 26px 0 24px; text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--accent-deep); }
.hero__lede { max-width: 30em; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__list { display: grid; gap: 0; border-top: 1px solid var(--line); max-width: 33em; }
.hero__list li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink-2); }
.hero__list li b { color: var(--ink); font-weight: 600; }
.hero__list .tick { width: 18px; height: 18px; margin-top: 1px; color: var(--accent); flex: none; }

/* Hero product card */
.hero__panel { position: relative; }
.product-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-3); overflow: hidden;
}
.product-card__chrome {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border-bottom: 1px solid var(--line); background: var(--paper-2);
}
.dots { display: flex; gap: 6px; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); display: block; }
.urlbar {
  flex: 1; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3);
  background: var(--card); border: 1px solid var(--line); border-radius: 6px;
  padding: 6px 11px; display: flex; align-items: center; gap: 8px;
}
.urlbar .lock { width: 11px; height: 11px; color: var(--accent); }
.chrome-open { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); white-space: nowrap; }

/* Screenshot placeholder */
.screen-ph {
  aspect-ratio: 16 / 10; position: relative; display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, oklch(0.955 0.008 82) 0 11px, oklch(0.975 0.006 82) 11px 22px);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.screen-ph::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, oklch(1 0 0 / 0.05) 0%, transparent 18%);
  pointer-events: none;
}
.screen-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; z-index: 1;
  background: var(--paper-2);
}
.screen-ph:has(.screen-img) .screen-ph__label { display: none; }
.screen-ph__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--ink-3);
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; box-shadow: var(--sh-1); z-index: 1; text-align: center; max-width: 80%;
}
.screen-ph--tall { aspect-ratio: 4 / 3; }

/* floating badges over hero card */
.float-badge {
  position: absolute; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--sh-2); padding: 12px 15px; z-index: 4;
}
.float-badge .fb-k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.float-badge .fb-v { font-weight: 700; font-size: 15px; margin-top: 2px; letter-spacing: -0.01em; }
.float-badge .fb-v span { color: var(--accent-deep); }
.fb-1 { left: -22px; top: 22%; }
.fb-2 { right: -18px; bottom: 16%; }

/* ---------- Marquee logos / capability strip ---------- */
.cap-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.cap-strip__inner { display: grid; grid-template-columns: repeat(5, 1fr); }
.cap-cell { padding: 26px var(--pad); border-right: 1px solid var(--line); }
.cap-cell:last-child { border-right: none; }
.cap-cell .cap-v { font-family: var(--font-display); font-weight: 600; font-size: 30px; letter-spacing: -0.01em; }
.cap-cell .cap-v.mono { font-family: var(--font-mono); font-weight: 600; font-size: 26px; }
.cap-cell .cap-k { font-size: 13px; color: var(--ink-2); margin-top: 4px; }

/* ============================================================
   Platform (tabbed)
   ============================================================ */
.platform { background: var(--paper); }
.tabs { display: inline-flex; gap: 6px; padding: 5px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 40px; }
.tab {
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  padding: 10px 20px; border-radius: 999px; transition: color .2s, background .2s, box-shadow .2s;
}
.tab[aria-selected="true"] { background: var(--card); color: var(--ink); box-shadow: var(--sh-1); }
.tab:hover:not([aria-selected="true"]) { color: var(--ink); }

.platform__panel { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.platform__panel[hidden] { display: none; }
.platform h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.05; letter-spacing: -0.015em; margin: 16px 0 18px; }
.platform .lede { margin-bottom: 26px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip {
  border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 11px 14px; background: var(--card);
  display: grid; gap: 1px; min-width: 130px;
}
.chip b { font-size: 14px; font-weight: 600; }
.chip span { font-size: 12px; color: var(--ink-3); }
.feat-list { display: grid; gap: 12px; }
.feat-list li { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; font-size: 15px; color: var(--ink-2); }
.feat-list .tick { width: 17px; height: 17px; color: var(--accent); margin-top: 2px; flex: none; }

/* ============================================================
   Segments (numbered editorial cards)
   ============================================================ */
.segments { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--card); }
.seg-card { padding: 30px 28px 32px; border-right: 1px solid var(--line); position: relative; transition: background .25s ease; display: flex; flex-direction: column; }
.seg-card:last-child { border-right: none; }
.seg-card:hover { background: var(--paper-2); }
.seg-card__n { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--accent-deep); letter-spacing: 0.1em; }
.seg-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 18px 0 10px; line-height: 1.2; }
.seg-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 20px; }
.seg-card ul { display: grid; gap: 8px; border-top: 1px solid var(--line); padding-top: 16px; margin-top: auto; }
.seg-card ul li { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); display: flex; gap: 9px; align-items: center; }
.seg-card ul li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex: none; }

/* ============================================================
   Features grid
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.feat-cell {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 26px 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat-cell:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.feat-cell__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.feat-cell__n { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.1em; }
.feat-ico { width: 40px; height: 40px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep); border: 1px solid color-mix(in oklch, var(--accent) 22%, transparent); }
.feat-ico svg { width: 20px; height: 20px; }
.feat-cell h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 9px; }
.feat-cell p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* Editorial feature index (ruled list, big serif numerals) */
.feat-index { margin-top: 54px; border-top: 1.5px solid var(--ink); }
.feat-rows { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(32px, 5vw, 72px); }
.feat-row { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start;
  padding: 30px 4px 30px 0; border-bottom: 1px solid var(--line); position: relative; }
.feat-row .fr-n { font-family: var(--font-display); font-weight: 600; font-size: 40px; line-height: 0.9;
  letter-spacing: -0.02em; color: var(--ink); width: 1.6ch; transition: color .25s ease; }
.feat-row:hover .fr-n { color: var(--accent-deep); }
.feat-row .fr-body h3 { font-size: 18.5px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 9px; display: flex; align-items: center; gap: 10px; }
.feat-row .fr-body h3 svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.feat-row .fr-body p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; max-width: 36ch; }

/* ============================================================
   Interface (screen switcher)
   ============================================================ */
.interface { background: var(--ink); color: var(--paper); }
.interface .kicker { color: oklch(0.78 0.10 256); }
.interface .kicker::before { background: var(--accent); }
.interface .si-k { color: oklch(0.80 0.01 70); }
.interface .si-rule { background: oklch(0.36 0.01 70); }
.interface h2 { color: var(--paper); }
.interface .lede { color: oklch(0.78 0.008 70); }
.iface__top { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.iface__intro { max-width: 640px; }
.iface__switch { display: flex; gap: 8px; flex-wrap: wrap; }
.iface-tab {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em; color: oklch(0.72 0.01 70);
  padding: 9px 15px; border-radius: var(--r-sm); border: 1px solid oklch(0.35 0.01 70); transition: all .2s ease;
}
.iface-tab[aria-selected="true"] { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.iface-tab:hover:not([aria-selected="true"]) { color: var(--paper); border-color: oklch(0.5 0.01 70); }

.iface__stage { margin-top: 38px; display: grid; grid-template-columns: 1fr; gap: 0; }
.iface__screen[hidden] { display: none; }
.iface__screen { display: grid; grid-template-columns: 1.5fr 1fr; gap: 0;
  background: oklch(0.28 0.012 62); border: 1px solid oklch(0.34 0.012 62); border-radius: var(--r-lg); overflow: hidden; }
.iface__shot { background: var(--card); }
.iface__shot .product-card { border: none; border-radius: 0; box-shadow: none; }
.iface__meta { padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; }
.iface__meta .url { font-family: var(--font-mono); font-size: 12px; color: oklch(0.74 0.05 256); margin-bottom: 16px; }
.iface__meta h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 14px; color: var(--paper); }
.iface__meta p { font-size: 15px; color: oklch(0.76 0.008 70); line-height: 1.6; }
.iface__meta .iface-open { margin-top: 24px; align-self: flex-start; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing { background: var(--paper-2); border-top: 1px solid var(--line); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; align-items: stretch; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px 34px; display: flex; flex-direction: column; position: relative;
}
.price-card.is-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--sh-3); }
.price-card__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.price-card.is-featured .price-card__tag { color: var(--accent-deep); }
.ribbon { position: absolute; top: 20px; right: 22px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: var(--accent-ink); padding: 5px 10px; border-radius: 999px; }
.price-card__price { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 4px; }
.price-card__price .num { font-family: var(--font-display); font-weight: 600; font-size: 42px; letter-spacing: -0.02em; }
.price-card__price .per { font-size: 14px; color: var(--ink-3); }
.price-card__trial { font-size: 13.5px; color: var(--accent-deep); font-weight: 600; margin-bottom: 24px; }
.price-card ul { display: grid; gap: 13px; margin-bottom: 28px; flex: 1; }
.price-card ul li { display: grid; grid-template-columns: auto 1fr; gap: 12px; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }
.price-card ul .tick { width: 17px; height: 17px; color: var(--accent); margin-top: 1px; flex: none; }
.price-card .btn { width: 100%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper); }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 80px); }
.faq__list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.faq-q:hover { color: var(--accent-deep); }
.faq-q .pm { width: 22px; height: 22px; flex: none; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--accent); transition: transform .25s ease, opacity .25s; }
.faq-q .pm::before { left: 0; top: 50%; width: 100%; height: 1.6px; transform: translateY(-50%); }
.faq-q .pm::after { top: 0; left: 50%; height: 100%; width: 1.6px; transform: translateX(-50%); }
.faq-item.open .pm::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a__inner { padding: 0 4px 26px; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; max-width: 52ch; }

/* ============================================================
   Trial / CTA + form
   ============================================================ */
.trial { background: var(--ink); color: var(--paper); }
.trial__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); }
.trial .kicker { color: oklch(0.78 0.10 256); }
.trial .si-k { color: oklch(0.80 0.01 70); }
.trial .si-rule { background: oklch(0.36 0.01 70); }
.trial h2 { color: var(--paper); font-size: clamp(30px, 4vw, 48px); }
.trial__lede { color: oklch(0.78 0.008 70); margin: 18px 0 30px; max-width: 40ch; }
.trial__steps { display: grid; gap: 0; border-top: 1px solid oklch(0.34 0.01 70); max-width: 42ch; }
.trial__steps li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid oklch(0.34 0.01 70); align-items: center; }
.trial__steps .sn { font-family: var(--font-mono); font-size: 12px; color: var(--accent); font-weight: 600; }
.trial__steps p { font-size: 15px; color: oklch(0.82 0.008 70); }
.trial__steps li:last-child { border-bottom: none; }
.trial__contact { margin-top: 34px; padding-top: 26px; border-top: 1px solid oklch(0.34 0.01 70); }
.trial__contact .tc-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(0.66 0.01 70); margin-bottom: 14px; }
.trial__contact .tc-row { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-pill { display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; border: 1px solid oklch(0.4 0.01 70); border-radius: var(--r-sm); font-size: 14px; transition: border-color .2s, background .2s; }
.contact-pill:hover { border-color: var(--accent); background: oklch(0.3 0.01 70); }
.contact-pill b { font-weight: 600; }
.contact-pill svg { width: 16px; height: 16px; color: var(--accent); }

/* Form */
.trial__form { background: var(--card); color: var(--ink); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px); box-shadow: var(--sh-3); }
.trial__form h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.trial__form .fhint { font-size: 14px; color: var(--ink-2); margin-bottom: 22px; line-height: 1.5; }
.seg-toggle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 5px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 22px; }
.seg-toggle button { font-size: 13px; font-weight: 600; color: var(--ink-2); padding: 10px 6px; border-radius: 5px; transition: all .18s; }
.seg-toggle button[aria-pressed="true"] { background: var(--card); color: var(--ink); box-shadow: var(--sh-1); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 12px 14px; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--ink-2); margin: 6px 0 18px; line-height: 1.45; }
.consent input { margin-top: 2px; accent-color: var(--accent); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: var(--ink); }
.form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-foot .alt { font-size: 13.5px; color: var(--ink-2); }
.form-foot .alt a { color: var(--accent-deep); font-weight: 600; }
.form-ok { display: none; padding: 16px; background: var(--accent-soft); border: 1px solid color-mix(in oklch, var(--accent) 30%, transparent); border-radius: var(--r-sm); font-size: 14px; color: var(--accent-deep); margin-top: 14px; }
.form-ok.show { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 80px) 36px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; max-width: 34ch; margin-bottom: 22px; }
.footer__brand .footer-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--ink-2); padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: var(--accent-deep); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px 28px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-3); }
.footer__bottom .fb-copy { max-width: 46ch; }
.footer__bottom .fb-links { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; }
.footer__bottom .fb-links a { color: var(--ink-3); white-space: nowrap; }
.footer__bottom a:hover { color: var(--ink); }
.footer__bottom .fb-top { color: var(--accent-deep); font-weight: 600; }
@media (max-width: 600px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .header__cta .login { display: none; }
  .burger { display: inline-flex; }
  .header__cta .btn--primary { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__panel { order: 2; }
  .cap-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .cap-cell:nth-child(2n) { border-right: none; }
  .cap-cell { border-bottom: 1px solid var(--line); }
  .platform__panel { grid-template-columns: 1fr; }
  .platform__panel .platform__media { order: -1; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .seg-card:nth-child(2n) { border-right: none; }
  .seg-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-rows { grid-template-columns: 1fr; }
  .feat-row:last-child { border-bottom: 1px solid var(--line); }
  .iface__top { grid-template-columns: 1fr; gap: 24px; }
  .iface__screen { grid-template-columns: 1fr; }
  .iface__meta { order: -1; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .faq__grid { grid-template-columns: 1fr; }
  .trial__grid { grid-template-columns: 1fr; }
  .fb-1 { left: 8px; } .fb-2 { right: 8px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cap-strip__inner { grid-template-columns: 1fr; }
  .cap-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .grid-4 { grid-template-columns: 1fr; }
  .seg-card { border-right: none; border-bottom: 1px solid var(--line); }
  .seg-card:last-child { border-bottom: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-row { gap: 18px; padding-block: 24px; }
  .feat-row .fr-n { font-size: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
}
