:root {
  --black: #050505;
  --graphite-950: #050706;
  --graphite-900: #090d0b;
  --bone: #f2ead8;
  --bone-100: #f2ead8;
  --bone-200: #d9cfb9;
  --bone-300: #aa9f86;
  --muted: #7f765f;
  --amber: #f0a000;
  --signal: #f0a000;
  --line: rgba(242, 234, 216, 0.14);
  --line-strong: rgba(242, 234, 216, 0.28);
  --line-amber: rgba(240, 160, 0, 0.48);
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
  --font-display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --font-body: Inter, Arial, sans-serif;
  --mono: var(--font-mono);
  --display: var(--font-display);
  --body: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
  color: var(--bone);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(240, 160, 0, 0.1), transparent 24rem),
    linear-gradient(180deg, #080907 0%, #030303 100%);
  color: var(--bone);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(242, 234, 216, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 234, 216, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 36%, black, transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.splash-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(18px, 3vw, 38px);
}

.minimal-header,
.minimal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.minimal-brand,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
  text-decoration: none;
}

.minimal-mark,
.brand-mark {
  position: relative;
  width: 28px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid var(--line-amber);
}

.minimal-mark::before,
.brand-mark::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 6px;
  height: 2px;
  background: var(--amber);
  box-shadow: 0 6px 0 rgba(242, 234, 216, 0.78);
}

.minimal-link,
.minimal-footer a {
  color: var(--bone-300);
  text-decoration: none;
}

.minimal-link:hover,
.minimal-footer a:hover {
  color: var(--amber);
}

.minimal-hero {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: clamp(30px, 5vw, 58px);
  padding: 8vh 0 10vh;
}

.minimal-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 15vw, 210px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.minimal-copy p {
  max-width: 560px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: var(--bone-200);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.35;
}

.access-form {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.access-form label {
  display: block;
}

.access-form label span,
.access-form [name="_honey"] {
  position: absolute;
  left: -9999px;
}

.access-form input[type="email"] {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(3, 3, 3, 0.72);
  color: var(--bone);
  padding: 0 18px;
  font: 14px/1 var(--font-mono);
  letter-spacing: 0.04em;
  outline: none;
}

.access-form input[type="email"]::placeholder {
  color: rgba(242, 234, 216, 0.46);
}

.access-form input[type="email"]:focus {
  border-color: var(--line-amber);
  box-shadow: 0 0 0 2px rgba(240, 160, 0, 0.12);
}

.access-form button,
.primary-cta,
.secondary-cta {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-amber);
  border-radius: 0;
  padding: 0 20px;
  background: transparent;
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.access-form button,
.primary-cta {
  border-color: var(--amber);
  background: var(--amber);
  color: #080704;
}

.secondary-cta {
  background: transparent;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.minimal-footer {
  color: var(--bone-300);
}

.minimal-footer p {
  margin: 0;
}

.brand-small,
.brand-main {
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-small {
  color: var(--bone-300);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  color: var(--bone-200);
  font-size: 20px;
  line-height: 1.6;
}

.thanks-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 3vw, 38px);
}

.thanks-panel {
  max-width: 760px;
  margin-top: 72px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thanks-panel h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.9;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.grid-wash,
.grain {
  display: none;
}

@media (max-width: 720px) {
  .splash-shell {
    padding: 18px;
  }

  .minimal-header,
  .minimal-footer {
    align-items: flex-start;
    flex-direction: column;
    font-size: 11px;
  }

  .minimal-hero {
    padding: 9vh 0 8vh;
  }

  .minimal-copy h1 {
    font-size: clamp(58px, 21vw, 86px);
  }

  .minimal-copy p {
    font-size: 18px;
  }

  .access-form {
    grid-template-columns: 1fr;
  }

  .access-form button {
    width: 100%;
  }
}
