:root {
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --paper: #ffffff;
  --paper-warm: #faf8f5;
  --accent: #c0392b;
  --accent-dark: #a93226;
  --rule: #e6e2dc;
  --max: 760px;
}

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

body {
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.topbar {
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
}

.hero { padding: 44px 0 8px; text-align: center; }

.prehead {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}

.subhead {
  font-size: clamp(16px, 2.6vw, 19px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 28px;
}

.video-shell { margin: 0 auto 26px; max-width: 720px; }

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: #111;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  font-size: 16px;
}

.video-placeholder .play-ring {
  width: 68px; height: 68px;
  border: 3px solid #eee;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}

.cta-block { text-align: center; padding: 8px 0 18px; }

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.3);
  transition: background 0.15s ease, transform 0.15s ease;
}
.cta-button:hover { background: var(--accent-dark); transform: translateY(-1px); }
.cta-button[aria-disabled="true"] {
  background: #b9b3ab;
  box-shadow: none;
  cursor: not-allowed;
}

.cta-note { font-size: 14px; color: var(--ink-soft); margin-top: 12px; }
.cta-note strong { color: var(--ink); }
.cta-split { font-size: 14px; margin-top: 6px; }
.cta-split a { color: var(--ink-soft); }

.section { padding: 40px 0; }
.section.alt { background: var(--paper-warm); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

h2 {
  font-size: clamp(22px, 3.6vw, 30px);
  text-align: center;
  margin-bottom: 26px;
}

.includes { list-style: none; max-width: 620px; margin: 0 auto; }
.includes li {
  padding: 14px 0 14px 38px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  font-size: 17px;
}
.includes li:last-child { border-bottom: none; }
.includes li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  color: var(--accent);
  font-weight: 700;
}
.includes li .sub { display: block; font-size: 14px; color: var(--ink-soft); }

.guarantee {
  max-width: 620px;
  margin: 0 auto;
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.guarantee h3 { font-size: 22px; margin-bottom: 10px; }
.guarantee p { font-size: 16px; color: var(--ink-soft); }
.guarantee p + p { margin-top: 10px; }

.disclaimer {
  max-width: 620px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}

footer {
  border-top: 1px solid var(--rule);
  padding: 30px 20px 40px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}
footer nav { margin-bottom: 12px; }
footer nav a { color: var(--ink-soft); margin: 0 10px; }
footer p + p { margin-top: 8px; }

/* Legal pages */
.legal { max-width: 720px; margin: 0 auto; padding: 40px 20px 60px; }
.legal h1 { font-size: 30px; text-align: left; margin-bottom: 6px; }
.legal .updated { font-size: 13px; color: var(--ink-soft); margin-bottom: 28px; }
.legal h2 { font-size: 20px; text-align: left; margin: 28px 0 10px; }
.legal p, .legal li { font-size: 15px; color: var(--ink-soft); margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent); }

/* Thank-you page */
.thanks { text-align: center; padding: 70px 20px; }
.thanks .mark { font-size: 52px; color: var(--accent); margin-bottom: 16px; }
.thanks h1 { margin-bottom: 14px; }
.thanks p { max-width: 560px; margin: 0 auto 12px; color: var(--ink-soft); font-size: 17px; }
