/* ============================================================
   bordero.eu — border insurance landing
   Clean fintech (Stripe-like) system
   ============================================================ */

:root {
  /* Color tokens */
  --bg:        oklch(0.992 0.004 255);
  --bg-2:      oklch(0.974 0.006 258);
  --bg-3:      oklch(0.955 0.008 258);
  --panel:     oklch(1 0 0);
  --ink:       oklch(0.215 0.022 264);
  --ink-2:     oklch(0.38 0.02 264);
  --muted:     oklch(0.54 0.018 264);
  --faint:     oklch(0.66 0.014 264);
  --line:      oklch(0.915 0.008 264);
  --line-2:    oklch(0.875 0.01 264);

  --accent:    oklch(0.55 0.17 262);
  --accent-2:  oklch(0.49 0.18 264);
  --accent-soft: oklch(0.955 0.028 262);
  --accent-ink: oklch(0.99 0.005 262);

  --ok:        oklch(0.62 0.13 156);
  --ok-soft:   oklch(0.955 0.03 156);
  --warn:      oklch(0.66 0.14 60);

  --shadow-sm: 0 1px 2px oklch(0.4 0.03 264 / 0.06), 0 1px 1px oklch(0.4 0.03 264 / 0.04);
  --shadow-md: 0 4px 12px oklch(0.4 0.03 264 / 0.07), 0 2px 4px oklch(0.4 0.03 264 / 0.05);
  --shadow-lg: 0 24px 50px -16px oklch(0.35 0.05 264 / 0.22), 0 8px 18px -10px oklch(0.35 0.04 264 / 0.14);
  --shadow-xl: 0 40px 80px -24px oklch(0.32 0.06 264 / 0.30), 0 12px 28px -12px oklch(0.32 0.05 264 / 0.16);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  --maxw: 1140px;
  --gutter: 24px;

  --font-display: "Schibsted Grotesk", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
}

::selection { background: var(--accent-soft); color: var(--accent-2); }

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Lang visibility helper — only hide the INACTIVE language so active
   elements keep whatever display their component styles give them */
html[data-lang="en"] [data-lang-ru],
html[data-lang="ru"] [data-lang-en] { display: none !important; }

/* ============================================================
   Typography helpers
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }

.section-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  padding: 12px 20px;
  border-radius: 11px;
  border: 1px solid transparent;
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--accent-ink);
  box-shadow: var(--shadow-sm), inset 0 1px 0 oklch(1 0 0 / 0.18);
}
.btn-primary:hover { box-shadow: var(--shadow-md), inset 0 1px 0 oklch(1 0 0 / 0.2); transform: translateY(-1px); }

.btn-ghost {
  background: var(--panel);
  color: var(--ink);
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--faint); }

.btn-lg { padding: 15px 26px; font-size: 16.5px; border-radius: 12px; }
.btn-arrow svg { width: 16px; height: 16px; transition: transform .18s ease; }
.btn:hover .btn-arrow svg, .btn.btn-arrow:hover svg { transform: translateX(3px); }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.992 0.004 255 / 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: oklch(0.992 0.004 255 / 0.9); }
.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 30px; height: 30px;
  flex: none;
  color: var(--accent-2);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand-name .dot { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: color .15s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 14px; }

/* Language toggle */
.lang {
  display: inline-flex;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 2px;
  font-family: var(--font-mono);
}
.lang button {
  border: none; background: transparent;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 5px 9px;
  border-radius: 7px;
  transition: all .15s ease;
}
.lang button.active {
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(60px, 8vw, 104px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 620px;
  background:
    radial-gradient(60% 80% at 78% 18%, oklch(0.6 0.16 262 / 0.10), transparent 70%),
    radial-gradient(50% 70% at 12% 6%, oklch(0.65 0.12 200 / 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  margin: 20px 0 0;
}
.hero h1 .hl { color: var(--accent-2); }
.hero-sub {
  margin-top: 22px;
  font-size: clamp(17px, 1.4vw, 19.5px);
  color: var(--ink-2);
  max-width: 520px;
  line-height: 1.55;
}

/* Waitlist form */
.waitlist {
  margin-top: 32px;
  max-width: 470px;
}
.waitlist-form {
  display: flex;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 13px;
  padding: 7px;
  box-shadow: var(--shadow-md);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.waitlist-form:focus-within { border-color: var(--accent); box-shadow: var(--shadow-md), 0 0 0 4px var(--accent-soft); }
.waitlist-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  padding: 9px 12px;
  min-width: 0;
}
.waitlist-form input::placeholder { color: var(--faint); }
.waitlist-form .btn { flex: none; }
.hp-field { display: none; }

.form-note {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.form-note svg { width: 14px; height: 14px; color: var(--ok); flex: none; }
.form-error { color: var(--warn) !important; font-weight: 600; }
.form-error svg { color: var(--warn) !important; }

/* shake on invalid email */
.waitlist-form.invalid { border-color: var(--warn) !important; animation: shake .4s cubic-bezier(.36,.07,.19,.97); }
@keyframes shake {
  10%,90% { transform: translateX(-1px); }
  20%,80% { transform: translateX(2px); }
  30%,50%,70% { transform: translateX(-4px); }
  40%,60% { transform: translateX(4px); }
}

.form-success {
  display: none;
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, var(--ok-soft) 0%, oklch(0.985 0.012 156) 100%);
  border: 1.5px solid oklch(0.62 0.13 156 / 0.5);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 14px 34px -14px oklch(0.62 0.13 156 / 0.4), var(--shadow-md);
  animation: successIn .5s cubic-bezier(.2,.8,.2,1);
}
.form-success.show { display: flex; }
.form-success .check {
  position: relative;
  width: 56px; height: 56px; flex: none;
  background: var(--ok); color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px -4px oklch(0.62 0.13 156 / 0.6);
}
.form-success .check::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--ok);
  opacity: 0;
  animation: ring 1.4s ease-out .3s infinite;
}
.form-success .check svg { width: 30px; height: 30px; animation: checkPop .45s cubic-bezier(.2,1.4,.4,1) .15s both; }
.form-success .s-title { font-weight: 800; font-size: 21px; color: var(--ink); font-family: var(--font-display); letter-spacing: -0.01em; line-height: 1.2; }
.form-success .s-sub { font-size: 15px; color: var(--ink-2); margin-top: 4px; display: block; }
@keyframes successIn { from { opacity: 0; transform: translateY(12px) scale(.96);} to { opacity:1; transform: none;} }
@keyframes checkPop { from { transform: scale(0); opacity: 0;} to { transform: scale(1); opacity: 1;} }
@keyframes ring { 0% { transform: scale(1); opacity: .7;} 100% { transform: scale(1.5); opacity: 0;} }
@media (prefers-reduced-motion: reduce) {
  .form-success, .form-success .check svg, .waitlist-form.invalid { animation: none !important; }
  .form-success .check::after { display: none; }
}

.hero-trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* ============================================================
   Hero product card (policy)
   ============================================================ */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 380px; }

.policy {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  z-index: 2;
}
.policy-top {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--panel) 100%);
}
.policy-id { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.policy-id b { color: var(--ink); font-weight: 600; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ok); background: var(--ok-soft);
  border: 1px solid oklch(0.62 0.13 156 / 0.25);
  padding: 4px 9px; border-radius: 20px;
}
.pill .blip { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px oklch(0.62 0.13 156 / 0.18); animation: blip 1.8s ease-in-out infinite; }
@keyframes blip { 0%,100%{opacity:1} 50%{opacity:.4} }

.policy-body { padding: 22px; }
.policy-kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.policy-title { font-family: var(--font-display); font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px; }

.policy-route {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.flag {
  width: 34px; height: 34px; flex: none;
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  color: var(--ink); background: var(--panel);
  border: 1px solid var(--line-2);
  letter-spacing: 0.02em;
}
.route-arrow { color: var(--faint); flex: none; }
.route-arrow svg { width: 20px; height: 20px; }
.route-meta { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.route-meta b { color: var(--ink); font-weight: 600; display: block; font-size: 13.5px; }

.policy-rows { margin-top: 16px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.policy-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 16px; background: var(--panel); font-size: 13.5px; }
.policy-row .k { color: var(--muted); }
.policy-row .v { color: var(--ink); font-weight: 600; font-family: var(--font-mono); font-size: 13px; }
.policy-row .v.price { font-size: 15px; }

.policy-foot {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.qr {
  width: 46px; height: 46px; flex: none;
  border-radius: 8px;
  background:
    repeating-conic-gradient(var(--ink) 0% 25%, transparent 0% 50%) 0 0 / 8px 8px;
  opacity: 0.85;
  border: 3px solid var(--panel);
  outline: 1px solid var(--line);
}
.policy-foot .f-meta { font-size: 12px; color: var(--muted); line-height: 1.45; }
.policy-foot .f-meta b { color: var(--ink); font-weight: 600; }

/* floating chip behind card */
.float-chip {
  position: absolute;
  z-index: 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px 15px;
  display: flex; align-items: center; gap: 11px;
  font-size: 13px;
}
.float-chip .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.float-chip .ic svg { width: 16px; height: 16px; }
.float-chip b { font-weight: 700; font-family: var(--font-display); font-size: 14px; display: block; }
.float-chip small { color: var(--muted); font-size: 11.5px; }
.float-chip.c1 { top: 6%; right: -6%; animation: floaty 6s ease-in-out infinite; }
.float-chip.c2 { bottom: 4%; left: -8%; animation: floaty 6s ease-in-out infinite .8s; }
.float-chip.c1 .ic { background: var(--accent-soft); color: var(--accent-2); }
.float-chip.c2 .ic { background: var(--ok-soft); color: var(--ok); }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }

@media (prefers-reduced-motion: reduce) {
  .float-chip, .blip { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Marquee trust strip
   ============================================================ */
.strip {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 40px;
}
.strip-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.strip-item svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

/* ============================================================
   Section scaffolding
   ============================================================ */
section.block { padding: clamp(64px, 9vw, 110px) 0; }
.block-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.block-head.center { margin-inline: auto; text-align: center; }
.block-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 14px; }
.block-head p { margin-top: 16px; font-size: 18px; color: var(--ink-2); }

/* ============================================================
   Comparison (old way vs bordero)
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-col {
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--line);
}
.compare-col.old { background: var(--bg-2); }
.compare-col.new {
  background: linear-gradient(180deg, oklch(0.985 0.012 262) 0%, var(--panel) 100%);
  border-color: oklch(0.55 0.17 262 / 0.28);
  box-shadow: var(--shadow-md);
}
.compare-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 20px;
}
.compare-col.old .compare-label { color: var(--muted); }
.compare-col.new .compare-label { color: var(--accent-2); }
.compare-label .tagdot { width: 8px; height: 8px; border-radius: 50%; }
.compare-col.old .tagdot { background: var(--faint); }
.compare-col.new .tagdot { background: var(--accent); }

.compare-list { display: grid; gap: 14px; }
.compare-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.compare-item .ci {
  width: 22px; height: 22px; flex: none; border-radius: 50%;
  display: grid; place-items: center; margin-top: 1px;
}
.compare-item .ci svg { width: 13px; height: 13px; }
.compare-col.old .ci { background: var(--bg-3); color: var(--faint); }
.compare-col.old .compare-item { color: var(--muted); }
.compare-col.new .ci { background: var(--ok-soft); color: var(--ok); }
.compare-col.new .compare-item { color: var(--ink); }

/* ============================================================
   How it works
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.step-num {
  counter-increment: step;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.step-num::before {
  content: counter(step, decimal-leading-zero);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  border-radius: 11px;
  font-size: 15px;
  color: var(--accent-2);
}
.step-ic { color: var(--accent-2); margin-bottom: 14px; }
.step-ic svg { width: 24px; height: 24px; }
.step h3 { font-size: 19px; }
.step p { margin-top: 9px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.step-connector { display: none; }

/* ============================================================
   Flow diagram (5-step online flow)
   ============================================================ */
.flow {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.flow-node { flex: 1 1 0; min-width: 0; }
.flow-node-inner {
  position: relative;
  height: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.flow-node:hover .flow-node-inner { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }

.flow-ic {
  width: 48px; height: 48px; flex: none;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.flow-ic svg { width: 25px; height: 25px; }
.flow-num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--faint);
  margin-bottom: 6px;
}
.flow-node h3 { font-size: 17.5px; }
.flow-node p { margin-top: 8px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }

.flow-arrow {
  flex: 0 0 auto;
  align-self: center;
  display: grid; place-items: center;
  width: 34px;
  color: var(--line-2);
}
.flow-arrow svg { width: 22px; height: 22px; }

/* final node — accent emphasis */
.flow-node.is-final .flow-node-inner {
  background: linear-gradient(180deg, oklch(0.985 0.012 262) 0%, var(--panel) 100%);
  border-color: oklch(0.55 0.17 262 / 0.32);
  box-shadow: var(--shadow-md);
}
.flow-node.is-final .flow-ic { background: var(--accent); color: var(--accent-ink); }
.flow-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ok);
  background: var(--ok-soft);
  border: 1px solid oklch(0.62 0.13 156 / 0.28);
  padding: 4px 9px; border-radius: 20px;
}

@media (max-width: 980px) {
  .flow { flex-wrap: wrap; gap: 14px; }
  .flow-node { flex: 1 1 calc(50% - 7px); }
  .flow-arrow { display: none; }
}
@media (max-width: 560px) {
  .flow-node { flex: 1 1 100%; }
}

/* ============================================================
   Coverage grid
   ============================================================ */
.coverage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cov-card {
  display: flex; gap: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cov-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.cov-ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: grid; place-items: center;
}
.cov-ic svg { width: 22px; height: 22px; }
.cov-card h3 { font-size: 17px; }
.cov-card p { margin-top: 6px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

/* ============================================================
   Trust / credibility band
   ============================================================ */
.trust-band { background: var(--bg-2); }
.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.trust-points { display: grid; gap: 14px; }
.trust-point {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.trust-point .tp-ic {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-2);
}
.trust-point .tp-ic svg { width: 20px; height: 20px; }
.trust-point h3 { font-size: 16.5px; }
.trust-point p { font-size: 14px; color: var(--ink-2); margin-top: 3px; line-height: 1.45; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-q .fq-ic {
  width: 28px; height: 28px; flex: none;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--muted);
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-q .fq-ic svg { width: 15px; height: 15px; }
.faq-item.open .fq-ic { background: var(--accent); color: white; border-color: var(--accent); transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 4px 24px; font-size: 16px; color: var(--ink-2); line-height: 1.6; max-width: 660px; }

/* ============================================================
   Final CTA
   ============================================================ */
.cta {
  position: relative;
  background: linear-gradient(160deg, oklch(0.28 0.06 264) 0%, oklch(0.22 0.05 266) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 70% at 85% 10%, oklch(0.6 0.18 262 / 0.4), transparent 70%),
    radial-gradient(40% 60% at 10% 100%, oklch(0.6 0.14 200 / 0.25), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; }
.cta .eyebrow { color: oklch(0.82 0.08 262); }
.cta .eyebrow::before { background: oklch(0.7 0.12 262); }
.cta h2 { color: oklch(0.99 0.005 262); font-size: clamp(28px, 3.6vw, 44px); margin-top: 16px; }
.cta p { color: oklch(0.84 0.02 264); font-size: 18px; margin-top: 16px; max-width: 480px; }
.cta .waitlist { margin-top: 30px; max-width: 480px; }
.cta .waitlist-form { background: oklch(1 0 0 / 0.96); border-color: transparent; }
.cta .form-note { color: oklch(0.78 0.02 264); }
.cta .form-note svg { color: oklch(0.78 0.13 156); }
.cta .form-success { background: var(--panel); border-color: oklch(0.62 0.13 156 / 0.55); box-shadow: 0 16px 40px -12px oklch(0 0 0 / 0.45); }
.cta .form-success .s-title { color: var(--ink); }
.cta .form-success .s-sub { color: var(--ink-2); }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: 60px 0 48px; border-top: 1px solid var(--line); margin-top: 8px; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { max-width: 320px; }
.footer-brand p { margin-top: 14px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); font-weight: 500; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; color: var(--ink-2); margin-bottom: 9px; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-top: 28px;
  font-size: 13px; color: var(--muted);
}
.footer-note { font-family: var(--font-mono); font-size: 11.5px; color: var(--faint); }

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 0; margin-bottom: 8px; }
  .hero-copy { max-width: 620px; }
  .trust-grid { grid-template-columns: 1fr; }
  .float-chip.c1 { right: 2%; }
  .float-chip.c2 { left: 2%; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .coverage { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 460px) {
  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { width: 100%; }
  .brand-name { font-size: 19px; }
  .policy { max-width: 100%; }
}
