/* ═══════════════════════════════════════════
   GÖNNR – EDITORIAL PREMIUM
   ═══════════════════════════════════════════ */

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

:root {
  --black:   #0A0A0A;
  --cream:   #F5F0E8;
  --cream-d: #EDE8DF;
  --red:     #D42B2B;
  --red-d:   #B52323;
  --gray:    #6B6B6B;
  --gray-lt: #9B9B9B;
  --border:  rgba(10,10,10,0.1);
  --ff-head: 'Syne', sans-serif;
  --ff-body: 'Outfit', sans-serif;
  --max:     1200px;
  --pad:     clamp(1.5rem, 5vw, 4rem);
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--cream); color: var(--black); overflow-x: hidden; }

.red { color: var(--red); }

/* ── ANNOUNCEMENT BAR ───────────────────── */
.announce {
  background: var(--black); color: var(--cream);
  text-align: center; padding: 0.6rem var(--pad);
  font-size: 0.72rem; letter-spacing: 0.04em;
  position: relative; z-index: 300;
}
.announce-link {
  color: var(--cream); text-decoration: none;
  opacity: 0.8; transition: opacity 0.2s;
}
.announce-link:hover { opacity: 1; }

/* ── HEADER ─────────────────────────────── */
.hdr {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 200;
  background: rgba(245,240,232,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.hdr.scrolled { box-shadow: 0 4px 40px rgba(10,10,10,0.08); }

.hdr-inner {
  max-width: var(--max); margin-inline: auto;
  padding: 0 var(--pad);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.hdr-logo {
  font-family: var(--ff-head); font-size: 1.4rem; font-weight: 900;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none; color: var(--black);
}
.hdr-nav { display: flex; gap: 2rem; }
.hdr-navlink { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.hdr-navlink:hover { color: var(--black); }
.hdr-cta {
  padding: 10px 24px; background: var(--black); color: var(--cream);
  font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s var(--ease);
}
.hdr-cta:hover { background: var(--red); }

.hdr-lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  flex-shrink: 0;
}
.hdr-lang-active { color: var(--black); font-weight: 700; }
.hdr-lang-link { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.hdr-lang-link:hover { color: var(--black); }
.hdr-lang::before { content: ''; display: block; width: 1px; height: 12px; background: var(--border); margin-right: 2px; }

/* ── HERO ────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: calc(68px + 36px);
  border-bottom: 1px solid var(--border);
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) var(--pad);
  border-right: 1px solid var(--border);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gray);
  margin-bottom: 2.5rem; opacity: 0;
}
.eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--red); flex-shrink: 0; }
.eyebrow--light { color: rgba(245,240,232,0.45); }
.eyebrow--light::before { background: var(--red); }

.hero-h1 {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  line-height: 0.92; letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}
.line-wrap { display: block; overflow: hidden; }
.line { display: block; transform: translateY(110%); }

.hero-rule {
  width: 0; height: 3px; background: var(--black); margin-bottom: 2rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem); line-height: 1.75; color: var(--gray);
  max-width: 420px; margin-bottom: 2.5rem; opacity: 0;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; opacity: 0; }

.btn-solid {
  display: inline-block; padding: 14px 32px;
  background: var(--black); color: var(--cream);
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--black);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  cursor: pointer; font-family: var(--ff-body);
}
.btn-solid:hover { background: var(--red); border-color: var(--red); }
.btn-solid--full { width: 100%; text-align: center; margin-top: 0.5rem; font-size: 0.8rem; padding: 16px; }

.btn-ghost {
  font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--black); }

.hero-note { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-lt); margin-top: 1.25rem; opacity: 0; }

/* Hero right */
.hero-right {
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) var(--pad);
  position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-stats { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0; width: 100%; max-width: 300px; }
.stat { padding: 2.5rem 0; }
.stat-num {
  font-family: var(--ff-head); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900; color: var(--cream); line-height: 1; letter-spacing: -0.03em;
}
.stat-inf { font-size: clamp(4rem, 7vw, 6rem); color: var(--red); }
.stat-label { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,232,0.35); margin-top: 0.5rem; }
.stat-divider { width: 100%; height: 1px; background: rgba(245,240,232,0.08); }

/* ── HOW IT WORKS ────────────────────────── */
.how {
  padding: clamp(7rem, 13vw, 14rem) var(--pad);
  max-width: var(--max); margin-inline: auto;
  border-bottom: 1px solid var(--border);
}

.howbiz {
  background: var(--cream);
  padding: clamp(7rem, 13vw, 14rem) var(--pad);
  max-width: 100%;
  border-bottom: 1px solid var(--border);
}
.howbiz .section-meta,
.howbiz .section-h2,
.howbiz .steps,
.howbiz .viral-strip {
  max-width: var(--max);
  margin-inline: auto;
}

.section-meta {
  display: flex; align-items: center; gap: 1.25rem; margin-bottom: 3rem;
}
.section-num { font-family: var(--ff-head); font-size: 0.7rem; color: var(--gray); letter-spacing: 3px; }
.section-rule-line { flex: 1; height: 1px; background: var(--border); }
.section-tag { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }

.section-h2 {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(3rem, 6.5vw, 7rem);
  letter-spacing: -0.04em; line-height: 0.92;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.steps {
  display: flex; flex-direction: column;
  margin-bottom: 4rem;
}
.step {
  display: grid;
  grid-template-columns: 5.5rem 1px 1fr 2.5rem;
  gap: 0 2.5rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  cursor: default;
}
.step:first-child { border-top: 1px solid var(--border); }

.step-num {
  font-family: var(--ff-head); font-size: 4rem; font-weight: 900;
  color: rgba(10,10,10,0.06); line-height: 1; text-align: right;
  transition: color 0.3s var(--ease);
}
.step:hover .step-num { color: rgba(212,43,43,0.12); }

.step-vline {
  width: 1px; height: 100%; background: var(--border);
  transition: background 0.3s var(--ease);
  align-self: stretch;
}
.step:hover .step-vline { background: var(--red); }

.step-content { padding-left: 0.5rem; }
.step-title {
  font-family: var(--ff-head); font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.025em;
  transition: color 0.2s;
}
.step-text { font-size: 0.9rem; line-height: 1.8; color: var(--gray); max-width: 520px; }

.step-arrow {
  color: var(--red); font-size: 1.4rem; opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
  justify-self: end;
}
.step:last-child .step-arrow { display: none; }
.step:hover .step-arrow { opacity: 1; transform: translateX(0); }

.viral-strip {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 2rem 2.5rem; background: var(--black); color: var(--cream);
  transform: translateX(-40px); opacity: 0;
}
.viral-icon { font-size: 1.75rem; color: var(--red); flex-shrink: 0; }
.viral-title { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; }
.viral-sub { font-size: 0.82rem; color: rgba(245,240,232,0.45); margin-top: 0.25rem; }

/* ── BENEFITS ────────────────────────────── */
.benefits {
  background: var(--cream-d);
  border-bottom: 1px solid var(--border);
  padding: clamp(7rem, 13vw, 14rem) var(--pad);
}
.benefits > * { max-width: var(--max); margin-inline: auto; }
.benefits .section-meta { max-width: var(--max); }
.benefits .section-h2 { max-width: var(--max); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); gap: 1px; background: var(--border);
  margin-bottom: 2.5rem; max-width: var(--max);
}
.benefit {
  padding: clamp(2.5rem, 4.5vw, 3.5rem);
  background: var(--cream-d);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
  cursor: default;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 280px;
}
/* Spotlight cursor glow */
.benefit::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,43,43,0.09) 0%, transparent 65%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  left: var(--mx, -200px); top: var(--my, -200px);
  pointer-events: none; opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.benefit:hover::before { opacity: 1; }
/* Ghost number as absolute watermark */
.benefit-num {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-family: var(--ff-head); font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 900; color: rgba(10,10,10,0.05);
  line-height: 1; pointer-events: none; user-select: none;
  transition: color 0.35s;
  z-index: 0;
}
.benefit-title {
  font-family: var(--ff-head); font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 800; margin-bottom: 0.7rem; letter-spacing: -0.02em;
  position: relative; z-index: 1;
  hyphens: auto;
}
.benefit-text {
  font-size: 0.88rem; line-height: 1.75; color: var(--gray);
  transition: color 0.3s; position: relative; z-index: 1;
  max-width: 38ch;
}
.benefit:hover { background: var(--black); color: var(--cream); }
.benefit:hover .benefit-text { color: rgba(245,240,232,0.5); }
.benefit:hover .benefit-num { color: rgba(245,240,232,0.04); }

.tags-row { display: none; }

/* ── MARQUEE ─────────────────────────────── */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.85rem 0;
  background: var(--cream-d);
  margin-top: 2.5rem;
  max-width: var(--max);
}
.marquee-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 1.75rem;
  padding: 0 1.75rem; white-space: nowrap;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray);
}
.marquee-dot { color: var(--red); font-size: 0.5rem; flex-shrink: 0; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── WAITLIST ────────────────────────────── */
.waitlist {
  background: var(--black); color: var(--cream);
  padding: clamp(5rem, 10vw, 10rem) var(--pad);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.waitlist-inner {
  max-width: var(--max); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}

.waitlist-h2 {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.03em; line-height: 0.95;
  margin: 1.5rem 0 1rem;
}
.waitlist-sub { font-size: 0.95rem; color: rgba(245,240,232,0.45); line-height: 1.75; margin-bottom: 2rem; }

.waitlist-perks { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.waitlist-perks li { font-size: 0.85rem; color: rgba(245,240,232,0.55); display: flex; align-items: center; gap: 0.75rem; }
.perk-icon { color: var(--red); font-weight: 700; flex-shrink: 0; }

/* Form */
.wform { display: flex; flex-direction: column; gap: 1rem; }
.wform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wform-group { display: flex; flex-direction: column; gap: 0.4rem; }
.wform-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,232,0.4); }
.wform-input {
  padding: 14px 16px;
  background: rgba(245,240,232,0.05); border: 1px solid rgba(245,240,232,0.1);
  color: var(--cream); font-family: var(--ff-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.wform-input::placeholder { color: rgba(245,240,232,0.2); }
.wform-input:focus { border-color: var(--red); background: rgba(245,240,232,0.08); }
.wform-input.is-error { border-color: var(--red); }
.wform-error { font-size: 0.72rem; color: var(--red); min-height: 1em; }

.wform-select-wrap { position: relative; }
.wform-select-wrap::after {
  content: ''; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  border: 4px solid transparent; border-top-color: rgba(245,240,232,0.3);
  pointer-events: none;
}
.wform-select { cursor: pointer; width: 100%; }
.wform-select option { background: #1a1a1a; }

.wform-group--check { margin-top: 0.5rem; }
.wform-check-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.wform-checkbox { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--red); cursor: pointer; }
.wform-check-text { font-size: 0.78rem; color: rgba(245,240,232,0.4); line-height: 1.5; }
.wform-link { color: rgba(245,240,232,0.7); text-underline-offset: 2px; }
.wform-link:hover { color: var(--cream); }

.btn-loading { display: none; }
.btn-solid.is-loading .btn-text { display: none; }
.btn-solid.is-loading .btn-loading { display: inline; }
.btn-solid:disabled { opacity: 0.6; cursor: not-allowed; }

.wform-success {
  display: none; text-align: center; padding: 3rem 2rem;
  border: 1px solid rgba(212,43,43,0.3);
  background: rgba(212,43,43,0.06);
}
.wform-success.is-visible { display: block; animation: fadeUp 0.5s var(--ease) both; }
.success-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; background: var(--red); color: var(--cream);
  font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem;
}
.wform-success h3 { font-family: var(--ff-head); font-size: 1.5rem; color: var(--cream); margin-bottom: 0.5rem; }
.wform-success p { font-size: 0.9rem; color: rgba(245,240,232,0.5); }

/* ── FOOTER ──────────────────────────────── */
.ftr { background: var(--black); padding: 1.75rem var(--pad); border-top: 1px solid rgba(255,255,255,0.06); }
.ftr-inner {
  max-width: var(--max); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.ftr-logo { font-family: var(--ff-head); font-size: 1rem; font-weight: 900; letter-spacing: 3px; color: var(--cream); }
.ftr-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ftr-link { font-size: 0.75rem; color: rgba(245,240,232,0.35); text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s; }
.ftr-link:hover { color: var(--cream); }
.ftr-copy { font-size: 0.72rem; color: rgba(245,240,232,0.25); }

/* ── COOKIE BANNER ───────────────────────── */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem var(--pad);
  transform: translateY(0); transition: transform 0.4s var(--ease);
}
.cookie.is-hidden { transform: translateY(110%); pointer-events: none; }
.cookie-inner {
  max-width: var(--max); margin-inline: auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 220px; }
.cookie-text strong { display: block; color: var(--cream); font-size: 0.85rem; margin-bottom: 0.2rem; }
.cookie-text p { font-size: 0.78rem; color: rgba(245,240,232,0.45); line-height: 1.5; }
.cookie-link { color: rgba(245,240,232,0.65); }
.cookie-link:hover { color: var(--cream); }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.5rem 1.25rem; font-family: var(--ff-body); font-size: 0.78rem;
  font-weight: 600; cursor: pointer; border: 1.5px solid transparent; transition: all 0.2s;
}
.cookie-btn--reject { background: transparent; border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); }
.cookie-btn--reject:hover { border-color: rgba(255,255,255,0.4); color: var(--cream); }
.cookie-btn--accept { background: var(--red); color: var(--cream); border-color: var(--red); }
.cookie-btn--accept:hover { background: var(--red-d); border-color: var(--red-d); }

/* ── MAGNETIC BUTTONS ────────────────────── */
.btn-solid, .btn-ghost {
  will-change: transform;
  display: inline-block;
}

/* ── STEP NUMBER SCRAMBLE ────────────────── */
.step-num {
  font-family: var(--ff-head); font-size: 3rem; font-weight: 900;
  color: rgba(10,10,10,0.06); line-height: 1; margin-bottom: 1.25rem;
  letter-spacing: -0.03em; transition: color 0.2s;
}
.step:hover .step-num { color: rgba(212,43,43,0.12); }

/* ── COUNTER ─────────────────────────────── */
.stat-num { transition: none; }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PROBLEM SECTION ────────────────────── */
.problem {
  background: var(--black); color: var(--cream);
  padding: clamp(7rem, 13vw, 14rem) var(--pad);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.problem-inner { max-width: var(--max); margin-inline: auto; }
.problem-inner .section-meta .section-num,
.problem-inner .section-tag { color: rgba(245,240,232,0.2); }
.problem-inner .section-rule-line { background: rgba(255,255,255,0.06); }

.problem-h2 {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(2.75rem, 6vw, 6rem);
  letter-spacing: -0.04em; line-height: 0.95;
  color: var(--cream); margin-bottom: 2.5rem;
}
.problem-h2 .cross {
  text-decoration: line-through;
  color: rgba(245,240,232,0.2);
}

.problem-body { max-width: 580px; margin-bottom: 4rem; }
.problem-body p {
  font-size: 1rem; line-height: 1.85;
  color: rgba(245,240,232,0.45); margin-bottom: 1rem;
}
.problem-body p strong { color: var(--cream); font-weight: 500; }

.problem-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 0; max-width: var(--max); border-top: 1px solid rgba(255,255,255,0.06);
}
.problem-stat {
  padding: 2.5rem 3rem 2.5rem 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  margin-right: 3rem;
}
.problem-stat:last-child { border-right: none; margin-right: 0; }
.problem-stat-num {
  font-family: var(--ff-head); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900; color: var(--red); letter-spacing: -0.03em; line-height: 1;
}
.problem-stat-label {
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,240,232,0.3); margin-top: 0.6rem; line-height: 1.6;
}
.problem-stat-source {
  font-size: 0.58rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(245,240,232,0.15); margin-top: 0.75rem;
}

/* ── FEATURES (expanded benefits) ──────── */
.features-intro {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--gray); line-height: 1.8; max-width: 540px;
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
}

/* ── APP PREVIEW ────────────────────────── */
.preview {
  padding: clamp(7rem, 13vw, 14rem) var(--pad);
  max-width: var(--max); margin-inline: auto;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.preview-phones {
  display: flex;
  gap: clamp(2rem, 6vw, 6rem);
  justify-content: center;
  align-items: flex-start;
  margin-top: 4rem;
}
.preview-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.phone {
  width: clamp(160px, 20vw, 220px);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(10,10,10,0.18);
}
.phone--dark { background: #141414; border: 2px solid #2a2a2a; }
.phone--light { background: #EDE8DF; border: 2px solid #d4cfc6; }
.phone-notch {
  width: 48px; height: 5px;
  border-radius: 3px;
  margin: 0 auto 10px;
}
.phone--dark .phone-notch { background: rgba(255,255,255,0.08); }
.phone--light .phone-notch { background: rgba(0,0,0,0.1); }
.preview-phone-label {
  font-size: 0.65rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gray);
}

/* ── PRICING ─────────────────────────────── */
.pricing-section {
  background: var(--black);
  color: var(--cream);
  padding: clamp(7rem, 13vw, 14rem) var(--pad);
}
.pricing-inner {
  max-width: var(--max); margin-inline: auto;
}
.pricing-section .section-num,
.pricing-section .section-tag { color: rgba(245,240,232,0.35); }
.pricing-section .section-rule-line { background: rgba(245,240,232,0.1); }
.pricing-section .section-h2 { color: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 680px;
  margin-top: 4rem;
}
.price-card {
  border: 1px solid rgba(245,240,232,0.1);
  padding: 2.5rem 2rem;
}
.price-card--featured { border-color: var(--red); }
.price-badge {
  font-size: 0.6rem; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 1.75rem;
}
.price-badge--red { color: var(--red); }
.price-amount {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 0.4rem;
}
.price-period {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.35);
  margin-bottom: 2rem;
}
.price-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.7rem;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.65);
}
.price-earlybird {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.08);
  font-size: 0.72rem; color: var(--red);
}

/* ── LEGAL PAGES ─────────────────────────── */
.legal-hero {
  padding: calc(68px + 36px + 5rem) var(--pad) 4rem;
  border-bottom: 1px solid var(--border);
}
.legal-hero-inner { max-width: var(--max); margin-inline: auto; }

.legal-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gray);
  margin-bottom: 2rem;
}
.legal-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--red); flex-shrink: 0; }

.legal-h1 {
  font-family: var(--ff-head); font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.92;
  margin-bottom: 1.75rem;
}

.legal-date { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-lt); }

.legal-body { padding: 5rem var(--pad) 8rem; }
.legal-body-inner { max-width: 720px; margin-inline: auto; }

.legal-back {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray); text-decoration: none;
  padding-bottom: 3px; border-bottom: 1px solid var(--border);
  margin-bottom: 4rem; transition: color 0.2s, border-color 0.2s;
}
.legal-back:hover { color: var(--black); border-color: var(--black); }

.legal-body h2 {
  font-family: var(--ff-head); font-size: 0.68rem;
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gray); margin: 3.5rem 0 1.25rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body h3 { font-family: var(--ff-head); font-size: 0.85rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.legal-body p, .legal-body address {
  font-size: 0.95rem; color: var(--gray); line-height: 1.85;
  font-style: normal; margin-bottom: 1rem;
}
.legal-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body li { font-size: 0.95rem; color: var(--gray); line-height: 1.85; margin-bottom: 0.3rem; }
.legal-body a { color: var(--black); text-underline-offset: 3px; }
.legal-body a:hover { color: var(--red); }
.legal-body strong { color: var(--black); font-weight: 600; }

.legal-notice {
  background: rgba(212,43,43,0.04); border-left: 2px solid var(--red);
  padding: 1.25rem 1.5rem; margin-bottom: 3rem;
}
.legal-notice p { margin-bottom: 0; color: var(--black); font-size: 0.9rem; font-weight: 500; }

/* ── CONTACT PAGE ────────────────────────── */
.contact-split {
  display: grid; grid-template-columns: 5fr 7fr; gap: 6rem;
  max-width: var(--max); margin-inline: auto;
}
.contact-info-block { margin-bottom: 2.5rem; }
.contact-info-label {
  display: block; font-size: 0.65rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gray-lt); margin-bottom: 0.35rem;
}
.contact-info-value {
  font-family: var(--ff-head); font-size: 1rem; font-weight: 700;
  color: var(--black); text-decoration: none; display: block;
  transition: color 0.2s;
}
.contact-info-value:hover { color: var(--red); }
.contact-info-value--plain { font-family: var(--ff-body); font-weight: 400; color: var(--gray); }

.cform { display: flex; flex-direction: column; gap: 1.25rem; }
.cform-group { display: flex; flex-direction: column; gap: 0.5rem; }
.cform-label { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }
.cform-input {
  padding: 14px 16px; background: transparent;
  border: 1px solid var(--border); color: var(--black);
  font-family: var(--ff-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.25s; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.cform-input::placeholder { color: var(--gray-lt); }
.cform-input:focus { border-color: var(--black); }
textarea.cform-input { resize: vertical; min-height: 120px; }
.cform-check-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.cform-checkbox { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; accent-color: var(--red); }
.cform-check-text { font-size: 0.78rem; color: var(--gray); line-height: 1.6; }
.cform-check-text a { color: var(--black); }
.cform-success {
  padding: 3rem; border: 1px solid var(--border); text-align: center; display: none;
}
.cform-success.is-visible { display: block; }
.cform-success h3 { font-family: var(--ff-head); font-size: 1.5rem; margin-bottom: 0.5rem; }
.cform-success p { font-size: 0.88rem; color: var(--gray); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 300px; padding: 3.5rem var(--pad); }
  .hero-stats { flex-direction: row; max-width: 100%; }
  .stat-divider { width: 1px; height: auto; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 720px) {
  /* Header – hide nav + CTA, show language toggle */
  .hdr-nav  { display: none; }
  .hdr-cta  { display: none; }
  .hdr-lang { display: flex; }

  /* Hero */
  .hero-left { padding: 3rem var(--pad) 2.5rem; }
  .hero-right { min-height: 260px; padding: 3rem var(--pad); }
  .hero-h1 { font-size: clamp(2.4rem, 10.5vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-stats { flex-direction: column; }
  .stat { padding: 1.5rem 0; }
  .stat-divider { width: 100%; height: 1px; }

  /* Section padding */
  .how, .howbiz, .benefits { padding-top: 5rem; padding-bottom: 5rem; }
  .problem { padding-top: 5rem; padding-bottom: 5rem; }

  /* Steps */
  .step { grid-template-columns: 3rem 1px 1fr; gap: 0 1.25rem; padding: 2rem 0; }
  .step-num { font-size: 2.5rem; }
  .step-arrow { display: none; }
  .step-title { font-size: 1.15rem; }

  /* Viral strip */
  .viral-strip { padding: 1.5rem var(--pad); gap: 1rem; }
  .viral-icon { font-size: 1.4rem; }
  .viral-title { font-size: 0.95rem; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 200px; }

  /* Problem */
  .problem-h2 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .problem-stats { grid-template-columns: 1fr; }
  .problem-stat { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 2rem; }
  .problem-stat:last-child { border-bottom: none; }

  /* App Preview */
  .preview-phones { gap: 2rem; }
  .phone { width: clamp(140px, 38vw, 180px); }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .preview { padding-top: 5rem; padding-bottom: 5rem; }
  .pricing-section { padding-top: 5rem; padding-bottom: 5rem; }

  /* Form */
  .wform-row { grid-template-columns: 1fr; }

  /* Waitlist */
  .waitlist { padding-top: 5rem; padding-bottom: 5rem; }

  /* Footer */
  .ftr-inner { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }

  /* Legal / Contact */
  .legal-h1 { font-size: clamp(2.75rem, 10vw, 5rem); }
  .contact-split { grid-template-columns: 1fr; gap: 3.5rem; }
}

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
