/* ============ TOKENS — Blue on white, polished SaaS ============ */
:root {
  --bg: #FFFFFF;
  --bg-2: #F6F9FC;
  --bg-3: #EFF3F8;
  --bg-card: #FFFFFF;
  --bg-card-hi: #F6F9FC;
  --bg-soft: #EAF2FE;
  --bg-navy: #0A2540;

  --line: #E3E8EE;
  --line-2: #D6DEE7;
  --line-3: #B7C4D4;

  --fg: #0A2540;
  --fg-2: #1A2B47;
  --fg-soft: #425466;
  --fg-muted: #697386;
  --fg-dim: #8792A2;

  --primary: #1A56DB;
  --primary-2: #2563EB;
  --primary-deep: #0F3FAB;
  --primary-soft: #EAF2FE;
  --primary-soft-2: #D5E4FC;

  --accent: #1A56DB;      /* alias — keep one CTA color, no second accent */
  --accent-deep: #0F3FAB;

  --success: #0FA968;
  --warn: #D97706;
  --danger: #DF1B41;
  --gold: #F5B70F;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 1px 3px rgba(10,37,64,.04);
  --shadow-md: 0 4px 8px -2px rgba(10,37,64,.08), 0 2px 4px -1px rgba(10,37,64,.04);
  --shadow-lg: 0 12px 24px -8px rgba(10,37,64,.10), 0 8px 16px -8px rgba(10,37,64,.06);
  --shadow-xl: 0 28px 56px -16px rgba(10,37,64,.16), 0 12px 24px -12px rgba(10,37,64,.08);
  --shadow-blue: 0 8px 24px -6px rgba(26,86,219,.32);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
body {
  font-family: "Geist", "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  background: var(--bg);
}
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }
.serif { font-family: "Instrument Serif", "Times New Roman", serif; font-style: italic; font-weight: 400; }
.tabular { font-variant-numeric: tabular-nums; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ============ TICKER (now: subtle trust strip) ============ */
.ticker {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-size: 13px; font-weight: 500;
  height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-soft);
  overflow: hidden; position: relative;
}
.ticker-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
}
.ticker-item { display: flex; align-items: center; gap: 10px; color: var(--fg-soft); }
.ticker-item strong { color: var(--fg); font-weight: 600; }
.ticker-item .live { display: none; }
.ticker-item .delta { color: var(--success); font-weight: 600; }
.ticker-item .delta.neg { color: var(--danger); }
.ticker-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--line-3); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.02em; font-size: 17px;
  white-space: nowrap; color: var(--fg);
}
.brand-mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary-deep) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(26,86,219,.25);
}
.brand-mark::after {
  content: ""; width: 10px; height: 10px; border-radius: 2px;
  background: white;
  transform: rotate(45deg);
}
.brand-logo {
  width: 32px; height: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand sup { font-size: 9px; vertical-align: super; color: var(--fg-muted); font-weight: 500; margin-left: 2px; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--fg-soft); font-weight: 500; }
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-login { font-size: 14px; font-weight: 500; color: var(--fg-soft); transition: color .15s; }
.nav-login:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary); color: white;
  padding: 9px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  transition: background .15s, box-shadow .2s, transform .15s;
  box-shadow: 0 1px 2px rgba(10,37,64,.08), inset 0 -1px 0 rgba(0,0,0,.08);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-deep); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,86,219,.25); }
@media (max-width: 860px) {
  .nav-links, .nav-login { display: none; }
}

/* ============ HERO ============ */
.hero {
  padding: 72px 0 56px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 1200px 600px at 80% -10%, rgba(26,86,219,.08), transparent 60%),
    radial-gradient(ellipse 800px 400px at 10% 10%, rgba(26,86,219,.04), transparent 60%),
    var(--bg);
}
@media (max-width: 720px) { .hero { padding: 48px 0 40px; } }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 1080px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px; margin-bottom: 28px;
  background: white; border: 1px solid var(--line);
  border-radius: 999px; font-size: 13px; color: var(--fg-soft);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.hero-tag .new {
  background: var(--primary-soft); color: var(--primary-deep);
  font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px;
  letter-spacing: .02em;
}
.hero-tag .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--success);
}

.h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 24px;
  text-wrap: balance;
  color: var(--fg);
}
.h1 .accent { color: var(--primary); }
.h1 .grad { color: var(--primary); }

.hero-sub {
  font-size: clamp(17px, 1.35vw, 19px);
  color: var(--fg-soft); max-width: 56ch; margin: 0 0 32px;
  line-height: 1.55; text-wrap: pretty;
}
.hero-sub .price { color: var(--fg); font-weight: 600; }

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 0; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: white;
  padding: 14px 22px; border-radius: 10px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  transition: background .15s, transform .15s, box-shadow .2s;
  box-shadow: 0 1px 2px rgba(10,37,64,.08), inset 0 -1px 0 rgba(0,0,0,.1);
}
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.btn-primary .arrow { transition: transform .2s; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-primary.big { padding: 16px 26px; font-size: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 10px;
  border: 1px solid var(--line-2); color: var(--fg);
  font-size: 15px; font-weight: 500;
  background: white;
  transition: background .15s, border-color .15s, box-shadow .15s;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--bg-2); border-color: var(--line-3); }
.btn-secondary .play {
  width: 22px; height: 22px; border-radius: 50%; background: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-secondary .play::before {
  content: ""; width: 0; height: 0; border-left: 6px solid white;
  border-top: 4px solid transparent; border-bottom: 4px solid transparent;
  margin-left: 2px;
}

.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; color: var(--fg-soft); align-items: center; }
.hero-trust .item { display: flex; align-items: center; gap: 7px; }
.hero-trust .item .ic { color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.hero-trust .item strong { color: var(--fg); font-weight: 600; }

.hero-rating { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.hero-rating-text { font-size: 13.5px; color: var(--fg-soft); }
.hero-rating-text strong { color: var(--fg); font-weight: 600; }

/* ============ HERO PRODUCT PREVIEW (was leaderboard, now calmer dashboard mock) ============ */
.live-board {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px; padding: 0;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.live-board-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.live-board-head .ttl { font-size: 13.5px; font-weight: 600; color: var(--fg); display: flex; align-items: center; gap: 8px; }
.live-board-head .ttl .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 3px rgba(15,169,104,.18);
}
.live-board-head .meta { font-size: 12px; color: var(--fg-muted); font-weight: 500; }

.live-board-tabs { display: flex; gap: 2px; padding: 12px 20px 0; margin-bottom: 4px; border-bottom: 1px solid var(--line); }
.live-tab {
  padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--fg-muted);
  border-radius: 0; transition: all .15s; text-align: center;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.live-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.live-tab:hover:not(.active) { color: var(--fg); }

.live-row {
  display: grid; grid-template-columns: 22px 1.6fr 1fr 0.9fr 0.7fr;
  gap: 14px; padding: 14px 20px; align-items: center;
  font-size: 13.5px; border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.live-row:last-child { border-bottom: none; }
.live-row:hover { background: var(--bg-2); }
.live-row.head {
  font-size: 11px; color: var(--fg-muted); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 600; padding: 10px 20px;
  background: var(--bg-2); border-bottom: 1px solid var(--line);
}
.live-row .rk { font-size: 12px; color: var(--fg-muted); font-weight: 600; font-variant-numeric: tabular-nums; }
.live-row .app { display: flex; align-items: center; gap: 10px; min-width: 0; }
.live-row .app-ic {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
}
.live-row .app-name { font-weight: 500; color: var(--fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-row .app-cat { font-size: 11.5px; color: var(--fg-muted); display: block; margin-top: 1px; }
.live-row .users { font-weight: 600; color: var(--fg); font-variant-numeric: tabular-nums; }
.live-row .delta { color: var(--success); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 12px; }
.live-row .spark { width: 100%; height: 22px; }
.live-row .status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--success); font-weight: 600;
}
.live-row .status .dt { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

/* hero floating cards */
.float-badge {
  position: absolute; z-index: 2;
  background: white; color: var(--fg);
  padding: 10px 14px; border-radius: 10px;
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
}
.float-badge .pulse-g {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 4px rgba(15,169,104,.15); flex-shrink: 0;
}
.float-badge.tl { top: -16px; left: -22px; transform: rotate(-1.5deg); }
.float-badge.br { bottom: -16px; right: -16px; transform: rotate(1.5deg); }
.float-badge .delta-up { color: var(--success); font-weight: 600; margin-left: 4px; }
@media (max-width: 1080px) { .float-badge.tl, .float-badge.br { display: none; } }

/* ============ LIVE STATS STRIP ============ */
.live-stats { padding: 56px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.live-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 800px) { .live-stats-grid { grid-template-columns: 1fr 1fr; } }
.lstat { padding: 4px 28px; border-right: 1px solid var(--line); position: relative; }
.lstat:first-child { padding-left: 0; }
.lstat:last-child { border-right: none; padding-right: 0; }
@media (max-width: 800px) {
  .lstat { padding: 4px 20px; }
  .lstat:nth-child(2n) { border-right: none; }
  .lstat:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 24px; }
}
.lstat .lbl { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--fg-muted); margin-bottom: 12px; font-weight: 500; }
.lstat .lbl .live-d { display: none; }
.lstat .num { font-size: clamp(32px, 3.2vw, 44px); font-weight: 600; letter-spacing: -0.035em; line-height: 1; color: var(--fg); font-variant-numeric: tabular-nums; }
.lstat .delta { font-size: 13px; color: var(--fg-soft); margin-top: 10px; font-weight: 500; }

/* ============ SECTIONS ============ */
.section { padding: 112px 0; }
.section.alt { background: var(--bg-2); }
@media (max-width: 720px) { .section { padding: 72px 0; } }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin: 0 auto 64px; text-align: center; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0; text-transform: none;
  color: var(--primary); margin-bottom: 18px; font-weight: 600;
  padding: 0; background: transparent; border: none;
  white-space: nowrap;
}
.h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin: 0 0 18px; font-weight: 600;
  max-width: 22ch; text-wrap: balance; color: var(--fg);
}
.h2.center { margin: 0 auto 18px; }
.h2 .accent { color: var(--primary); }
.h2 .grad { color: var(--primary); }
.lede { font-size: 18px; color: var(--fg-soft); max-width: 60ch; margin: 0; line-height: 1.55; }

/* ============ HOW IT WORKS ============ */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; } }
.how-card {
  padding: 32px 28px; background: white;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; min-height: 280px;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.how-card:hover { border-color: var(--line-3); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.how-card::before { display: none; }
.how-num {
  font-size: 13px; font-weight: 600;
  color: var(--fg-muted); margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 14px;
}
.how-num .num-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  border: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.how-title { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 10px; line-height: 1.25; color: var(--fg); }
.how-body { color: var(--fg-soft); font-size: 15px; line-height: 1.55; margin: 0; }
.how-meta {
  margin-top: auto; padding-top: 24px;
  font-size: 13px; color: var(--fg-muted); display: flex; align-items: center; gap: 8px;
  border-top: 1px solid var(--line);
}
.how-meta .ic { color: var(--success); }

/* ============ COMPARISON TABLE ============ */
.compare {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-row {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 18px 22px; display: flex; align-items: center;
  font-size: 14px; border-right: 1px solid var(--line);
  color: var(--fg-soft);
}
.compare-row > div:last-child { border-right: none; }
.compare-row.head > div {
  background: var(--bg-2);
  text-transform: none; letter-spacing: 0;
  font-weight: 600; color: var(--fg-muted); font-size: 12.5px;
}
.compare-row.head .me {
  background: var(--primary);
  color: white;
  font-weight: 600; font-size: 13px;
  white-space: nowrap;
}
.compare-row.head .me .me-dot {
  width: 7px; height: 7px; border-radius: 50%; background: white; margin-right: 8px;
}
.compare-row .lbl { font-weight: 500; color: var(--fg); font-size: 14px; }
.compare-row .me { background: var(--primary-soft); color: var(--fg); font-weight: 600; }
.compare-row .v-yes { color: var(--fg); font-weight: 500; display: flex; gap: 10px; align-items: center; }
.compare-row .v-no { color: var(--fg-muted); display: flex; gap: 10px; align-items: center; }
.compare-row .v-yes::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: var(--success); flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5L7 12L13 5'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}
.compare-row .v-no::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-3); color: var(--fg-muted);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23697386' stroke-width='2.4' stroke-linecap='round' d='M4 8H12'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}
@media (max-width: 800px) {
  .compare-row { grid-template-columns: 1fr 1.2fr; }
  .compare-row > div:nth-child(2), .compare-row > div:nth-child(3) { display: none; }
  .compare-row > div { border-right: none; padding: 14px 18px; }
}

/* ============ TESTIMONIALS ============ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.test-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.test-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.test-stars { display: inline-flex; gap: 2px; color: var(--gold); margin-bottom: 16px; }
.test-quote {
  font-size: 16px; line-height: 1.55; font-weight: 400;
  letter-spacing: -0.005em; margin: 0 0 24px; color: var(--fg);
  text-wrap: pretty;
}
.test-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; flex-shrink: 0;
  letter-spacing: 0;
}
.test-name { font-weight: 600; font-size: 14px; line-height: 1.2; color: var(--fg); }
.test-role { font-size: 13px; color: var(--fg-muted); margin-top: 3px; }
.test-metric {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 6px;
  background: var(--primary-soft); color: var(--primary-deep);
  font-weight: 600; font-size: 12.5px;
  margin-bottom: 16px; align-self: flex-start;
  border: none;
}

/* ============ FOUNDER ============ */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
@media (max-width: 800px) { .founder { grid-template-columns: 1fr; gap: 40px; } }
.founder-card {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-deep) 100%);
  border: none;
  color: white;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 32px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.founder-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle 400px at 100% 0%, rgba(255,255,255,.15), transparent 60%),
    radial-gradient(circle 400px at 0% 100%, rgba(255,255,255,.05), transparent 60%);
}
.founder-card > * { position: relative; z-index: 1; }
.founder-card .top { display: flex; justify-content: space-between; align-items: flex-start; }
.founder-card .label { font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: 0; text-transform: none; font-weight: 500; }
.founder-card .signature { display: flex; align-items: center; gap: 14px; }
.founder-card .sig-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: white; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.founder-card .sig-name { color: white; font-weight: 600; font-size: 15px; }
.founder-card .sig-role { color: rgba(255,255,255,.7); font-size: 13px; }
.founder-content h3 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15; letter-spacing: -0.025em; font-weight: 600;
  margin: 16px 0 20px; color: var(--fg); text-wrap: balance;
}
.founder-content p { font-size: 16px; color: var(--fg-soft); line-height: 1.65; margin: 0 0 16px; max-width: 58ch; }
.founder-content .name-row { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; color: var(--fg-soft); }
.founder-content .name-row strong { color: var(--fg); font-weight: 600; }
.founder-content .name-row a { color: var(--primary); font-weight: 500; }

/* ============ PRESS / CERTIFICATIONS ============ */
.press { padding: 64px 0; background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.press-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
@media (max-width: 800px) { .press-grid { grid-template-columns: 1fr; text-align: center; } }
.press-block-l, .press-block-r { display: flex; flex-direction: column; gap: 16px; }
.press-label { font-size: 12.5px; letter-spacing: 0; text-transform: none; color: var(--fg-muted); font-weight: 500; }
.press-logos { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; }
@media (max-width: 800px) { .press-logos { justify-content: center; } }
.press-logo {
  font-family: "Geist", sans-serif; font-weight: 600; font-size: 17px;
  color: var(--fg-muted); letter-spacing: -0.02em;
  transition: color .15s;
}
.press-logo:hover { color: var(--fg); }
.press-divider { width: 1px; height: 60px; background: var(--line); }
@media (max-width: 800px) { .press-divider { display: none; } }

.certs { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 800px) { .certs { justify-content: center; } }
.cert-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px; border: 1px solid var(--line); border-radius: 8px;
  background: white; font-size: 13px; color: var(--fg-soft);
}
.cert-badge .ic { color: var(--primary); flex-shrink: 0; }
.cert-badge strong { color: var(--fg); font-weight: 600; }

/* ============ OFFER / PRICING ============ */
.offer-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .offer-wrap { grid-template-columns: 1fr; } }
.offer-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px;
  position: relative; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.offer-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary);
}
.offer-flag {
  position: absolute; top: 28px; right: 28px;
  background: var(--primary-soft); color: var(--primary-deep);
  padding: 5px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0;
  white-space: nowrap;
}
.offer-card h3 { font-size: 24px; letter-spacing: -0.02em; margin: 8px 0 6px; font-weight: 600; color: var(--fg); }
.offer-sub { color: var(--fg-soft); margin: 0 0 24px; font-size: 15px; }
.offer-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.offer-price .num { font-size: 60px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--fg); font-variant-numeric: tabular-nums; }
.offer-price .old { font-size: 22px; color: var(--fg-muted); text-decoration: line-through; font-weight: 500; }
.offer-price .once { font-size: 13.5px; color: var(--fg-soft); margin-left: 4px; }
.offer-fact { font-size: 13.5px; color: var(--fg-muted); margin-bottom: 28px; }
.offer-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.offer-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--fg); }
.offer-list li::before {
  content: ""; width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary-soft); flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%231A56DB' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5L7 12L13 5'/></svg>");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}
.offer-cta-row { display: flex; flex-direction: column; gap: 14px; }
.offer-cta-row .meta { font-size: 13px; color: var(--fg-muted); text-align: center; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.offer-cta-row .meta .item { display: inline-flex; align-items: center; gap: 6px; }
.offer-cta-row .meta .ic { color: var(--primary); }

/* offer side */
.offer-side { display: flex; flex-direction: column; gap: 16px; }
.guarantee-block {
  background: var(--bg-navy);
  color: white;
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; gap: 24px; align-items: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.guarantee-block::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle 400px at 100% 0%, rgba(26,86,219,.4), transparent 60%);
}
.guarantee-block > * { position: relative; }
.guarantee-seal {
  width: 92px; height: 92px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.4); color: white;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 600; font-size: 30px; letter-spacing: -0.02em;
}
.guarantee-seal .small { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; margin-top: 3px; color: rgba(255,255,255,.7); }
.guarantee-block h4 { font-size: 19px; margin: 0 0 8px; font-weight: 600; letter-spacing: -0.02em; color: white; }
.guarantee-block p { font-size: 14px; color: rgba(255,255,255,.8); margin: 0; line-height: 1.55; }

.offer-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.offer-stat {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-sm);
}
.offer-stat .num { font-size: 32px; font-weight: 600; letter-spacing: -0.035em; line-height: 1; margin-bottom: 8px; color: var(--fg); font-variant-numeric: tabular-nums; }
.offer-stat .num .unit { color: var(--primary); }
.offer-stat .lbl { font-size: 13px; color: var(--fg-soft); line-height: 1.45; }

/* ============ FAQ ============ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; letter-spacing: -0.01em; font-weight: 500; color: var(--fg);
  gap: 24px;
  transition: color .15s;
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .2s; font-size: 18px; color: var(--fg-soft);
  border: 1px solid var(--line);
}
.faq-item.open .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); border-color: var(--primary); }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--fg-soft); font-size: 15px; line-height: 1.65;
}
.faq-item.open .faq-a { padding: 0 0 24px; max-height: 360px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--bg-navy);
  padding: 112px 0; text-align: center; position: relative; overflow: hidden;
  color: white;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(26,86,219,.4), transparent 70%),
    radial-gradient(ellipse 600px 300px at 50% 100%, rgba(26,86,219,.2), transparent 70%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: -0.03em;
  margin: 0 auto 24px; max-width: 22ch; text-wrap: balance; font-weight: 600; color: white;
}
.final-cta .lede { margin: 0 auto 40px; text-align: center; color: rgba(255,255,255,.75); }
.final-cta .btn-primary { background: white; color: var(--primary); }
.final-cta .btn-primary:hover { background: var(--bg-2); }
.final-cta .meta { margin-top: 28px; color: rgba(255,255,255,.6); font-size: 13.5px; display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
@media (max-width: 720px) { .final-cta { padding: 72px 0; } }

/* ============ FOOTER ============ */
.footer { background: white; color: var(--fg-soft); padding: 64px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 48px; margin-bottom: 48px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-col h5 { color: var(--fg); font-size: 13px; font-weight: 600; margin: 0 0 16px; letter-spacing: 0; }
.footer-col a { display: block; padding: 5px 0; font-size: 14px; color: var(--fg-soft); transition: color .15s; }
.footer-col a:hover { color: var(--primary); }
.footer-about p { font-size: 14px; line-height: 1.6; color: var(--fg-soft); margin: 0 0 18px; max-width: 36ch; }
.footer-cert { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-cert-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; background: var(--bg-2); border-radius: 6px;
  font-size: 11.5px; color: var(--fg-soft); border: 1px solid var(--line);
}
.footer-cert-tag .ic { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; flex-wrap: wrap; gap: 12px; color: var(--fg-muted);
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--fg-soft); }

/* ============ FULLSCREEN FORM ============ */
.form-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; flex-direction: column;
  animation: fadeIn .3s ease;
  color: var(--fg);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.form-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
}
@media (max-width: 720px) { .form-top { padding: 14px 20px; } }
.form-progress { display: flex; gap: 8px; align-items: center; }
.form-dot {
  width: 28px; height: 4px; border-radius: 999px; background: var(--line-2);
  transition: background .3s, width .3s;
}
.form-dot.active { background: var(--primary); width: 44px; }
.form-dot.done { background: var(--primary); }
.form-close {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--fg);
  transition: background .15s;
  background: white;
}
.form-close:hover { background: var(--bg-2); border-color: var(--line-3); }

.form-body { flex: 1; overflow-y: auto; display: flex; align-items: center; justify-content: center; padding: 40px 32px; }
@media (max-width: 720px) { .form-body { padding: 32px 20px; } }
.form-step { max-width: 720px; width: 100%; }
.form-step.entering { animation: stepIn .4s cubic-bezier(.2,.7,.3,1); }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.form-stepnum { font-size: 12.5px; color: var(--fg-muted); letter-spacing: 0; margin-bottom: 18px; font-weight: 500; }
.form-q {
  font-size: clamp(28px, 4vw, 42px); line-height: 1.1;
  letter-spacing: -0.025em; margin: 0 0 36px; font-weight: 600;
  text-wrap: balance; color: var(--fg);
}
.form-q .accent { color: var(--primary); }

.form-textarea {
  width: 100%; min-height: 100px;
  background: transparent; border: none; outline: none;
  font-size: clamp(22px, 2.2vw, 26px); line-height: 1.4;
  color: var(--fg); letter-spacing: -0.015em;
  border-bottom: 1.5px solid var(--line-2);
  padding: 12px 0; resize: none;
  font-family: inherit; font-weight: 500;
  transition: border-color .2s;
}
.form-textarea:focus { border-color: var(--primary); }
.form-textarea::placeholder { color: var(--fg-muted); font-weight: 400; }

.form-hint { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted); margin-top: 18px; }
.form-hint .kbd { background: var(--bg-2); border: 1px solid var(--line); padding: 2px 7px; border-radius: 6px; font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--fg-soft); }

.form-options { display: flex; flex-direction: column; gap: 12px; }
.form-option {
  display: flex; align-items: center; justify-content: space-between;
  background: white; border: 1.5px solid var(--line);
  padding: 18px 22px; border-radius: 12px;
  font-size: 16px; text-align: left; width: 100%;
  transition: all .15s ease;
  font-weight: 500; color: var(--fg);
}
.form-option:hover { border-color: var(--primary); background: var(--primary-soft); }
.form-option.selected { border-color: var(--primary); background: var(--primary-soft); box-shadow: 0 0 0 3px rgba(26,86,219,.12); }
.form-option .keynum {
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  color: var(--fg-muted); padding: 3px 8px; border: 1px solid var(--line);
  border-radius: 6px; font-weight: 600; background: var(--bg-2);
}
.form-option.selected .keynum { color: var(--primary); border-color: var(--primary); background: white; }
.form-option .opt-label { display: flex; align-items: center; gap: 14px; }
.form-option .opt-dot {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--line-2);
  transition: all .15s; position: relative; flex-shrink: 0;
}
.form-option.selected .opt-dot { border-color: var(--primary); background: var(--primary); }
.form-option.selected .opt-dot::after {
  content: ""; position: absolute; inset: 5px; background: white; border-radius: 50%;
}

.form-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.form-pill {
  padding: 12px 20px; border-radius: 999px;
  border: 1.5px solid var(--line); font-size: 15px; font-weight: 500; color: var(--fg);
  background: white;
  transition: all .15s;
}
.form-pill:hover { border-color: var(--primary); color: var(--primary); }
.form-pill.selected { background: var(--primary); color: white; border-color: var(--primary); }

.form-actions {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 48px; gap: 16px;
}
.form-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--fg-soft);
  padding: 10px 14px; border-radius: 8px;
  transition: background .15s;
}
.form-back:hover { background: var(--bg-2); }
.form-next {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: white;
  padding: 14px 22px; border-radius: 10px;
  font-size: 15px; font-weight: 500;
  transition: transform .15s, opacity .15s, background .15s, box-shadow .2s;
  box-shadow: 0 1px 2px rgba(10,37,64,.08);
}
.form-next:disabled { opacity: .3; cursor: not-allowed; }
.form-next:not(:disabled):hover { transform: translateY(-1px); background: var(--primary-deep); box-shadow: var(--shadow-blue); }

/* ---- LOADING STEP ---- */
.loading-stack { display: flex; flex-direction: column; gap: 14px; max-width: 540px; }
.loading-line {
  display: flex; align-items: center; gap: 14px;
  font-size: 17px; color: var(--fg-soft);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, color .4s, transform .4s;
  font-weight: 500;
}
.loading-line.show { opacity: 1; transform: translateY(0); }
.loading-line.done { color: var(--fg); }
.loading-line .ico {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 2px solid var(--line-2); border-radius: 50%;
  position: relative;
}
.loading-line.show .ico { border-color: var(--primary); border-top-color: transparent; animation: spin .8s linear infinite; }
.loading-line.done .ico {
  border: none; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  animation: none;
}
.loading-line.done .ico::after {
  content: ""; width: 6px; height: 10px; border: solid white;
  border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- RESULT STEP ---- */
.result-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary-deep);
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  border: none;
}
.result-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.result-num {
  font-size: clamp(72px, 13vw, 152px); line-height: 0.95;
  letter-spacing: -0.05em; font-weight: 600;
  margin: 0 0 8px;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.result-sub {
  font-size: clamp(17px, 1.6vw, 21px); color: var(--fg-soft);
  max-width: 58ch; margin-bottom: 28px; line-height: 1.5; text-wrap: pretty;
}
.result-sub strong { color: var(--fg); font-weight: 600; }
.result-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 24px;
  margin-bottom: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 640px) { .result-card { grid-template-columns: 1fr; gap: 16px; } }
.result-stat .lbl { font-size: 12px; color: var(--fg-muted); letter-spacing: 0; margin-bottom: 6px; font-weight: 500; }
.result-stat .val { font-size: 15px; font-weight: 600; color: var(--fg); }
.result-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.result-meta { font-size: 13px; color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.result-meta .ic { color: var(--primary); }

/* ============ POST-LAUNCH HERO CARD (new) ============ */
.pl-stack { display: flex; flex-direction: column; gap: 14px; }
.pl-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.pl-card-main { padding: 0; }
.pl-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.pl-card-ttl {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--fg);
}
.pl-card-ttl svg { color: var(--fg-muted); }
.pl-card-meta { font-size: 12px; color: var(--fg-muted); font-weight: 500; }

.pl-app {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.pl-app-ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-2), var(--primary-deep));
  color: white; font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(26,86,219,.25);
}
.pl-app-name { font-weight: 600; font-size: 15px; color: var(--fg); }
.pl-app-sub { font-size: 12.5px; color: var(--fg-muted); margin-top: 2px; }

.pl-list {
  list-style: none; padding: 8px 20px; margin: 0;
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--line);
}
.pl-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: 13.5px; color: var(--fg-soft);
}
.pl-list li:last-child { border-bottom: none; }
.pl-list li strong {
  font-weight: 600; color: var(--fg); font-variant-numeric: tabular-nums;
  font-size: 15px;
}
.pl-list li strong.pl-zero { color: var(--fg-muted); }

.pl-quiet {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  font-size: 13.5px; color: var(--fg-soft);
  background: var(--bg-2);
  font-style: italic;
}
.pl-quiet svg { color: var(--fg-muted); flex-shrink: 0; }

.pl-card-next {
  background: var(--primary-soft);
  border-color: var(--primary-soft-2);
  padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow-md);
}
.pl-next-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(26,86,219,.3);
}
.pl-next-ttl { font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.pl-next-body { font-size: 13.5px; color: var(--fg-soft); line-height: 1.5; }

/* ============ PROBLEM CARDS (Ce qui se passe souvent) ============ */
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1080px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  min-height: 200px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.problem-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.problem-num {
  font-size: 13px; font-weight: 600; color: var(--primary);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.problem-title {
  font-size: 18px; font-weight: 600; letter-spacing: -0.015em;
  margin: 0 0 8px; line-height: 1.25; color: var(--fg);
}
.problem-body {
  font-size: 14.5px; color: var(--fg-soft); line-height: 1.55;
  margin: 0;
}

/* ============ V-PARTIAL (comparison new state) ============ */
.compare-row .v-partial {
  color: var(--fg-soft); font-weight: 500;
  display: flex; gap: 10px; align-items: center;
}
.compare-row .v-partial::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: #FEF3C7; flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='3' fill='%23D97706'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}

/* ============ OFFER INFO GRID (replaces offer-stat-grid usage) ============ */
.offer-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.offer-info {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.offer-info-lbl {
  font-size: 11.5px; color: var(--primary); font-weight: 600;
  margin-bottom: 6px; letter-spacing: 0;
  text-transform: uppercase;
}
.offer-info-val {
  font-size: 13.5px; color: var(--fg); line-height: 1.5; font-weight: 500;
}

/* btn-ghost used by form paid step */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 10px;
  border: 1px solid var(--line); color: var(--fg-soft);
  font-size: 14px; font-weight: 500;
  background: white;
  transition: background .15s, color .15s;
}
.btn-ghost:hover { background: var(--bg-2); color: var(--fg); }

/* bg-tinted used in loading skeleton */
:root { --bg-tinted: var(--bg-3); }

/* ============ SECTION CTA (centered, end of each section) ============ */
.section-cta {
  margin-top: 56px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.section-cta .btn-primary { padding: 16px 26px; font-size: 16px; }
.section-cta-note {
  font-size: 13px; color: var(--fg-muted);
}
@media (max-width: 720px) {
  .section-cta { margin-top: 40px; }
  .section-cta .btn-primary { padding: 14px 22px; font-size: 15px; }
}

/* ============ REASSURANCE STRIP (inside hero, no frame) ============ */
.reassurance-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 12px 28px;
  margin-top: 48px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
@media (max-width: 1080px) { .reassurance-inner { margin-top: 40px; } }
.hero-rating-top {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.hero-rating-top .stars { color: var(--gold); }
.hero-rating-top .hero-rating-text { font-size: 13.5px; color: var(--fg-soft); }
.hero-rating-top .hero-rating-text strong { color: var(--fg); font-weight: 600; }

.hero-trust-top {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 13.5px; color: var(--fg-soft);
  margin: 0;
  padding: 0;
  border: none;
}
.hero-trust-top .item { display: flex; align-items: center; gap: 7px; }
.hero-trust-top .item .ic,
.hero-trust-top .item svg { color: var(--primary); flex-shrink: 0; }
.hero-trust-top .item strong { color: var(--fg); font-weight: 600; }
@media (max-width: 720px) {
  .reassurance-inner { justify-content: center; text-align: center; }
  .hero-trust-top { justify-content: center; }
}

/* ============ HERO DESCRIBE CARD (replaces PostLaunchCard) ============ */
.describe-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  padding: 22px;
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.describe-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
  border-radius: 18px 18px 0 0;
}
.describe-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; font-weight: 500;
}
.describe-step {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600;
  background: var(--primary-soft);
  padding: 5px 11px; border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.describe-meta { color: var(--fg-muted); display: inline-flex; align-items: center; gap: 6px; }
.describe-q {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.25; letter-spacing: -0.02em;
  font-weight: 600; color: var(--fg);
  margin: 0; text-wrap: balance;
}
.describe-textarea {
  width: 100%;
  min-height: 96px;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 16px; line-height: 1.5;
  color: var(--fg);
  font-family: inherit;
  outline: none;
  resize: vertical;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.describe-textarea::placeholder { color: var(--fg-muted); }
.describe-textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(26,86,219,.12);
}
.describe-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.describe-actions .btn-primary { padding: 12px 20px; font-size: 15px; }
.describe-actions .btn-primary:disabled {
  opacity: .45; cursor: not-allowed;
  background: var(--primary);
  transform: none; box-shadow: 0 1px 2px rgba(10,37,64,.08);
}
.describe-hint {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--fg-muted);
}
.describe-hint svg { color: var(--primary); }
@media (max-width: 720px) {
  .describe-card { padding: 22px; }
  .describe-actions { flex-direction: column; align-items: stretch; }
  .describe-actions .btn-primary { justify-content: center; }
  .describe-hint { justify-content: center; }
}

/* ============ LEGAL PAGES (mentions, CGV, confidentialité, cookies) ============ */
.legal-page {
  padding: 64px 0 96px;
  background: var(--bg);
  min-height: calc(100vh - 60px);
}
.legal-page .wrap { max-width: 820px; }
.legal-page h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1; letter-spacing: -0.03em;
  font-weight: 600; color: var(--fg);
  margin: 0 0 12px;
}
.legal-page .legal-updated {
  font-size: 13.5px; color: var(--fg-muted);
  margin: 0 0 48px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--fg);
  margin: 48px 0 16px;
}
.legal-page h3 {
  font-size: 16px; font-weight: 600;
  color: var(--fg);
  margin: 28px 0 10px;
}
.legal-page p, .legal-page li {
  font-size: 15.5px; line-height: 1.65;
  color: var(--fg-soft);
  margin: 0 0 14px;
}
.legal-page ul, .legal-page ol {
  padding-left: 22px; margin: 0 0 18px;
}
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--fg); font-weight: 600; }
.legal-page a { color: var(--primary); text-decoration: underline; }
.legal-page a:hover { color: var(--primary-deep); }
.legal-page .legal-table {
  width: 100%; border-collapse: collapse;
  font-size: 14.5px; margin: 16px 0 24px;
  border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden;
}
.legal-page .legal-table th,
.legal-page .legal-table td {
  padding: 10px 14px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.legal-page .legal-table th {
  background: var(--bg-2); font-weight: 600; color: var(--fg);
  font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em;
}
.legal-page .legal-table tr:last-child td { border-bottom: none; }
.legal-page .legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--fg-soft);
  margin-bottom: 32px;
}
.legal-page .legal-back:hover { color: var(--primary); }
