:root {
  color-scheme: dark;
  --bg: #020202;
  --ink: #f4f1e8;
  --muted: #a9a49a;
  --dim: #696760;
  --line: rgba(244, 241, 232, 0.24);
  --line-strong: rgba(244, 241, 232, 0.42);
  --olive: #6f7464;
  --olive-bright: #8a8f7e;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: 42px 58px 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.98), rgba(2, 2, 2, 0.74) 43%, rgba(2, 2, 2, 0.95)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(2, 2, 2, 0) 34%),
    var(--bg);
}

.site-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("assets/black-runway-figure.png");
  background-repeat: no-repeat;
  background-position: right 12% top 116px;
  background-size: min(48vw, 720px) auto;
  opacity: 0.92;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 88%, transparent 100%);
}

.topo-texture {
  position: absolute;
  top: -250px;
  left: -120px;
  z-index: -2;
  width: 840px;
  max-width: none;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-block;
  align-items: center;
  color: var(--ink);
  font-family: "Archivo Black", Arial Black, Impact, system-ui, sans-serif;
  font-size: 45px;
  font-weight: 900;
  font-style: italic;
  line-height: 0.86;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: -18px 0 20px rgba(255, 255, 255, 0.26);
  transform: skew(-10deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav span {
  color: var(--muted);
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 28px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--ink);
  background: rgba(244, 241, 232, 0.08);
  outline: none;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 130px);
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(44px, 6vh, 88px);
  padding: clamp(70px, 10vh, 114px) 0 0;
}

.hero-copy {
  position: relative;
  max-width: 690px;
}

h1,
p,
figure {
  margin: 0;
}

h1 {
  position: relative;
  font-family: "Archivo Black", Arial Black, Impact, system-ui, sans-serif;
  font-size: 9.2rem;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: -22px 0 28px rgba(255, 255, 255, 0.16);
}

h1 span {
  display: block;
}

.launch-date {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  margin-top: 28px;
  padding: 0 34px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(2, 2, 2, 0.48);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-figure {
  display: none;
}

.access-panel {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(210px, 0.95fr) minmax(280px, 1.25fr) minmax(260px, 0.95fr);
  align-items: center;
  gap: 32px;
  min-height: 142px;
  padding: 28px 46px;
  border: 1px solid var(--line-strong);
  background: rgba(2, 2, 2, 0.68);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(12px);
}

.drop-label {
  color: var(--ink);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.field-group {
  position: relative;
  padding-left: 36px;
  border-left: 1px solid var(--line-strong);
}

.access-eyebrow {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.access-copy {
  max-width: 560px;
  margin-bottom: 16px;
  color: rgba(244, 241, 232, 0.74);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0;
}

.field-group input {
  width: 100%;
  height: 34px;
  border: 0;
  border-bottom: 1px solid rgba(244, 241, 232, 0.22);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  letter-spacing: 0;
}

.field-group input::placeholder {
  color: rgba(244, 241, 232, 0.64);
}

.field-group input:focus {
  border-color: var(--ink);
}

.field-group input[aria-invalid="true"] {
  border-color: rgba(244, 241, 232, 0.72);
}

.access-panel button {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  border: 1px solid rgba(244, 241, 232, 0.32);
  color: var(--ink);
  background: linear-gradient(90deg, rgba(111, 116, 100, 0.72), rgba(92, 95, 84, 0.82));
  cursor: pointer;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: border-color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.access-panel button:hover,
.access-panel button:focus-visible {
  border-color: var(--ink);
  filter: brightness(1.12);
  outline: none;
  transform: translateY(-1px);
}

.access-panel button:disabled {
  cursor: wait;
  filter: grayscale(0.35) brightness(0.82);
  transform: none;
}

.access-panel button span:last-child {
  font-size: 31px;
  line-height: 1;
}

.form-note {
  min-height: 18px;
  margin-top: 10px;
  color: var(--olive-bright);
  font-size: 11px;
  line-height: 1.45;
}

.form-note[data-kind="error"] {
  color: #d8d1c2;
}

.form-note[data-kind="pending"] {
  color: var(--muted);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.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;
}

@media (max-width: 1200px) {
  .site-shell {
    padding-right: 42px;
    padding-left: 42px;
  }

  .site-shell::after {
    background-position: right -130px top 124px;
    background-size: 690px auto;
    opacity: 0.78;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
  }

  h1 {
    font-size: 7.6rem;
  }

  .access-panel {
    grid-template-columns: 0.8fr 1.2fr 0.9fr;
    gap: 26px;
    padding: 26px 32px;
  }
}

@media (max-width: 900px) {
  .site-shell {
    min-height: 100vh;
    padding: 24px 20px 26px;
    background:
      linear-gradient(180deg, rgba(2, 2, 2, 0.86), rgba(2, 2, 2, 0.58) 34%, rgba(2, 2, 2, 0.98) 78%),
      var(--bg);
  }

  .site-shell::after {
    background-position: center top 72px;
    background-size: 560px auto;
    opacity: 0.58;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

  .topo-texture {
    top: -70px;
    left: -210px;
    width: 620px;
    opacity: 0.11;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand {
    font-size: 34px;
  }

  .site-nav {
    gap: 12px;
    font-size: 11px;
  }

  .site-nav span {
    display: none;
  }

  .site-nav a {
    min-height: 36px;
    padding: 0 14px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 218px 0 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: 4.7rem;
    line-height: 0.9;
    text-shadow: -12px 0 22px rgba(255, 255, 255, 0.16);
  }

  .launch-date {
    min-height: 46px;
    margin-top: 22px;
    padding: 0 18px;
    font-size: 12px;
  }

  .access-panel {
    position: relative;
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    margin-top: 34px;
    padding: 24px;
  }

  .drop-label {
    font-size: 28px;
  }

  .field-group {
    padding-left: 0;
    border-left: 0;
  }

  .access-panel button {
    min-height: 60px;
  }

  .site-footer {
    flex-direction: column;
    margin-top: 30px;
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .site-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-shell::after {
    background-size: 500px auto;
  }

  h1 {
    font-size: 4.1rem;
  }

  .launch-date {
    width: 100%;
    justify-content: center;
  }

  .access-panel {
    padding: 20px;
  }

  .drop-label {
    font-size: 24px;
  }
}
