* {
  box-sizing: border-box;
}

:root {
  --black: #090909;
  --black-soft: #131313;
  --white: #ffffff;
  --red: #d71920;
  --red-dark: #ab1117;
  --text-soft: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--white);
  background: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9, 9, 9, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-disabled {
  cursor: default;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--red);
}

.brand-text {
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 138px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 28%, rgba(215, 25, 32, 0.28), transparent 30%),
    linear-gradient(115deg, rgba(9, 9, 9, 0.97) 0%, rgba(9, 9, 9, 0.94) 43%, rgba(9, 9, 9, 0.58) 70%, rgba(9, 9, 9, 0.42) 100%),
    #000000;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  opacity: 0.32;
  filter: saturate(0) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.76) 42%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 56px 0 42px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0;
  color: #ff8d92;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(2.7rem, 5.8vw, 5rem);
  line-height: 0.96;
}

.hero-subhead {
  max-width: 680px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.panel-topline {
  color: #ff8d92;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 12px 0 18px;
  font-size: 2rem;
  line-height: 1.05;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.52);
  color: var(--white);
  font: inherit;
}

.waitlist-form select {
  appearance: none;
  padding-right: 44px;
}

.select-wrap {
  position: relative;
  display: block;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.78);
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.ticker-band {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.ticker-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 66px;
}

.ticker-label {
  margin: 0;
  color: #ff8d92;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track {
  overflow: hidden;
  min-width: 0;
}

.ticker-content {
  display: inline-flex;
  width: max-content;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  will-change: transform;
  animation: ticker-slide 24s linear infinite;
}

.ticker-group {
  flex: 0 0 auto;
  padding-right: 34px;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hidden {
  position: absolute;
  left: -9999px;
}

.netlify-only {
  display: none;
}

.success-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(215, 25, 32, 0.22), transparent 28%),
    #050505;
}

.success-shell {
  width: min(560px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.success-shell h1 {
  margin: 12px 0;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
}

.success-copy {
  margin: 0 0 20px;
  color: var(--text-soft);
  line-height: 1.65;
}

@media (max-width: 940px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 44px 0 32px;
  }

  .hero-image {
    object-position: center top;
    opacity: 0.2;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.82) 42%, rgba(0, 0, 0, 0.92) 100%);
  }

  .hero-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .brand-text {
    display: none;
  }

  .button-small,
  .button {
    width: 100%;
  }

  .nav {
    align-items: stretch;
    min-height: auto;
    padding: 14px 0;
  }

  .hero {
    min-height: calc(100svh - 144px);
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .hero-panel {
    padding: 20px;
  }

  .ticker-shell {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .ticker-content {
    white-space: nowrap;
    line-height: 1.55;
    animation-duration: 18s;
  }
}
