:root {
  --navy: #16324f;
  --navy-deep: #0e2237;
  --gold: #d9a441;
  --gold-soft: #e8c47c;
  --paper: #f7f6f2;
  --ink: #1c2b3a;
  --white: #ffffff;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

h1, h2, h3, .btn, nav, .eyebrow {
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
}

.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  background: var(--navy-deep);
  color: var(--white);
  padding: 14px 0;
}
header .container { display: flex; justify-content: space-between; align-items: center; }
.brand { font-weight: 700; letter-spacing: 0.06em; color: var(--white); text-decoration: none; font-family: 'Segoe UI', Helvetica, Arial, sans-serif; }
.brand span { color: var(--gold); }
nav a { color: var(--white); text-decoration: none; margin-left: 22px; font-size: 0.95rem; opacity: 0.9; }
nav a:hover, nav a.active { color: var(--gold); opacity: 1; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 55%, #1d4568 100%);
  color: var(--white);
  padding: 72px 0 84px;
}
.hero .container { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.hero-text { flex: 1 1 420px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; font-weight: 600; margin-bottom: 14px; }
.hero h1 { font-size: 2.6rem; line-height: 1.15; margin-bottom: 10px; }
.hero .subtitle { font-size: 1.12rem; opacity: 0.85; margin-bottom: 26px; max-width: 46ch; }
.hero-cover { flex: 0 0 300px; }
.hero-cover img {
  width: 100%; border-radius: 4px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.45);
}
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  margin-right: 12px; margin-top: 8px;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Sections */
section { padding: 64px 0; }
section h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 18px; }
.lede { font-size: 1.15rem; max-width: 62ch; }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2 { color: var(--white); }

/* Method strip */
.beats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; margin-top: 34px; }
.beat { background: rgba(255,255,255,0.06); border-top: 3px solid var(--gold); padding: 22px; border-radius: 4px; }
.beat h3 { color: var(--gold); letter-spacing: 0.08em; margin-bottom: 8px; }
.beat p { font-size: 0.97rem; opacity: 0.9; }

/* Bullets */
.features { list-style: none; margin-top: 26px; }
.features li { padding-left: 34px; position: relative; margin-bottom: 16px; font-size: 1.05rem; max-width: 64ch; }
.features li::before { content: "⚓"; position: absolute; left: 0; color: var(--gold); }

/* Quote */
.pullquote {
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 26px; margin: 34px 0 8px;
  font-size: 1.35rem; font-style: italic; color: var(--navy);
  max-width: 30ch;
}
.pullquote cite { display: block; font-size: 0.9rem; font-style: normal; color: var(--ink); opacity: 0.7; margin-top: 10px; }

/* Kit */
.kit-list { list-style: none; margin-top: 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.kit-list li { background: var(--white); border: 1px solid #e2ded4; border-left: 4px solid var(--gold); padding: 18px 20px; border-radius: 4px; }
.kit-list strong { color: var(--navy); display: block; margin-bottom: 4px; }
.kit-list a.download { font-size: 0.9rem; }

/* Signup */
.signup { background: var(--navy-deep); color: var(--white); text-align: center; }
.signup h2 { color: var(--white); }
.signup p { opacity: 0.85; max-width: 52ch; margin: 0 auto 24px; }
.signup form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.signup input[type="email"] {
  padding: 13px 16px; border-radius: 4px; border: none;
  min-width: 280px; font-size: 1rem;
}
audio { width: 100%; max-width: 480px; margin-top: 14px; }

/* Footer */
footer { background: #0a1826; color: rgba(255,255,255,0.75); padding: 44px 0; font-size: 0.88rem; }
footer .container { display: grid; gap: 14px; }
footer a { color: var(--gold-soft); }
.disclaimer { max-width: 78ch; opacity: 0.8; }

@media (max-width: 720px) {
  .hero h1 { font-size: 2rem; }
  .hero .container { justify-content: center; text-align: center; }
  .pullquote { max-width: none; }
}
