:root {
  --navy: #1f2d43;
  --navy-deep: #131d2d;
  --navy-soft: #2d3f5a;
  --navy-accent: #000080;
  --paper: #ffffff;
  --silver: #c9ced8;
  --silver-soft: rgba(192, 192, 192, 0.18);
  --silver-strong: rgba(192, 192, 192, 0.42);
  --gold: #c9a356;
  --gold-soft: rgba(201, 163, 86, 0.22);
  --gold-strong: #e0bd74;
  --ink: #0f0f14;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(850px 500px at 15% 88%, rgba(201, 163, 86, 0.16), transparent 70%),
    radial-gradient(1200px 700px at 10% -10%, rgba(255, 255, 255, 0.13), transparent 58%),
    radial-gradient(1000px 600px at 90% 0%, rgba(0, 0, 128, 0.22), transparent 62%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 42%, var(--navy-soft) 100%);
  color: var(--paper);
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3.25rem 1.25rem 4.2rem;
  display: grid;
  gap: 1.25rem;
}

.site-header {
  text-align: center;
  margin-bottom: 0.35rem;
}

.logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.32));
}

.eyebrow {
  margin: 0.6rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--gold-strong);
}

.hero {
  text-align: center;
  padding: 2.5rem 1rem;
}

.hero-kicker {
  margin: 0 0 0.65rem;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
  font-size: 0.74rem;
}

.hero-subcopy {
  margin: 0 auto 1.8rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}

h1,
h2 {
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.05rem, 5vw, 3.8rem);
  line-height: 1.12;
  margin: 0 auto 1.1rem;
  max-width: 900px;
  font-weight: 750;
}

h2 {
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  letter-spacing: 0.09em;
  color: var(--gold-strong);
}

.cta-button {
  display: inline-block;
  border: 1px solid var(--gold);
  color: #fff8eb;
  background: linear-gradient(180deg, rgba(201, 163, 86, 0.3), rgba(201, 163, 86, 0.09));
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.92rem 1.45rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: linear-gradient(180deg, #e3c37d, #c89f54);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

.story,
.pillars,
.waitlist {
  padding: 1.2rem 1.2rem 1.35rem;
}

.panel {
  border: 1px solid rgba(201, 163, 86, 0.26);
  border-radius: 22px;
  background:
    linear-gradient(130deg, rgba(0, 0, 128, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
}

.split-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.book-cover-wrap {
  margin: 0;
}

.book-cover {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.story-copy {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  font-size: 1.12rem;
  max-width: 720px;
  border-left: 2px solid var(--gold-soft);
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.93);
}

.story-copy p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.pillar-list {
  margin: 0;
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  display: grid;
  gap: 0.7rem;
}

.pillar-list li {
  margin: 0;
  font-size: 1.04rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 128, 0.45);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(0, 0, 128, 0.24), rgba(255, 255, 255, 0.02));
}

.pillar-list li::before {
  content: "◦";
  color: var(--gold-strong);
  font-size: 1.6rem;
  line-height: 0.8;
  margin-right: 0.55rem;
  vertical-align: middle;
}

.teaser-box {
  border: 1px dashed var(--gold);
  border-radius: 16px;
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.03);
}

.waitlist-form {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid rgba(0, 0, 128, 0.55);
  padding: 0.82rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  font-size: 0.97rem;
}

input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

input[type="email"]:focus-visible {
  outline: 2px solid var(--gold-strong);
  outline-offset: 2px;
}

.secondary {
  min-width: 220px;
}

.form-message {
  min-height: 1.2rem;
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.buy-options {
  padding: 1.4rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.option-card {
  border: 1px solid rgba(0, 0, 128, 0.45);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(90deg, rgba(0, 0, 128, 0.24), rgba(255, 255, 255, 0.02));
}

.option-icon {
  width: 2.3rem;
  height: 2.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(201, 163, 86, 0.18), rgba(201, 163, 86, 0.06));
  font-size: 1.15rem;
  line-height: 1;
}

.option-card h3 {
  margin: 0.2rem 0 0.55rem;
  font-size: 1.24rem;
  line-height: 1.2;
}

.option-card p {
  margin: 0 0 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.option-label {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold-strong);
}

.option-button {
  width: 100%;
  text-align: center;
}

.is-disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.is-disabled:hover,
.is-disabled:focus-visible {
  transform: none;
  background: linear-gradient(180deg, rgba(201, 163, 86, 0.3), rgba(201, 163, 86, 0.09));
  color: #fff8eb;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.buy-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.buy-back {
  display: flex;
  justify-content: center;
  padding: 1.15rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 760px) {
  .page {
    padding: 2rem 0.92rem 2.4rem;
    gap: 0.9rem;
  }

  .panel {
    border-radius: 18px;
  }

  .hero {
    padding: 2rem 0.95rem;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .book-cover-wrap {
    max-width: 230px;
  }

  .story-copy {
    padding-left: 1rem;
    border-left: 0;
    max-width: none;
    font-size: 1.04rem;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .cta-button,
  input[type="email"] {
    width: 100%;
  }

  .secondary {
    min-width: 0;
  }
}
