:root {
  color-scheme: dark;
  --bg: #000000;
  --panel: rgba(9, 14, 12, 0.78);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --text: #f7fbf8;
  --muted: #9da8a2;
  --green: #AFE607;
  --green-hot: #AFE607;
  --green-deep: #062918;
  --line: rgba(255, 255, 255, 0.15);
  --line-green: rgba(175, 230, 7, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Clash Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.page {
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: 28px clamp(20px, 5vw, 72px) 72px;
  position: relative;
}

.page::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(#000000, #000000);
  background-size: 72px 72px, 72px 72px, auto;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -5;
}

.page::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18) 62%, #000000);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.ambient {
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.65;
  position: absolute;
  z-index: -4;
}

.ambient-one {
  background: rgba(175, 230, 7, 0.1);
  height: 360px;
  right: -120px;
  top: 40px;
  width: 520px;
}

.ambient-two {
  background: rgba(175, 230, 7, 0.07);
  bottom: 240px;
  height: 360px;
  left: -140px;
  width: 520px;
}

.orbital {
  border: 2px solid rgba(175, 230, 7, 0.46);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  height: 360px;
  position: absolute;
  right: 11%;
  top: 118px;
  transform: rotate(-18deg);
  width: 460px;
  z-index: -3;
}

.orbital-two {
  border-color: rgba(175, 230, 7, 0.28);
  border-bottom-color: transparent;
  border-left-color: transparent;
  right: 4%;
  top: 186px;
  transform: rotate(18deg);
  width: 520px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto 56px;
  max-width: 1180px;
  position: relative;
  z-index: 5;
}

.brand {
  align-items: center;
  display: inline-flex;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: clamp(34px, 2.7vw, 42px);
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 34px;
}

.nav-menu a,
.nav-link {
  color: rgba(247, 251, 248, 0.72);
  font-size: 14px;
  font-weight: 800;
  font-family: "Clash Display", system-ui, sans-serif;
}

.nav-link {
  background: var(--green-hot);
  border-radius: 999px;
  color: #071006;
  padding: 14px 20px;
}

.panel {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background:
    radial-gradient(circle at top right, rgba(175, 230, 7, 0.08), transparent 30%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  max-width: 1180px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(36px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  min-height: 620px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 68px);
  position: relative;
}

.hero-copy {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero-kicker,
.section-kicker,
.card-kicker {
  color: var(--green-hot);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0;
  max-width: 560px;
}

h1 span {
  display: block;
}

h1 strong {
  background: linear-gradient(90deg, var(--green-hot) 0%, var(--green) 58%, rgba(175, 230, 7, 0.22) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

h1 em {
  background: linear-gradient(90deg, var(--text) 0%, rgba(247, 251, 248, 0.74) 46%, rgba(247, 251, 248, 0.22) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

h2 {
  font-size: clamp(34px, 4.8vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.08;
  margin: 18px 0 12px;
}

.hero-text,
.section-text,
.waitlist-copy p,
.feature-card p,
.growth-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-text {
  color: rgba(247, 251, 248, 0.8);
  font-size: 18px;
  max-width: 500px;
  margin-top: 24px;
}

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

.button,
.submit {
  align-items: center;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
}

.primary,
.submit {
  background: var(--green-hot);
  color: #071006;
}

.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.product-preview {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 520px;
  position: relative;
}

.product-preview::before {
  background: radial-gradient(circle, rgba(175, 230, 7, 0.15), rgba(175, 230, 7, 0) 68%);
  content: "";
  height: 520px;
  pointer-events: none;
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-42%);
  width: 520px;
  z-index: 0;
}

.hero-phone-render {
  display: block;
  filter:
    drop-shadow(0 44px 110px rgba(0, 0, 0, 0.64))
    drop-shadow(0 0 26px rgba(175, 230, 7, 0.14));
  height: auto;
  max-width: min(100%, 610px);
  position: relative;
  transform: translate(20px, 28px) scale(1.04);
  width: 100%;
  z-index: 1;
}

.trust-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px auto 78px;
  max-width: 1180px;
}

.trust-row div {
  background:
    linear-gradient(180deg, rgba(175, 230, 7, 0.04), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 22px;
  position: relative;
  top: -10px;
}

.trust-row strong {
  color: var(--text);
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.trust-row span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.82fr);
  margin: 0 auto 54px;
  max-width: 1180px;
}

.section-copy h2 span,
.feature-card span,
.growth-copy h2 span {
  color: var(--green-hot);
}

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

.section-copy h2 {
  max-width: 760px;
  text-wrap: balance;
}

.section-text {
  color: rgba(247, 251, 248, 0.76);
  font-size: 18px;
  line-height: 1.78;
  margin: 12px 0 0;
  max-width: 430px;
}

.feature-band {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 10px;
  margin-bottom: 78px;
  overflow: visible;
  padding: 0;
}

.feature-card {
  color: rgba(247, 251, 248, 0.9);
  display: flex;
  flex-direction: column;
  min-height: 236px;
  padding: 32px 28px 30px;
}

.feature-card + .feature-card {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.feature-card span {
  color: var(--green-hot);
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 16px;
}

.feature-card.highlight {
  background: var(--green-hot);
  border-radius: 22px;
  color: #071006;
  margin: -18px 0;
  padding-top: 34px;
  padding-bottom: 32px;
}

.feature-card.highlight span,
.feature-card.highlight p,
.feature-card.highlight a {
  color: #071006;
}

.feature-card.highlight p {
  opacity: 0.8;
}

.feature-card h3 {
  font-size: 28px;
  line-height: 1.02;
  margin: 0 0 14px;
  max-width: 180px;
}

.feature-card p {
  color: rgba(247, 251, 248, 0.68);
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
  max-width: 220px;
}

.feature-card.highlight h3,
.feature-card.highlight p {
  max-width: 190px;
}

.feature-card a {
  display: inline-flex;
  font-weight: 900;
  margin-top: auto;
  padding-top: 24px;
}

.growth-section {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 0.92fr;
  margin-bottom: 78px;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 68px);
}

.metric-cloud {
  min-height: 380px;
  position: relative;
}

.metric-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  max-width: 240px;
  padding: 24px;
  position: absolute;
}

.metric-card strong {
  color: var(--green-hot);
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}

.metric-card span {
  color: rgba(247, 251, 248, 0.72);
  line-height: 1.5;
}

.metric-one {
  left: 4%;
  top: 4%;
}

.metric-two {
  right: 12%;
  top: 34%;
}

.metric-three {
  bottom: 2%;
  left: 22%;
}

.stars {
  color: rgba(247, 251, 248, 0.76);
  font-weight: 900;
  margin: 20px 0 28px;
}

.waitlist-panel {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: clamp(28px, 5vw, 54px);
}

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

.primary-fields,
.support-fields {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: rgba(247, 251, 248, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
.select-trigger {
  background: rgba(2, 4, 3, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: var(--text);
  font: inherit;
  font-family: "Clash Display", system-ui, sans-serif;
  min-height: 54px;
  outline: none;
  padding: 0 16px;
  width: 100%;
}

.select-trigger {
  cursor: pointer;
  text-align: left;
}

.select-trigger:disabled {
  color: rgba(247, 251, 248, 0.36);
  cursor: not-allowed;
}

select {
  appearance: none;
}

input:focus,
select:focus,
.select-trigger:focus {
  border-color: var(--green-hot);
  box-shadow: 0 0 0 4px rgba(175, 230, 7, 0.12);
}

input::placeholder {
  color: rgba(247, 251, 248, 0.42);
}

.submit {
  width: 100%;
}

.submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.lookup-field {
  position: relative;
}

.lookup-results {
  background: rgba(2, 4, 3, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.44);
  display: none;
  left: 0;
  max-height: 238px;
  overflow: auto;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
}

.lookup-results.open {
  display: grid;
  gap: 4px;
}

.lookup-option {
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: var(--text);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 3px;
  padding: 12px;
  text-align: left;
}

.lookup-option:hover,
.lookup-option:focus {
  background: rgba(175, 230, 7, 0.1);
  outline: none;
}

.lookup-option small {
  color: var(--muted);
}

.lookup-empty {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  padding: 12px;
}

.form-note {
  color: rgba(247, 251, 248, 0.64);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.form-note.success {
  color: var(--green-hot);
}

.form-note.error {
  color: #ff8585;
}

.school-proof {
  color: rgba(247, 251, 248, 0.84);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-menu {
    display: none;
  }

  .hero,
  .section,
  .growth-section,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

  .product-preview {
    min-height: 520px;
  }

  .product-preview::before {
    height: 460px;
    right: 50%;
    transform: translate(50%, -42%);
    width: 460px;
  }

  .trust-row,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-card + .feature-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .feature-card.highlight {
    margin: 0;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 18px 16px 36px;
  }

  .nav {
    background: rgba(2, 4, 3, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    margin-bottom: 24px;
    padding: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .nav-link {
    padding: 12px 15px;
  }

  .panel {
    border-radius: 28px;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding: 28px 18px;
  }

  .hero::before {
    font-size: 110px;
    right: -12px;
    top: 80px;
  }

  .hero-kicker,
  .section-kicker,
  .card-kicker {
    font-size: 11px;
    line-height: 1.4;
  }

  h1 {
    font-size: clamp(35px, 11.3vw, 52px);
    line-height: 1;
  }

  h2 {
    font-size: 31px;
    letter-spacing: -0.035em;
    line-height: 1.08;
  }

  .hero-text,
  .section-text,
  .waitlist-copy p,
  .feature-card p,
  .growth-copy p {
    font-size: 16px;
  }

  .hero-proof,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-preview {
    min-height: 420px;
  }

  .hero-phone-render {
    max-width: min(100%, 420px);
    transform: translate(0, 10px) scale(1.02);
  }

  .trust-row div {
    top: 0;
  }

  .trust-row {
    gap: 12px;
    margin: 24px auto 54px;
  }

  .section,
  .feature-band,
  .growth-section {
    margin-bottom: 54px;
  }

  .section {
    gap: 18px;
  }

  .feature-card,
  .growth-section,
  .waitlist-panel {
    padding: 24px;
  }

  .metric-cloud {
    min-height: 360px;
  }

  .metric-card {
    max-width: 210px;
  }

  .metric-one {
    left: 0;
  }

  .metric-two {
    right: 0;
  }

  .metric-three {
    left: 12%;
  }

  .primary-fields,
  .support-fields {
    grid-template-columns: 1fr;
  }
}

