:root {
  --black: #0b0b0b;
  --paper: #efeee9;
  --muted: #85847c;
  --acid: #c8f224;
  --line: rgba(239, 238, 233, 0.18);
  --display: "Archivo Black", Impact, Haettenschweiler, sans-serif;
  --mono: "Courier Prime", "Courier New", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  color: var(--paper);
  background: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22240%22 height=%22240%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%222%22/%3E%3CfeColorMatrix values=%220 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0%22/%3E%3C/filter%3E%3Crect width=%22240%22 height=%22240%22 filter=%22url(%23n)%22/%3E%3C/svg%3E");
  font-family: var(--mono);
  overflow-x: hidden;
}

a { color: inherit; }
a:hover { color: var(--acid); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-shell {
  display: flex;
  flex-direction: column;
  width: min(1440px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 48px) clamp(20px, 5vw, 76px) 28px;
}
/* Column flex items default to min-width:auto, so a long display word would widen the
   whole shell past the viewport instead of staying inside its section. */
.site-shell > * { min-width: 0; }

.topbar, .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.topbar { padding-bottom: 22px; border-bottom: 1px solid var(--line); }

.wordmark {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -.04em;
  text-decoration: none;
}

.wordmark-dot, .footer-x { color: var(--acid); }

.topbar-right { display: flex; align-items: center; gap: 16px; }

.sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  background: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.sound-toggle:hover, .sound-toggle:focus-visible { border-color: var(--acid); color: var(--acid); }
.sound-toggle.is-on { border-color: var(--acid); color: var(--acid); }
.sound-icon { display: grid; place-items: center; width: 14px; height: 14px; }
.sound-icon svg { display: block; grid-area: 1 / 1; }
/* One icon per state — the pair is stacked in a single grid cell so the
   button never changes width when the label flips. */
.sound-toggle .icon-on, .sound-toggle.is-on .icon-off { display: none; }
.sound-toggle.is-on .icon-on { display: block; }
.sound-label { min-width: 62px; text-align: left; }

.status { color: var(--muted); }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 13px var(--acid); animation: pulse 2.4s ease-in-out infinite; }
.year { color: var(--muted); }

.hero { padding: clamp(48px, 8vw, 100px) 0 clamp(60px, 8vw, 110px); }

h1, h2, p { margin-top: 0; }
.eyebrow { margin: 0 0 28px; color: var(--acid); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow span { margin-right: 8px; color: var(--paper); }

.hero-title {
  margin: 0 0 40px;
  font-family: var(--display);
  font-size: clamp(48px, 13vw, 168px);
  line-height: .84;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.hero-title span { display: inline-block; color: var(--acid); transform: rotate(-1.5deg); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  grid-template-areas: "lede invite" "motto invite" "notes invite" ". invite";
  gap: 0 60px;
  align-items: start;
}
.hero-grid > .lede { grid-area: lede; padding-top: 6px; }
.hero-grid > .motto { grid-area: motto; margin-top: 32px; }
.hero-grid > .side-notes { grid-area: notes; margin-top: 32px; }
.hero-grid > .invite { grid-area: invite; }

.lede { max-width: 560px; margin: 0; color: #b8b7b0; font-size: 16px; line-height: 1.65; letter-spacing: .02em; }
.motto { margin: 0; font-family: var(--display); font-size: 30px; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.motto span { color: var(--acid); }
.side-notes { display: flex; flex-direction: column; gap: 12px; color: var(--muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.side-notes a { color: var(--muted); text-decoration: underline; text-underline-offset: 4px; }
.side-notes a:hover, .side-notes a:focus-visible { color: var(--acid); }

/* Invite form. The offset frame is a pseudo-element so the card itself stays a normal box. */
.invite {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 14px 14px 0;
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  background: rgba(11, 11, 11, .6);
}
.invite::before { position: absolute; z-index: -1; inset: 14px -14px -14px 14px; content: ""; border: 1px solid rgba(200, 242, 36, .45); transform: rotate(2.2deg); pointer-events: none; }
.invite .eyebrow { margin: 0; }
.invite-title { margin: 0; font-size: clamp(36px, 3.2vw, 44px); line-height: .9; letter-spacing: -.05em; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { color: var(--muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.field .req { color: var(--acid); }
.field .opt { letter-spacing: .08em; }
.field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .02em;
}
.field input::placeholder { color: var(--muted); opacity: 1; }
.field input:focus-visible { outline: 2px solid var(--acid); outline-offset: 2px; border-color: var(--acid); }
.field input.is-invalid { border-color: var(--acid); }
.field-error, .invite-error { margin: 0; color: var(--acid); font-size: 12px; line-height: 1.6; letter-spacing: .04em; }
.invite-error a { color: var(--acid); text-decoration: underline; text-underline-offset: 3px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.turnstile:empty { display: none; }
.invite-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 16px 14px 19px;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: var(--black);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.invite-submit:hover, .invite-submit:focus-visible { transform: translate(3px, -3px); }
.invite-submit:focus-visible { outline: 2px solid var(--paper); outline-offset: 2px; }
.invite-submit:disabled { opacity: .6; cursor: wait; transform: none; }
.invite-submit .arrow { margin-left: 0; }
.invite-fine { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; letter-spacing: .04em; }

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 205px;
  padding: 15px 16px 14px 19px;
  border: 1px solid var(--acid);
  color: var(--acid);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.primary-link:hover, .primary-link:focus-visible { color: var(--black); background: var(--acid); transform: translate(3px, -3px); }
.arrow { margin-left: 30px; font-size: 20px; line-height: .5; }
.scribble { display: inline-block; margin-right: 8px; color: var(--acid); font-size: 18px; transform: rotate(12deg); }

/* What's coming */
.coming { padding: 44px 0 70px; border-top: 1px solid var(--line); }
.coming-head { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: end; margin-bottom: 44px; }
.coming-intro { max-width: 480px; margin: 0; color: #b8b7b0; font-size: 14px; line-height: 1.65; letter-spacing: .01em; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.card { display: flex; flex-direction: column; gap: 18px; padding: 24px 22px 26px; border: 1px solid var(--line); }
.card:nth-child(1) { transform: rotate(-.6deg); }
.card:nth-child(2) { transform: rotate(.8deg); }
.card:nth-child(3) { transform: rotate(-.9deg); }
.card-n { color: var(--acid); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.card h3 { margin: 0; font-family: var(--display); font-size: 22px; line-height: 1; letter-spacing: -.02em; text-transform: uppercase; }
.card p { margin: 0; color: #b8b7b0; font-size: 14px; line-height: 1.65; }
.card em { color: var(--acid); font-style: normal; }

/* Depth sections: the explanatory blocks between the hero and the follow row.
   Same eyebrow / display heading / card vocabulary as "what's coming". */
.about { padding: 44px 0 48px; border-top: 1px solid var(--line); }
.about-text { max-width: 780px; margin: 0; color: #b8b7b0; font-size: 16px; line-height: 1.7; letter-spacing: .01em; }
.block { padding: 44px 0 70px; border-top: 1px solid var(--line); }
.block-head { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: end; margin-bottom: 44px; }
.block-head.is-prose { align-items: start; margin-bottom: 0; }
.block-head .primary-link { justify-self: start; align-self: end; }
.block-intro { max-width: 480px; margin: 0; color: #b8b7b0; font-size: 14px; line-height: 1.65; letter-spacing: .01em; }
.prose { display: flex; flex-direction: column; gap: 18px; }
.prose p { max-width: 560px; margin: 0; color: #b8b7b0; font-size: 15px; line-height: 1.7; letter-spacing: .01em; }
.prose strong { color: var(--paper); font-weight: normal; }
.prose a { text-decoration: underline; text-underline-offset: 4px; }
/* File paths and commands in running copy read in the accent, like <em> in the cards. */
.about-text code, .prose code, .card code, .faq-a code { font-family: inherit; color: var(--acid); }
.cards.is-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.is-four .card:nth-child(4) { transform: rotate(.7deg); }
.terms { width: 100%; margin: 0; border-collapse: collapse; }
.terms th, .terms td { padding: 18px 0; border-top: 1px solid var(--line); vertical-align: top; text-align: left; }
.terms th { width: 30%; padding-right: 30px; font-family: var(--display); font-size: clamp(16px, 1.6vw, 19px); font-weight: normal; letter-spacing: -.02em; text-transform: uppercase; overflow-wrap: anywhere; }
.terms td { max-width: 640px; color: #b8b7b0; font-size: 14px; line-height: 1.65; letter-spacing: .01em; }

.follow {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: 40px;
  padding: 44px 0 70px;
  border-top: 1px solid var(--line);
}
h2 { margin-bottom: 0; font-family: var(--display); font-size: clamp(40px, 5vw, 72px); line-height: .88; letter-spacing: -.06em; text-transform: uppercase; }
h2 span { color: var(--acid); }

/* Six cards: one row of six, or two rows of three, or two columns — never an orphan. */
.socials { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.socials.is-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.socials a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  min-height: 116px;
  padding: 17px 14px;
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.socials a:nth-child(2) { transform: rotate(1deg); }
.socials a:nth-child(3) { transform: rotate(-1deg); }
.socials a:nth-child(4) { transform: rotate(1.5deg); }
.socials a:nth-child(5) { transform: rotate(-1.5deg); }
.socials a:nth-child(6) { transform: rotate(1deg); }
.socials a.is-featured { border-color: var(--acid); }
.socials a:hover, .socials a:focus-visible { border-color: var(--acid); color: var(--acid); transform: translateY(-5px) rotate(0deg); }
.social-icon { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid currentColor; border-radius: 50%; }
.social-icon svg { display: block; }

.signal-log { padding: 0 0 70px; border-top: 1px solid var(--line); }
.signal-log .eyebrow { margin: 44px 0 28px; }
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 40px; margin: 0; }
.faq-item { padding-top: 18px; border-top: 1px solid var(--line); }
.faq-q { margin: 0 0 8px; font-family: var(--display); font-size: clamp(16px, 1.6vw, 19px); letter-spacing: -.02em; text-transform: uppercase; }
.faq-a { margin: 0; max-width: 440px; color: #b8b7b0; font-size: 14px; line-height: 1.65; letter-spacing: .01em; }
.faq-a em { color: var(--acid); font-style: normal; }

.footer { justify-content: flex-start; gap: 14px; color: var(--muted); }
.footer-x { font-size: 18px; }

/* Thank-you pages (/alpha/thanks, /alpha/already) */
.thanks { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; align-items: start; padding: clamp(48px, 8vw, 100px) 0 clamp(60px, 7vw, 90px); }
.thanks.is-returning { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); align-items: end; }
.thanks.is-single { grid-template-columns: minmax(0, 1fr); }
.video-slot[hidden] { display: none; }
.thanks-copy { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
.thanks-copy .eyebrow { margin: 0; }
.thanks-title { margin: 0; font-family: var(--display); font-size: clamp(36px, 6.2vw, 90px); line-height: .86; letter-spacing: -.06em; text-transform: uppercase; }
.thanks-title span { display: inline-block; color: var(--acid); transform: rotate(-1.5deg); }
.thanks-copy .lede { max-width: 520px; }
.thanks-copy .primary-link { min-width: 240px; padding: 17px 18px 16px 22px; font-size: 13px; }
.thanks-copy .arrow { font-size: 22px; }
.video-slot { position: relative; isolation: isolate; margin: 62px 18px 18px 0; }
.video-slot::before { position: absolute; z-index: -1; inset: 18px -18px -18px 18px; content: ""; border: 1px solid rgba(200, 242, 36, .45); transform: rotate(2.2deg); }
.video-frame { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; aspect-ratio: 16 / 9; max-width: 100%; padding: 24px; border: 1px solid var(--line); background: rgba(11, 11, 11, .6); box-shadow: 18px 18px 0 rgba(200, 242, 36, .92); text-align: center; }
.video-play { display: grid; place-items: center; width: 72px; height: 72px; border: 1px solid var(--acid); border-radius: 50%; color: var(--acid); }
.video-label { color: var(--acid); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.video-note { max-width: 360px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.wait-card { position: relative; isolation: isolate; display: flex; flex-direction: column; gap: 16px; margin: 0 14px 14px 0; padding: 30px 28px; border: 1px solid var(--line); background: rgba(11, 11, 11, .6); }
.wait-card::before { position: absolute; z-index: -1; inset: 14px -14px -14px 14px; content: ""; border: 1px solid rgba(200, 242, 36, .45); transform: rotate(-1.2deg); }
.wait-card .eyebrow { margin: 0; }
.wait-card .motto { font-size: 26px; letter-spacing: -.03em; }
.wait-card p:last-child { margin: 0; color: #b8b7b0; font-size: 14px; line-height: 1.65; }
.follow.is-after { padding-bottom: 60px; }
.follow.is-after h2 { font-size: clamp(40px, 4vw, 56px); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* Below this the two-up follow section squeezes the social row too tight, so stack it. */
@media (max-width: 1200px) {
  .follow { grid-template-columns: minmax(0, 1fr); align-items: start; gap: 34px; }
  .socials { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Below this the hero's two columns squeeze the form, so the copy stacks over it. */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "lede" "motto" "invite" "notes"; }
  .hero-grid > .invite { margin-top: 32px; max-width: 560px; }
  .hero-grid > .side-notes a { order: -1; }
  .coming-head { grid-template-columns: minmax(0, 1fr); gap: 20px; align-items: start; }
  .cards { grid-template-columns: minmax(0, 1fr); }
  .block-head { grid-template-columns: minmax(0, 1fr); gap: 20px; align-items: start; }
  .cards.is-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .thanks, .thanks.is-returning { grid-template-columns: minmax(0, 1fr); gap: 44px; align-items: start; }
  .video-slot { margin-top: 0; }
}

@media (max-width: 720px) {
  .site-shell { padding: 18px 18px 24px; }
  .topbar { padding-bottom: 18px; }
  .status { display: none; }
  .year { font-size: 10px; }
  .hero { padding: 44px 0 70px; }
  .eyebrow { margin-bottom: 18px; font-size: 11px; }
  .hero-title { margin-bottom: 30px; line-height: .86; }
  .hero-grid > .lede { padding-top: 0; }
  .hero-grid > .motto, .hero-grid > .invite, .hero-grid > .side-notes { margin-top: 26px; }
  .lede { max-width: 330px; font-size: 14px; }
  .motto { font-size: 24px; }
  .side-notes { gap: 10px; font-size: 11px; }
  .invite { gap: 16px; margin-right: 10px; margin-bottom: 10px; padding: 22px 18px 20px; }
  .invite::before { inset: 10px -10px -10px 10px; transform: rotate(-1.2deg); }
  .invite-title { font-size: 40px; }
  .field label, .invite-fine { font-size: 11px; }
  .coming { padding: 38px 0 60px; }
  .coming-head { margin-bottom: 28px; }
  .coming h2, .block h2 { margin-bottom: 0; font-size: 44px; }
  .about { padding: 34px 0 38px; }
  .about-text { font-size: 14px; }
  .block { padding: 38px 0 60px; }
  .block-head { margin-bottom: 28px; }
  .prose p { font-size: 14px; }
  .cards.is-four { grid-template-columns: minmax(0, 1fr); }
  .terms, .terms tbody, .terms tr, .terms th, .terms td { display: block; }
  .terms th { width: auto; padding: 18px 0 6px; }
  .terms td { padding-top: 0; border-top: 0; }
  .card { gap: 14px; padding: 20px 18px 22px; }
  .card h3 { font-size: 20px; }
  .thanks-title { font-size: clamp(36px, 11vw, 66px); }
  .video-slot { margin: 0 12px 12px 0; }
  .video-slot::before { inset: 12px -12px -12px 12px; }
  .video-frame { box-shadow: 11px 11px 0 rgba(200, 242, 36, .92); }
  .wait-card { padding: 22px 18px; }
  .follow { display: block; padding: 38px 0 66px; }
  h2 { margin-bottom: 30px; font-size: clamp(42px, 13vw, 68px); }
  .socials { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .socials a { min-height: 108px; padding: 14px 12px; font-size: 9px; }
  .signal-log { padding-bottom: 60px; }
  .signal-log .eyebrow { margin: 38px 0 20px; }
  .faq-list { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .footer { flex-wrap: wrap; gap: 8px 14px; font-size: 9px; letter-spacing: .1em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
