:root {
  color-scheme: dark;
  --bg: #080706;
  --bg-2: #11100d;
  --panel: rgba(255,255,255,.055);
  --panel-2: rgba(255,255,255,.085);
  --line: rgba(216, 181, 111, .26);
  --line-soft: rgba(255,255,255,.1);
  --gold: #d8b56f;
  --gold-2: #f1d28a;
  --ink: #f6efe4;
  --muted: #c2b6a4;
  --muted-2: #8f8374;
  --shadow: rgba(0,0,0,.55);
  --max: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 25% -20%, rgba(216,181,111,.18), transparent 32rem),
    radial-gradient(circle at 95% 10%, rgba(136,86,40,.16), transparent 24rem),
    linear-gradient(180deg, #080706, #11100d 55%, #080706);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }
img, svg { max-width: 100%; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--gold);
  color: #140f08;
  padding: 10px 14px;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(var(--max), calc(100% - clamp(32px, 5vw, 72px)));
  margin-inline: auto;
}
.container.narrow { max-width: 890px; }
.section-pad { padding: clamp(72px, 10vw, 132px) 0; }
.tight-top { padding-top: clamp(36px, 6vw, 76px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 44px);
  background: rgba(8,7,6,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216,181,111,.16);
}
.site-header.scrolled { box-shadow: 0 14px 46px rgba(0,0,0,.3); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: .12em;
  background: radial-gradient(circle at 30% 20%, rgba(216,181,111,.22), rgba(255,255,255,.035));
  box-shadow: inset 0 0 22px rgba(216,181,111,.08);
}
.brand-text { font-size: 18px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 14px;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255,255,255,.07);
}
.site-nav .nav-cta {
  color: #151008;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 750;
}
.site-nav .nav-cta:hover { color: #151008; background: linear-gradient(135deg, #ffe1a1, var(--gold)); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  width: 46px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-2);
  margin: 5px 0;
  border-radius: 2px;
}

.hero, .subhero {
  position: relative;
  display: grid;
  align-items: center;
}
.hero { min-height: calc(100vh - var(--header-h)); }
.subhero { min-height: 52vh; }
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(216,181,111,.12) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(216,181,111,.08) 0 1px, transparent 1px 100%);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0, transparent 70%);
  opacity: .42;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}
.clean-hero { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
}
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: -.055em; }
h1 { font-size: clamp(52px, 9vw, 112px); max-width: 900px; }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
p { margin: 0; }
.hero-lead {
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  max-width: 780px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.hero-actions.centered { justify-content: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: #150f07; background: linear-gradient(135deg, #ffe4a7, var(--gold)); border-color: transparent; }
.button.secondary { color: var(--ink); background: rgba(255,255,255,.055); }
.trust-note {
  margin-top: 20px;
  color: var(--muted-2);
  font-size: 14px;
}

.brand-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 75% 20%, rgba(216,181,111,.20), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 34px 90px var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.brand-panel h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; }
.brand-panel p:not(.eyebrow) { color: var(--muted); max-width: 620px; }
.orbital-mark {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(216,181,111,.22);
  opacity: .85;
}
.orbital-mark span {
  position: absolute;
  border: 1px solid rgba(216,181,111,.20);
  border-radius: 50%;
  inset: 18px;
  transform: rotate(22deg) scaleX(.62);
}
.orbital-mark span:nth-child(2) { transform: rotate(86deg) scaleX(.62); }
.orbital-mark span:nth-child(3) { transform: rotate(145deg) scaleX(.62); }
.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.mini-stat {
  border: 1px solid rgba(216,181,111,.18);
  border-radius: 16px;
  padding: 14px;
  background: rgba(0,0,0,.18);
}
.mini-stat strong {
  display: block;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mini-stat span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.4;
  margin-top: 4px;
}

.panel-section { background: rgba(0,0,0,.16); border-block: 1px solid rgba(216,181,111,.09); }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}
.align-start { align-items: start; }
.section-intro p, .section-heading p { color: var(--muted); font-size: 18px; margin-top: 22px; max-width: 760px; }
.section-heading { text-align: center; max-width: 850px; margin: 0 auto 42px; }
.section-heading p { margin-inline: auto; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature-card, .large-card, .theory-card, .audience-card {
  border: 1px solid var(--line-soft);
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
}
.feature-card h3, .large-card h3, .theory-card h3, .audience-card h3 { font-size: 22px; letter-spacing: -.035em; margin-bottom: 12px; }
.feature-card p, .large-card p, .theory-card p, .audience-card p { color: var(--muted); }
.icon-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 28px rgba(216,181,111,.5);
  margin-bottom: 18px;
}
.cards-3, .audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.audience-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: stretch; }
.audience-card { padding: 22px; }
.audience-card h3 { font-size: 20px; }

.dark-band {
  background:
    radial-gradient(circle at 10% 10%, rgba(216,181,111,.14), transparent 28rem),
    linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.20));
  border-block: 1px solid rgba(216,181,111,.14);
}
.split-callout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.split-callout p:not(.eyebrow) { color: var(--muted); font-size: 20px; }

.principle-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}
.principles {
  display: grid;
  gap: 12px;
}
.principles div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.045);
}
.principles strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #160f07;
  background: var(--gold);
}
.principles span { color: var(--muted); align-self: center; }
.checklist div { grid-template-columns: 38px 1fr; }

.prose-block {
  display: grid;
  gap: 24px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--muted);
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.55;
}
.theory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.theory-card:first-child { grid-column: span 2; }
.theory-card:first-child h3 { font-size: clamp(28px, 3vw, 40px); }

.final-cta { padding-top: clamp(48px, 7vw, 90px); }
.cta-card {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(216,181,111,.18), transparent 36rem),
    rgba(255,255,255,.055);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}
.cta-card p:not(.eyebrow) { color: var(--muted); font-size: 19px; max-width: 720px; margin: 22px auto 0; }

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(216,181,111,.12);
  background: rgba(0,0,0,.2);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-brand { margin-bottom: 10px; }
.site-footer p { color: var(--muted-2); }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; padding: 8px 10px; border-radius: 999px; }
.footer-links a:hover { background: rgba(255,255,255,.06); color: var(--ink); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-card:last-child { grid-column: span 2; }
}

@media (max-width: 860px) {
  :root { --header-h: 70px; }
  .site-header { padding-inline: 16px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-h) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(15,13,10,.96);
    box-shadow: 0 24px 70px rgba(0,0,0,.44);
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; padding: 13px 14px; }
  .hero { min-height: auto; }
  .hero-grid, .two-col, .split-callout, .principle-grid { grid-template-columns: 1fr; }
  .brand-panel { min-height: auto; padding-top: 150px; }
  .orbital-mark { width: 130px; height: 130px; left: 24px; right: auto; }
  .feature-grid, .cards-3, .theory-grid, .audience-grid { grid-template-columns: 1fr; }
  .theory-card:first-child, .audience-card:last-child { grid-column: auto; }
  .section-heading { text-align: left; margin-left: 0; }
  .section-heading p { margin-left: 0; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section-pad { padding: 64px 0; }
  .subhero { min-height: auto; }
  h1 { font-size: clamp(44px, 15vw, 64px); }
  .hero-lead { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .brand-text { font-size: 16px; }
  .brand-mark { width: 38px; height: 38px; }
  .feature-card, .large-card, .theory-card, .audience-card { padding: 20px; }
  .principles div { grid-template-columns: 40px 1fr; padding: 15px; }
  .mini-stat-grid { grid-template-columns: 1fr; }
  .cta-card { border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v6 background motion + polished newsletter form */
body::before {
  content: "";
  position: fixed;
  width: min(52vw, 760px);
  height: min(52vw, 760px);
  right: -18vw;
  top: 14vh;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(216, 124, 58, .24) 0%, rgba(216, 181, 111, .11) 32%, rgba(216, 181, 111, 0) 70%);
  filter: blur(8px);
  opacity: .74;
  animation: scoredbooks-amber-drift 28s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 16%, rgba(216,181,111,.08), transparent 28rem),
    linear-gradient(90deg, rgba(216,181,111,.055) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(216,181,111,.04) 0 1px, transparent 1px 100%);
  background-size: auto, 96px 96px, 96px 96px;
  opacity: .34;
}

@keyframes scoredbooks-amber-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: .58; }
  45% { transform: translate3d(-6vw, 10vh, 0) scale(1.08); opacity: .76; }
  100% { transform: translate3d(-12vw, -4vh, 0) scale(.96); opacity: .64; }
}

.newsletter-band {
  position: relative;
  border-block: 1px solid rgba(216,181,111,.13);
  background:
    radial-gradient(circle at 82% 40%, rgba(216,124,58,.13), transparent 30rem),
    rgba(0,0,0,.18);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
}

.newsletter-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  padding: clamp(22px, 4vw, 32px);
  display: grid;
  gap: 16px;
}

.newsletter-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.newsletter-form label:not(.check-row) > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(246,241,228,.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"],
.newsletter-form select {
  width: 100%;
  border: 1px solid rgba(216,181,111,.28);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(0,0,0,.32);
  color: var(--ink);
  min-height: 50px;
  padding: 13px 15px;
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.newsletter-form input[type="text"]::placeholder,
.newsletter-form input[type="email"]::placeholder {
  color: rgba(246,241,228,.38);
}

.newsletter-form select {
  appearance: none;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.018)),
    radial-gradient(circle at calc(100% - 27px) 50%, rgba(216,181,111,.14), transparent 17px),
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position:
    0 0,
    0 0,
    calc(100% - 23px) 21px,
    calc(100% - 17px) 21px;
  background-size:
    auto,
    auto,
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 54px;
  cursor: pointer;
}

.newsletter-form select option {
  color: #f6f1e4;
  background: #12100d;
}

.newsletter-form input[type="text"]:hover,
.newsletter-form input[type="email"]:hover,
.newsletter-form select:hover {
  border-color: rgba(216,181,111,.44);
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus,
.newsletter-form select:focus {
  border-color: rgba(241,210,138,.78);
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.024)),
    rgba(0,0,0,.34);
  box-shadow: 0 0 0 3px rgba(216,181,111,.13), inset 0 1px 0 rgba(255,255,255,.06);
}

.check-row {
  display: grid !important;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px !important;
  line-height: 1.45;
  border: 1px solid rgba(216,181,111,.16);
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  padding: 12px 13px;
  color: rgba(246,241,228,.68);
}

.check-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(216,181,111,.42);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    rgba(0,0,0,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  margin: 1px 0 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.check-row input[type="checkbox"]::after {
  content: "";
  width: 6px;
  height: 11px;
  border: solid #15100a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform .14s ease;
}

.check-row input[type="checkbox"]:checked {
  border-color: rgba(241,210,138,.88);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 3px rgba(216,181,111,.12);
}

.check-row input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
}

.check-row input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(216,181,111,.18);
}

.hp-field { display: none !important; }
.form-status { color: var(--muted); min-height: 1.4em; font-size: 14px; }
.form-status.good { color: var(--gold-2); }
.form-status.bad { color: #ffb9a7; }

@media (max-width: 860px) {
  body::before {
    width: 92vw;
    height: 92vw;
    right: -48vw;
    top: 18vh;
    opacity: .55;
  }
  .newsletter-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none !important; transform: none !important; }
}

.site-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.privacy-note {
  margin: 0;
  color: var(--muted-2);
  font-size: .9rem;
}

.newsletter-form button[disabled] {
  opacity: .62;
  cursor: wait;
}
