/* STIX Duel reservation funnel: /reserve, /bridge, /thanks. Shares the palette and type of index.html. */
:root {
  --paper: #F4F1EA;
  --ink: #1A1A1A;
  --red: #E63B2E;
  --blue: #2E6AE6;
  --gold: #D9B36A;
  --muted: #7A766E;
  --display: "Fredoka", "Nunito", "Arial Rounded MT Bold", system-ui, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Inter", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--paper); color: var(--ink); }
body {
  font-family: var(--body); font-size: 18px; line-height: 1.45;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; }
::selection { background: var(--red); color: var(--paper); }
h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: 0.01em; margin: 0; }
.visually-hidden { position: absolute; left: -9999px; }

/* header */
header {
  position: absolute; inset: 0 0 auto 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; padding: 18px 24px;
}
.mark { font-family: var(--display); font-weight: 700; font-size: 26px; text-decoration: none; color: #F4F1EA; }
.mark b { color: var(--red); }
header nav a { font-size: 15px; text-decoration: none; color: #F4F1EA; opacity: 0.8; }
header nav a:hover { opacity: 1; }
header.on-paper .mark, header.on-paper nav a { color: var(--ink); }
header.on-paper .mark b { color: var(--red); }

/* buttons and forms */
.btn {
  display: inline-block; font-family: var(--display); font-weight: 700; font-size: 17px;
  letter-spacing: 0.02em; padding: 15px 30px; border-radius: 999px; border: 3px solid var(--red);
  background: var(--red); color: #F4F1EA; text-decoration: none; cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease;
}
.btn:hover { transform: translateY(-1px); background: #ff4a3a; }
.btn.ink { background: var(--ink); border-color: var(--ink); }
.btn.ink:hover { background: #333; }
.btn.big { font-size: 20px; padding: 18px 38px; }
.btn[aria-disabled="true"] { opacity: 0.55; cursor: default; transform: none; }
.email-form { display: flex; gap: 10px; max-width: 480px; }
.email-form input {
  flex: 1; min-width: 0; font: inherit; font-size: 17px; padding: 14px 18px;
  border-radius: 999px; border: 3px solid var(--ink); background: #fff; color: var(--ink);
}
.email-form input:focus { outline: none; border-color: var(--red); }
.email-form .btn { white-space: nowrap; }
.fine { font-size: 14px; color: var(--muted); margin: 12px 0 0; }
.hero .fine { color: rgba(244,241,234,0.7); }
@media (max-width: 520px) {
  .email-form { flex-direction: column; }
  .email-form .btn { width: 100%; text-align: center; }
}

/* hero: split on wide screens, full-bleed art on phones */
.hero {
  position: relative; min-height: 100svh; background: #0A0806; color: #F4F1EA;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); overflow: hidden;
}
.hero__copy {
  position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 120px 24px 64px clamp(24px, 7vw, 110px); max-width: 720px;
}
.hero__eyebrow { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 0 0 18px; }
.hero h1 { font-size: clamp(38px, 5.2vw, 66px); line-height: 1.02; }
.hero h1 b { color: var(--red); font-weight: 700; }
.hero p.lead { font-size: clamp(17px, 1.6vw, 20px); color: #D8D3C8; max-width: 44ch; margin: 22px 0 28px; }
.hero__art { position: relative; min-height: 100svh; }
.hero__art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, #0A0806 0%, rgba(10,8,6,0) 22%);
}
@media (max-width: 900px) {
  .hero { display: block; }
  .hero__art { position: absolute; inset: 0; min-height: 0; }
  .hero__art::after {
    background: linear-gradient(to top, rgba(8,6,5,0.95) 0%, rgba(8,6,5,0.78) 38%, rgba(8,6,5,0.15) 65%, rgba(8,6,5,0.35) 100%);
  }
  .hero__copy { min-height: 100svh; justify-content: flex-end; padding: 120px 24px 56px; }
  .hero h1 { font-size: clamp(36px, 9.5vw, 56px); }
}

/* feature blocks */
.features {
  max-width: 1100px; margin: 0 auto; padding: 96px 24px 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.features .swatch { width: 44px; height: 8px; border-radius: 4px; background: var(--ink); margin-bottom: 18px; }
.features .swatch.red { background: var(--red); }
.features .swatch.blue { background: var(--blue); }
.features .swatch.gold { background: var(--gold); }
.features h3 { font-size: 26px; margin-bottom: 8px; }
.features p { margin: 0; color: var(--muted); }
@media (max-width: 760px) { .features { grid-template-columns: 1fr; gap: 32px; padding-top: 64px; } }

/* proof strip (real gameplay) */
.proof { max-width: 1100px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.proof .eyebrow { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); font-weight: 700; margin: 0 0 10px; }
.proof h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.05; }
.proof p { color: var(--muted); }
.proof canvas { display: block; width: 100%; max-width: 420px; margin: 0 auto; aspect-ratio: 9/12; border-radius: 24px; background: #fff; box-shadow: 0 20px 60px rgba(26,26,26,0.12); }
@media (max-width: 760px) { .proof { grid-template-columns: 1fr; } }

/* second email block */
.signup { max-width: 640px; margin: 0 auto; padding: 72px 24px 96px; text-align: center; }
.signup h2 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 10px; }
.signup p { margin: 0 0 22px; color: var(--muted); }
.signup .email-form { margin: 0 auto; }

/* bridge and thanks */
.card-page { min-height: 100svh; display: grid; place-items: center; padding: 96px 24px 64px; }
.card {
  width: 100%; max-width: 980px; background: #fff; border-radius: 32px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 30px 80px rgba(26,26,26,0.14);
}
.card__art { background: var(--paper); display: grid; place-items: center; padding: 32px; }
.card__art canvas { display: block; width: 100%; max-width: 360px; aspect-ratio: 9/14; }
.card__body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.card__body .eyebrow { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 0 0 12px; }
.card__body h1 { font-size: clamp(34px, 4vw, 48px); line-height: 1.02; }
.card__body p { color: var(--muted); }
.benefits { list-style: none; padding: 0; margin: 20px 0 28px; }
.benefits li { display: grid; grid-template-columns: 10px 1fr; column-gap: 12px; margin: 12px 0; }
.benefits li::before { content: ""; width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: var(--red); grid-row: 1 / span 2; }
.benefits li b { grid-column: 2; font-family: var(--display); font-weight: 700; font-size: 18px; }
.benefits li span { grid-column: 2; color: var(--muted); font-size: 16px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.actions a.plain { font-size: 15px; color: var(--muted); }
.price { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--muted); }
@media (max-width: 820px) {
  .card { grid-template-columns: 1fr; }
  .card__body { padding: 32px 24px 40px; }
  .card-page { padding-top: 84px; }
}

footer {
  max-width: 1100px; margin: 0 auto; padding: 0 24px 48px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted);
}
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } }
