:root {
  --navy: #07111d;
  --card: #101c2d;
  --ink: #0a1522;
  --line: #243044;
  --gold: #c9a24a;
  --gold-2: #e0c170;
  --cream: #f4ecd9;
  --muted: #a7b0bf;
  --white: #fbf8f1;
  --danger: #e07a6a;
  --ok: #7dbe8a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Figtree, "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 70% 40% at 50% -8%, rgba(201, 162, 74, 0.16), transparent 55%),
    var(--navy);
  color: var(--white);
  line-height: 1.55;
  font-size: 17px;
  color-scheme: dark;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-2); }
h1, h2, h3 { font-family: Fraunces, Georgia, serif; font-weight: 600; line-height: 1.12; }
h1 { font-size: clamp(36px, 5vw, 58px); letter-spacing: -0.02em; margin: 14px 0 16px; }
h1 em { font-style: normal; color: var(--gold-2); }
h2 { font-size: clamp(26px, 4vw, 36px); margin: 0 0 14px; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 50;
  background: var(--gold);
  color: #1a1204;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.wrap { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(720px, calc(100% - 32px)); margin: 0 auto; }

header.top {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 29, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.brand { font-weight: 700; letter-spacing: 0.02em; color: var(--white); text-decoration: none; }
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.top-meta { color: var(--muted); font-size: 13px; text-align: right; }
.top-meta a { color: var(--cream); text-decoration: none; font-weight: 600; }

.pill {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.hero { padding: 36px 0 12px; }
.hero-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
.hero-copy { text-align: center; }
.lede { color: var(--cream); font-size: 18px; max-width: 36em; margin: 0 auto 10px; }
.meta, .hint { color: var(--muted); }
.hint { font-size: 14px; margin-top: 8px; }
.assure {
  list-style: none;
  padding: 0;
  margin: 18px auto 0;
  max-width: 28em;
  text-align: left;
}
.assure li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--cream);
}
.assure li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 6px;
  top: 0.72em;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 8px;
  flex-wrap: wrap;
}
.cd {
  background: var(--card);
  border: 1px solid var(--line);
  min-width: 72px;
  padding: 10px 8px;
  border-radius: 10px;
}
.cd b { display: block; font-family: Fraunces, Georgia, serif; font-size: 26px; color: var(--gold-2); }
.cd span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.btn {
  display: inline-block;
  background: var(--gold);
  color: #1a1204;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.2;
}
.btn:hover { background: var(--gold-2); }
.btn:disabled { opacity: 0.65; cursor: not-allowed; }
.btn.full { width: 100%; }
button.btn { min-height: 48px; }

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  text-align: left;
}
.form-card { border-color: rgba(201, 162, 74, 0.45); }
.form-card h2 { font-size: clamp(26px, 3vw, 32px); }
.form-card label { margin: 10px 0 4px; }
label { display: block; font-size: 14px; font-weight: 600; margin: 14px 0 6px; }
label span.req { color: var(--gold); }
.optional { font-weight: 500; color: var(--muted); }
input[type="text"], input[type="email"], input[type="tel"], select {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  font-size: 16px;
  min-height: 48px;
}
input:focus, select:focus, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}
::placeholder { color: #7e8a9c; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-action { margin: 14px 0 0; }
.win-note { margin: 0 0 2px; }
.back-link {
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  padding: 0 0 8px;
  cursor: pointer;
  text-decoration: underline;
}
.checks { margin-top: 8px; }
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  padding: 4px 0;
  font-size: 10.5px;
  line-height: 1.35;
  color: var(--cream);
  font-weight: 500;
  cursor: pointer;
}
.check input { margin-top: 0; width: 22px; height: 22px; flex: 0 0 22px; accent-color: var(--gold); }
.unsub { margin: 0 0 0 32px; color: var(--muted); font-size: 10.5px; }
.err { color: var(--danger); font-size: 13px; min-height: 0; }
.err:empty { display: none; }
.err:not(:empty) { margin-top: 4px; }
.form-note {
  color: var(--muted);
  font-size: 11px;
  font-style: italic;
  line-height: 1.45;
  margin: 10px 0 0;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

section { padding: 28px 0; }
#enter { scroll-margin-top: 84px; }

.prize, .steps, .proof { display: grid; gap: 10px; }
.prize { list-style: none; padding: 0; margin: 0; }
.prize li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.prize li strong { display: block; color: var(--gold-2); margin-bottom: 4px; }
.step { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; }
.num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-family: Fraunces, Georgia, serif;
  font-size: 18px;
}
blockquote {
  margin: 0;
  background: var(--card);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  color: var(--cream);
  border-radius: 0 10px 10px 0;
}
.samples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sample {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
}
.sample img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  margin-bottom: 10px;
  background: var(--ink);
}
.sample b { display: block; color: var(--gold-2); }
.sample span { color: var(--muted); font-size: 14px; }

details.faq {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 8px 0;
}
details.faq summary { cursor: pointer; font-weight: 650; }
details.faq p { margin: 8px 0 0; color: var(--cream); }

.okbox { display: none; text-align: center; padding: 28px 12px; }
.okbox.show { display: block; }
.form-card.hide { display: none; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 calc(36px + env(safe-area-inset-bottom));
  color: var(--muted);
  font-size: 13px;
}
footer p { margin: 0; }
footer p + p { margin-top: 8px; }

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: #0a1522ee;
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(14px + env(safe-area-inset-bottom));
  display: none;
}
.sticky .btn { width: 100%; text-align: center; }

.legal { width: min(760px, calc(100% - 32px)); margin: 28px auto 64px; }
.legal h1 { font-size: clamp(32px, 5vw, 44px); }
.legal h2 { font-size: 22px; margin-top: 28px; }
.legal p, .legal li { color: #c5cdd8; }
.legal ul { padding-left: 1.2em; }
.note { color: var(--muted); font-size: 14px; }

.result-page { padding: 48px 0 72px; }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 36px; }
  .hero-copy { text-align: left; }
  .hero-copy .lede, .assure { margin-left: 0; }
  .countdown { justify-content: flex-start; }
}

@media (max-width: 959px) {
  .assure { display: none; }
}

@media (max-width: 720px) {
  .row, .samples { grid-template-columns: 1fr; }
  header.top { position: static; }
  h1 { font-size: 32px; }
  .check, .unsub { font-size: 11px; }
  footer { padding-bottom: calc(110px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
