:root {
  --red: #d90000;
  --red-dark: #a90000;
  --black: #070707;
  --ink: #101010;
  --muted: #555;
  --line: #e3e3e3;
  --soft: #f8f8f8;
  --shadow: 0 12px 30px rgba(0, 0, 0, .06);
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 0, 0, .045), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.section-anchor {
  scroll-margin-top: 24px;
}

/* Header */

.site-header {
  width: min(var(--max), calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}

.brand img {
  width: clamp(230px, 26vw, 390px);
  max-width: 100%;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  display: block;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
}

.main-nav a,
.site-footer a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .35px;
}

.main-nav a {
  padding: 30px 0 12px;
  border-bottom: 4px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  border-color: var(--red);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.social-icons a {
  width: 31px;
  height: 31px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 38px;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: var(--black);
  border-radius: 2px;
}

/* Main Layout */

main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.alert {
  margin: 0 0 14px;
  padding: 14px 18px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 14px;
}

.alert.success {
  background: #eef8ef;
  color: #165b21;
  border: 1px solid #b9e0be;
}

.alert.error {
  background: #fff0f0;
  color: #971111;
  border: 1px solid #f1baba;
}

/* Hero */

.hero-shell {
  min-height: 465px;
  border: 1px solid #d8d8d8;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 49% 51%;
}

.hero-copy {
  padding: clamp(34px, 4.1vw, 62px) clamp(28px, 4vw, 42px);
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.hero-copy:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 46%, rgba(0, 0, 0, .06), transparent 0 24%, transparent 25%),
    radial-gradient(circle at 94% 46%, rgba(0, 0, 0, .035), transparent 0 36%, transparent 37%);
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.hero-title {
  margin-bottom: 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: .96;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #060606;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-title span,
.hero-title strong {
  display: block;
}

.headline-domain {
  white-space: nowrap;
}

.headline-launch {
  display: block;
}

.hero-title strong {
  display: block;
  color: var(--red);
  font-weight: inherit;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.45;
  overflow-wrap: break-word;
}

.prelaunch-line {
  max-width: 640px;
  margin-bottom: 28px;
  padding-left: 15px;
  border-left: 4px solid var(--red);
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.btn {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 5px;
  text-decoration: none;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .25px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .11);
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-black {
  background: var(--black);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: #111;
  color: #111;
}

.btn.full {
  width: 100%;
}

.hero-visual {
  min-height: 465px;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
  background: #080808;
  overflow: hidden;
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 465px;
  object-fit: cover;
  display: block;
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* Section Titles */

.audience-section,
.early-access {
  margin: 30px 0 16px;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 12px;
}

.section-title span {
  height: 1px;
  background: #d0d0d0;
}

.section-title h2,
.coming-panel h2,
.panel h2,
.mission-panel h2,
.event-teaser h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: .35px;
}

.section-intro {
  max-width: 980px;
  margin: 0 auto 18px;
  text-align: center;
  color: #333;
  line-height: 1.5;
}

/* Audience Cards */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.audience-card,
.panel,
.mission-panel,
.coming-panel,
.access-card,
.event-teaser {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .035);
}

.audience-card {
  min-height: 180px;
  padding: 18px 12px;
  text-align: center;
}

.icon {
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  min-height: 38px;
}

.audience-card h3 {
  margin: 8px 0 7px;
  font-size: 15px;
  text-transform: uppercase;
}

.audience-card p {
  margin: 0 auto;
  max-width: 185px;
  font-size: 13.5px;
  line-height: 1.38;
}

/* Coming Soon */

.coming-panel {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  align-items: start;
  padding: 28px 34px;
  margin: 16px 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 36px;
}

.feature-list li {
  break-inside: avoid;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
}

.feature-list li:before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  margin-right: 10px;
}

/* Early Access */

.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.access-card {
  padding: 22px 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.access-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 16px;
}

.access-card p {
  margin: 0 0 20px;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
}

.access-card a {
  margin-top: auto;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

/* Event Teaser */

.event-teaser {
  margin: 16px 0;
  padding: 26px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.event-teaser p {
  max-width: 850px;
  margin: 10px 0 0;
  color: #333;
  line-height: 1.5;
}

/* Forms */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}

.panel {
  min-height: 255px;
  padding: 24px 26px;
}

.panel-copy {
  margin: 10px 0 14px;
  color: #333;
  line-height: 1.45;
  font-size: 14px;
}

form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 13px;
}

textarea {
  min-height: 88px;
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #222;
  line-height: 1.4;
}

.check-row span {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
}

.check-row input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

.privacy-note {
  margin: 0;
  color: #5a5a5a;
  font-size: 11.5px;
  line-height: 1.45;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 1px !important;
  width: 1px !important;
  pointer-events: none !important;
}

/* Mission */

.mission-panel {
  margin: 16px 0 8px;
  min-height: 96px;
  display: grid;
  grid-template-columns: 230px 1fr 240px;
  gap: 28px;
  align-items: center;
  padding: 22px 36px;
}

.crown-mark {
  color: var(--red);
  font-size: 58px;
  text-align: center;
  line-height: 1;
  border-right: 2px solid #d4d4d4;
}

.mission-copy p {
  margin: 8px 0 4px;
  font-size: 14px;
  line-height: 1.45;
}

.respect-mark {
  color: #dedede;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 30px;
  line-height: .9;
  text-align: center;
  transform: rotate(-7deg);
}

/* Footer */

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 8px 8px 26px;
  font-size: 12px;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 42px;
}

.footer-main p {
  margin: 0 auto 0 0;
}

.site-footer nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  flex-wrap: wrap;
}

.footer-disclaimer {
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #555;
  line-height: 1.45;
}

/* Inner Legal / Info Pages */

.page-shell {
  width: min(980px, calc(100% - 40px));
  margin: 22px auto 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 52px);
}

.page-shell h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: .02em;
  margin-bottom: 18px;
}

.page-shell h2 {
  margin: 28px 0 10px;
  text-transform: uppercase;
  font-size: 18px;
}

.page-shell p,
.page-shell li {
  line-height: 1.65;
  color: #333;
}

.page-shell ul {
  padding-left: 22px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* Tablet */

@media (max-width: 1180px) {
  .site-header {
    flex-wrap: wrap;
    padding: 10px 0 18px;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
  }

  .social-icons {
    margin-left: auto;
  }

  .hero-shell,
  .coming-panel,
  .form-grid,
  .event-teaser {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    clip-path: none;
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .access-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .crown-mark {
    border-right: 0;
    border-bottom: 2px solid #d4d4d4;
    padding-bottom: 10px;
  }

  .footer-main {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-main p {
    width: 100%;
    margin: 0;
  }
}

/* Mobile */

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 20% 0%, rgba(217, 0, 0, .035), transparent 28%),
      linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
  }

  .site-header,
  main,
  .site-footer {
    width: calc(100% - 24px);
  }

  .site-header {
    min-height: auto;
    padding: 14px 0 18px;
    gap: 12px;
    align-items: center;
  }

  .brand {
    max-width: calc(100% - 62px);
  }

  .brand img {
    width: auto;
    max-width: 100%;
    max-height: 64px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
    width: 100%;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a.active {
    border-bottom-color: var(--line);
    border-left: 4px solid var(--red);
  }

  .social-icons {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    display: block;
    border-radius: 10px;
  }

  .hero-copy {
    padding: 28px 20px 24px;
    width: 100%;
  }

  .eyebrow {
    display: block;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .14em;
  }

  h1,
  .hero-title {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.02;
    letter-spacing: .2px;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .headline-domain {
    font-size: clamp(22px, 6vw, 27px);
    line-height: 1.05;
    white-space: nowrap;
    letter-spacing: .15px;
  }

  .headline-launch {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.02;
  }

  .hero-title strong {
    font-size: clamp(38px, 10.5vw, 48px);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .prelaunch-line {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
    font-size: 13px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-visual img {
    min-height: 280px;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .section-title span {
    display: none;
  }

  .section-title h2,
  .coming-panel h2,
  .panel h2,
  .mission-panel h2,
  .event-teaser h2 {
    font-size: 22px;
    line-height: 1.15;
  }

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

  .audience-card {
    min-height: auto;
    padding: 22px 16px;
  }

  .audience-card p {
    max-width: 100%;
  }

  .coming-panel,
  .event-teaser,
  .panel,
  .mission-panel {
    padding: 20px;
  }

  .feature-list {
    columns: 1;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .check-row {
    font-size: 12px;
  }

  .mission-panel {
    gap: 18px;
  }

  .respect-mark {
    font-size: 24px;
  }

  .site-footer {
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer nav {
    width: 100%;
    justify-content: center;
    gap: 16px 22px;
  }

  .site-footer a {
    font-size: 12px;
  }

  .page-shell {
    width: calc(100% - 24px);
    padding: 24px 20px;
  }

  .page-actions .btn {
    width: 100%;
  }
}

/* Small Phones */

@media (max-width: 430px) {
  .site-header,
  main,
  .site-footer {
    width: calc(100% - 20px);
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .brand img {
    max-height: 58px;
  }

  .menu-toggle {
    width: 38px;
    height: 36px;
  }

  .hero-copy {
    padding: 24px 18px 22px;
  }

  .headline-domain {
    font-size: clamp(19px, 5.55vw, 23px);
    white-space: nowrap;
    letter-spacing: 0;
  }

  .headline-launch {
    font-size: clamp(31px, 8.8vw, 38px);
  }

  .hero-title strong {
    font-size: clamp(34px, 9.7vw, 42px);
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero-text {
    font-size: 15px;
  }

  .prelaunch-line {
    font-size: 13.5px;
  }

  .section-title h2,
  .coming-panel h2,
  .panel h2,
  .mission-panel h2,
  .event-teaser h2 {
    font-size: 20px;
  }

  .panel,
  .coming-panel,
  .event-teaser,
  .mission-panel {
    padding: 18px;
  }
}

/* Extra Small Phones */

@media (max-width: 360px) {
  .headline-domain {
    font-size: 18px;
  }

  .headline-launch {
    font-size: 29px;
  }

  .hero-title strong {
    font-size: 32px;
  }

  .brand img {
    max-height: 52px;
  }

  .hero-copy {
    padding: 22px 16px;
  }
}