:root {
  color-scheme: dark;
  --ink: #f5f1e7;
  --muted: #b5b9af;
  --surface: #101712;
  --surface-raised: #18231b;
  --line: #344238;
  --signal: #d8ff45;
  --signal-dark: #172000;
  --danger: #ff8f82;
  --display: 'Barlow Condensed', sans-serif;
  --body: 'Manrope', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(216, 255, 69, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 255, 69, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  font-family: var(--body);
  letter-spacing: 0;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--signal);
  color: var(--signal);
  line-height: 1;
}

.season-label,
.eyebrow,
.video-caption {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(520px, 1.45fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  padding: clamp(64px, 10vw, 124px) 0 clamp(72px, 10vw, 112px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--signal);
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  font-size: clamp(4.25rem, 8.3vw, 7.5rem);
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.lede {
  max-width: 520px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.draft-details {
  margin-top: 36px;
  padding-left: 18px;
  border-left: 4px solid var(--signal);
}

.draft-details p {
  margin-bottom: 0;
}

.draft-label {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.draft-date {
  margin-top: 7px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.draft-time {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.video-stage {
  min-width: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #4c5d50;
  border-bottom: 6px solid var(--signal);
  background: #050705;
  box-shadow: 18px 18px 0 rgba(216, 255, 69, 0.08);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin: 18px 0 0;
}

.signup-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  padding: clamp(48px, 7vw, 78px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-raised);
}

.signup-copy > p:last-child {
  max-width: 420px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.email-field {
  min-width: 0;
}

.email-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.email-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #536158;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: #0d130f;
}

.email-field input:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(216, 255, 69, 0.14);
}

button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--signal);
  border-radius: 0;
  color: var(--signal-dark);
  background: var(--signal);
  font-weight: 800;
  cursor: pointer;
}

button:hover {
  background: #e5ff7a;
}

button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--signal);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status.success {
  color: var(--signal);
}

.form-status.error {
  color: var(--danger);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 48px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .intro,
  .signup-band {
    grid-template-columns: 1fr;
  }

  .intro {
    align-items: start;
  }

  .intro-copy {
    max-width: 650px;
  }
}

@media (max-width: 580px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 76px;
  }

  .season-label {
    max-width: 125px;
    text-align: right;
  }

  .intro {
    gap: 40px;
    padding: 52px 0 64px;
  }

  h1 {
    font-size: 4.15rem;
  }

  .video-frame {
    box-shadow: 9px 9px 0 rgba(216, 255, 69, 0.08);
  }

  .signup-band {
    gap: 36px;
    padding: 42px 22px;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  footer {
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}