@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --ink: #061327;
  --navy: #071a35;
  --blue: #0875ed;
  --paper: #f4f8fd;
  --muted: #52667d;
  --on-dark: #eef6ff;
  --on-dark-muted: #b7cae2;
  --line-light: #cddcee;
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 48px));
  min-height: 88px;
  transform: translateX(-50%);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgb(211 230 255 / 18%);
  color: var(--on-dark);
}

.logo-link {
  display: block;
  width: fit-content;
}

.brand-lockup {
  position: relative;
  display: inline-block;
  color: var(--on-dark);
}

.brand-lockup sup {
  position: absolute;
  top: -1px;
  right: -15px;
  color: #8ebff7;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.inline-tm {
  margin-left: 0.08em;
  font-size: 0.42em;
  letter-spacing: 0;
  line-height: 0;
  vertical-align: super;
}

.brand-logo {
  display: block;
  width: 160px;
  height: auto;
  aspect-ratio: 334 / 83;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms var(--ease-out-quint), background-color 180ms var(--ease-out-quint), border-color 180ms var(--ease-out-quint), transform 180ms var(--ease-out-quint);
}

nav a {
  color: #d5e5f9;
}

nav a:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #041329;
  color: #f3f8ff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero picture {
  position: absolute;
  inset: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(3 14 33 / 96%) 0%, rgb(4 18 42 / 78%) 38%, rgb(4 17 37 / 12%) 75%),
    linear-gradient(0deg, rgb(2 13 30 / 72%) 0%, transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 190px;
}

.eyebrow,
.kicker {
  color: #66adff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 19px;
}

.eyebrow svg {
  width: 16px;
  fill: currentColor;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(4rem, 7vw, 6.8rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.83;
  text-transform: uppercase;
}

h1 span {
  display: block;
  margin-top: 20px;
  color: #1986ff;
}

.hero-copy {
  max-width: 510px;
  margin: 34px 0 0;
  color: #cad9ec;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.6;
}

.waitlist {
  max-width: 500px;
  margin-top: 38px;
}

.waitlist label {
  display: block;
  margin-bottom: 15px;
  color: #eef6ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.waitlist input {
  width: 100%;
  height: 56px;
  border: 1px solid rgb(190 220 255 / 48%);
  border-radius: 7px;
  padding: 0 18px;
  background: rgb(3 16 38 / 72%);
  color: #f4f9ff;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 180ms var(--ease-out-quint), background-color 180ms var(--ease-out-quint), box-shadow 180ms var(--ease-out-quint);
}

.waitlist button {
  min-width: 132px;
  height: 56px;
  cursor: pointer;
  border: 1px solid var(--blue);
  border-radius: 7px;
  padding: 0 20px;
  background: var(--blue);
  color: #f4f9ff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms var(--ease-out-quint), border-color 180ms var(--ease-out-quint), transform 180ms var(--ease-out-quint);
}

.waitlist button:hover {
  border-color: #3092ff;
  background: #3092ff;
}

.waitlist button:active {
  transform: translateY(1px);
}

.waitlist button:focus-visible {
  outline: 3px solid #8cc6ff;
  outline-offset: 3px;
}

.waitlist input::placeholder {
  color: #8fa9c8;
}

.waitlist input:focus {
  border-color: #78b8ff;
  background: rgb(3 16 38 / 90%);
  box-shadow: 0 0 0 3px rgb(48 145 255 / 18%);
}

.waitlist p {
  margin: 15px 0 0;
  color: #c0d2e7;
  font-size: 12px;
}

.trust-bar {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: clamp(26px, 5vw, 76px);
  border-top: 1px solid rgb(157 201 255 / 21%);
  padding: 22px 24px;
  background: rgb(2 13 31 / 78%);
  color: #d7e8fc;
}

.trust-bar span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-wrap {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.how {
  padding: clamp(76px, 9vw, 120px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 30px;
}

.section-heading p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 13px;
}

.section-heading .kicker {
  margin-bottom: 14px;
  color: var(--blue);
}

h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

h2 .inline-tm {
  position: relative;
  top: -0.48em;
  font-size: 0.22em;
  vertical-align: baseline;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.steps li {
  display: grid;
  min-height: 190px;
  padding: 34px 30px 20px 0;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.steps li + li {
  border-left: 1px solid var(--line-light);
  padding-left: 30px;
}

.step-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.steps h3 {
  margin: -3px 0 10px;
  font-size: 20px;
}

.steps p,
.feature-copy,
.join-options p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.benefit-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  color: #c7d9ed;
  font-size: 13px;
  line-height: 1.45;
  list-style: none;
}

.benefit-list li::before {
  margin-right: 8px;
  color: #58a8ff;
  content: "✓";
}

.bottom-waitlist {
  border-top: 1px solid #c9dcf2;
  padding: clamp(66px, 8vw, 100px) 0;
  background: #e9f3ff;
}

.bottom-waitlist-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.bottom-waitlist-copy .kicker {
  margin: 0 0 14px;
  color: var(--blue);
}

.bottom-waitlist-copy > p:last-child {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.waitlist-bottom {
  max-width: none;
  margin-top: 0;
}

.waitlist-bottom label {
  color: var(--ink);
}

.waitlist-bottom input {
  border-color: #9db9d7;
  background: #f8fbff;
  color: var(--ink);
}

.waitlist-bottom input::placeholder {
  color: #657d98;
}

.waitlist-bottom input:focus {
  border-color: var(--blue);
  background: #f8fbff;
}

.waitlist-bottom p {
  color: #526d8b;
}

.feature {
  display: grid;
  margin-bottom: clamp(76px, 10vw, 130px);
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  background: var(--navy);
  color: #f0f6ff;
}

.promise {
  padding: clamp(44px, 6vw, 76px);
}

.promise .kicker {
  margin: 0 0 15px;
}

.feature-copy {
  max-width: 500px;
  margin-top: 25px;
  color: var(--on-dark-muted);
}

.promise ul {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.promise li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #e5f0fe;
  font-size: 14px;
}

.promise li span {
  color: #4ea1ff;
}

.join-options {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.join-options article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid rgb(154 196 243 / 20%);
  padding: 42px clamp(36px, 5vw, 68px);
  background: #0c2345;
}

.join-options article + article {
  border-top: 1px solid rgb(154 196 243 / 20%);
  background: #0a1f3d;
}

.card-label {
  color: #58a8ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.join-options h3 {
  margin: 9px 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
}

.join-options p {
  color: #b9cce4;
  font-size: 14px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px max(24px, calc((100% - 1120px) / 2));
  background: #041126;
  color: #e6f0fd;
}

footer p,
footer address {
  margin: 0;
  color: #92a9c5;
  font-size: 12px;
}

footer address {
  font-style: normal;
  line-height: 1.6;
  text-align: right;
}

a:focus-visible {
  outline: 3px solid #7fc0ff;
  outline-offset: 4px;
}

.confirmation-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(110deg, rgb(3 14 33 / 96%), rgb(4 25 58 / 88%)),
    url("apex-hero.webp") center / cover;
  color: var(--on-dark);
}

.confirmation-card {
  width: min(620px, 100%);
  border-top: 2px solid var(--blue);
  padding: clamp(36px, 7vw, 72px);
  background: rgb(4 17 39 / 92%);
}

.confirmation-logo {
  width: 180px;
  height: auto;
}

.confirmation-eyebrow {
  margin-top: 64px;
}

.confirmation-card h1 {
  margin: 12px 0 20px;
}

.confirmation-card > p:not(.eyebrow) {
  max-width: 520px;
  color: #c0d2e7;
  line-height: 1.75;
}

.confirmation-card a {
  display: inline-block;
  margin-top: 28px;
  color: #78b8ff;
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

@media (max-width: 820px) {
  .site-header {
    width: min(100% - 32px, 1180px);
    min-height: 118px;
    padding: 18px 0 13px;
    grid-template-columns: 1fr;
    align-content: space-between;
  }

  nav {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgb(211 230 255 / 18%);
    padding-top: 11px;
  }

  nav a {
    min-height: 30px;
    align-content: center;
    color: #d8e9fc;
    font-size: 12px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(3 14 33 / 97%) 0%, rgb(4 18 42 / 77%) 60%, rgb(4 17 37 / 28%) 100%),
      linear-gradient(0deg, rgb(2 13 30 / 82%) 0%, transparent 45%);
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding-top: 205px;
  }

  .steps,
  .feature,
  .bottom-waitlist-inner {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: auto;
    padding: 28px 0;
  }

  .steps li + li {
    border-top: 1px solid var(--line-light);
    border-left: 0;
    padding-left: 0;
  }

  .join-options article {
    border-top: 1px solid rgb(154 196 243 / 20%);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 118px;
  }

  .brand-logo {
    width: 125px;
  }

  .hero {
    min-height: 800px;
  }

  .hero-content {
    padding-top: 195px;
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .trust-bar {
    display: grid;
    justify-content: stretch;
    gap: 9px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
  }

  .trust-bar span {
    font-size: 11px;
    white-space: nowrap;
  }

  .section-wrap {
    width: min(100% - 32px, 1120px);
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    display: none;
  }

  .promise,
  .join-options article {
    padding: 38px 28px;
  }

  .eyebrow,
  .kicker,
  .card-label {
    font-size: 11px;
  }

  .step-number,
  footer p,
  footer address {
    font-size: 14px;
  }

  .waitlist p {
    font-size: 13px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    font-size: 14px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer address {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .waitlist-field {
    grid-template-columns: 1fr;
  }

  .waitlist button {
    width: 100%;
  }

  .hero {
    min-height: 865px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
