:root {
  --white: #ffffff;
  --blue: #1071e5;
  --black: #000000;
  --teal: #008573;
  --light-blue: #6db1ff;
  --orange: #fc9432;
  --orange-hover: #ffb05a;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --hero-image: url("assets/hero-clean.png");
  --hero-pos: center 42%;
  --max: 1180px;
  --panel-height: 100vh;
  --panel-height: 100dvh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: #000000;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

em {
  font-style: italic;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

.page-home main {
  display: contents;
}

.masthead {
  position: relative;
  display: flex;
  flex-direction: column;
  height: var(--panel-height);
  min-height: var(--panel-height);
  overflow: hidden;
  background-color: #000000;
  background-image: var(--hero-image);
  background-position: var(--hero-pos);
  background-repeat: no-repeat;
  background-size: cover;
}

.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.34) 0%,
    rgba(0, 0, 0, 0.08) 32%,
    rgba(0, 0, 0, 0.16) 78%,
    rgba(0, 0, 0, 0.22) 100%
  );
  pointer-events: none;
}

.site-header,
.masthead-inner {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  padding-bottom: 8px;
}

.logo {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.header-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 8px;
}

.header-links a,
.coming-soon {
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.coming-soon::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(252, 148, 50, 0.55);
  animation: soon-blink 1.6s ease-out infinite;
}

@keyframes soon-blink {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(252, 148, 50, 0.55);
  }
  70% {
    opacity: 0.45;
    box-shadow: 0 0 0 8px rgba(252, 148, 50, 0);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(252, 148, 50, 0);
  }
}

.header-links a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.masthead-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: min(640px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 88px;
  text-align: center;
}

.masthead-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 150%;
  height: 118%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.22) 48%,
    transparent 74%
  );
  pointer-events: none;
}

.masthead-inner > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: #d7e9ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

h1 em {
  color: #8ec5ff;
  font-style: italic;
}

.lede {
  max-width: 38ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.waitlist {
  width: min(420px, 100%);
  margin-top: 36px;
}

.waitlist input[type="email"] {
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  outline: 0;
  padding: 18px 20px;
  background: rgba(8, 10, 14, 0.52);
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.waitlist input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.cta {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 18px 22px;
  background: var(--orange);
  color: var(--black);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta:hover {
  background: var(--orange-hover);
}

.cta:focus-visible,
.waitlist input:focus-visible {
  outline: 3px solid var(--light-blue);
  outline-offset: 3px;
}

.cta:disabled {
  cursor: wait;
  opacity: 0.7;
}

.helper {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.form-status {
  margin: 12px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status[data-type="error"] {
  color: #ffb4a8;
}

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

.how {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--panel-height);
  min-height: var(--panel-height);
  overflow: hidden;
  background: #000000;
}

.how::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000;
  background-image: var(--hero-image);
  background-position: var(--hero-pos);
  background-repeat: no-repeat;
  background-size: cover;
  transform: scaleY(-1);
  pointer-events: none;
}

.how::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.4) 48%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}

.how .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.how h2 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.faq h2 {
  max-width: 13ch;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  color: var(--white);
}

.section-copy {
  max-width: 42ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.step {
  min-height: 240px;
  padding: 26px 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(8, 10, 14, 0.55);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  border: 1px solid rgba(142, 197, 255, 0.45);
  border-radius: 50%;
  background: rgba(142, 197, 255, 0.12);
  color: #cfe6ff;
  font-size: 0.8rem;
  font-weight: 800;
}

.step h3 {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--white);
}

.step p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.faq {
  position: relative;
  display: flex;
  flex-direction: column;
  height: var(--panel-height);
  min-height: var(--panel-height);
  overflow: hidden;
  background: #000000;
}

.faq .brand-lockup-mark {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  margin: 0;
  width: 100%;
  transform: translate(-50%, 22%);
  color: var(--white);
  font-family: "Archivo Black", "Arial Black", "Helvetica Neue", sans-serif;
  font-size: clamp(6rem, 22vw, 16rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.72;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
}

.faq::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 96px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
  pointer-events: none;
}

.faq-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: stretch;
  flex: 1;
  width: 100%;
  min-height: 0;
  padding: 48px 0 24px;
}

.trust-col {
  display: flex;
  flex-direction: column;
}

.trust {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  flex: 1;
  margin-top: 28px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(8, 10, 14, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.trust-item h3 {
  font-size: 1.05rem;
  color: var(--white);
}

.trust-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.faq-col {
  display: flex;
  flex-direction: column;
  padding: 32px 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(8, 10, 14, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.faq-kicker {
  margin: 0 0 8px;
  color: #d7e9ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-list details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.03em;
  list-style: none;
}

.faq-list summary::after {
  content: "+";
  color: #8ec5ff;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  max-width: 62ch;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 24px 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a:hover {
  color: var(--white);
}

.thanks-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border: 1px solid rgba(142, 197, 255, 0.4);
  border-radius: 50%;
  background: rgba(8, 10, 14, 0.5);
  color: #cfe6ff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.thanks-page .cta {
  width: auto;
  min-width: 220px;
  margin-top: 28px;
}

.legal {
  max-width: 640px;
  padding: 48px 0 80px;
}

.legal h1 {
  max-width: none;
  background: none;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.legal p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.legal a {
  color: #8ec5ff;
  text-decoration: underline;
}

@media (min-width: 901px) {
  html:has(.page-home) {
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-padding: 0;
  }

  .page-home .masthead,
  .page-home .how,
  .page-home .faq {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (max-width: 900px) {
  .page-home main {
    display: block;
  }

  .page-home .masthead,
  .page-home .how,
  .page-home .faq {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .how,
  .faq {
    padding: 72px 0;
  }

  .page-home .faq {
    overflow: hidden;
    padding-bottom: 0;
  }

  .faq-stage,
  .steps,
  .trust {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .trust {
    grid-template-rows: none;
  }

  .step,
  .faq-col {
    min-height: 0;
  }

  .faq-kicker {
    margin-top: 12px;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding-inline: 18px;
  }

  .masthead-inner {
    width: min(640px, calc(100% - 36px));
    padding: 48px 0 72px;
  }

  .header-links a,
  .coming-soon {
    padding: 6px 10px;
    font-size: 0.64rem;
  }

  .steps,
  .trust {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .thanks-page .cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html:has(.page-home) {
    scroll-snap-type: none;
  }

  .coming-soon::before {
    animation: none;
  }
}
