/* =========================================================
   ordero — marketing site
   Cream/ivory + bold orange · Uber-Eats energy
   ========================================================= */

:root {
  --bg: #F6F4EE;
  --bg-2: #EDEAE0;
  --ink: #0E0E0C;
  --ink-2: #2A2926;
  --muted: #6B6963;
  --line: #1c1c1a1f;
  --line-strong: #1c1c1a33;
  --accent: #E8610A;
  --accent-ink: #ffffff;
  --accent-soft: #FFE8D6;
  --dark: #0E0E0C;
  --dark-2: #1a1916;
  --green: #2F8F4A;
  --red: #C8321A;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 0 rgba(14,14,12,.04), 0 2px 6px rgba(14,14,12,.04);
  --shadow-md: 0 1px 0 rgba(14,14,12,.05), 0 12px 40px rgba(14,14,12,.08);
  --shadow-lg: 0 20px 70px rgba(14,14,12,.18);

  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { background: var(--bg); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "ss02", "cv01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.section { padding: 120px 0; position: relative; }
.section.tight { padding: 80px 0; }
.section.dark { background: var(--dark); color: #fff; }
.section.dark .muted { color: #ffffff99; }
@media (max-width: 720px) { .section { padding: 72px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--accent);
}
.section.dark .eyebrow { color: var(--accent); }

h1, h2, h3, h4 { font-family: inherit; margin: 0; line-height: 0.98; letter-spacing: -0.03em; }
h1 { font-weight: 800; font-size: clamp(48px, 8vw, 140px); }
h2 { font-weight: 800; font-size: clamp(40px, 5.5vw, 84px); }
h3 { font-weight: 700; font-size: clamp(24px, 2.6vw, 36px); letter-spacing: -0.02em; line-height: 1.1; }
h4 { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
p { margin: 0; }
.muted { color: var(--muted); }

.lead { font-size: clamp(18px, 1.4vw, 22px); color: var(--ink-2); line-height: 1.5; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #D8550A; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ghost-dark { background: transparent; color: #fff; border: 1.5px solid #ffffff44; }
.btn-ghost-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn.lg { padding: 20px 30px; font-size: 17px; }
.btn.sm { padding: 10px 16px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.nav-logo { display: flex; align-items: center; gap: 4px; font-weight: 800; font-size: 28px; letter-spacing: -0.04em; }
.nav-logo .dot { width: 12px; height: 12px; border-radius: 999px; background: var(--accent); margin-left: 2px; align-self: flex-end; margin-bottom: 8px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a.active { color: var(--accent); position: relative; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--accent); }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: inline-flex; align-items: center; padding: 6px; background: #00000008; border-radius: 999px; font-size: 13px; font-weight: 600; }
.lang-switch button { padding: 6px 12px; border-radius: 999px; color: var(--muted); }
.lang-switch button.active { background: var(--ink); color: #fff; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-right { gap: 10px; }
}
@media (max-width: 560px) {
  .nav-right .lang-switch { display: none; }
  .nav-right .btn.sm { padding: 9px 13px; font-size: 13px; }
  .nav-logo { font-size: 24px; }
}

/* ---------- Hero ---------- */
.hero { padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px; background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px; font-size: 13px; font-weight: 500;
  margin-bottom: 32px;
  width: fit-content;
}
.hero-badge-wrap { display: block; margin-bottom: 32px; }
.hero-badge .pulse {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  position: relative;
}
.hero-badge .pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 999px;
  border: 2px solid var(--accent); opacity: 0;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.8); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero-shock {
  font-weight: 900;
  font-size: clamp(80px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-feature-settings: "ss01";
  display: block;
  position: relative;
}
.hero-shock .pct {
  color: var(--accent);
}
.hero-shock .sign { color: var(--ink); }
.hero-title {
  font-weight: 800;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 12px;
  text-wrap: balance;
  max-width: 18ch;
}
.hero-sub {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 24px 0 0;
  line-height: 1.5;
}
.hero-sub-footnote {
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 56ch;
  line-height: 1.5;
  font-style: italic;
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}
.hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.hero-meta .item { display: flex; align-items: center; gap: 8px; }
.hero-meta .check { color: var(--green); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Live call card */
.callcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}
.callcard-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.callcard-status { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--green); }
.callcard-status .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--green); animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.callcard-time { font-family: "Geist Mono", ui-monospace, monospace; font-size: 13px; color: var(--muted); }
.callcard-num { font-family: "Geist Mono", monospace; font-size: 15px; color: var(--ink-2); margin-bottom: 16px; }

.chat { display: flex; flex-direction: column; gap: 10px; min-height: 320px; }
.chat .bubble { animation: bubbleIn .35s ease both; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Conversation cycle — fade out before swapping */
.callcard.convo-out .chat .bubble,
.callcard.convo-out .callcard-summary { animation: bubbleOut .4s ease both; }
@keyframes bubbleOut { from { opacity: 1; } to { opacity: 0; } }
.bubble {
  padding: 10px 14px; border-radius: 14px; max-width: 80%;
  font-size: 14px; line-height: 1.4;
}
.bubble.ai { background: var(--ink); color: #fff; border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble.user { background: var(--bg-2); color: var(--ink); border-bottom-right-radius: 4px; align-self: flex-end; }
.bubble.upsell { background: var(--accent-soft); color: var(--ink); border-bottom-left-radius: 4px; align-self: flex-start; border: 1px solid #E8610A33; }
.bubble.upsell::before { content: "↑ upsell"; display: block; font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }

.callcard-summary {
  margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line-strong);
  display: flex; justify-content: space-between; font-size: 13px;
}
.callcard-summary .label { color: var(--muted); }
.callcard-summary .val { font-weight: 700; font-family: "Geist Mono", monospace; }
.callcard-summary .delta { color: var(--green); font-weight: 700; }

/* ---------- Live calls stack ---------- */
.callstack { display: flex; flex-direction: column; gap: 10px; }
.callstack-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 8px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--muted);
}
.callstack-head .badge {
  background: var(--green); color: #fff; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-family: inherit; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
}
.callstack-head .badge::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: #fff; animation: blink 1.5s infinite; }
.callmini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.callmini.focused { padding: 16px 18px; box-shadow: var(--shadow-md); border-color: var(--accent); }
.callmini .av { width: 36px; height: 36px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0; position: relative; }
.callmini .av::after { content: ""; position: absolute; bottom: -2px; right: -2px; width: 10px; height: 10px; border-radius: 999px; border: 2px solid #fff; }
.callmini .av.live::after { background: var(--green); }
.callmini .av.ring::after { background: var(--accent); animation: blink 1.2s infinite; }
.callmini .av.done::after { background: var(--muted); }
.callmini .info { min-width: 0; }
.callmini .info .top { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); font-family: "Geist Mono", monospace; }
.callmini .info .name { font-size: 13px; font-weight: 700; color: var(--ink); }
.callmini .info .snippet { font-size: 13px; color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-top: 4px; }
.callmini .info .snippet em { font-style: normal; color: var(--accent); font-weight: 700; }
.callmini .right { text-align: right; flex-shrink: 0; display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.callmini .right .amt { font-family: "Geist Mono", monospace; font-weight: 800; font-size: 14px; }
.callmini .right .delta { font-size: 11px; color: var(--green); font-weight: 700; }
.callmini .right .dur { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--muted); }

/* ---------- Peak / coup de feu section ---------- */
.peak-section { background: var(--bg-2); }
.peak-compare {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 880px) { .peak-compare { grid-template-columns: 1fr; } }
.peak-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.peak-card.with {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.peak-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.peak-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.peak-tag.bad { background: #C8321A14; color: var(--red); }
.peak-tag.good { background: var(--accent); color: #fff; }
.peak-time {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--muted);
}
.peak-card.with .peak-time { color: #ffffff88; }
.peak-card-sub {
  font-size: 14px;
  margin: 8px 0 20px;
  color: var(--ink-2);
}
.peak-card.with .peak-card-sub { color: #ffffffcc; }

.peak-calls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}
.peak-call {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 10px;
  font-size: 12px;
  position: relative;
}
.peak-card.with .peak-call { background: #ffffff14; }
.peak-call .ic {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.peak-call.active .ic { background: var(--accent); color: #fff; }
.peak-call.missed .ic { background: #C8321A22; color: var(--red); }
.peak-call.missed { opacity: 0.55; }
.peak-call.missed .ic svg { animation: shake 0.6s ease-in-out infinite; }
@keyframes shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}
.peak-call .name { font-weight: 600; }
.peak-call .status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
}
.peak-call.missed .status { background: var(--red); }
.peak-call .status.upsell { background: var(--accent); }
.peak-card.with .peak-call .name { color: #fff; }

.peak-caption {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.peak-card.with .peak-caption { border-top-color: #ffffff22; }
.peak-caption.bad { color: var(--red); }
.peak-caption.good { color: var(--accent); }

.peak-strip {
  margin-top: 32px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) { .peak-strip { grid-template-columns: 1fr; padding: 28px; gap: 16px; text-align: center; } }
.peak-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.peak-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px; bottom: 8px; right: -12px;
  width: 1px;
  background: #ffffff22;
}
@media (max-width: 720px) { .peak-stat::after { display: none; } }
.peak-stat .num {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.peak-stat .label {
  font-size: 13px;
  color: #ffffffcc;
  max-width: 22ch;
  line-height: 1.3;
}

.peak-pitch {
  margin-top: 24px;
  background: var(--accent-soft);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.peak-pitch-icon {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.peak-pitch p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- Time-loss section ---------- */
.costs-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .costs-grid { grid-template-columns: 1fr; } }
.cost-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.cost-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--red);
  opacity: 0.9;
}
.cost-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cost-tag {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  background: var(--ink);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.cost-unit-top {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: lowercase;
}
.cost-label {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cost-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  color: var(--red);
  margin-top: -4px;
}
.cost-minus { font-size: 36px; font-weight: 700; line-height: 1; opacity: 0.65; }
.cost-num { font-size: clamp(44px, 5.6vw, 64px); font-weight: 900; line-height: 1; white-space: nowrap; }
.cost-desc {
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink-2);
  margin: 0;
}
.cost-desc b, .cost-desc strong {
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 62%, rgba(200, 50, 26, 0.18) 62%);
  padding: 0 1px;
}
.cost-assume {
  margin-top: auto;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  line-height: 1.5;
}

.costs-sum {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 32px;
  color: #fff;
}
@media (max-width: 880px) {
  .costs-sum { grid-template-columns: 1fr; padding: 24px; }
  .costs-sum-arrow { transform: rotate(90deg); justify-self: center; }
}
.costs-sum-row { display: flex; flex-direction: column; gap: 10px; }
.costs-sum-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff99;
}
.costs-sum-row.with .costs-sum-label { color: var(--accent); }
.costs-sum-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--red);
  white-space: nowrap;
  flex-wrap: wrap;
}
.costs-sum-row.with .costs-sum-value { color: var(--accent); }
.costs-sum-value .sign { font-size: 0.7em; opacity: 0.7; font-weight: 700; }
.costs-sum-value .sign.plus { opacity: 1; }
.costs-sum-value .unit { font-size: 13px; font-weight: 600; color: #ffffff80; letter-spacing: 0; margin-left: 6px; }
.costs-sum-desc { font-size: 13px; color: #ffffffcc; font-weight: 500; line-height: 1.55; margin: 0; }
.costs-sum-desc b, .costs-sum-desc strong {
  color: #fff;
  font-weight: 800;
}
.costs-sum-row.with .costs-sum-desc b, .costs-sum-row.with .costs-sum-desc strong {
  color: var(--accent);
}
.section-head .lead b, .section-head .lead strong {
  color: var(--ink);
  font-weight: 700;
}
.costs-sum-arrow {
  align-self: center;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #ffffff10;
  display: grid; place-items: center;
  color: #fff;
}

.timeloss-assumption {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.01em;
  text-align: center;
}

/* (legacy timeloss styles — preserved for safety, unused) */
.timeloss-compare {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) { .timeloss-compare { grid-template-columns: 1fr; } }
.timeloss-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.timeloss-card.with { background: var(--ink); color: #fff; border-color: var(--ink); }
.timeloss-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted);
}
.timeloss-card.with .timeloss-label { color: #ffffff99; }
.timeloss-value {
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}
.timeloss-card.without .timeloss-value { color: var(--red); }
.timeloss-card.with .timeloss-value { color: var(--accent); }
.timeloss-value .unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: -0.02em;
}
.timeloss-card.with .timeloss-value .unit { color: #ffffff99; }

.timeloss-bar-track {
  position: relative;
  height: 14px;
  background: var(--bg);
  border-radius: 999px;
  overflow: hidden;
}
.timeloss-card.with .timeloss-bar-track { background: #ffffff14; }
.timeloss-bar-fill {
  position: absolute; inset: 0;
  height: 100%;
  border-radius: 999px;
  transition: width .6s ease;
}
.timeloss-bar-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
}
.timeloss-bar-grid span {
  border-right: 1px solid #00000010;
}
.timeloss-card.with .timeloss-bar-grid span { border-right-color: #ffffff14; }
.timeloss-bar-grid span:last-child { border-right: none; }

.timeloss-note {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.timeloss-card.with .timeloss-note { color: #ffffffcc; }

.timeloss-money {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin-top: 8px;
  line-height: 1;
}
.timeloss-card.without .timeloss-money { color: var(--red); }
.timeloss-card.with .timeloss-money { color: var(--accent); }

.timeloss-footnote {
  margin-top: 32px;
  background: var(--accent-soft);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.timeloss-footnote-icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeloss-footnote-body { display: flex; flex-direction: column; gap: 6px; }
.timeloss-footnote-head {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1.05;
}
.timeloss-footnote p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-2);
}

/* ---------- Voices ---------- */
.voice-hero {
  margin-top: 56px;
  display: grid;
  gap: 18px;
}
.voice-hero-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--r-xl);
  padding: 22px 28px;
  text-align: left;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform .2s ease;
}
.voice-hero-card:hover { transform: translateY(-2px); }
.voice-hero-left { display: flex; align-items: center; gap: 16px; }
.voice-hero-av {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.voice-hero-name { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.voice-hero-sub { font-size: 13px; color: #ffffff99; margin-top: 2px; }
.voice-hero-wave {
  display: flex; align-items: center; gap: 3px;
  height: 56px;
  flex: 1;
  min-width: 0;
}
.voice-hero-wave span {
  flex: 1;
  background: var(--accent);
  border-radius: 3px;
  min-height: 6px;
  opacity: 0.4;
}
.voice-hero-card.playing .voice-hero-wave span {
  animation: voiceHeroBounce 1s ease-in-out infinite alternate;
  opacity: 1;
}
@keyframes voiceHeroBounce {
  from { transform: scaleY(0.35); }
  to { transform: scaleY(1); }
}
.voice-hero-play {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #ffffff14;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.voice-hero-pitch {
  color: var(--muted);
  font-weight: 500;
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 720px) {
  .voice-hero-card { grid-template-columns: 1fr; padding: 20px; }
  .voice-hero-wave { height: 44px; }
}

.voice-soon {
  margin-top: 80px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
.voice-soon-head .eyebrow {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}
.voice-soon-head h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin: 14px 0 8px;
  letter-spacing: -0.02em;
}
.voice-soon-head p { color: var(--muted); max-width: 60ch; font-weight: 500; }
.voice-soon-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) { .voice-soon-grid { grid-template-columns: 1fr; } }
.voice-soon-card {
  background: var(--bg);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.voice-soon-tag {
  align-self: flex-start;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
}
.voice-soon-title { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.voice-soon-desc { color: var(--muted); font-size: 14px; line-height: 1.55; font-weight: 500; margin: 0; }

/* (legacy multi-voice grid — kept for safety, unused) */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
@media (max-width: 880px) { .voices-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .voices-grid { grid-template-columns: 1fr; } }

.voice-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-align: left;
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.voice-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.voice-card.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.voice-card.active .voice-sub { color: #ffffff99; }
.voice-card.active .voice-av { background: var(--accent); color: #fff; }
.voice-card.active .voice-play { color: var(--accent); }

.voice-av {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.voice-meta .voice-name { font-weight: 700; font-size: 15px; }
.voice-meta .voice-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.voice-play {
  width: 36px; height: 36px; border-radius: 999px;
  background: #00000010;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.voice-card.active .voice-play { background: #ffffff14; }

.wave {
  position: absolute;
  inset: auto 0 0 0;
  display: flex; align-items: flex-end; gap: 2px;
  height: 24px;
  padding: 0 16px 8px;
  pointer-events: none;
}
.wave span {
  flex: 1;
  background: var(--accent);
  border-radius: 2px;
  animation: waveBounce 0.9s ease-in-out infinite alternate;
  min-height: 4px;
}
@keyframes waveBounce {
  from { height: 10% !important; opacity: 0.5; }
  to { opacity: 1; }
}

.events-block { margin-top: 64px; }
.events-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.events-head h3 { font-size: clamp(24px, 2.4vw, 32px); }
.events-head p { color: var(--muted); max-width: 50ch; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 880px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .events-grid { grid-template-columns: 1fr; } }
.event-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.event-emoji { font-size: 36px; line-height: 1; margin-bottom: 8px; }
.event-name { font-weight: 700; font-size: 17px; }
.event-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- Intel ---------- */
.intel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 720px) { .intel-grid { grid-template-columns: 1fr; } }
.intel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.intel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.intel-card .intel-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.intel-card h3 { font-size: 20px; line-height: 1.2; }
.intel-card p { color: var(--ink-2); font-size: 15px; line-height: 1.5; margin-top: 10px; }

/* ---------- VS Home ---------- */
.vs-table {
  margin-top: 56px;
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.vs-row {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr;
  padding: 20px 28px;
  border-bottom: 1px solid #ffffff14;
  align-items: center;
  gap: 24px;
}
.vs-row:last-child { border-bottom: none; }
.vs-row.vs-head { padding: 14px 28px; background: #ffffff05; }
.vs-row.vs-head .ordero { display: flex; align-items: center; }
.vs-row.vs-head .ordero .logo { display: flex; align-items: baseline; gap: 2px; font-weight: 800; font-size: 22px; color: #fff; }
.vs-row.vs-head .ordero .logo .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }
.vs-row.vs-head .them { font-weight: 700; color: #ffffff66; text-transform: uppercase; font-size: 12px; letter-spacing: 0.06em; }
.vs-label { font-size: 15px; color: #ffffff99; }
.vs-ordero { font-weight: 700; font-size: 17px; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.vs-ordero::before { content: "✓"; color: var(--accent); font-weight: 800; }
.vs-them { font-size: 15px; color: #ffffffaa; }

.vs-footer {
  margin-top: 40px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.vs-footer p { font-size: 20px; font-weight: 700; max-width: 50ch; line-height: 1.3; }

/* ---------- Pages: features & vs ---------- */
.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  max-width: 16ch;
  text-wrap: balance;
}
.page-hero h1 .accent { color: var(--accent); }
.page-hero .lead { margin-top: 24px; max-width: 60ch; }
.page-hero .eyebrow { margin-bottom: 16px; }

.page-section { padding: 80px 0; }
.page-section.alt { background: var(--bg-2); }

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
@media (max-width: 880px) { .feature-block, .feature-block.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; } }
.feature-block .text h2 { font-size: clamp(32px, 3.4vw, 48px); margin-bottom: 16px; }
.feature-block .text .lead { color: var(--ink-2); font-size: 17px; line-height: 1.5; }
.feature-block .text ul { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.feature-block .text ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.feature-block .text ul li::before { content: "→"; color: var(--accent); font-weight: 800; flex-shrink: 0; }
/* ---------- Pourquoi Ordero page ---------- */
/* AI cards */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 980px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ai-grid { grid-template-columns: 1fr; } }
.ai-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.ai-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.ai-card h3 { font-size: 19px; line-height: 1.2; }
.ai-card p { color: var(--ink-2); font-size: 14px; line-height: 1.5; margin-top: 10px; }

/* Money grid */
.money-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 980px) { .money-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .money-grid { grid-template-columns: 1fr; } }
.money-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  min-height: 240px;
  display: flex; flex-direction: column;
}
.money-card.highlight { background: var(--accent); color: #fff; border-color: var(--accent); }
.money-card-num {
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  white-space: nowrap;
}
.money-card.highlight .money-card-num { color: #fff; }
.money-card-num .unit {
  font-size: 18px;
  color: var(--muted);
  margin-left: 4px;
  font-weight: 600;
}
.money-card.highlight .money-card-num .unit { color: #ffffffcc; }
.money-card-label {
  font-size: 15px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 24px;
}
.money-card-desc {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 8px;
  line-height: 1.5;
}
.money-card.highlight .money-card-desc { color: #ffffffd9; }

.money-total {
  margin-top: 32px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 720px) { .money-total { grid-template-columns: 1fr; text-align: center; padding: 32px; } }
.money-total-label {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #ffffff99;
}
.money-total-value {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.money-total-sub {
  font-size: 14px;
  color: #ffffffcc;
  max-width: 32ch;
  line-height: 1.4;
}

/* Kiosk compare */
.kiosk-compare {
  margin-top: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  overflow-x: auto;
}
.kiosk-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  border-bottom: 1px solid var(--line);
  min-width: 720px;
}
.kiosk-row:last-child { border-bottom: none; }
.kiosk-row.kiosk-head {
  background: var(--bg-2);
}
.kiosk-row.kiosk-head > div {
  padding: 18px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.kiosk-row.kiosk-head > div.us {
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.03em;
  font-size: 18px;
  display: flex; align-items: center; gap: 6px;
}
.kiosk-row.kiosk-head > div.us .logo {
  display: flex; align-items: baseline; gap: 2px;
  font-weight: 800; font-size: 20px;
  color: var(--ink);
}
.kiosk-row.kiosk-head > div.us .logo .dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent);
}
.kiosk-row .cell {
  padding: 18px 22px;
  font-size: 14px;
  color: var(--ink-2);
  display: flex; align-items: center;
}
.kiosk-row .cell.label {
  font-weight: 700;
  color: var(--ink);
}
.kiosk-row .cell.us {
  background: #FFF7EF;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}
.kiosk-row .cell.us::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 8px;
  font-size: 16px;
}

.kiosk-insight {
  margin-top: 32px;
  background: var(--accent-soft);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.kiosk-insight-icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kiosk-insight p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

/* Time cards */
.time-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 880px) { .time-cards { grid-template-columns: 1fr; } }
.time-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
}
.time-card-hours {
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.time-card-label {
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
}
.time-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.time-card ul li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.time-card ul li::before {
  content: "→";
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
}

/* Why card override — use number instead of icon */
.why-card-num {
  font-size: 13px;
  font-weight: 800;
  font-family: "Geist Mono", monospace;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.why-card { position: relative; padding: 32px; }

/* ---------- Problems grid (kept as fallback) ---------- */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 980px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .problems-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.problem-num {
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.problem-card h3 { font-size: 22px; line-height: 1.15; }
.problem-card p { color: var(--ink-2); font-size: 14px; line-height: 1.5; margin-top: 12px; }

.vs-calc {
  margin-top: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
@media (max-width: 880px) { .vs-calc { grid-template-columns: 1fr; } }
.vs-calc-inputs { padding: 48px; border-right: 1px solid var(--line); }
@media (max-width: 880px) { .vs-calc-inputs { border-right: none; border-bottom: 1px solid var(--line); padding: 32px; } }
.vs-calc-output { padding: 0; display: flex; flex-direction: column; }
.vs-out-row {
  padding: 28px 40px;
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 24px;
  flex-wrap: wrap;
}
.vs-out-row.competitor { background: #FDF1E8; }
.vs-out-row.ordero { background: var(--ink); color: #fff; }
.vs-out-label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.vs-out-row.ordero .vs-out-label { color: #ffffffcc; }
.vs-out-val {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.vs-out-row.competitor .vs-out-val { color: var(--red); }
.vs-out-row.ordero .vs-out-val { color: var(--accent); }
.vs-out-val .per {
  font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 6px;
}
.vs-out-row.ordero .vs-out-val .per { color: #ffffff99; }
.vs-out-savings {
  padding: 40px;
  background: var(--accent);
  color: #fff;
  flex: 1;
  display: flex; flex-direction: column; gap: 16px;
}
.vs-out-savings .top {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vs-out-savings .big {
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}
.vs-out-savings .btn-accent {
  background: var(--ink);
  color: #fff;
  align-self: flex-start;
  margin-top: auto;
}
.vs-out-savings .btn-accent:hover { background: #000; }

/* Compete table */
.compete-table {
  margin-top: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  overflow-x: auto;
}
.compete-header,
.compete-row {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr 1fr 1fr 1fr;
  min-width: 800px;
}
.compete-header {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.compete-header > div {
  padding: 4px 20px;
  font-size: 13px; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em;
}
.compete-header > div.us { color: var(--ink); }
.compete-header > div.us .logo { display: flex; align-items: baseline; gap: 2px; font-weight: 800; font-size: 18px; color: var(--ink); text-transform: none; letter-spacing: -0.03em; }
.compete-header > div.us .logo .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); }
.compete-row {
  border-bottom: 1px solid var(--line);
}
.compete-row:last-child { border-bottom: none; }
.compete-row .cell {
  padding: 18px 20px;
  font-size: 14px;
  color: var(--ink-2);
}
.compete-row .cell.label {
  font-weight: 600;
  color: var(--ink);
}
.compete-row .cell.us {
  background: #FFF7EF;
  font-weight: 700;
  color: var(--ink);
}
.compete-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.5;
  font-style: italic;
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.why-card h3 { font-size: 24px; }
.why-card p { color: var(--ink-2); font-size: 15px; line-height: 1.5; margin-top: 12px; }

/* Proof block */
.proof-block {
  background: var(--accent-soft);
  border-radius: var(--r-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  gap: 40px;
}
@media (max-width: 880px) { .proof-block { grid-template-columns: 1fr; padding: 40px 32px; } }
.proof-block h2 { color: var(--ink); }

/* ---------- Gains section ---------- */
.gains-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px;
}
@media (max-width: 1080px) { .gains-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gains-grid { grid-template-columns: 1fr; } }
.gain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gain-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gain-card .num {
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.gain-card .num .unit { font-size: 22px; color: var(--muted); font-weight: 600; margin-left: 4px; }
.gain-card .label { font-size: 15px; font-weight: 600; margin-top: auto; }
.gain-card .desc { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.45; }
.gain-card.featured { background: var(--accent); color: #fff; }
.gain-card.featured .num { color: #fff; }
.gain-card.featured .num .unit { color: #ffffffcc; }
.gain-card.featured .desc { color: #ffffffd9; }
.gain-card.featured .badge { background: var(--ink); color: #fff; }
.gain-card .badge { position: absolute; top: 20px; right: 20px; font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 999px; background: var(--accent); color: #fff; letter-spacing: 0.04em; text-transform: uppercase; }

.totalbar {
  margin-top: 48px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.totalbar .left .top { font-size: 13px; color: #ffffff99; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; }
.totalbar .left .big { font-size: clamp(40px, 5vw, 64px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.totalbar .left .big .accent { color: var(--accent); }
.totalbar .right { font-size: 15px; color: #ffffffcc; max-width: 38ch; line-height: 1.5; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.step .n {
  position: absolute; top: -22px; left: 32px;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  font-family: "Geist Mono", monospace;
  border: 4px solid var(--bg);
}
.step h3 { margin-top: 8px; }
.step p { margin-top: 12px; color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.step .visual { margin-top: auto; padding-top: 20px; }

/* Phone visual */
.phone-ring {
  width: 56px; height: 56px; border-radius: 999px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  position: relative;
}
.phone-ring::after, .phone-ring::before {
  content: ""; position: absolute; inset: -8px; border-radius: 999px; border: 2px solid var(--accent); opacity: 0;
  animation: ring 2s ease-out infinite;
}
.phone-ring::before { animation-delay: 1s; }
@keyframes ring {
  0% { transform: scale(.9); opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- Comparison ---------- */
.compare {
  margin-top: 64px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.compare-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
@media (max-width: 880px) { .compare-grid { grid-template-columns: 1fr; } .compare-row { border-bottom: 1px solid var(--line); padding: 16px 24px; } }
.compare-head, .compare-cell {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.compare-head { font-weight: 700; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); background: var(--bg-2); }
.compare-head.ordero { background: var(--ink); color: #fff; position: relative; }
.compare-head.ordero::after { content: "Vous"; position: absolute; top: 8px; right: 12px; background: var(--accent); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 4px; }
.compare-cell.label { font-weight: 600; }
.compare-cell.ordero { background: #FFF7EF; font-weight: 700; }
.compare-cell.win { color: var(--green); font-weight: 700; }
.compare-cell.lose { color: var(--red); }
.compare-cell .ic { display: inline-block; margin-right: 6px; }

/* ---------- ROI Calculator ---------- */
.roi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
@media (max-width: 880px) { .roi { grid-template-columns: 1fr; } }
.roi-inputs { padding: 48px; border-right: 1px solid var(--line); }
@media (max-width: 880px) { .roi-inputs { border-right: none; border-bottom: 1px solid var(--line); padding: 32px; } }
.roi-output { padding: 48px; background: #fff; color: var(--ink); display: flex; flex-direction: column; justify-content: space-between; }
@media (max-width: 880px) { .roi-output { padding: 32px; } }

.field { margin-bottom: 28px; }
.field-label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.field-label .val { color: var(--accent); font-family: "Geist Mono", monospace; }
.field input[type="range"] {
  width: 100%; appearance: none; height: 6px; background: var(--bg-2); border-radius: 999px; outline: none;
}
.field input[type="range"]::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px; border-radius: 999px; background: var(--accent);
  border: 3px solid #fff; box-shadow: var(--shadow-sm); cursor: grab;
}
.field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 999px; background: var(--accent); border: 3px solid #fff; cursor: grab;
}
.field-help { font-size: 12px; color: var(--muted); margin-top: 6px; }

.roi-result .top { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.roi-result .big { font-size: clamp(56px, 7vw, 96px); font-weight: 900; letter-spacing: -0.04em; line-height: 0.95; margin: 12px 0 4px; }
.roi-result .big .accent { color: var(--accent); }
.roi-result .per { font-size: 16px; color: var(--ink-2); }
.roi-bd { margin-top: 32px; padding-top: 24px; border-top: 1px dashed var(--line-strong); display: grid; gap: 10px; font-size: 14px; }
.roi-bd .row { display: flex; justify-content: space-between; }
.roi-bd .row .val { font-family: "Geist Mono", monospace; }
.roi-bd .row.total { font-weight: 800; padding-top: 10px; border-top: 1px solid var(--line); margin-top: 4px; }
.roi-bd .row.total .val { color: var(--accent); }
.roi-meta { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ---------- Dashboard preview ---------- */
.dash-wrap {
  margin-top: 64px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
}
@media (max-width: 720px) { .dash-wrap { padding: 24px; } }
.browser {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; background: #F2EFE7; border-bottom: 1px solid var(--line); }
.browser-bar .d { width: 11px; height: 11px; border-radius: 999px; background: #d6d2c9; }
.browser-bar .url { margin-left: 12px; padding: 4px 12px; background: #fff; border-radius: 6px; font-family: "Geist Mono", monospace; font-size: 12px; color: var(--muted); flex: 1; max-width: 360px; }
.dash {
  display: grid; grid-template-columns: 220px 1fr; min-height: 560px;
}
@media (max-width: 720px) { .dash { grid-template-columns: 1fr; min-height: unset; } }
.dash-side { background: #FAFAF7; border-right: 1px solid var(--line); padding: 20px 16px; }
.dash-side .logo { display: flex; align-items: center; gap: 4px; font-weight: 800; font-size: 18px; margin-bottom: 24px; }
.dash-side .logo .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 999px; align-self: flex-end; margin-bottom: 6px; }
.dash-side .group { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin: 18px 8px 6px; }
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav a { padding: 8px 10px; border-radius: 8px; font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 10px; }
.dash-nav a.active { background: var(--ink); color: #fff; }
.dash-nav a .ic { width: 16px; height: 16px; display: inline-flex; }
.dash-main { padding: 24px 28px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-head h3 { font-size: 22px; }
.dash-head .right { display: flex; gap: 8px; }
.chip { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 600; }
.chip.live { color: var(--green); border-color: #2F8F4A55; background: #2F8F4A10; display: inline-flex; align-items: center; gap: 6px; }
.chip.live::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--green); animation: blink 1.5s infinite; }

.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
@media (max-width: 720px) { .dash-stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.stat .l { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.stat .v { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; }
.stat .d { font-size: 11px; color: var(--green); font-weight: 700; margin-top: 2px; }
.stat .d.red { color: var(--red); }

.dash-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
@media (max-width: 880px) { .dash-row { grid-template-columns: 1fr; } }
.dash-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.dash-card h4 { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }

.calls { display: flex; flex-direction: column; gap: 8px; }
.call { display: grid; grid-template-columns: auto 1fr auto auto; gap: 12px; align-items: center; padding: 10px 12px; border-radius: 8px; }
.call:hover { background: var(--bg); }
.call .av { width: 32px; height: 32px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.call .meta { font-size: 13px; }
.call .meta .name { font-weight: 600; }
.call .meta .sub { color: var(--muted); font-size: 11px; }
.call .amount { font-family: "Geist Mono", monospace; font-size: 13px; font-weight: 700; }
.call .tag { font-size: 10px; padding: 2px 6px; border-radius: 4px; background: var(--bg-2); color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.call .tag.live { background: var(--green); color: #fff; }
.call .tag.up { background: var(--accent); color: #fff; }

.chart { height: 140px; position: relative; margin-top: 4px; }
.chart svg { width: 100%; height: 100%; overflow: visible; }
.chart .x { font-size: 9px; fill: var(--muted); font-family: "Geist Mono", monospace; }

.placeholder-slot {
  margin-top: 24px;
  border: 2px dashed var(--line-strong);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: repeating-linear-gradient(45deg, transparent 0 14px, #00000005 14px 28px);
  font-size: 14px;
}
.placeholder-slot strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 16px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
@media (max-width: 1080px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan.featured { background: #fff; color: var(--ink); border: 2px solid var(--accent); transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.plan.featured .muted { color: var(--muted); }
.plan.featured .feat li::before { color: var(--accent); }
.plan .ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.plan h3 { font-size: 22px; letter-spacing: -0.02em; }
.plan .desc { font-size: 13px; margin-top: 8px; min-height: 36px; }
.plan .price { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin: 24px 0 2px; }
.plan .price .cur { font-size: 22px; font-weight: 600; margin-right: 2px; }
.plan .per { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.plan.featured .per { color: var(--muted); }
.plan .lines { font-size: 13px; padding: 12px 14px; background: var(--bg); border-radius: 8px; margin-bottom: 18px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.plan.featured .lines { background: var(--accent-soft); color: var(--ink); }
.plan .lines .n { font-family: "Geist Mono", monospace; font-weight: 800; font-size: 18px; }
.plan .feat { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.plan .feat li { display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
.plan .feat li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; }
.feat-soon {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: 1px;
  white-space: nowrap;
  font-family: "Geist Mono", ui-monospace, monospace;
}
.plan.featured .feat-soon { background: var(--accent-soft); color: var(--accent); }
.plan .btn { margin-top: auto; width: 100%; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--dark);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 80px 64px;
  margin: 80px auto;
  max-width: var(--maxw);
  width: calc(100% - 64px);
  position: relative;
  overflow: hidden;
}
.final-cta h2 { font-size: clamp(40px, 6vw, 88px); max-width: 16ch; }
.final-cta h2 .accent { color: var(--accent); }
.final-cta p { color: #ffffffcc; max-width: 50ch; margin-top: 20px; font-size: 17px; line-height: 1.5; }
.final-cta .ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.final-cta .grain { position: absolute; right: -60px; bottom: -60px; width: 320px; height: 320px; border-radius: 999px; background: var(--accent); filter: blur(140px); opacity: .35; pointer-events: none; }

/* ---------- Footer ---------- */
footer { background: var(--dark); color: #fff; padding: 64px 0 32px; }
footer .top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 880px) { footer .top { grid-template-columns: 1fr 1fr; } }
footer h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #ffffff80; margin: 0 0 16px; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
footer ul a { color: #ffffffcc; }
footer ul a:hover { color: var(--accent); }
footer .bottom { display: flex; justify-content: space-between; padding-top: 32px; margin-top: 48px; border-top: 1px solid #ffffff14; font-size: 13px; color: #ffffff80; flex-wrap: wrap; gap: 12px; }
.footer-corp {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #ffffff14;
  font-size: 12px;
  font-family: "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.02em;
  color: #ffffff80;
  line-height: 1.6;
}
.footer-corp a { color: #ffffffcc; text-decoration: underline; text-underline-offset: 2px; }
.footer-corp a:hover { color: var(--accent); }
.footer-corp + .bottom { margin-top: 16px; border-top: 1px solid #ffffff10; }
.footer-logo { display: flex; align-items: baseline; gap: 2px; font-weight: 800; font-size: 28px; letter-spacing: -0.04em; color: #fff; margin-bottom: 16px; }
.footer-logo .dot { width: 10px; height: 10px; border-radius: 999px; background: var(--accent); }
.footer-tag { font-size: 14px; color: #ffffffaa; max-width: 32ch; line-height: 1.5; }

/* ---------- Checkout modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(14,14,12,.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; z-index: 100;
  padding: 24px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: 20px; width: 100%; max-width: 920px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr;
  animation: pop .25s cubic-bezier(.3,1.4,.5,1);
  max-height: 90vh;
}
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (max-width: 760px) { .modal { grid-template-columns: 1fr; } }
.modal-left { background: var(--ink); color: #fff; padding: 40px; display: flex; flex-direction: column; gap: 16px; }
.modal-left .logo { font-weight: 800; font-size: 22px; margin-bottom: 24px; display: flex; align-items: baseline; gap: 2px; }
.modal-left .logo .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }
.modal-left .plan-name { font-size: 13px; color: #ffffff99; text-transform: uppercase; letter-spacing: 0.05em; }
.modal-left .plan-price { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; }
.modal-left .plan-price .per { font-size: 14px; color: #ffffff99; font-weight: 500; }
.modal-left .features { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; font-size: 14px; }
.modal-left .features div { display: flex; gap: 8px; }
.modal-left .features div::before { content: "✓"; color: var(--accent); font-weight: 800; }
.modal-left .total { margin-top: auto; padding-top: 16px; border-top: 1px solid #ffffff22; display: flex; justify-content: space-between; font-size: 14px; }
.modal-left .total.big { font-size: 22px; font-weight: 800; }
.modal-left .plan-switch-label { font-size: 11px; color: #ffffff99; text-transform: uppercase; letter-spacing: 0.08em; margin-top: -4px; }
.plan-switch { display: flex; flex-wrap: wrap; gap: 6px; }
.plan-switch button { padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; cursor: pointer; border: 1px solid #ffffff33; background: transparent; color: #ffffffcc; transition: all 0.15s; }
.plan-switch button:hover { border-color: #ffffff80; color: #fff; }
.plan-switch button.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.modal-right { padding: 40px; overflow-y: auto; }
.modal-right h3 { font-size: 22px; margin-bottom: 24px; }
.stripe-row { display: flex; gap: 10px; padding: 10px 14px; background: var(--bg); border-radius: 8px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.stripe-row svg { width: 36px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-field input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 8px;
  font-family: inherit; font-size: 14px; background: #fff;
  transition: border-color .15s ease;
}
.form-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px #E8610A22; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-pay { width: 100%; margin-top: 16px; padding: 16px; background: #635bff; color: #fff; border-radius: 8px; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.modal-pay:hover { background: #524ad6; }
.modal-pay.success { background: var(--green); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 999px; background: #ffffff22; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.modal-close:hover { background: #ffffff44; }
.modal-tos { font-size: 11px; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.4; }

.success-screen { padding: 60px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; grid-column: 1 / -1; }
.success-screen .ic { width: 64px; height: 64px; border-radius: 999px; background: var(--green); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 32px; }
.success-screen h3 { font-size: 32px; }
.success-screen p { color: var(--muted); max-width: 40ch; }

/* ---------- Misc ---------- */
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }
.section-head .right { color: var(--ink-2); max-width: 50ch; }
.section-head h2 { max-width: 18ch; }
.section-head h2 .accent { color: var(--accent); }

.divider-marquee { overflow: hidden; padding: 32px 0; border-block: 1px solid var(--line); background: var(--bg-2); }
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 40s linear infinite; font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--ink-2); }
.marquee-track .dot { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lang-mini { font-size: 13px; color: var(--muted); display: inline-flex; gap: 12px; }
.lang-mini span { display: inline-flex; gap: 4px; align-items: center; }
.lang-mini .flag { font-size: 16px; }


/* ============================================================
   Legal pages
   ============================================================ */
.legal-hero {
  background: var(--bg-2);
  padding: 100px 0 56px;
  border-bottom: 1px solid var(--line);
}
.legal-hero .eyebrow {
  display: inline-block;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.legal-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.legal-updated {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
}

.legal {
  max-width: 820px;
  padding: 80px 24px 120px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
}
.legal h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 56px 0 16px;
  color: var(--ink);
  scroll-margin-top: 80px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--ink);
}
.legal p { margin: 0 0 14px; }
.legal ul, .legal ol { margin: 0 0 18px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong, .legal b { color: var(--ink); font-weight: 700; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { text-decoration: none; }

.legal-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin: 24px 0 32px;
}
.legal-card dl { margin: 0; display: grid; grid-template-columns: 220px 1fr; gap: 10px 18px; }
@media (max-width: 720px) { .legal-card dl { grid-template-columns: 1fr; gap: 4px 0; } .legal-card dt { margin-top: 12px; } }
.legal-card dt {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.legal-card dd { margin: 0; font-weight: 600; color: var(--ink); }

.legal-toc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin: 0 0 40px;
  font-size: 14px;
}
.legal-toc-title { font-family: "Geist Mono", ui-monospace, monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 28px; }
@media (max-width: 720px) { .legal-toc ol { columns: 1; } }
.legal-toc li { margin: 4px 0; }
.legal-toc a { color: var(--ink-2); text-decoration: none; }
.legal-toc a:hover { color: var(--accent); }

.legal-note {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 14px;
  color: var(--ink-2);
}

/* ============================================================
   Inline mid-page CTA banner
   ============================================================ */
.cta-banner {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.cta-banner-text { position: relative; z-index: 1; }
.cta-banner h3 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.cta-banner h3 span { color: var(--accent); }
.cta-banner p {
  margin: 0;
  color: #ffffffcc;
  font-size: 15px;
  max-width: 56ch;
}
.cta-banner-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}
.cta-banner-meta {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff80;
}
@media (max-width: 720px) {
  .cta-banner { grid-template-columns: 1fr; padding: 28px; }
  .cta-banner-actions { align-items: stretch; }
  .cta-banner-actions .btn { width: 100%; }
}

/* ============================================================
   Discreet legal disclaimer footnote
   ============================================================ */
.legal-disclaimer {
  margin: 0 auto;
  max-width: 820px;
  padding: 32px 24px 16px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
  text-align: center;
}
.legal-disclaimer sup { font-weight: 700; color: var(--ink-2); }
