/* ═══════════════════════════════════════════════════════════
   PayRouter — Fintech Sharp
   Palette: pure white base + electric blue (#0055ff) + signal
   green (#00b95c). Kein Indigo. Kein Cream. Kein Serif-Editorial.
   Typo: Geist (Vercel's font, geometric-sharp) + Geist Mono.
   Anti-Tell #6 vermeiden: Geist ≠ Inter/Poppins.
   ═══════════════════════════════════════════════════════════ */
:root {
  --bg:        #ffffff;
  --bg-2:      #fafafa;
  --bg-3:      #f4f4f5;
  --bg-4:      #e4e4e7;
  --ink:       #09090b;
  --ink-2:     #18181b;
  --ink-3:     #27272a;
  --muted:     #52525b;
  --muted-2:   #71717a;
  --line:      #e4e4e7;
  --line-2:    #d4d4d8;
  --line-3:    #a1a1aa;

  --accent:       #0055ff;
  --accent-dark:  #0044cc;
  --accent-light: #3d7bff;
  --accent-glow:  rgba(0, 85, 255, 0.10);
  --accent-tint:  #ebf1ff;

  --positive:     #00a355;
  --positive-2:   #00c26a;
  --positive-tint:#e5f9ee;

  --warning:      #b26400;
  --warning-tint: #fff4d9;

  --f-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-mono: "Geist Mono", ui-monospace, "SF Mono", Consolas, "Liberation Mono", monospace;

  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01", "ss03";
  font-variant-numeric: tabular-nums;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: white; padding: 10px 14px; z-index: 100; border-radius: 0 0 var(--r-sm) 0; }
.skip:focus { left: 0; top: 0; }

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

/* Container */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 780px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* Utility */
.mono { font-family: var(--f-mono); font-variant-numeric: tabular-nums; letter-spacing: -0.005em; }
.tabular { font-variant-numeric: tabular-nums; }

/* Type */
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--f-sans); letter-spacing: -0.03em; font-weight: 600; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(46px, 7vw, 92px); font-weight: 500; }
h2 { font-size: clamp(32px, 4vw, 54px); font-weight: 500; letter-spacing: -0.025em; }
h3 { font-size: 22px; letter-spacing: -0.015em; }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }
.lede { font-size: 20px; line-height: 1.5; color: var(--muted); max-width: 620px; }
@media (max-width: 640px) { .lede { font-size: 17px; } }

.mono-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.nav.solid { border-bottom-color: var(--line); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
@media (max-width: 640px) { .nav-inner { padding: 0 20px; height: 56px; } }
.brand {
  font-family: var(--f-sans); font-size: 17px; font-weight: 600;
  color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.brand-mark {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--ink); position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 5px;
  border: 2px solid var(--accent); border-right-color: transparent; border-radius: 50%;
}
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta {
  background: var(--ink); color: white !important;
  padding: 7px 14px; border-radius: var(--r-sm);
  font-weight: 500; font-size: 14px;
  transition: background 0.15s var(--ease);
}
.nav-cta:hover { background: var(--ink-3); text-decoration: none; }
@media (max-width: 780px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-weight: 500; font-size: 15px;
  padding: 12px 20px; border-radius: var(--r-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: all 0.15s var(--ease); text-decoration: none;
  letter-spacing: -0.005em;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: var(--ink-3); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-ghost { background: white; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--line-3); background: var(--bg-2); }
.btn-arrow { font-family: var(--f-mono); font-size: 14px; }
.btn-arrow::after { content: " →"; transition: transform 0.2s var(--ease); display: inline-block; }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(3px); }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  padding: 88px 0 96px;
  position: relative;
  background: var(--bg);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink-2); letter-spacing: -0.005em;
  margin-bottom: 40px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--positive);
  box-shadow: 0 0 0 3px rgba(0, 163, 85, 0.15);
  animation: dot 2.4s ease-in-out infinite;
}
@keyframes dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-badge strong { font-weight: 600; color: var(--ink); }
.hero-badge span:last-child { color: var(--muted); }

.hero h1 { color: var(--ink); margin-bottom: 24px; }
.hero h1 .accent { color: var(--accent); font-weight: 500; }
.hero h1 .strike { position: relative; color: var(--muted-2); }
.hero h1 .strike::after {
  content: ""; position: absolute; left: 0; right: 0; top: 52%;
  height: 4px; background: var(--ink); border-radius: 4px;
  transform: rotate(-2deg);
}

.hero .lede { margin-bottom: 40px; }
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-cta .btn { font-size: 15px; padding: 13px 22px; }
.hero-meta { margin-top: 28px; display: flex; gap: 32px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 12px; color: var(--muted); }
.hero-meta > span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 12px; height: 12px; }

/* ═══════════════════════ KOSTENRECHNER ═══════════════════════ */
.preview { padding: 24px 0 112px; background: var(--bg); }
.calc-header { max-width: 720px; margin-bottom: 40px; }
.calc-header h2 { margin: 12px 0 12px; }
.calc-header p { color: var(--muted); font-size: 18px; }

.calc-frame {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(9,9,11,0.03), 0 24px 60px -20px rgba(9,9,11,0.08);
}

/* Mode toggle */
.calc-mode {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.calc-mode-btn {
  background: transparent; border: none; cursor: pointer;
  padding: 20px 28px; text-align: left;
  border-right: 1px solid var(--line);
  transition: background 0.15s var(--ease);
  font-family: var(--f-sans); color: var(--muted);
  position: relative;
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  gap: 2px 16px; align-items: center;
}
.calc-mode-btn:last-child { border-right: none; }
.calc-mode-btn:hover { background: var(--bg-3); color: var(--ink-2); }
.calc-mode-btn.active { background: var(--bg); color: var(--ink); }
.calc-mode-btn.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--ink);
}
.calc-mode-btn .l {
  grid-row: 1 / 3;
  font-family: var(--f-mono); font-size: 12px; color: var(--accent);
  padding: 8px 10px; background: var(--accent-tint); border-radius: var(--r-sm);
  letter-spacing: -0.005em;
}
.calc-mode-btn.active .l { background: var(--ink); color: var(--positive-2); }
.calc-mode-btn .t {
  font-size: 17px; font-weight: 600; letter-spacing: -0.015em;
}
.calc-mode-btn .s {
  font-family: var(--f-mono); font-size: 11.5px; color: var(--muted); letter-spacing: -0.005em;
}
@media (max-width: 640px) {
  .calc-mode { grid-template-columns: 1fr; }
  .calc-mode-btn { border-right: none; border-bottom: 1px solid var(--line); padding: 16px 20px; }
  .calc-mode-btn:last-child { border-bottom: none; }
}

.calc-body {
  display: grid; grid-template-columns: 360px 1fr;
}
@media (max-width: 900px) { .calc-body { grid-template-columns: 1fr; } }

/* Input side */
.calc-inputs {
  padding: 28px 28px;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 28px;
}
@media (max-width: 900px) {
  .calc-inputs { border-right: none; border-bottom: 1px solid var(--line); }
}
.calc-block {}
.calc-block-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; gap: 12px; flex-wrap: wrap;
}
.calc-val {
  font-family: var(--f-sans); font-size: 28px; font-weight: 500;
  letter-spacing: -0.025em; color: var(--ink);
}
.calc-val-input {
  border: none; background: transparent; padding: 0;
  text-align: right; width: 150px; max-width: 100%;
  border-bottom: 1px dashed var(--line-3);
  border-radius: 0; cursor: text;
  transition: border-color 0.15s var(--ease);
}
.calc-val-input:hover { border-bottom-color: var(--accent); }
.calc-val-input:focus {
  outline: none; border-bottom: 1px solid var(--accent);
}
.slider {
  width: 100%; height: 4px; background: var(--bg-4); border-radius: 100px;
  -webkit-appearance: none; appearance: none; outline: none; margin: 10px 0 4px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); cursor: pointer;
  border: 3px solid white; box-shadow: 0 0 0 1px var(--ink);
  transition: transform 0.1s;
}
.slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.slider::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ink); cursor: pointer; border: 3px solid white; box-shadow: 0 0 0 1px var(--ink);
}
.slider-scale {
  position: relative; height: 16px;
  font-family: var(--f-mono); font-size: 10px; color: var(--muted-2); margin-top: 4px;
}
.slider-scale span { position: absolute; top: 0; transform: translateX(-50%); }
.slider-scale span:first-child { transform: none; }
.slider-scale span:last-child { transform: translateX(-100%); }

/* Preset pills */
.calc-presets { display: inline-flex; gap: 4px; background: var(--bg-3); padding: 3px; border-radius: 100px; }
.calc-presets .preset {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: -0.005em;
  padding: 4px 10px; border: none; background: transparent; cursor: pointer;
  border-radius: 100px; color: var(--muted); font-weight: 500;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.calc-presets .preset:hover { color: var(--ink-2); }
.calc-presets .preset.active { background: var(--ink); color: white; }

/* Mix rows */
.mix-list { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.mix-row {
  display: grid; grid-template-columns: 88px 1fr 46px;
  gap: 12px; align-items: center;
}
.mix-name { font-family: var(--f-sans); font-size: 13px; color: var(--ink-2); font-weight: 500; letter-spacing: -0.005em; }
.mix-name small { display: block; font-family: var(--f-mono); font-size: 10px; color: var(--muted); font-weight: 400; margin-top: 1px; letter-spacing: 0; }
.mix-track {
  height: 8px; background: var(--bg-4); border-radius: 100px; overflow: hidden; position: relative;
}
.mix-fill {
  height: 100%; background: var(--ink);
  border-radius: 100px;
  transition: width 0.35s var(--ease);
}
.mix-row.cash .mix-fill { background: var(--positive); }
.mix-row.card .mix-fill { background: var(--accent); }
.mix-pct {
  font-family: var(--f-mono); font-size: 12px; text-align: right;
  color: var(--ink-2); font-variant-numeric: tabular-nums;
}

/* Output side */
.calc-output { padding: 32px 32px; display: flex; flex-direction: column; }
.calc-output-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.calc-output-head .mono-label { color: var(--ink); font-weight: 600; text-transform: none; letter-spacing: -0.005em; font-size: 13px; }
.mono-tag {
  font-family: var(--f-mono); font-size: 11px; padding: 4px 10px; border-radius: 100px;
  background: var(--accent-tint); color: var(--accent); letter-spacing: -0.005em;
}

.psp-bars { border-top: 1px solid var(--line); }
.psp-bar {
  display: grid; grid-template-columns: 108px 1fr 88px;
  gap: 14px; align-items: center; padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.psp-bar.winner .psp-name { color: var(--positive); font-weight: 600; }
.psp-bar.winner .price { color: var(--positive); font-weight: 600; }
.psp-name { font-family: var(--f-sans); font-weight: 500; letter-spacing: -0.005em; color: var(--ink-2); }
.psp-name small { display: block; font-family: var(--f-mono); font-size: 10px; color: var(--muted-2); font-weight: 400; letter-spacing: 0; margin-top: 1px; }
.psp-bar-track {
  height: 6px; background: var(--bg-3); border-radius: 100px; overflow: hidden; position: relative;
}
.psp-bar-fill {
  height: 100%; background: var(--ink); border-radius: 100px;
  transition: width 0.5s var(--ease);
}
.psp-bar.winner .psp-bar-fill { background: var(--positive); }
.psp-bar .price { font-family: var(--f-mono); text-align: right; color: var(--ink-2); font-variant-numeric: tabular-nums; font-size: 13.5px; }

/* Winner box */
.calc-winner {
  margin-top: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 20px 22px;
  background: var(--ink); color: white; border-radius: var(--r-md);
  position: relative;
}
.calc-winner-l, .calc-winner-r { display: flex; flex-direction: column; gap: 4px; }
.calc-winner-r { text-align: right; align-items: flex-end; }
.calc-winner .mono-label { color: var(--positive-2); font-weight: 500; }
.calc-winner-name { font-family: var(--f-sans); font-size: 30px; font-weight: 500; letter-spacing: -0.025em; color: white; line-height: 1; margin: 2px 0; }
.calc-winner-big {
  font-family: var(--f-sans); font-size: 40px; font-weight: 500;
  letter-spacing: -0.03em; color: var(--positive-2); line-height: 1; margin: 2px 0;
}
.calc-winner-sub { font-family: var(--f-mono); font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: -0.005em; }
.calc-winner-sub .pct {
  color: var(--positive-2); background: rgba(0, 194, 106, 0.14); padding: 1px 7px; border-radius: 100px; margin-left: 6px;
}

/* Aha panels */
.calc-aha {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 640px) { .calc-aha { grid-template-columns: 1fr; } }
.aha {
  padding: 16px 18px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-md);
}
.aha .mono-label { color: var(--accent); letter-spacing: -0.005em; text-transform: none; font-weight: 500; font-size: 11px; }
.aha-big {
  font-family: var(--f-sans); font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1.05; margin: 6px 0 4px;
}
.aha-sub { font-family: var(--f-mono); font-size: 11.5px; color: var(--muted); letter-spacing: -0.005em; line-height: 1.4; }

.calc-fineprint {
  border-top: 1px solid var(--line); padding: 18px 28px;
  font-family: var(--f-mono); font-size: 11.5px; color: var(--muted-2);
  letter-spacing: -0.005em; line-height: 1.6;
  background: var(--bg-2);
}
.calc-fineprint strong { color: var(--ink); font-weight: 500; }
.calc-fineprint em { font-style: italic; color: var(--ink-2); }

@media (max-width: 640px) {
  .calc-winner { grid-template-columns: 1fr; text-align: left; }
  .calc-winner-r { align-items: flex-start; text-align: left; }
}

/* ═══════════════════════ TRUST STRIP ═══════════════════════ */
.trust-strip {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust-strip-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 12px; color: var(--muted);
  letter-spacing: -0.005em;
}
.trust-strip-inner strong { color: var(--ink); font-weight: 500; margin-right: 4px; }
.trust-strip-inner span { display: inline-flex; align-items: center; gap: 6px; }
.trust-strip-inner svg { width: 12px; height: 12px; color: var(--muted-2); }

/* ═══════════════════════ SECTION BASE ═══════════════════════ */
section { padding: 112px 0; }
@media (max-width: 640px) { section { padding: 72px 0; } }
.sec-eyebrow {
  font-family: var(--f-mono); font-size: 12px; color: var(--accent);
  letter-spacing: -0.005em; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
}
.sec-eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--accent); }
.sec-head { max-width: 720px; margin-bottom: 64px; }
.sec-head p { color: var(--muted); font-size: 18px; margin-top: 16px; max-width: 640px; }

/* ═══════════════════════ HOW IT WORKS — Code Steps ═══════════════════════ */
.code-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .code-steps { grid-template-columns: 1fr; } }
.code-step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.code-step:hover { border-color: var(--line-2); transform: translateY(-2px); }
.code-step-head {
  padding: 14px 18px; background: var(--bg-2); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11px; color: var(--muted);
}
.code-step-head .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 5px;
  background: var(--ink); color: white; font-weight: 500; font-size: 12px;
  font-family: var(--f-mono);
}
.code-step-head .time { color: var(--accent); }
.code-step-body { padding: 22px; }
.code-step-body h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -0.02em; font-weight: 600; }
.code-step-body p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.code-step-body code { font-family: var(--f-mono); font-size: 12px; background: var(--bg-3); padding: 2px 6px; border-radius: 4px; color: var(--ink-2); }

/* ═══════════════════════ PSP GRID ═══════════════════════ */
.psp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .psp-grid { grid-template-columns: repeat(2, 1fr); } }
.psp-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  min-height: 160px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.psp-card:hover { border-color: var(--line-2); }
.psp-card .name {
  font-size: 18px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink);
}
.psp-card .role { font-family: var(--f-mono); font-size: 11px; color: var(--muted); margin-top: 6px; letter-spacing: -0.005em; }
.psp-card .footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 12px;
}
.psp-card .footer .p { color: var(--ink-2); font-weight: 500; }
.psp-card .footer .tag {
  padding: 3px 8px; border-radius: 100px; font-size: 10px; letter-spacing: 0.02em;
}
.psp-card--free { border-color: var(--positive-2); background: linear-gradient(180deg, var(--positive-tint) 0%, white 60%); }
.psp-card--free .tag { background: var(--positive-tint); color: var(--positive); }
.psp-card--premium { }
.psp-card--premium .tag { background: var(--warning-tint); color: var(--warning); }
.psp-card--premium .lock { font-size: 10px; margin-right: 4px; }

/* Bundle spans full width */
.psp-bundle {
  grid-column: 1 / -1;
  background: var(--ink); color: white;
  border-radius: var(--r-md);
  padding: 32px 36px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  margin-top: 8px;
}
@media (max-width: 640px) { .psp-bundle { grid-template-columns: 1fr; padding: 24px; } }
.psp-bundle h3 { font-size: 26px; color: white; letter-spacing: -0.025em; font-weight: 500; margin-bottom: 6px; }
.psp-bundle h3 span { color: var(--accent-light); }
.psp-bundle p { font-family: var(--f-mono); font-size: 13px; color: rgba(255,255,255,0.65); margin: 0; letter-spacing: -0.005em; }
.psp-bundle .price {
  font-family: var(--f-sans); font-size: 44px; font-weight: 500; letter-spacing: -0.03em; color: white;
  display: flex; align-items: baseline; gap: 8px;
}
.psp-bundle .price small { font-family: var(--f-mono); font-size: 12px; color: var(--positive-2); font-weight: 400; }

/* ═══════════════════════ METRICS — Ramp-style big numbers ═══════════════════════ */
.metrics {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
@media (max-width: 900px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .metrics-grid { grid-template-columns: 1fr; } }
.metric {
  padding: 40px 24px;
  border-right: 1px solid var(--line);
}
.metric:last-child { border-right: none; }
@media (max-width: 900px) { .metric:nth-child(2) { border-right: none; } .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 500px) { .metric { border-right: none !important; border-bottom: 1px solid var(--line); } .metric:last-child { border-bottom: none; } }
.metric .n {
  font-size: clamp(48px, 6vw, 76px); font-weight: 400;
  letter-spacing: -0.045em; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.metric .n small { font-size: 0.4em; color: var(--muted-2); font-weight: 400; margin-left: 4px; letter-spacing: -0.02em; }
.metric .desc { font-family: var(--f-mono); font-size: 12px; color: var(--muted); line-height: 1.5; letter-spacing: -0.005em; }
.metric .desc strong { color: var(--ink); font-weight: 500; }

/* ═══════════════════════ PRICING — compact table ═══════════════════════ */
.pricing-table {
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  background: var(--bg);
}
.pricing-row {
  display: grid; grid-template-columns: 1.4fr 1fr 2fr 140px;
  gap: 24px; padding: 24px 28px; align-items: center;
  border-bottom: 1px solid var(--line);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row.head { background: var(--bg-2); font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; padding: 12px 28px; }
.pricing-row.featured { background: var(--accent-tint); }
.pricing-row .plan { font-size: 18px; font-weight: 500; letter-spacing: -0.02em; }
.pricing-row .plan small { display: block; font-family: var(--f-mono); font-size: 11px; color: var(--muted); font-weight: 400; letter-spacing: -0.005em; margin-top: 2px; }
.pricing-row .price { font-size: 22px; font-weight: 500; letter-spacing: -0.025em; }
.pricing-row .price small { font-family: var(--f-mono); font-size: 12px; font-weight: 400; color: var(--muted); }
.pricing-row .cap { font-family: var(--f-mono); font-size: 13px; color: var(--ink-2); letter-spacing: -0.005em; }
.pricing-row .cap strong { color: var(--ink); font-weight: 600; }
.pricing-row .action { text-align: right; }
.pricing-row .action a {
  font-family: var(--f-mono); font-size: 12px; color: var(--ink); letter-spacing: -0.005em;
  padding: 8px 14px; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  display: inline-block; text-decoration: none; font-weight: 500;
  transition: all 0.15s var(--ease);
}
.pricing-row .action a:hover { background: var(--ink); color: white; border-color: var(--ink); }
.pricing-row.featured .action a { background: var(--ink); color: white; border-color: var(--ink); }
.pricing-row.featured .action a:hover { background: var(--accent); border-color: var(--accent); }
@media (max-width: 780px) {
  .pricing-row { grid-template-columns: 1fr; gap: 12px; padding: 20px 22px; }
  .pricing-row.head { display: none; }
  .pricing-row .action { text-align: left; }
}

/* ═══════════════════════ FAQ ═══════════════════════ */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-list { display: flex; flex-direction: column; }
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:last-of-type { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none;
  font-size: 17px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--f-mono); font-size: 20px;
  color: var(--muted-2); font-weight: 300;
  transition: transform 0.2s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-list details p { margin: 12px 0 0; color: var(--muted); font-size: 15px; max-width: 640px; line-height: 1.6; }

/* ═══════════════════════ CTA ═══════════════════════ */
.close-cta {
  background: var(--ink); color: white;
  padding: 112px 0;
  position: relative; overflow: hidden;
}
.close-cta::before {
  content: ""; position: absolute; top: -40%; right: -20%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.close-cta .wrap { position: relative; z-index: 1; }
.close-cta h2 { color: white; margin-bottom: 20px; max-width: 780px; }
.close-cta h2 span { color: var(--accent-light); }
.close-cta p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 560px; margin: 0 0 32px; }
.close-cta form {
  display: flex; gap: 8px; max-width: 460px; flex-wrap: wrap;
}
.close-cta input[type=email] {
  flex: 1 1 260px; padding: 13px 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  color: white; font-family: var(--f-sans); font-size: 15px;
  border-radius: var(--r-sm); outline: none;
  transition: border-color 0.15s var(--ease);
}
.close-cta input[type=email]::placeholder { color: rgba(255,255,255,0.4); }
.close-cta input[type=email]:focus { border-color: var(--accent-light); }
.close-cta .btn-accent { padding: 13px 22px; }
.close-cta .fineprint {
  font-family: var(--f-mono); font-size: 12px; color: rgba(255,255,255,0.4);
  letter-spacing: -0.005em; margin-top: 20px;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
footer { border-top: 1px solid var(--line); padding: 48px 0 32px; background: var(--bg); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-brand p { color: var(--muted); font-size: 13px; margin: 12px 0 0; max-width: 300px; line-height: 1.55; }
footer h3 { font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 14px; font-weight: 500; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: 4px 0; font-size: 13px; }
footer a { color: var(--ink-2); text-decoration: none; }
footer a:hover { color: var(--ink); }
.foot-legal { border-top: 1px solid var(--line); padding-top: 20px; margin-top: 40px; font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: -0.005em; }

/* ═══════════════════════ LEGAL PAGES ═══════════════════════ */
.legal-hero { padding: 88px 0 40px; }
.legal-hero .sec-eyebrow { display: inline-flex; margin-bottom: 12px; }
.legal-hero h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 500; }
.legal-body { padding: 24px 0 96px; }
.legal-body h2 { font-size: 22px; margin: 40px 0 12px; font-weight: 600; letter-spacing: -0.015em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 16px; margin: 24px 0 8px; font-weight: 600; }
.legal-body p, .legal-body li { color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin: 12px 0; }
.legal-body .kv {
  background: var(--bg-2); border: 1px solid var(--line);
  padding: 16px 20px; margin: 12px 0; border-radius: var(--r-sm);
}
.legal-body .kv p { margin: 4px 0; font-size: 14px; }
.legal-body .callout {
  border-left: 3px solid var(--accent);
  padding: 14px 20px; background: var(--accent-tint);
  margin: 20px 0; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 14px;
}
.legal-body .callout strong { color: var(--accent-dark); }
.legal-body a { color: var(--accent); }
.legal-body code { font-family: var(--f-mono); font-size: 12.5px; background: var(--bg-3); padding: 1px 5px; border-radius: 3px; color: var(--ink-2); }

/* ═══════════════════════ COOKIE BANNER ═══════════════════════ */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 620px; margin: 0 auto;
  background: white; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: 0 20px 40px -12px rgba(9,9,11,0.12), 0 0 0 1px rgba(9,9,11,0.02);
  z-index: 90;
  transform: translateY(24px); opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-title { font-family: var(--f-sans); font-size: 16px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.015em; }
.cookie-body { font-size: 13.5px; color: var(--muted); margin: 0 0 16px; line-height: 1.5; }
.cookie-body a { color: var(--accent); }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 9px 16px; font-size: 13.5px; }
.cookie-actions .btn-link {
  background: transparent; color: var(--muted); border: none;
  font-size: 13px; padding: 9px 6px; text-decoration: underline;
  text-underline-offset: 3px; cursor: pointer;
}
.cookie-actions .btn-link:hover { color: var(--ink); }
@media (max-width: 640px) { .cookie-banner { left: 12px; right: 12px; bottom: 12px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-badge .dot { animation: none; }
}
