:root {
  --black: #050505;
  --ink: #111111;
  --bone: #ffffff;
  --soft: #d8d8d8;
  --muted: #8d8d8d;
  --line: rgba(255, 255, 255, 0.16);
  --acid: #b6ff2e;
  --acid-ink: #182400;
  --paper: #f7f7f7;
  --curve: 28px;
  --soft-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--acid);
  color: var(--acid-ink);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-color: var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease;
}

.brand-mark:hover,
.brand-mark:focus-visible {
  transform: translateY(-1px);
}

.brand-mark img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 26px);
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

nav a {
  position: relative;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--acid);
  transform: translateY(-1px);
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--acid);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 110px clamp(18px, 5vw, 72px) 74px;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.25)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.1) 62%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  animation: heroLift 760ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(72px, 16vw, 184px);
  line-height: 0.78;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 0.95;
  font-weight: 920;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

p {
  color: var(--soft);
  line-height: 1.62;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(18px, 2.4vw, 25px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-signals span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(182, 255, 46, 0);
  transform: translateY(0);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.015);
}

.button:active {
  transform: translateY(-1px) scale(0.99);
}

.button.primary {
  background: var(--acid);
  color: var(--acid-ink);
  box-shadow: 0 14px 38px rgba(182, 255, 46, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 52px rgba(182, 255, 46, 0.32);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--bone);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(182, 255, 46, 0.68);
  background: rgba(182, 255, 46, 0.08);
}

.section,
.legal-section {
  padding: clamp(64px, 10vw, 130px) clamp(18px, 5vw, 72px);
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(182, 255, 46, 0.11), transparent 36%),
    #0a0a0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.waitlist-copy {
  max-width: 760px;
}

.waitlist-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.waitlist-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(182, 255, 46, 0.34);
  border-radius: 999px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.waitlist-points span:hover {
  background: rgba(182, 255, 46, 0.1);
  transform: translateY(-2px);
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--curve);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--soft-shadow);
  transform: translateY(0);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.waitlist-form:hover {
  border-color: rgba(182, 255, 46, 0.36);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--bone);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: var(--acid);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 0 4px rgba(182, 255, 46, 0.12);
  outline: none;
}

.checkbox-row {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  text-transform: none;
}

.checkbox-row input {
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--acid);
}

.checkbox-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--acid);
  font-size: 13px;
  font-weight: 800;
}

.form-status.is-error {
  color: #ff7777;
}

.waitlist-form.is-complete {
  border-color: rgba(182, 255, 46, 0.62);
  animation: completePulse 520ms ease;
}

.intro-section {
  background: var(--black);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 780px;
}

.intro-grid,
.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.intro-grid article,
.notice-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--curve);
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.intro-grid article:hover,
.notice-grid article:hover {
  border-color: rgba(182, 255, 46, 0.38);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.visual-band p {
  color: #3c3c3c;
}

.visual-band .eyebrow {
  color: #3b5e00;
}

.product-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--curve);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.product-strip img:nth-child(2) {
  transform: translateY(28px);
}

.product-strip img:hover {
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.24);
  transform: translateY(-8px) scale(1.015);
}

.product-strip img:nth-child(2):hover {
  transform: translateY(18px) scale(1.015);
}

.feature-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 180ms ease,
    background 180ms ease;
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-row span {
  color: var(--acid);
  font-weight: 950;
}

.feature-row:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 18px;
}

.feature-row p {
  margin: 0;
  max-width: 940px;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--bone);
}

.beta-section {
  background: #0b0b0b;
}

.notice-grid article {
  border-color: rgba(182, 255, 46, 0.28);
}

.legal-section {
  background: var(--paper);
  color: var(--ink);
}

.legal-section.alt {
  background: #ffffff;
}

.legal-content {
  max-width: 900px;
  padding: clamp(22px, 4vw, 44px);
  border-radius: var(--curve);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.08);
}

.legal-content p {
  color: #333333;
}

.legal-content .eyebrow {
  color: #3b5e00;
}

.updated {
  margin-top: 24px;
  font-weight: 800;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--black);
}

.support-section p {
  max-width: 680px;
}

.support-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(182, 255, 46, 0.55);
  border-radius: 999px;
  color: var(--acid);
  font-weight: 900;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.support-link:hover,
.support-link:focus-visible {
  border-color: var(--acid);
  background: rgba(182, 255, 46, 0.08);
  transform: translateY(-3px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.site-footer span:first-child {
  color: var(--bone);
  letter-spacing: 0.12em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes completePulse {
  0% {
    box-shadow: var(--soft-shadow);
  }
  45% {
    box-shadow: 0 0 0 8px rgba(182, 255, 46, 0.12), var(--soft-shadow);
  }
  100% {
    box-shadow: var(--soft-shadow);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 12px 14px;
  }

  nav {
    width: auto;
    overflow-x: auto;
    padding-bottom: 2px;
    gap: 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 142px;
  }

  .intro-grid,
  .notice-grid,
  .visual-band,
  .waitlist-section,
  .support-section {
    grid-template-columns: 1fr;
  }

  .product-strip {
    grid-template-columns: 1fr;
  }

  .product-strip img:nth-child(2),
  .product-strip img:nth-child(2):hover {
    transform: none;
  }

  .feature-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .brand-mark img {
    width: 28px;
    height: 28px;
  }

  .brand-mark span {
    display: none;
  }

  .button,
  .support-link {
    width: 100%;
  }

  .intro-grid article,
  .notice-grid article {
    min-height: 0;
  }

  .waitlist-form {
    padding: 18px;
    border-radius: 24px;
  }
}
/* UNDR themed dropdowns */
.waitlist-form label:has(select) {
  position: relative;
}

.waitlist-form label:has(select)::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--acid);
  border-bottom: 2px solid var(--acid);
  pointer-events: none;
  transform: rotate(45deg);
}

.waitlist-form select,
select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(182, 255, 46, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(182, 255, 46, 0.1), transparent 42%),
    rgba(5, 5, 5, 0.82);
  color: var(--bone);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.waitlist-form select:hover,
select:hover {
  border-color: rgba(182, 255, 46, 0.46);
  background:
    linear-gradient(135deg, rgba(182, 255, 46, 0.14), transparent 44%),
    rgba(8, 8, 8, 0.92);
}

.waitlist-form select:focus,
select:focus {
  border-color: var(--acid);
  box-shadow:
    0 0 0 4px rgba(182, 255, 46, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  outline: none;
}

.waitlist-form select option,
select option {
  background: #080808;
  color: #f8f4ea;
}

