/* =========================================================
   Reelio Studio, premium dark-luxury waitlist landing
   RTL-first (Hebrew) with EN/LTR support
   ========================================================= */

:root {
  /* Ink / surfaces */
  --ink: #0a0806;
  --ink-2: #0e0a06;
  --ink-soft: #14100a;
  --ink-raise: oklch(0.255 0.016 72); /* warm charcoal, one step up from --ink for section rhythm */
  --panel: rgb(255 248 237 / 0.045);
  --panel-2: rgb(255 248 237 / 0.072);
  --panel-3: rgb(255 248 237 / 0.10);

  /* Cream text */
  --cream: #f9f3e9;
  --cream-dim: rgb(249 243 233 / 0.66);
  --cream-faint: rgb(249 243 233 / 0.42);

  /* Gold */
  --gold: #e3b878;
  --gold-soft: #f0cf94;
  --gold-deep: #b07d33;
  --gold-grad: linear-gradient(135deg, #f7d59a 0%, #e3b878 44%, #b07d33 100%);
  --gold-grad-soft: linear-gradient(135deg, #f7d59a, #d9a85a);

  /* Lines */
  --line: rgb(227 184 120 / 0.16);
  --line-strong: rgb(227 184 120 / 0.30);
  --line-soft: rgb(255 248 237 / 0.08);

  /* Light sections */
  --paper: #f4ede0;
  --paper-2: #ebe1cf;
  --ink-text: #1a140c;
  --ink-text-dim: rgb(26 20 12 / 0.74);
  --line-ink: rgb(26 20 12 / 0.12);

  /* Shadows */
  --shadow-card: 0 30px 90px rgb(0 0 0 / 0.45);
  --shadow-float: 0 24px 70px rgb(0 0 0 / 0.5);
  --shadow-gold: 0 20px 50px rgb(176 125 51 / 0.28);
  --shadow-light: 0 30px 80px rgb(26 20 12 / 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);

  --maxw: 1240px;
  color-scheme: dark;
  font-family: Assistant, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Assistant, "Segoe UI", Arial, sans-serif;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[dir="ltr"] { direction: ltr; text-align: left; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
p, h1, h2, h3, h4 { margin: 0; }
p { line-height: 1.7; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: var(--ink); }

.text-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease),
    background-color 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease);
}
.btn-gold {
  color: #1a1006;
  background: var(--gold-grad);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 26px 60px rgb(176 125 51 / 0.4); }
.btn-glass {
  color: var(--cream);
  border-color: var(--line-strong);
  background: var(--panel);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { transform: translateY(-3px); background: var(--panel-2); border-color: var(--gold); }
.btn-quiet {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.95rem;
  color: var(--cream);
  border-color: var(--line);
  background: var(--panel);
}
.btn-quiet:hover { border-color: var(--gold); color: var(--gold-soft); }

/* ============================ Header ============================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgb(10 8 6 / 0.55);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(22px) saturate(140%);
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}
.site-header.scrolled { background: rgb(10 8 6 / 0.86); border-color: var(--line); }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 124px; height: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-dim);
}
.header-nav a { position: relative; transition: color 200ms var(--ease); }
.header-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transition: transform 240ms var(--ease);
}
.header-nav a:hover { color: var(--cream); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}
.lang-toggle button {
  min-width: 38px;
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cream-dim);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 200ms, background 200ms;
}
.lang-toggle button.active { color: #1a1006; background: var(--gold-grad); }

/* ============================ Kicker ============================ */
.kicker {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker-dark { color: var(--gold-deep); }
.kicker-hook {
  color: var(--gold-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}
.kicker-hook::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-grad);
  margin-inline-end: 11px;
  box-shadow: 0 0 0 4px rgb(227 184 120 / 0.16);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* ============================ Hero ============================ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: clamp(110px, 14vh, 156px) clamp(18px, 5vw, 80px) clamp(48px, 7vh, 80px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(60% 50% at 80% 8%, rgb(227 184 120 / 0.22), transparent 70%),
    radial-gradient(50% 50% at 12% 92%, rgb(176 125 51 / 0.16), transparent 70%),
    linear-gradient(180deg, #0c0906, #0a0806 60%, #0c0a07);
}
.grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.022) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 50% 30%, #000 30%, transparent 88%);
}
.hero-glow {
  position: absolute;
  z-index: -2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  background: radial-gradient(circle, rgb(227 184 120 / 0.35), transparent 70%);
  inset-block-start: -120px;
  inset-inline-end: -60px;
  animation: glow-float 9s ease-in-out infinite;
}
@keyframes glow-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(40px); } }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: calc(100svh - 220px);
}
.hero-copy { position: relative; z-index: 3; min-width: 0; }
.hero h1 {
  margin-top: 22px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero-subtitle {
  max-width: 560px;
  margin-top: 22px;
  color: var(--cream-dim);
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-weight: 300;
  line-height: 1.55;
}
.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 13px 32px;
  width: fit-content;
  max-width: 100%;
  margin: 20px auto 0;
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 600;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
}
.hero-bullets li::before {
  content: "✕";
  flex: none;
  color: var(--gold-soft);
  font-size: 0.78em;
  font-weight: 800;
  opacity: 0.85;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.hero-actions .btn { flex: 1 1 240px; max-width: 360px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: var(--cream-faint);
  font-size: 0.94rem;
}
.avatar-row { display: inline-flex; }
.avatar-row span {
  width: 34px;
  height: 34px;
  margin-inline-start: -10px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background-size: cover;
  background-position: center;
}
.avatar-row span:first-child { margin-inline-start: 0; }

/* ---- Hero stage (shared) ---- */
.hero-stage { position: relative; width: 100%; min-width: 0; min-height: 560px; }
.hero-variant { display: none; }
body[data-hero="a"] .hero-variant-a,
body[data-hero="b"] .hero-variant-b,
body[data-hero="c"] .hero-variant-c { display: block; }

.glass-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel-2);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}
.framed-shot {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  background: #f7f2e9;
}
.gold-frame {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(150deg, rgb(247 213 154 / 0.7), rgb(176 125 51 / 0.35) 50%, rgb(247 213 154 / 0.5));
  box-shadow: var(--shadow-float);
}
.float-anim { animation: float-soft 6s ease-in-out infinite; }
@keyframes float-soft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.phone {
  width: 100%;
  border-radius: 30px;
  background: #060504;
  overflow: hidden;
}
.phone video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.phone-cap {
  position: absolute;
  inset-inline: 14px;
  bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 16px;
  background: rgb(8 6 4 / 0.6);
  backdrop-filter: blur(10px);
  text-align: center;
}
.phone-cap span {
  display: block;
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.phone-cap strong { display: block; margin-top: 5px; font-size: 0.92rem; line-height: 1.25; }

.stat-chip {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
}
.stat-chip b { display: block; font-size: 1.7rem; font-weight: 800; color: var(--gold-soft); line-height: 1; }
.stat-chip span { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--cream-dim); }

/* Variant A, floating console */
.hero-variant-a .console-card { position: absolute; inset-block-start: 40px; inset-inline-end: 0; width: min(640px, 86%); }
.hero-variant-a .console-card img { width: 100%; height: 400px; object-fit: cover; object-position: top center; }
.hero-variant-a .ai-panel {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 290px;
  padding: 20px;
  background: rgb(14 10 6 / 0.72);
  backdrop-filter: blur(16px);
}
.hero-variant-a .ai-panel .panel-label {
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-variant-a .ai-panel strong { display: block; margin-top: 10px; font-size: 1.2rem; line-height: 1.25; }
.render-bar { height: 6px; margin-top: 16px; border-radius: 999px; background: rgb(255 248 237 / 0.14); overflow: hidden; }
.render-bar i { display: block; width: 78%; height: 100%; border-radius: inherit; background: var(--gold-grad); animation: render 2.8s var(--ease) infinite; }
@keyframes render { 0% { width: 12%; } 70% { width: 92%; } 100% { width: 12%; } }
.render-status { display: block; margin-top: 9px; color: var(--cream-dim); font-family: "JetBrains Mono", monospace; font-size: 0.68rem; }
.hero-variant-a .phone-wrap { position: absolute; inset-block-end: 0; inset-inline-start: 24px; width: 210px; }

/* Variant B, phone forward */
.hero-variant-b { position: relative; height: 100%; min-height: 560px; }
.hero-variant-b .phone-wrap { position: relative; width: min(290px, 70%); margin: 0 auto; }
.hero-variant-b .chip-tl { inset-block-start: 30px; inset-inline-start: 0; }
.hero-variant-b .chip-br { inset-block-end: 40px; inset-inline-end: 0; }
.hero-variant-b .behind {
  position: absolute;
  inset-block-start: 60px;
  inset-inline-end: 50%;
  transform: translateX(50%);
  width: min(560px, 92%);
  z-index: -1;
  opacity: 0.5;
  filter: saturate(0.9);
}
.hero-variant-b .behind img { width: 100%; height: 320px; object-fit: cover; }

/* Variant C, before/after diptych */
.hero-variant-c { display: none; }
body[data-hero="c"] .hero-variant-c {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}
.diptych-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
}
.diptych-photos img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; }
.diptych-label {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-start: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgb(8 6 4 / 0.7);
  color: var(--cream-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.diptych-side { position: relative; }
.transform-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #1a1006;
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
}
body[dir="ltr"] .transform-arrow { transform: scaleX(-1); }

/* Hero switcher */
.hero-switch {
  position: fixed;
  z-index: 90;
  inset-block-end: 20px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(14 10 6 / 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-float);
}
body[dir="ltr"] .hero-switch { transform: translateX(-50%); }
.hero-switch .hs-label {
  color: var(--cream-faint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-switch .hs-pills { display: flex; gap: 4px; }
.hero-switch button {
  width: 34px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--cream-dim);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.hero-switch button.active { background: var(--gold-grad); color: #1a1006; }

/* ============================ Sections ============================ */
.section { padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 80px); position: relative; }
.dark-section { background: var(--ink); }
.light-section { background: var(--paper); color: var(--ink-text); }

/* Section rhythm: alternating warm-dark tone + subtle diagonal seam between sections */
.dark-section.dark-raise { background: var(--ink-raise); }
.section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 128%;
  height: 1px;
  transform: translateX(-50%) rotate(-0.6deg);
  transform-origin: center;
  background: linear-gradient(90deg, transparent 0%, var(--line-strong) 26%, var(--line-strong) 74%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}
.light-section::before {
  background: linear-gradient(90deg, transparent 0%, var(--line-ink) 26%, var(--line-ink) 74%, transparent 100%);
}
.section-head { max-width: 920px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.section-head p.lead { max-width: 680px; margin: 22px auto 0; color: var(--cream-dim); font-size: 1.14rem; }
.light-section .section-head p.lead { color: var(--ink-text-dim); }
.section-head.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  max-width: var(--maxw);
  text-align: start;
}
.section-head.split p.lead { margin: 0; }

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.problem-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: transform 360ms var(--ease), border-color 360ms var(--ease);
}
.problem-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.problem-card .num {
  font-family: "JetBrains Mono", monospace;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}
.problem-card h3 { margin-top: 18px; font-size: 1.28rem; font-weight: 700; }
.problem-card p { margin-top: 10px; color: var(--cream-dim); font-size: 1rem; }

/* How it works (light) */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.flow-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line-ink);
  border-radius: 20px;
  background: #fffaf1;
  box-shadow: 0 18px 50px rgb(26 20 12 / 0.07);
  transition: transform 360ms var(--ease);
}
.flow-card:hover { transform: translateY(-5px); }
.flow-step {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gold-grad);
  color: #1a1006;
  font-weight: 800;
  font-size: 1.2rem;
}
.flow-card h3 { margin-top: 18px; font-size: 1.24rem; font-weight: 700; color: var(--ink-text); }
.flow-card p { margin-top: 10px; color: var(--ink-text-dim); }
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 900px;
  margin: 36px auto 0;
  padding: 22px 26px;
  border: 1px solid var(--line-ink);
  border-radius: 20px;
  background: #fffaf1;
  box-shadow: var(--shadow-light);
}
.inline-cta p { font-weight: 800; font-size: 1.1rem; color: var(--ink-text); }

/* Demo before/after */
.demo-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--gold);
}
.card-topline .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; margin-inline-start: 7px; }
.before-card, .after-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-2);
}
.before-card .pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.before-card .pgrid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; }
.after-card { display: flex; flex-direction: column; align-items: center; }
.after-card video {
  width: auto;
  height: clamp(400px, 56vh, 560px);
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 26px;
  background: #060504;
  box-shadow: var(--shadow-float);
}
.export-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; width: 100%; margin-top: 18px; }
.export-grid span {
  padding: 12px 6px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--panel);
  color: var(--cream-dim);
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Product peek */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  transition: transform 360ms var(--ease), border-color 360ms var(--ease);
}
.product-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.product-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top center; }
.product-card .pc-body { padding: 22px 22px 26px; }
.product-card h3 { font-size: 1.2rem; font-weight: 700; }
.product-card p { margin-top: 9px; color: var(--cream-dim); font-size: 0.98rem; }

/* Calculator (light) */
.calc-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line-ink);
  border-radius: 26px;
  background: #fffaf1;
  box-shadow: var(--shadow-light);
}
.calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-inputs label { display: grid; gap: 10px; font-weight: 800; color: var(--ink-text-dim); }
.calc-inputs input {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid var(--line-ink);
  border-radius: 14px;
  background: #fff;
  color: var(--ink-text);
  font-size: 1.3rem;
  font-weight: 800;
  outline: none;
  transition: border-color 200ms;
}
.calc-inputs input:focus { border-color: var(--gold-deep); }
.calc-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.calc-results article {
  padding: 24px 18px;
  border: 1px solid rgb(26 20 12 / 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf1, #f1e6d3);
  text-align: center;
}
.calc-results strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--ink-text);
}
.calc-results span { display: block; margin-top: 12px; color: var(--ink-text-dim); font-weight: 700; font-size: 0.96rem; }
.calc-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgb(176 125 51 / 0.3);
  border-radius: 16px;
  background: rgb(227 184 120 / 0.12);
  color: var(--ink-text-dim);
}
.calc-note strong { color: var(--gold-deep); }
.calc-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; }
.calc-cta p { font-weight: 800; color: var(--ink-text-dim); }

/* Waitlist */
.waitlist-section { background:
  radial-gradient(50% 60% at 18% 12%, rgb(227 184 120 / 0.18), transparent 70%),
  radial-gradient(50% 60% at 90% 90%, rgb(176 125 51 / 0.14), transparent 70%),
  var(--ink-raise); }
.waitlist-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel-2);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}
.waitlist-copy h2 { margin-top: 18px; font-size: clamp(2rem, 3.6vw, 3.4rem); font-weight: 800; line-height: 1.05; }
.waitlist-copy p { margin-top: 18px; color: var(--cream-dim); font-size: 1.1rem; }
.waitlist-perks { display: grid; gap: 10px; margin-top: 24px; }
.waitlist-perks li { display: flex; align-items: center; gap: 10px; color: rgb(249 243 233 / 0.86); font-weight: 600; }
.waitlist-perks li::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-grad); color: #1a1006; font-size: 0.8rem; font-weight: 900; flex: none; }

.waitlist-form[hidden], .referral-panel[hidden] { display: none !important; }
.waitlist-form { display: grid; gap: 14px; }
.waitlist-form label { display: grid; gap: 8px; font-weight: 700; font-size: 0.95rem; color: var(--cream-dim); }
.waitlist-form input {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: rgb(255 248 237 / 0.04);
  color: var(--cream);
  font-size: 1.05rem;
  text-align: start;
  direction: inherit;
  outline: none;
  transition: border-color 200ms, background 200ms;
}
.waitlist-form input::placeholder { color: var(--cream-faint); }
.waitlist-form input:focus { border-color: var(--gold); background: rgb(255 248 237 / 0.08); }
.waitlist-form .btn-gold { margin-top: 6px; }
.form-note { margin-top: 4px; color: var(--cream-faint); font-size: 0.88rem; text-align: center; }
.form-note--error { color: #e88a8a; }

.referral-panel {
  display: grid;
  gap: 14px;
  padding: 8px;
  text-align: center;
}
.referral-panel[hidden] { display: none; }
.referral-panel .success-mark {
  width: 64px; height: 64px; margin: 0 auto;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #1a1006; font-size: 1.8rem; font-weight: 900;
}
.referral-panel .success-title { font-size: 1.5rem; font-weight: 800; }
.referral-panel p { color: var(--cream-dim); }
.referral-link { display: flex; gap: 8px; }
.referral-link input { flex: 1; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: rgb(255 248 237 / 0.04); color: var(--cream); }
.referral-link button { padding: 0 18px; border: 0; border-radius: 12px; background: var(--gold-grad); color: #1a1006; font-weight: 800; cursor: pointer; }
.share-row { display: flex; justify-content: center; gap: 10px; }
.share-row a { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--cream-dim); font-weight: 700; font-size: 0.9rem; transition: border-color 200ms, color 200ms; }
.share-row a:hover { border-color: var(--gold); color: var(--gold-soft); }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 240ms;
}
.faq-list details[open] { border-color: var(--line-strong); background: var(--panel-2); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  font-size: 1.14rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform 240ms; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 24px 22px; color: var(--cream-dim); }

/* Final CTA */
.final-cta {
  position: relative;
  isolation: isolate;
  padding: clamp(80px, 12vw, 150px) clamp(18px, 5vw, 80px);
  text-align: center;
  overflow: hidden;
}
.final-cta .hero-bg { background:
  radial-gradient(60% 70% at 50% 0%, rgb(227 184 120 / 0.2), transparent 70%),
  linear-gradient(180deg, #0c0a07, #0a0806); }
.final-cta .kicker { justify-content: center; }
.final-cta h2 { max-width: 900px; margin: 18px auto 0; font-size: clamp(2.2rem, 4.2vw, 4rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; text-wrap: balance; }
.final-cta p.lead { max-width: 580px; margin: 22px auto 30px; color: var(--cream-dim); font-size: 1.14rem; }

/* Footer */
.site-footer {
  padding: 40px clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap; }
.footer-inner img { width: 110px; }
.footer-inner p { color: var(--cream-faint); font-size: 0.9rem; }

/* ============================ Reveal ============================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================ Responsive ============================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
  .hero-stage { min-height: 480px; }
  .section-head.split { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .problem-grid, .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { grid-template-columns: 1fr; }
  .waitlist-shell { grid-template-columns: 1fr; gap: 28px; }
  .header-nav { display: none; }
}
@media (max-width: 640px) {
  .hero { padding-top: 104px; }
  .hero h1 { font-size: clamp(2.3rem, 9vw, 3rem); }
  .hero-bullets { gap: 12px 24px; }
  .problem-grid, .flow-grid, .product-grid { grid-template-columns: 1fr; }
  .calc-inputs, .calc-results { grid-template-columns: 1fr; }
  .calc-cta, .inline-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .calc-cta .btn, .inline-cta .btn { width: 100%; }
  .export-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-stage { min-height: 420px; }
  .hero-switch { inset-block-end: 12px; padding: 6px 8px; }
  .hero-switch .hs-label { display: none; }
  body[data-hero="c"] .hero-variant-c { grid-template-columns: 1fr; }
  .transform-arrow { transform: rotate(90deg); margin: 0 auto; }
  body[dir="ltr"] .transform-arrow { transform: rotate(90deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Type scale normalization
   Besides the main titles (h1 / h2 / big stat numbers),
   the whole page uses just 3 sizes: lead, base, small.
   ========================================================= */
:root {
  --fs-lead: 1.2rem;   /* eyebrows-as-hooks, sub-headings, leads, sub-titles */
  --fs-base: 1.04rem;  /* body copy, inputs, labels */
  --fs-sm: 0.88rem;    /* tiny meta: channel chips, notes, captions */
}

/* eyebrow labels — were too small */
.kicker { font-size: var(--fs-lead); letter-spacing: 0.1em; }
.kicker-hook { font-size: var(--fs-lead); letter-spacing: 0.02em; }

/* leads, sub-headings, card titles */
.hero-subtitle,
.section-head p.lead,
.waitlist-copy p,
.faq-list summary,
.inline-cta p,
.calc-cta p,
.problem-card h3,
.flow-card h3,
.product-card h3,
.product-card .pc-body h3,
.phone-cap strong,
.card-topline { font-size: var(--fs-lead); }

/* base body copy */
.hero-bullets,
.problem-card p,
.flow-card p,
.product-card p,
.faq-list details p,
.waitlist-perks li,
.waitlist-form input,
.waitlist-form label,
.calc-results span,
.calc-inputs label,
.calc-note,
.hero-trust { font-size: var(--fs-base); }

/* tiny meta */
.export-grid span,
.form-note,
.footer-inner p,
.phone-cap span,
.diptych-label { font-size: var(--fs-sm); }

/* =========================================================
   Direct-response sections (added)
   ========================================================= */

/* Offer microcopy + centered CTA */
.offer-line {
  margin-top: 18px;
  color: var(--gold-soft);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.final-cta .offer-line { margin: 22px auto 0; }
.center-cta { margin-top: 40px; text-align: center; }
.micro-note { margin: 12px auto 0; max-width: 620px; text-align: center; color: var(--cream-faint); font-size: var(--fs-sm); }

/* Hard-truth / manifesto statement blocks */
.statement-list {
  counter-reset: signal;
  max-width: 560px;
  margin: 40px auto 0;
  border-block: 1px solid var(--line-soft);
}
.statement-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 8px;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--cream);
  transition: color 260ms var(--ease);
}
.statement-list li:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
.statement-list li:hover { color: var(--gold-soft); }
.statement-list li::after {
  counter-increment: signal;
  content: counter(signal, decimal-leading-zero);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: transparent;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  flex: none;
}
.statement-quote {
  max-width: 820px;
  margin: 30px auto 0;
  text-align: center;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--gold-soft);
  text-wrap: balance;
}

/* 5-second test / two-types — versus comparison */
.versus-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.versus-grid.two { grid-template-columns: 1fr 1fr; max-width: 880px; }
.versus-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel-2);
}
.versus-card.lose { opacity: 0.82; }
.versus-card.win {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgb(227 184 120 / 0.1), var(--panel-2));
  box-shadow: var(--shadow-gold);
}
.versus-tag {
  align-self: flex-start;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgb(8 6 4 / 0.5);
  color: var(--gold);
  font-size: var(--fs-base);
  font-weight: 800;
  letter-spacing: 0.01em;
}
.versus-card.win .versus-tag { color: var(--gold-soft); background: rgb(227 184 120 / 0.16); }
.versus-card > p { font-size: var(--fs-lead); font-weight: 700; line-height: 1.4; color: var(--cream); }
.versus-card ul { display: grid; gap: 10px; }
.versus-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--cream-dim);
  font-weight: 600;
}
.versus-card li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cream-faint);
  flex: none;
}
.versus-card.win li { color: rgb(249 243 233 / 0.9); }
.versus-card.win li::before { background: var(--gold-grad); }
.versus-vs {
  align-self: center;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgb(14 10 6 / 0.7);
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 1rem;
}

/* Trust chain */
.trust-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  max-width: 780px;
  margin: 40px auto 0;
}
.trust-chain b {
  padding: 11px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--gold-soft);
  font-weight: 800;
  font-size: var(--fs-base);
}
.trust-chain i { color: var(--gold); font-style: normal; font-size: 1.2rem; font-weight: 700; }

/* Why-different block (light section) */
.why-block { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.why-lead { font-size: var(--fs-lead); font-weight: 800; color: var(--ink-text); }
.why-points {
  display: grid;
  gap: 9px;
  max-width: 560px;
  margin: 18px auto;
  color: var(--ink-text-dim);
  font-size: var(--fs-base);
}
.why-points li { display: flex; align-items: center; justify-content: center; gap: 10px; }
.why-points li::before {
  content: "×";
  display: grid; place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgb(26 20 12 / 0.08);
  color: var(--ink-text-dim);
  font-size: 0.8rem; font-weight: 800;
  flex: none;
}
.why-result { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; color: var(--gold-deep); }

/* Product peek — 4 columns */
.product-grid.four { grid-template-columns: repeat(4, 1fr); }

/* The-day timeline */
.timeline { max-width: 720px; margin: 0 auto; padding: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline-time {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  text-align: start;
  padding-top: 1px;
}
.timeline-text {
  position: relative;
  padding: 0 26px 30px;
  border-inline-start: 2px solid var(--line);
  color: var(--cream);
  font-size: var(--fs-lead);
  font-weight: 600;
  line-height: 1.45;
}
.timeline-item:last-child .timeline-text { border-color: transparent; padding-bottom: 0; }
.timeline-text::before {
  content: "";
  position: absolute;
  inset-inline-start: -8px;
  top: 4px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 0 4px rgb(227 184 120 / 0.16);
}

/* Cost of inaction */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.cost-fig {
  padding: 30px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  text-align: center;
}
.cost-fig b {
  display: block;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold-soft);
}
.cost-fig span { display: block; margin-top: 12px; color: var(--cream-dim); font-size: var(--fs-base); }
.cost-foot {
  max-width: 760px;
  margin: 30px auto 0;
  text-align: center;
  font-size: var(--fs-lead);
  font-weight: 800;
  color: var(--cream);
  text-wrap: balance;
}

/* Manifesto */
.manifesto-intro { max-width: 680px; margin: 0 auto; text-align: center; color: var(--cream-dim); font-size: var(--fs-lead); }
.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  max-width: 860px;
  margin: 30px auto 0;
}
.manifesto-tags span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.manifesto-tags span:not(:last-child)::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* Responsive — DR sections */
@media (max-width: 1024px) {
  .product-grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .versus-grid, .versus-grid.two { grid-template-columns: 1fr; }
  .versus-vs { justify-self: center; transform: rotate(90deg); }
  .cost-grid { grid-template-columns: 1fr; }
  .product-grid.four { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 64px 1fr; gap: 12px; }
}

/* =========================================================
   Privacy / consent (Amendment 13) — checkbox, cookie banner,
   footer legal links, legal pages
   ========================================================= */

/* Consent checkbox in the waitlist form */
.waitlist-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 4px;
  font-weight: 500;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--cream-dim);
  cursor: pointer;
}
.waitlist-form .consent input[type="checkbox"] {
  flex: none;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  padding: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  background: rgb(255 248 237 / 0.04);
  accent-color: var(--gold-deep);
  cursor: pointer;
}
.waitlist-form .consent input[type="checkbox"]:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.waitlist-form .consent a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.waitlist-form .consent a:hover { color: var(--gold); }

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  inset-inline: clamp(12px, 4vw, 28px);
  inset-block-end: clamp(12px, 4vw, 24px);
  z-index: 120;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 26px;
  max-width: 760px;
  margin-inline: auto;
  padding: 18px clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(14 10 6 / 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow-float);
}
.cookie-banner[hidden] { display: none; }
.cookie-text { flex: 1 1 300px; margin: 0; color: var(--cream-dim); font-size: var(--fs-sm); line-height: 1.6; }
.cookie-text a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie-banner .btn { min-height: 44px; padding: 0 22px; font-size: 0.95rem; }

/* Footer legal links */
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--cream-faint); font-size: var(--fs-sm); transition: color 200ms var(--ease); }
.footer-links a:hover { color: var(--gold-soft); }

/* Legal pages (privacy.html / terms.html) */
.legal-page { min-height: 100svh; padding: clamp(96px, 12vh, 140px) clamp(18px, 5vw, 40px) 80px; }
.legal {
  max-width: 820px;
  margin: 0 auto;
  color: var(--cream-dim);
}
.legal .legal-gender { color: var(--cream-faint); font-size: var(--fs-sm); margin-bottom: 14px; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--cream); letter-spacing: -0.01em; }
.legal .legal-meta { margin-top: 10px; color: var(--cream-faint); font-size: var(--fs-sm); }
.legal h2 { margin-top: 40px; font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 800; color: var(--cream); }
.legal h3 { margin-top: 24px; font-size: var(--fs-lead); font-weight: 800; color: var(--gold-soft); }
.legal p { margin-top: 12px; font-size: var(--fs-base); line-height: 1.8; }
.legal ul { margin: 12px 0 0; padding-inline-start: 22px; list-style: disc; display: grid; gap: 8px; }
.legal li { font-size: var(--fs-base); line-height: 1.7; }
.legal a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.legal .legal-provisions { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 44px;
  color: var(--gold-soft);
  font-weight: 700;
}
.legal-back:hover { color: var(--gold); }
.legal-topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  display: flex;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgb(10 8 6 / 0.7);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(22px) saturate(140%);
}
.legal-topbar img { width: 124px; height: auto; }

/* =========================================================
   Single-column layout (webview mirrors the phone view)
   The whole page stacks into one centered column. Row widths
   are inspired by the Black Card AI sales page (~720px).
   Appended last so it overrides the multi-column desktop grids
   at every width, while the true-mobile tuning below 640px stays.
   ========================================================= */
:root {
  --col: 720px;
  --maxw: var(--col); /* every var(--maxw) container collapses to the column */
}

/* ---- Force every top-level content grid into one column ---- */
.hero-inner,
.section-head.split,
.problem-grid,
.flow-grid,
.product-grid,
.product-grid.four,
.demo-grid,
.versus-grid,
.versus-grid.two,
.cost-grid,
.calc-inputs,
.calc-results,
.waitlist-shell {
  grid-template-columns: 1fr;
}

/* ---- Pull the blocks that carry their own wider max-width down to the column ---- */
.section-head,
.versus-grid,
.versus-grid.two,
.cost-grid,
.calc-card,
.waitlist-shell,
.faq-list,
.inline-cta,
.why-block {
  max-width: var(--col);
}

/* ---- Hero: stack copy over the visual, no forced full-height centering ---- */
.hero-inner {
  min-height: 0;
  align-items: start;
  gap: clamp(36px, 6vw, 56px);
}
.hero-stage { min-height: 0; }

/* Before / after diptych stacks vertically, arrow points down,
   held at a phone-ish width so the "after" mockup doesn't blow up */
body[data-hero="c"] .hero-variant-c { grid-template-columns: 1fr; gap: 16px; }
.hero-variant-c { max-width: 400px; margin-inline: auto; }
.hero-variant-c .transform-arrow,
body[dir="ltr"] .hero-variant-c .transform-arrow { transform: rotate(90deg); margin-inline: auto; }

/* ---- Split heads stack heading over lead ---- */
.section-head.split { align-items: start; gap: 18px; }

/* ---- Comparison / CTA rows that were side-by-side now stack ---- */
.versus-vs { justify-self: center; transform: rotate(90deg); }
.calc-cta,
.inline-cta { flex-direction: column; align-items: stretch; text-align: center; }
.calc-cta .btn,
.inline-cta .btn { width: 100%; }

/* ---- Footer stays a tidy single row inside the column ---- */
.footer-inner { justify-content: center; text-align: center; }

/* =========================================================
   Center every text block (matches the reference's column)
   ========================================================= */
.hero-copy,
.section-head.split,
.section-head.split > div,
.problem-card,
.flow-card,
.product-card .pc-body,
.versus-card,
.calc-inputs label,
.calc-note,
.waitlist-copy,
.waitlist-form,
.faq-list details p {
  text-align: center;
}

/* Blocks whose max-width was pinned to the start edge → recenter */
.hero-subtitle,
.hero-bullets,
.section-head.split p.lead { margin-inline: auto; }

/* Flex rows → center their items instead of starting them */
.hero-actions,
.hero-trust,
.waitlist-perks li,
.versus-card li,
.faq-list summary { justify-content: center; }

/* Decorative badges centered inside their now-centered cards */
.flow-step { margin-inline: auto; }
.versus-tag { align-self: center; }

/* Inputs and consent read centered too */
.calc-inputs input,
.waitlist-form input { text-align: center; }
.waitlist-form .consent { justify-content: center; text-align: center; }

/* Hard-truth ledger: index number sits on the right of the text, right next to it */
.statement-list li { justify-content: center; gap: 12px; }
.statement-list li::after { order: -1; }

/* =========================================================
   Per-section overrides
   ========================================================= */

/* Calculator keeps its side-by-side columns (not the single stack) */
.calc-inputs { grid-template-columns: 1fr 1fr; }
.calc-results { grid-template-columns: repeat(3, 1fr); }
.calc-inputs label,
.calc-inputs input { text-align: start; }
.calc-cta { flex-direction: row; align-items: center; text-align: start; }
.calc-cta .btn { width: auto; }
@media (max-width: 640px) {
  .calc-inputs,
  .calc-results { grid-template-columns: 1fr; }
  .calc-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .calc-cta .btn { width: 100%; }
}

/* Comparison cards ("5-second test" / "two types"): bigger, centered copy */
.versus-tag { font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.versus-card > p { font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.35; }
.versus-card li { font-size: clamp(1.15rem, 2vw, 1.4rem); }

/* Trust chain: plain words joined by arrows — no pills */
.trust-chain { gap: 6px 16px; }
.trust-chain b {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}
.trust-chain i { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

/* Problem / founders cards: big index on the right, copy fills the left */
.problem-card {
  display: grid;
  grid-template-columns: 22% 1fr;
  align-items: center;
  column-gap: 20px;
  text-align: start;
}
.problem-card .num {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: center;
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1;
}
.problem-card h3 { grid-column: 2; grid-row: 1; margin-top: 0; }
.problem-card p { grid-column: 2; grid-row: 2; margin-top: 8px; }

/* 5-second comparison: clearer good-vs-bad read, tighter flow */
.versus-grid { gap: 10px; }
.versus-card.lose { opacity: 0.6; }
.versus-tag::before { margin-inline-end: 8px; font-weight: 900; }
.versus-card.lose .versus-tag::before { content: "✕"; color: var(--cream-faint); }
.versus-card.win .versus-tag::before { content: "✓"; color: var(--gold-soft); }
.versus-vs { margin-block: -2px; }

/* Cost figures: plain rows, label beside the number (no boxes) */
.cost-grid { gap: 0; max-width: 600px; }
.cost-fig {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  padding: 18px 8px;
  border: 0;
  border-radius: 0;
  background: none;
}
.cost-grid .cost-fig:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
.cost-fig b { display: inline; }
.cost-fig span { display: inline; margin-top: 0; }

/* Header removed — trim the hero top padding that cleared the old fixed bar */
.hero { padding-top: clamp(48px, 7vh, 88px); }
@media (max-width: 640px) { .hero { padding-top: 56px; } }

/* "How it works" flow cards: big step badge on the right, copy on the left */
.flow-card {
  display: grid;
  grid-template-columns: 22% 1fr;
  align-items: center;
  column-gap: 20px;
  text-align: start;
}
.flow-card .flow-step {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: center;
  width: clamp(56px, 9vw, 84px);
  height: clamp(56px, 9vw, 84px);
  border-radius: 18px;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
}
.flow-card h3 { grid-column: 2; grid-row: 1; margin-top: 0; }
.flow-card p { grid-column: 2; grid-row: 2; margin-top: 8px; }

/* Waitlist perks: show the three on one row */
.waitlist-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

/* Hero bullets on the narrowest phones: one column so no "בלי" item is ever
   squeezed or split. Appended last so it wins over the type-scale sizing above. */
@media (max-width: 380px) {
  .hero-bullets { grid-template-columns: 1fr; gap: 11px 0; font-size: 0.95rem; }
  .hero-bullets li { justify-content: center; }
}
