:root {
  --ink: #14161F;
  --dusk: #2B3350;
  --sunset: #E2703A;
  --ember: #B8452A;
  --gold: #F0B25A;
  --dune: #E8D9C0;
  --bone: #F7F1E6;
  --sage: #7C8C6E;

  --bg: var(--bone);
  --fg: var(--ink);
  --surface: #FFFDF8;
  --muted: #5B5A63;
  --line: #DCCDB4;
  --link: var(--ember);
  --accent: var(--sunset);

  --display: "Fraunces", Georgia, serif;
  --text: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 18px;
  --wrap: 1120px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101219;
    --fg: #F4EDE1;
    --surface: #1A1D29;
    --muted: #A9A6AE;
    --line: #2E3346;
    --link: var(--gold);
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 400 17px/1.6 var(--text);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--link); }
h1, h2, h3 { font-family: var(--display); font-variation-settings: "SOFT" 50, "WONK" 1; line-height: 1.08; margin: 0 0 .5em; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.35rem; font-weight: 700; }
em { font-style: italic; color: var(--gold); }
strong { font-weight: 600; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
section { padding: clamp(64px, 9vw, 120px) 0; }
section[id] { scroll-margin-top: 64px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 600; color: var(--accent); margin: 0 0 .8em; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 24px;
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(10px);
  color: var(--bone);
}
.brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.brand small { font-family: var(--text); font-size: .62rem; letter-spacing: .2em; border: 1px solid currentColor; border-radius: 4px; padding: 1px 5px; opacity: .8; }
.mark { width: 44px; height: 26px; color: var(--gold); }
.nav nav { display: flex; align-items: center; gap: 22px; }
.nav nav a { color: var(--bone); text-decoration: none; font-size: .95rem; opacity: .85; }
.nav nav a:hover { opacity: 1; }
.nav nav a.btn { opacity: 1; color: var(--ink); }

/* buttons */
.btn {
  display: inline-block; border: 0; cursor: pointer;
  background: var(--sunset); color: var(--ink);
  font: 600 1.05rem/1 var(--text);
  padding: 16px 26px; border-radius: 999px; text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: var(--gold); transform: translateY(-1px); }
.btn:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-ghost { background: transparent; color: var(--bone); box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--bone) 60%, transparent); }
.btn-ghost:hover { background: color-mix(in srgb, var(--bone) 12%, transparent); }
.btn-small { padding: 10px 16px; font-size: .9rem; }
.btn-wide { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* hero */
.hero { position: relative; min-height: min(92vh, 860px); display: flex; align-items: center; padding: 120px 0 200px; color: var(--bone); overflow: hidden; background: var(--ink); }
.landscape { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-copy { position: relative; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; width: 100%; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { max-width: 14ch; text-shadow: 0 2px 30px rgba(20, 22, 31, .35); }
.lede { font-size: clamp(1.1rem, 1.8vw, 1.3rem); max-width: 38ch; margin: 0 0 1.6em; text-shadow: 0 1px 12px rgba(20, 22, 31, .4); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.proof { margin-top: 1.4em; font-size: .95rem; opacity: .9; }

.problem { background: var(--ink); color: var(--bone); padding-top: 40px; }
.problem p { font-size: 1.15rem; color: color-mix(in srgb, var(--bone) 85%, transparent); }
.problem h2 { color: var(--gold); }

/* steps */
.steps { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: s; }
.steps li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; }
.step-n { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: var(--ink); font-weight: 700; margin-bottom: 14px; }
.steps p { margin: 0; color: var(--muted); font-size: .97rem; }

/* weekend */
.weekend { background: var(--dune); color: var(--ink); }
.weekend .eyebrow { color: var(--ember); }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.checks { list-style: none; padding: 0; margin: 1.5em 0 0; }
.checks li { padding-left: 30px; position: relative; margin: .6em 0; }
.checks li::before { content: ""; position: absolute; left: 0; top: .55em; width: 14px; height: 8px; border-left: 3px solid var(--ember); border-bottom: 3px solid var(--ember); transform: rotate(-45deg); }
.schedule { background: var(--ink); color: var(--bone); border-radius: var(--radius); padding: 10px 26px; box-shadow: 0 30px 60px -30px rgba(20, 22, 31, .6); }
.schedule [role=row] { display: grid; grid-template-columns: 64px 1fr; gap: 12px; padding: 18px 0; border-bottom: 1px solid rgba(247, 241, 230, .12); }
.schedule [role=row]:last-child { border-bottom: 0; }
.day { font-family: var(--display); font-weight: 700; color: var(--gold); font-size: 1.2rem; }

/* money */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 2.2rem; }
.grid article { background: var(--surface); border: 1px solid var(--line); border-top: 4px solid var(--sunset); border-radius: var(--radius); padding: 24px; }
.grid p { margin: 0; color: var(--muted); }
.fine { font-size: .88rem; color: var(--muted); margin-top: 1.8em; }

/* pricing */
.pricing { background: var(--dusk); color: var(--bone); }
.pricing .eyebrow { color: var(--gold); }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 2.2rem; }
.price { background: rgba(247, 241, 230, .06); border: 1px solid rgba(247, 241, 230, .16); border-radius: var(--radius); padding: 28px; }
.price.featured { background: var(--bone); color: var(--ink); }
.amount { font-family: var(--display); font-size: 2.6rem; font-weight: 800; margin: .1em 0 .3em; font-variant-numeric: tabular-nums; }
.amount span { display: block; font: 500 .9rem var(--text); opacity: .7; }
.price p:last-child { margin: 0; opacity: .85; }

/* long game */
.ladder { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ladder li { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; font-weight: 600; }
.ladder li:nth-child(2) { margin-left: 24px; }
.ladder li:nth-child(3) { margin-left: 48px; }
.ladder li:nth-child(4) { margin-left: 72px; background: var(--sage); color: var(--bone); border-color: var(--sage); }
.ladder span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--dune); color: var(--ink); font-size: .9rem; }

/* faq */
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
summary { cursor: pointer; font-family: var(--display); font-size: 1.25rem; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--accent); font-family: var(--text); }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: .8em 0 0; }

/* join */
.join { background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--gold) 18%, var(--bg))); }
.join-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.meter { width: 100%; max-width: 300px; margin-top: 1.5rem; color: var(--fg); }
.meter line.ray { stroke: var(--line); stroke-width: 6; stroke-linecap: round; transition: stroke .4s ease; }
.meter line.ray.lit { stroke: var(--sunset); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: 0 30px 60px -40px rgba(20, 22, 31, .45); }
form label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 14px; }
input, select {
  display: block; width: 100%; margin-top: 6px;
  font: 400 1rem var(--text); color: var(--fg);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px;
}
input[aria-invalid=true], select[aria-invalid=true] { border-color: var(--ember); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
fieldset { border: 0; padding: 0; margin: 0 0 14px; }
legend { font-weight: 600; font-size: .92rem; margin-bottom: 8px; }
.opt { font-weight: 400; color: var(--muted); }
.pill { display: inline-flex !important; align-items: center; gap: 8px; margin: 0 6px 8px 0 !important; padding: 8px 14px; border: 1.5px solid var(--line); border-radius: 999px; font-weight: 500 !important; cursor: pointer; }
.pill input { width: auto; margin: 0; accent-color: var(--sunset); }
.pill:has(input:checked) { border-color: var(--sunset); background: color-mix(in srgb, var(--sunset) 12%, transparent); }
.consent { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 400 !important; color: var(--muted); }
.consent input { width: auto; margin-top: 4px; accent-color: var(--sunset); }
.turnstile { min-height: 65px; margin: 4px 0 14px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { min-height: 1.4em; margin: 12px 0 0; color: var(--ember); font-size: .95rem; }
.result h3 { font-size: 1.6rem; }
.confirm-note { margin: 0 0 16px; padding: 12px 14px; border-radius: 12px; background: color-mix(in srgb, var(--sage) 22%, transparent); font-weight: 500; }
.position { font-family: var(--display); font-size: 4rem; font-weight: 800; margin: .1em 0; font-variant-numeric: tabular-nums; color: var(--accent); }
.position small { font: 500 1rem var(--text); color: var(--muted); margin-left: 10px; }
.copy-row { display: flex; gap: 8px; align-items: center; margin-top: 6px; }
.copy-row input { margin: 0; }

footer { background: var(--ink); color: color-mix(in srgb, var(--bone) 80%, transparent); padding: 48px 0; font-size: .92rem; }
footer a { color: var(--gold); }
.brand-foot { display: flex; align-items: center; gap: 12px; color: var(--bone); font-weight: 500; }
.disclaimer { max-width: 80ch; }

@media (max-width: 980px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .two-col, .join-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav nav a:not(.btn) { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap, .hero-copy { padding: 0 16px; }
  .nav { padding: 10px 16px; }
  .brand span { font-size: 1rem; }
  .brand small { display: none; }
  .steps, .grid, .price-cards, .field-row { grid-template-columns: 1fr; }
  .ladder li:nth-child(n) { margin-left: 0; }
  .hero { padding: 90px 0 170px; }
  .card { padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .meter line.ray { transition: none; }
}
