:root {
  --bg: #000;
  --ink: #f8f5ef;
  --muted: #aaa5a0;
  --red: #ff2a16;
  --cyan: #00d9ff;
  --gold: #e9d5b4;
  --panel: rgba(255,255,255,.045);
  --line: rgba(255,255,255,.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,42,22,.08), transparent 34rem),
    #000;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 48%, rgba(0,0,0,.72) 100%);
  z-index: 30;
}
a { color: inherit; }

.noise {
  position: fixed;
  inset: -50%;
  opacity: .055;
  pointer-events: none;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  animation: noiseMove .18s steps(2) infinite;
}
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 19;
  opacity: .09;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(255,255,255,.11) 4px);
  mix-blend-mode: overlay;
}
@keyframes noiseMove {
  0% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(2%,-1%,0); }
  50% { transform: translate3d(-1%,2%,0); }
  75% { transform: translate3d(1%,1%,0); }
  100% { transform: translate3d(-2%,-1%,0); }
}

.shell { width: min(1080px, calc(100% - 36px)); margin-inline: auto; position: relative; z-index: 2; }
.hero {
  min-height: 94svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 0 70px;
}
.hero-logo {
  width: min(820px, 98%);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255,255,255,.05));
  animation: microGlitch 5.7s infinite;
}
@keyframes microGlitch {
  0%, 88%, 92%, 100% { transform: translate(0); filter: none; }
  89% { transform: translate(-1px, 0); filter: drop-shadow(3px 0 0 rgba(255,42,22,.35)) drop-shadow(-3px 0 0 rgba(0,217,255,.35)); }
  90% { transform: translate(2px, -1px); }
  91% { transform: translate(-1px, 1px); }
}

.cta {
  appearance: none;
  border: 1px solid rgba(255,255,255,.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 28px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(.82rem, 1.4vw, 1rem);
  letter-spacing: .055em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}
.cta:hover, .cta:focus-visible { transform: translateY(-2px); }
.cta-primary { background: #f7f4ed; color: #050505; box-shadow: 5px 4px 0 var(--red), -4px -3px 0 rgba(0,217,255,.75); }
.cta-primary:hover, .cta-primary:focus-visible { background: #fff; box-shadow: 7px 6px 0 var(--red), -5px -4px 0 rgba(0,217,255,.8); }
.cta-secondary { background: transparent; color: #fff; box-shadow: 4px 4px 0 rgba(255,42,22,.65); }
.cta-secondary:hover, .cta-secondary:focus-visible { background: #fff; color: #000; }
.full { width: 100%; }
.microcopy, .form-note, .tiny { color: var(--muted); font-size: .78rem; letter-spacing: .02em; }
.microcopy { margin: 14px 0 0; }

.confession { padding: 90px 0 130px; text-align: center; }
.script-lockup { width: min(1000px, 100%); height: auto; margin-bottom: 28px; filter: drop-shadow(0 0 18px rgba(233,213,180,.12)); }
.confession-copy { margin: 0 auto 34px; max-width: 700px; font-size: clamp(1.05rem, 2.2vw, 1.45rem); line-height: 1.55; color: #d8d5d1; }

.list { padding: 80px 0 150px; text-align: center; }
.rule { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent); margin-bottom: 72px; }
.eyebrow { color: var(--gold); font-family: "Archivo Black", Impact, sans-serif; letter-spacing: .18em; font-size: .72rem; }
.list h2, .submission-card h1, .thanks-shell h1 {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.2rem, 6.7vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.04em;
  margin: 16px 0 24px;
  text-transform: uppercase;
  text-shadow: 3px 0 0 rgba(255,42,22,.52), -3px 0 0 rgba(0,217,255,.42);
}
.list-copy { max-width: 700px; margin: 0 auto 34px; color: #c7c4c0; line-height: 1.6; }
.signup-form { max-width: 760px; margin: 0 auto; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; text-align: left; }
label span { display: block; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #d7d3ce; margin-bottom: 8px; }
label em { color: #76716d; font-style: normal; font-weight: 500; }
input[type="email"], input[type="tel"] {
  width: 100%; min-height: 54px; border-radius: 0; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: #fff; padding: 0 15px; outline: none; font: inherit;
}
input[type="email"]:focus, input[type="tel"]:focus { border-color: rgba(255,255,255,.8); box-shadow: 3px 0 0 rgba(255,42,22,.5), -3px 0 0 rgba(0,217,255,.4); }
.check { display: flex; gap: 12px; text-align: left; align-items: flex-start; margin: 14px 0 24px; }
.check input { margin-top: 3px; accent-color: #fff; }
.check span { margin: 0; text-transform: none; letter-spacing: 0; font-size: .72rem; line-height: 1.45; color: #96918d; font-weight: 500; }
.hidden { display: none !important; }
.form-status { min-height: 22px; margin-top: 14px; color: var(--gold); font-size: .83rem; }
footer { position: relative; z-index: 2; padding: 0 0 28px; color: #57534f; font-size: .68rem; text-align: center; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Submission */
.submission-page, .thanks-page { min-height: 100svh; }
.submit-shell { width: min(860px, calc(100% - 30px)); margin: 0 auto; position: relative; z-index: 2; padding: 34px 0 80px; }
.back-link { font-family: "Archivo Black", Impact, sans-serif; text-decoration: none; font-size: .78rem; letter-spacing: .1em; color: #8a8580; }
.back-link:hover { color: #fff; }
.submission-card { margin-top: 64px; border: 1px solid var(--line); background: rgba(255,255,255,.02); padding: clamp(24px, 5vw, 58px); box-shadow: 10px 10px 0 rgba(255,42,22,.08), -8px -8px 0 rgba(0,217,255,.06); }
.submission-card h1 { font-size: clamp(2.4rem, 7vw, 5.2rem); margin-top: 10px; }
.lede { color: #c5c1bc; line-height: 1.6; font-size: 1.05rem; max-width: 660px; }
.privacy-lock { margin: 24px 0 34px; font-family: "Archivo Black", Impact, sans-serif; letter-spacing: .05em; color: #fff; font-size: .78rem; }
.voice-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.choice, .mini-btn {
  border: 1px solid var(--line); background: rgba(255,255,255,.03); color: #8f8a85; min-height: 46px; padding: 10px 14px; font-family: "Archivo Black", Impact, sans-serif; letter-spacing: .04em; cursor: pointer;
}
.choice.active { color: #000; background: #fff; border-color: #fff; box-shadow: 3px 3px 0 var(--red), -3px -3px 0 var(--cyan); }
.voice-panel { border: 1px solid var(--line); padding: 22px; background: #050505; margin-bottom: 20px; }
.recorder { display: flex; align-items: center; gap: 16px; }
.record-orb { width: 18px; height: 18px; border-radius: 999px; background: #5f5b58; box-shadow: 0 0 0 7px rgba(255,255,255,.03); }
.record-orb.live { background: var(--red); box-shadow: 0 0 0 7px rgba(255,42,22,.12), 0 0 22px rgba(255,42,22,.6); animation: pulse 1.15s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(.82); opacity: .65; } }
.timer { margin: 0; font-family: "Archivo Black", Impact, sans-serif; font-size: 1.9rem; letter-spacing: .04em; }
.recorder-status { margin: 3px 0 0; color: #817c78; font-size: .76rem; }
.recorder-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.mini-btn:disabled { opacity: .35; cursor: not-allowed; }
.mini-btn:not(:disabled):hover { border-color: #fff; color: #fff; }
.mini-btn.ghost { background: transparent; }
.recording-review { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.recording-review audio { width: 100%; }
.dropzone { display: flex; min-height: 170px; align-items: center; justify-content: center; flex-direction: column; text-align: center; border: 1px dashed rgba(255,255,255,.35); cursor: pointer; padding: 20px; }
.dropzone strong { font-family: "Archivo Black", Impact, sans-serif; font-size: 1rem; }
.dropzone span { text-transform: none; letter-spacing: 0; color: #807b77; margin-top: 8px; }
.dropzone input { margin-top: 16px; max-width: 100%; color: #aaa5a0; }
.submission-fields { margin-top: 4px; }
.release-check { margin-top: 18px; }

/* Thanks */
.thanks-shell { width: min(920px, calc(100% - 34px)); min-height: 100svh; margin: 0 auto; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 60px 0; }
.thanks-shell h1 { font-size: clamp(2.5rem, 7.5vw, 6rem); }
.thanks-shell p:not(.eyebrow) { color: #aaa5a0; max-width: 650px; line-height: 1.6; margin: 0 0 32px; }

@media (max-width: 720px) {
  .hero { min-height: 88svh; padding-top: 24px; }
  .hero-logo { width: 108%; max-width: none; }
  .confession { padding: 40px 0 90px; }
  .script-lockup { width: 112%; margin-left: -6%; }
  .list { padding: 50px 0 110px; }
  .field-row { grid-template-columns: 1fr; }
  .voice-choice { grid-template-columns: 1fr; }
  .submission-card { margin-top: 34px; padding: 24px 18px; }
  .cta { width: 100%; }
  .hero .cta { width: min(520px, 94%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}
