/* ============================================================
   ExitBase — shared stylesheet
   ============================================================ */

:root {
  --accent: #6B1F2A;
  --accent-hover: #8B2635;
  --bg: #F7F5F0;
  --bg-alt: #EDEAE3;
  --bg-alt-2: #E3DFD6;
  --ink: #211F1C;
  --ink-dark: #211F1C;
  --panel-dark: #211F1C;
  --panel-dark-2: #2A2724;
  --muted: #4A463F;
  --cream: #F7F5F0;
  --border: rgba(33, 31, 28, 0.08);
  --border-strong: rgba(33, 31, 28, 0.15);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  width: 100%;
  overflow-x: hidden;
}

a { color: inherit; }
a.text-link { color: var(--accent); }
a.text-link:hover { color: var(--accent-hover); }

button { font-family: var(--font-body); }

img, svg { display: block; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.wrap,
.inner {
  max-width: 1300px;
  margin: 0 auto;
}

/* ---------------- keyframes ---------------- */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vsl-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vsl-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  position: sticky;
  top: 0;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(8px);
  z-index: 50;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand img.brand-mark {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  padding: 12px 22px;
  font-size: 14px;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 16px 30px;
  font-size: 15px;
  border: 1px solid var(--border-strong);
}
.btn-lg {
  padding: 16px 30px;
  font-size: 15px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 88px 56px 96px;
  max-width: 1120px;
  margin: 0 auto;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
  max-width: 560px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.hero p.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 490px;
  margin: 0 0 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  border-top: 1px solid var(--border-strong);
  padding-top: 28px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--accent);
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}
.hero-globe-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-globe {
  width: 420px;
  height: 420px;
  max-width: 100%;
  aspect-ratio: 1;
  position: relative;
}
.hero-globe canvas {
  width: 100%;
  height: 100%;
  cursor: grab;
  opacity: 0;
  transition: opacity 0.8s ease;
  contain: layout paint size;
}
.hero-globe canvas.ready { opacity: 0.85; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--accent);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream);
  white-space: nowrap;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-item .dot { opacity: 0.5; }

/* ============================================================
   GENERIC SECTION PADDING
   ============================================================ */
.section { padding: 100px 56px; }
.section-tight { max-width: 1000px; margin: 0 auto; }
.section-wide { max-width: 1300px; margin: 0 auto; }
.section-narrow { max-width: 900px; margin: 0 auto; }
.section-copy { max-width: 860px; margin: 0 auto; }

.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  margin: 0 0 32px;
  max-width: 760px;
  letter-spacing: -0.01em;
}
.section p.body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 720px;
}

/* ---------------- Problem section ---------------- */
.problem { background: var(--bg-alt); }
.tax-compare {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}
.tax-card {
  background: var(--bg-alt-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.tax-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(33, 31, 28, 0.25);
}
.tax-rate {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.tax-card.featured .tax-rate { color: var(--cream); }
.tax-country {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
.tax-card.featured .tax-country { color: rgba(247, 245, 240, 0.9); }

.problem-rows { display: flex; flex-direction: column; gap: 0; }
.problem-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border-strong);
}
.problem-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.problem-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  max-width: 640px;
}

/* ---------------- Real reason (dark) ---------------- */
.real-reason {
  background: var(--panel-dark);
  text-align: center;
}
.real-reason .inner { max-width: 780px; margin: 0 auto; }
.real-reason h2 {
  color: var(--cream);
  font-size: 40px;
  line-height: 1.22;
  margin: 0 0 26px;
}
.real-reason p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.7);
  margin: 0;
}

/* ---------------- Mechanism / the week ---------------- */
.mechanism { background: var(--bg); }
.mechanism .inner { max-width: 1300px; margin: 0 auto; }
.mechanism p.body { max-width: 700px; margin-bottom: 56px; }

.day1-box {
  background: var(--panel-dark);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 40px;
}
.day1-box .eyebrow { margin-bottom: 24px; }
.day1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.day1-grid h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--cream);
  margin: 0 0 8px;
}
.day1-grid p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 245, 240, 0.65);
  margin: 0;
}
.day1-footnote {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(247, 245, 240, 0.5);
  margin: 28px 0 0;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.day-card {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 26px 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}
.day-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.day-rule { width: 28px; height: 1px; background: var(--accent); }
.day-text { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

.week-cta {
  margin-top: 40px;
  background: var(--accent);
  border-radius: 20px;
  padding: 36px 44px;
  text-align: center;
}
.week-cta p.headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--cream);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.week-cta p.body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.85);
  margin: 0 auto;
  max-width: 760px;
}
.week-cta .btn {
  display: inline-block;
  margin-top: 24px;
  background: var(--cream);
  color: var(--accent);
  padding: 15px 30px;
  font-size: 14px;
}

/* ---------------- The offer ---------------- */
.offer { background: var(--bg-alt); }
.offer h2 { margin-bottom: 24px; }
.offer p.body { margin-bottom: 48px; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}
.offer-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.offer-text { font-size: 15px; line-height: 1.6; color: var(--ink); margin: 0; }

/* ---------------- What you get ---------------- */
.modules { background: var(--bg); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module-card {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.module-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.module-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  margin: 0 0 14px;
}
.module-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------------- Proof ---------------- */
.proof { background: var(--panel-dark); }
.proof h2 { color: var(--cream); margin-bottom: 56px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.case-card {
  background: var(--panel-dark-2);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(247, 245, 240, 0.1);
}
.case-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.case-figures { display: flex; gap: 24px; margin-bottom: 18px; }
.case-before {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: rgba(247, 245, 240, 0.4);
}
.case-figure-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(247, 245, 240, 0.4);
  margin-top: 4px;
}
.case-arrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: rgba(247, 245, 240, 0.3);
  align-self: flex-start;
}
.case-after {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--cream);
}
.case-after + .case-figure-label { color: rgba(247, 245, 240, 0.5); }
.case-text { font-size: 14px; line-height: 1.6; color: rgba(247, 245, 240, 0.7); margin: 0; }

.story-card {
  background: var(--panel-dark-2);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(247, 245, 240, 0.1);
}
.story-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(247, 245, 240, 0.8);
  margin: 0;
  max-width: 900px;
}

/* ---------------- Who it's for ---------------- */
.who-for-section { background: var(--bg); }
.who-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.who-card {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
}
.who-card.dark { background: var(--panel-dark); border: none; }
.who-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 26px;
}
.who-card.dark h3 { color: var(--cream); }
.who-list { display: flex; flex-direction: column; gap: 18px; }
.who-item { display: flex; gap: 12px; align-items: flex-start; }
.who-dot {
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--accent); margin-top: 8px; flex-shrink: 0;
}
.who-card.dark .who-dot { background: rgba(247, 245, 240, 0.4); }
.who-item span.text { font-size: 15px; line-height: 1.55; color: var(--ink); }
.who-card.dark .who-item span.text { color: rgba(247, 245, 240, 0.8); }

/* ---------------- Stack the value ---------------- */
.value-stack { background: var(--bg-alt); }
.value-stack .section-narrow { text-align: center; }
.value-stack h2 { margin: 0 0 12px; text-align: center; font-size: 38px; }
.value-stack .sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 48px;
}
.value-box {
  background: var(--bg);
  border-radius: 20px;
  padding: 12px 40px;
  border: 1px solid var(--border);
  text-align: left;
}
.value-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.value-row:last-child { border-bottom: none; }
.value-check { font-family: var(--font-mono); font-size: 14px; color: var(--accent); }
.value-row span.text { font-size: 15px; color: var(--ink); }

/* ---------------- Pricing ---------------- */
.pricing { background: var(--bg); }
.pricing h2 { margin-bottom: 56px; }
.pricing .intro { margin: -36px 0 56px; max-width: 700px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tier-card {
  background: var(--bg);
  color: var(--ink);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-card.featured {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
  transform: scale(1.04);
}
.tier-badge {
  position: absolute;
  top: -14px; left: 32px;
  background: var(--panel-dark);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.tier-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 8px 0 6px;
}
.tier-subtitle {
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 22px;
}
.tier-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 4px;
}
.tier-price-note {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 28px;
}
.tier-rule { height: 1px; background: var(--border-strong); margin-bottom: 24px; }
.tier-card.featured .tier-rule { background: rgba(247, 245, 240, 0.2); }
.tier-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
  flex: 1;
}
.tier-feature { display: flex; gap: 10px; font-size: 14px; line-height: 1.4; }
.tier-feature .bullet { opacity: 0.6; }
.tier-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: var(--cream);
  margin-top: auto;
}
.tier-card.featured .tier-cta { background: var(--cream); color: var(--accent); }
.pricing-footnote {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 32px 0 0;
}

/* ---------------- Risk reversal ---------------- */
.risk { background: var(--bg-alt); padding: 90px 56px; }
.risk h2 {
  font-size: 34px;
  text-align: center;
  margin: 0 0 48px;
  max-width: none;
}
.risk .eyebrow { text-align: center; }
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.guarantee-item { text-align: center; }
.guarantee-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 10px;
}
.guarantee-item p { font-size: 13px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ---------------- FAQ ---------------- */
.faq { background: var(--bg); }
.faq h2 { margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border-strong); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  cursor: pointer;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
}
.faq-question span.q {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--ink);
}
.faq-symbol {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 700px;
  display: none;
  animation: faq-open 0.2s ease;
}
.faq-item.open .faq-answer { display: block; }

/* ---------------- Apply ---------------- */
.apply {
  padding: 110px 56px;
  background: var(--panel-dark);
  position: relative;
  overflow: hidden;
}
.apply-watermark {
  position: absolute;
  right: -30px;
  bottom: -70px;
  opacity: 0.08;
  pointer-events: none;
}
.apply-watermark img { height: 560px; width: auto; display: block; }
.apply-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
}
.apply-copy .eyebrow { margin-bottom: 20px; }
.apply-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: var(--cream);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  max-width: none;
}
.apply-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(247, 245, 240, 0.7);
  max-width: 460px;
  margin: 0 0 32px;
}
.apply-copy .fine {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.5);
}

.apply-form {
  background: var(--bg);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  font-size: 15px;
  font-family: var(--font-body);
  background: #FFFFFF;
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 12px;
}
.form-submit {
  margin-top: 8px;
  background: var(--accent);
  color: var(--cream);
  border: none;
  padding: 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.form-submit:hover { background: var(--accent-hover); }
.form-fine {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ---------------- Footer ---------------- */
.site-footer {
  padding: 56px;
  background: var(--panel-dark);
  border-top: 1px solid rgba(247, 245, 240, 0.1);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-brand-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--cream); }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-nav a { color: rgba(247, 245, 240, 0.6); text-decoration: none; font-size: 13px; }
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0;
  margin-bottom: 24px;
  border-top: 1px solid rgba(247, 245, 240, 0.1);
  border-bottom: 1px solid rgba(247, 245, 240, 0.1);
}
.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-family: var(--font-mono);
}
.footer-legal { font-size: 12px; line-height: 1.6; color: rgba(247, 245, 240, 0.4); margin: 0; max-width: 900px; }

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 0 0 20px;
}
.footer-legal-links a {
  color: rgba(247, 245, 240, 0.55);
  text-decoration: none;
  font-size: 12px;
  font-family: var(--font-mono);
}
.footer-legal-links a:hover { color: rgba(247, 245, 240, 0.85); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  padding: 76px 40px 90px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  max-width: 640px;
}
.contact-hero p.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 52px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #FFFFFF;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  text-decoration: none;
}
.contact-card.static { padding: 20px 22px; }
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon.outline {
  background: transparent;
  border: 1px solid var(--border-strong);
}
.contact-card-title { display: block; font-weight: 600; font-size: 15px; color: var(--ink); }
.contact-card-detail {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.contact-form-card {
  background: var(--panel-dark);
  border-radius: 20px;
  padding: 36px;
}
.contact-form-card .field label { color: rgba(247, 245, 240, 0.6); }
.contact-form-card .field input,
.contact-form-card .field textarea {
  background: var(--panel-dark-2);
  border: 1px solid rgba(247, 245, 240, 0.14);
  color: var(--cream);
}
.contact-form-card .field input::placeholder,
.contact-form-card .field textarea::placeholder { color: rgba(247, 245, 240, 0.35); }
.contact-form-card .form-submit { margin-top: 6px; }
.contact-form-card .form-fine { color: rgba(247, 245, 240, 0.5); }
.contact-success {
  text-align: center;
  padding: 26px 0;
  display: none;
}
.contact-form-card.state-success .contact-success { display: block; animation: vsl-fade 0.4s ease; }
.contact-form-card.state-success form { display: none; }
.contact-success h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--cream);
  margin: 0 0 12px;
}
.contact-success p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.7);
  margin: 0 auto;
  max-width: 340px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-title {
  padding: 76px 40px 34px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-title h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.legal-title .updated {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.legal-body {
  padding: 6px 40px 84px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-body > p.intro {
  font-size: 16px;
  line-height: 1.75;
  color: #33302B;
  margin: 0 0 40px;
}
.legal-section { margin-bottom: 36px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.legal-section p {
  font-size: 15px;
  line-height: 1.75;
  color: #33302B;
  margin: 0 0 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  font-size: 15px;
  line-height: 1.75;
  color: #33302B;
  margin: 0;
  padding-left: 20px;
}
.legal-section ul li { margin-bottom: 8px; }
.legal-section ul li:last-child { margin-bottom: 0; }
.legal-part-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

/* ============================================================
   VSL PAGE
   ============================================================ */


.vsl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}

.vsl-hero {
  padding: 60px 40px 72px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.vsl-hero .eyebrow { letter-spacing: 0.14em; }
.vsl-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.vsl-hero h1 em { font-style: italic; font-weight: 500; color: var(--accent); }
.vsl-hero p.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 30%, #2A2724 0%, #1A1815 100%);
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 60px -24px rgba(33, 31, 28, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame .watermark {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-frame .watermark img { filter: brightness(2.6) grayscale(1); }

.video-idle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.play-btn-wrap { position: relative; width: 88px; height: 88px; }
.play-pulse {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: var(--accent);
  animation: vsl-pulse 2.4s ease-out infinite;
}
.play-btn {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.play-btn svg { margin-left: 5px; }
.video-idle .runtime-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.6);
}

.video-playing {
  position: relative;
  text-align: center;
  padding: 32px;
  animation: vsl-fade 0.3s ease;
  display: none;
}
.video-frame.is-playing .video-idle { display: none; }
.video-frame.is-playing .video-playing { display: block; }
.video-playing .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.video-playing p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(247, 245, 240, 0.75);
  max-width: 380px;
  margin: 0 auto;
}
.video-frame iframe, .video-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

.sound-reminder {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.vsl-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  flex-wrap: wrap;
}
.vsl-trust .sep { color: rgba(33, 31, 28, 0.25); }

.vsl-apply {
  padding: 84px 40px 96px;
  background: var(--panel-dark);
}
.vsl-apply-intro { max-width: 620px; margin: 0 auto; text-align: center; }
.vsl-apply-intro h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 14px;
}
.vsl-apply-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(247, 245, 240, 0.7);
  margin: 0 0 36px;
}

.form-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.lock-state, .success-state {
  text-align: center;
  padding: 20px 0 24px;
  display: none;
}
.form-card.state-locked .lock-state { display: block; }
.form-card.state-success .success-state { display: block; animation: vsl-fade 0.4s ease; }
.form-card.state-form .vsl-form { display: flex; }
.vsl-form { display: none; flex-direction: column; gap: 18px; text-align: left; }

.lock-icon, .success-icon {
  width: 54px; height: 54px;
  border-radius: 999px;
  background: var(--bg-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.success-icon { width: 58px; height: 58px; background: var(--accent); margin-bottom: 22px; }
.lock-state h3, .success-state h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
}
.success-state h3 { font-size: 26px; margin-bottom: 12px; }
.lock-state p, .success-state p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 auto;
  max-width: 380px;
}
.success-state p { line-height: 1.65; margin-bottom: 20px; }
.success-state .fine {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field-optional {
  text-transform: none;
  letter-spacing: 0;
  color: rgba(33, 31, 28, 0.4);
}

.roles-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  font-size: 15px;
  background: #FFFFFF;
  color: rgba(33, 31, 28, 0.45);
  cursor: pointer;
}
.roles-select.has-value { color: var(--ink); }
.roles-select svg { transition: transform 0.2s ease; flex-shrink: 0; }
.roles-select.open svg { transform: rotate(180deg); }

.roles-dropdown {
  margin-top: 8px;
  border: 1px solid rgba(33, 31, 28, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
  animation: vsl-fade 0.18s ease;
  display: none;
}
.roles-dropdown.open { display: block; }
.role-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(33, 31, 28, 0.07);
}
.role-option:last-child { border-bottom: none; }
.role-check {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(33, 31, 28, 0.3);
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.role-option.selected .role-check {
  border-color: var(--accent);
  background: var(--accent);
}
.role-check svg { opacity: 0; stroke: var(--cream); }
.role-option.selected .role-check svg { opacity: 1; }
.role-option span.label { font-size: 15px; color: var(--ink); }

.income-row { display: flex; gap: 8px; flex-wrap: wrap; }
.income-btn {
  flex: 1;
  min-width: 0;
  padding: 11px 6px;
  border-radius: 999px;
  border: 1px solid rgba(33, 31, 28, 0.25);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.income-btn.selected { background: var(--accent); color: var(--cream); border-color: var(--accent); }

.vsl-footer { padding: 40px; background: var(--panel-dark); border-top: 1px solid rgba(247, 245, 240, 0.1); }
.vsl-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.vsl-footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.vsl-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 245, 240, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-family: var(--font-mono);
}
.vsl-legal { max-width: 900px; margin: 24px auto 0; font-size: 11px; line-height: 1.6; color: rgba(247, 245, 240, 0.4); }

/* ============================================================
   RESPONSIVE — main site
   ============================================================ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 64px 28px 72px; }
  .days-grid { grid-template-columns: repeat(3, 1fr); }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .tax-compare { grid-template-columns: repeat(3, 1fr); }
  .offer-grid, .modules-grid, .proof-grid, .who-grid, .pricing-grid, .apply-grid { grid-template-columns: 1fr; gap: 24px; }
  .tier-card.featured { transform: none; }
  .section { padding: 72px 28px; }
  .section h2 { font-size: 34px; }
  .risk { padding: 72px 28px; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .hero { padding: 48px 20px 56px; }
  .hero h1 { font-size: 38px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; }
  .days-grid, .guarantee-grid { grid-template-columns: 1fr; }
  .problem-row { grid-template-columns: 1fr; gap: 8px; }
  .section { padding: 56px 20px; }
  .section h2 { font-size: 29px; }
  .risk { padding: 56px 20px; }
  .hero-globe { width: min(78vw, 420px); height: min(78vw, 420px); }
  .site-header { padding: 18px 20px; }
  .apply { padding: 72px 20px; }
  .site-footer { padding: 40px 20px; }
}

/* ============================================================
   RESPONSIVE — contact & legal pages
   ============================================================ */
@media (max-width: 820px) {
  .main-nav { display: none; }
  .contact-hero, .legal-title, .legal-body { padding-left: 22px; padding-right: 22px; }
  .contact-hero h1, .legal-title h1 { font-size: 38px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .vsl-header, .vsl-hero, .vsl-apply, .vsl-footer { padding-left: 22px; padding-right: 22px; }
  .vsl-hero h1 { font-size: 34px; }
  .field-row.contact-row { grid-template-columns: 1fr; }
  .vsl-trust { flex-direction: column; gap: 10px; }
  .form-card { padding: 28px 22px; }
}
