:root {
  --navy: #10243f;
  --navy-deep: #07172b;
  --ink: #26354a;
  --muted: #687383;
  --line: #e7dfd2;
  --cream: #f8f5ef;
  --paper: #fffefa;
  --gold: #c89a45;
  --gold-dark: #94651c;
  --gold-soft: #f3e4c4;
  --sage: #dfe7df;
  --sage-strong: #6f9f83;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 87% 6%, rgba(111, 159, 131, 0.24), transparent 29rem),
    radial-gradient(circle at 9% 16%, rgba(200, 154, 69, 0.15), transparent 24rem),
    linear-gradient(180deg, #fffefa 0, var(--cream) 38rem);
  color: var(--ink);
}

a { color: inherit; }

.shell,
.site-header {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(16, 36, 63, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
  font-weight: 750;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover { color: var(--navy); }

.button,
.site-nav .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 10px;
  padding: 0 20px;
  background: var(--navy);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 36, 63, 0.14);
}

.button:hover { background: var(--navy-deep); }

.button.secondary {
  background: transparent;
  color: var(--navy);
  box-shadow: none;
}

.button.light {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  padding: 86px 0 92px;
}

.hero h1,
.section-heading h2,
.content-card h2,
.entry-card h2,
.disclosure-grid h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 { max-width: 820px; font-size: clamp(48px, 7vw, 84px); }

.hero-lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  border: 1px solid rgba(16, 36, 63, 0.12);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 254, 250, 0.72);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  border: 1px solid rgba(16, 36, 63, 0.12);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(223, 231, 223, 0.78));
  box-shadow: 0 28px 80px rgba(16, 36, 63, 0.14);
  text-align: center;
}

.card-kicker,
.reward-label {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reward-preview {
  display: grid;
  gap: 2px;
  margin-top: 30px;
  color: var(--navy);
}

.reward-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(66px, 9vw, 100px);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.reward-preview > span:last-child {
  color: var(--muted);
  font-weight: 750;
}

.reward-arrow {
  margin: 18px 0;
  color: var(--sage-strong);
  font-size: 26px;
}

.reward-result {
  display: grid;
  gap: 6px;
  border-radius: 14px;
  padding: 20px;
  background: var(--navy);
  color: #fff;
}

.reward-result strong { font-size: 20px; }
.reward-result span { color: rgba(255, 255, 255, 0.7); font-size: 14px; }

.top-five-note {
  margin: 22px 0 0;
  color: var(--navy);
}

.launch-notice {
  border-block: 1px solid #dec897;
  background: rgba(243, 228, 196, 0.68);
}

.notice-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-block: 20px;
}

.notice-inner > span {
  color: var(--gold-dark);
  line-height: 1.6;
}

.notice-inner p {
  margin: 0;
  color: var(--navy);
  line-height: 1.6;
}

.section { padding-block: 96px; }
.soft-section { background: rgba(223, 231, 223, 0.48); }

.section-heading { max-width: 760px; }
.section-heading h2,
.content-card h2,
.entry-card h2,
.disclosure-grid h2,
.final-cta h2 {
  font-size: clamp(38px, 5vw, 60px);
}

.section-heading > p:last-child,
.content-card > p,
.entry-card p,
.disclosure-grid p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.reward-grid article,
.content-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 20px 50px rgba(16, 36, 63, 0.06);
}

.reward-grid article.featured {
  border-color: rgba(16, 36, 63, 0.8);
  background: var(--navy);
  color: #fff;
}

.reward-grid h3 {
  margin: 34px 0 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.reward-grid .featured h3 { color: #fff; }

.reward-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.reward-grid .featured p { color: rgba(255, 255, 255, 0.74); }
.reward-grid .featured .reward-label { color: #e8c988; }

.fine-print {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  border: 1px solid rgba(16, 36, 63, 0.12);
  border-radius: 16px;
  padding: 26px;
  background: rgba(255, 254, 250, 0.76);
}

.steps > li > span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.steps div { margin-top: auto; }

.steps h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.content-card h2 { font-size: clamp(34px, 4vw, 50px); }
.safety-card { background: rgba(243, 228, 196, 0.48); }

.tick-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.58;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-strong);
  font-weight: 900;
}

.disclosure-section { background: var(--navy); }

.disclosure-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 60px;
  align-items: center;
}

.disclosure-grid .eyebrow { color: #e8c988; }
.disclosure-grid h2 { color: #fff; }
.disclosure-grid p { color: rgba(255, 255, 255, 0.72); }

.disclosure-grid blockquote {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.entry-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 50px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(30px, 6vw, 66px);
  background:
    radial-gradient(circle at 90% 0, rgba(111, 159, 131, 0.2), transparent 24rem),
    var(--paper);
  box-shadow: 0 28px 70px rgba(16, 36, 63, 0.09);
}

.entry-card .button { margin-top: 26px; }

.entry-checklist {
  border-radius: 16px;
  padding: 28px;
  background: var(--cream);
}

.entry-checklist h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 21px;
}

.entry-checklist ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.faq-grid details {
  border: 1px solid rgba(16, 36, 63, 0.12);
  border-radius: 14px;
  padding: 22px 24px;
  background: rgba(255, 254, 250, 0.84);
}

.faq-grid summary {
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.terms-section { max-width: 900px; }

.terms-banner {
  margin: 36px 0 0;
  border: 1px solid #dec897;
  border-radius: 12px;
  padding: 20px 22px;
  background: var(--gold-soft);
  color: var(--navy);
  line-height: 1.6;
}

.terms-copy {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 6vw, 60px);
  background: rgba(255, 254, 250, 0.94);
}

.terms-copy h3 {
  margin: 38px 0 10px;
  color: var(--navy);
  font-size: 21px;
}

.terms-copy h3:first-child { margin-top: 0; }

.terms-copy p {
  margin: 0;
  color: #4e5968;
  line-height: 1.75;
}

.terms-copy a { color: var(--gold-dark); }

.final-cta {
  padding: 72px 0;
  background: var(--navy);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta .eyebrow { color: #e8c988; }
.final-cta h2 { max-width: 800px; color: #fff; font-size: clamp(36px, 5vw, 58px); }
.final-cta .button { flex: 0 0 auto; }

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-block: 38px 56px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer p { max-width: 460px; margin: 12px 0 0; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a { text-decoration: none; }

@media (max-width: 900px) {
  .hero,
  .disclosure-grid,
  .entry-card { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header { align-items: flex-start; padding-block: 18px; }
  .site-nav a:not(.button) { display: none; }
  .hero { padding-block: 56px 66px; }
  .section { padding-block: 70px; }
  .reward-grid,
  .split-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .final-cta-inner,
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .shell,
  .site-header { width: min(100% - 28px, 1160px); }
  .site-nav .button { min-height: 42px; padding-inline: 13px; }
  .hero h1 { font-size: clamp(44px, 14vw, 62px); }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 230px; }
  .entry-card { padding: 26px; }
  .disclosure-grid blockquote { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
