:root {
  --bg: #14110f;
  --bg-2: #1c1815;
  --ink: #efe6d8;
  --muted: #a89d8e;
  --line: #3a322b;
  --wax: #b3261e;
  --wax-hi: #d4453b;
  --gold: #c9a45c;
  --radius: 12px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(179, 38, 30, 0.18), transparent 70%),
    var(--bg);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--gold); }

.wrap {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 20px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
  font: 600 1.5rem/1 var(--serif); letter-spacing: 0.02em;
}
.nav-cta {
  color: var(--ink); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  transition: border-color .2s;
}
.nav-cta:hover { border-color: var(--gold); }

/* Hero */
.hero { padding-block: 72px 56px; text-align: center; }
.eyebrow {
  display: inline-block; margin: 0 0 20px;
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2.5rem, 7vw, 4.25rem); }
h1 em { display: block; margin-top: 8px; color: var(--muted); font-weight: 500; font-size: 0.55em; }
.lede { max-width: 620px; margin: 24px auto 0; color: var(--muted); font-size: 1.075rem; }

/* Signup */
.signup { max-width: 520px; margin: 40px auto 0; }
.signup-row { display: flex; gap: 8px; }
.signup input[type="email"] {
  flex: 1; min-width: 0;
  background: var(--bg-2); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; font: inherit;
}
.signup input[type="email"]:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: transparent; }
button, .button {
  display: inline-block; cursor: pointer; white-space: nowrap;
  background: var(--wax); color: #fff; text-decoration: none;
  border: 0; border-radius: var(--radius);
  padding: 14px 20px; font: 600 1rem var(--sans);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.25);
  transition: background .2s, transform .1s;
}
button:hover, .button:hover { background: var(--wax-hi); }
button:active, .button:active { transform: translateY(1px); }
button:disabled { opacity: .6; cursor: progress; }

.roles {
  border: 0; margin: 16px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px;
  color: var(--muted); font-size: 0.9rem;
}
.roles legend { width: 100%; margin-bottom: 6px; font-size: 0.85rem; }
.roles label { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.roles input { accent-color: var(--wax); }

.hp { position: absolute; left: -9999px; }
.form-msg { min-height: 1.5em; margin: 14px 0 0; font-weight: 500; }
.form-msg.ok { color: #8fcf8a; }
.form-msg.err { color: #ef8a80; }
.fineprint { margin: 4px 0 0; color: var(--muted); font-size: 0.8rem; }

/* Sections */
section h2 { font-size: clamp(1.9rem, 4.5vw, 2.6rem); text-align: center; }
.features, .audience, .faq { padding-block: 56px; border-top: 1px solid var(--line); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
}
.card .icon { font-size: 1.75rem; }
.card h3 { font-size: 1.5rem; margin: 10px 0 8px; color: var(--gold); }
.card p { margin: 0; color: var(--muted); }

.audience ul { max-width: 640px; margin: 28px auto 0; padding: 0; list-style: none; }
.audience li { padding: 14px 0; border-bottom: 1px dashed var(--line); color: var(--muted); }
.audience li:last-child { border-bottom: 0; }
.audience strong { color: var(--ink); }

.faq { max-width: 720px; }
.faq h2 { margin-bottom: 24px; }
details { border-bottom: 1px solid var(--line); padding: 16px 0; }
summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold); font-size: 1.25rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { margin: 10px 0 0; color: var(--muted); }

.cta { text-align: center; padding-block: 72px; border-top: 1px solid var(--line); }
.cta .button { margin-top: 24px; }

.footer {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  padding-block: 28px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.85rem;
}

@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; }
  .hero { padding-block: 48px 40px; }
}
@media (max-width: 480px) {
  .signup-row { flex-direction: column; }
  .nav-cta { display: none; }
}
