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

:root {
  color-scheme: light;
  --navy-900: #1f3b6d;
  --yellow-400: #f2d335;
  --gray-100: #e3e8ea;
  --gray-500: #6f7c84;
  --white: #ffffff;
  --black: #111111;
  --radius: 18px;
}

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

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

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
}

.status {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.hero-copy {
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--yellow-400);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.1rem);
  line-height: 1.08;
  margin: 18px 0 18px;
  font-weight: 700;
  color: var(--white);
}

.hero-line-secondary {
  display: block;
  margin-top: 6px;
  font-size: 0.7em;
  opacity: 0.92;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--black);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--black);
}

p {
  margin: 0 0 16px;
  color: var(--gray-500);
}

.hero-subheadline {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  max-width: 680px;
}

.hero p {
  color: rgba(255, 255, 255, 0.84);
}

.hero .hero-subheadline {
  color: var(--white);
}

.hero .hero-quiet {
  color: rgba(255, 255, 255, 0.75);
}

.hero-quiet {
  margin: 6px 0 14px;
  font-size: 0.98rem;
  font-weight: 600;
}

.form-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.form-head {
  margin-bottom: 32px;
}

.form-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  background: var(--white);
}

.field {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--gray-500);
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-note {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.platform-consent,
.sms-consent {
  display: grid;
  gap: 10px;
}

.platform-consent a,
.sms-consent a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

.sms-consent {
  padding: 16px;
  border-radius: 14px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
}

.marketing-consent {
  background: white;
}

.sms-disclaimer {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

.sms-examples {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}


.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin-top: 0;
}

.legal-updated {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.legal-content h2 {
  margin-top: 28px;
}

.legal-content h3 {
  margin-top: 20px;
}

.legal-content ul {
  padding-left: 18px;
}

.hero-support {
  max-width: 680px;
}

.waitlist-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 10px 0 rgba(31, 59, 109, 0.18);
}

.waitlist-card h2 {
  color: var(--black);
}

.waitlist-card p,
.waitlist-card small {
  color: var(--gray-500);
}

.waitlist-card h2 {
  font-size: 1.4rem;
}

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

.waitlist-form input[type="email"] {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form button {
  background: var(--yellow-400);
  color: var(--navy-900);
  border: none;
  width: 100%;
  min-height: 54px;
  padding: 16px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.waitlist-form button:hover {
  background: #e7c62f;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 59, 109, 0.2);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--gray-500);
  color: var(--navy-900);
  font-weight: 600;
  background: transparent;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.secondary-button:hover {
  border-color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(31, 59, 109, 0.16);
}

.waitlist-form input:focus,
.field input:focus,
.waitlist-form button:focus {
  outline: none;
  border-color: var(--yellow-400);
  box-shadow: 0 0 0 3px rgba(242, 211, 53, 0.35);
}

.waitlist-form small {
  color: var(--gray-500);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--gray-500);
}

.section {
  padding: 86px 0;
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(900px, 88%);
  height: 1px;
  background: rgba(111, 124, 132, 0.38);
  transform: translateX(-50%);
}

.section.muted::after,
.cta::after,
.site-footer::after {
  display: none;
}

.section.muted {
  background: var(--gray-100);
}

.section-head {
  max-width: 680px;
  margin-bottom: 42px;
}

.micro-proof {
  margin-top: 18px;
  padding: 10px 0 10px 14px;
  border-left: 4px solid var(--yellow-400);
  color: var(--black);
  font-weight: 600;
}

.narrative {
  max-width: 680px;
}

.simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--gray-500);
}

.simple-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.simple-list.negative li {
  color: var(--gray-500);
}

.simple-list.positive li {
  color: var(--gray-500);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--yellow-400);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.9rem;
}

.x-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--gray-500);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 0.9rem;
}

.closing-line {
  margin-top: 20px;
  color: var(--black);
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  border: 1px solid var(--gray-500);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(31, 59, 109, 0.18);
  border-color: var(--yellow-400);
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--yellow-400);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease;
}

.card:hover::before {
  transform: scaleY(1);
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--yellow-400);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.icon svg {
  width: 22px;
  height: 22px;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: step;
  position: relative;
}

.steps li {
  padding-left: 50px;
  position: relative;
  color: var(--gray-500);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--yellow-400);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: var(--gray-500);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--gray-500);
  font-weight: 600;
}

.split-column.is-not {
  border-left: 1px solid var(--gray-500);
  padding-left: 40px;
}

.cta {
  background: var(--navy-900);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.belief {
  padding: 96px 0;
}

.waitlist-form.inline {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--gray-500);
  box-shadow: 0 10px 0 rgba(31, 59, 109, 0.18);
}

.cta h2 {
  color: var(--white);
}

.cta p,
.cta small {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 48px 0 56px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}

.section > .container > p,
.section > .container > .closing-line {
  max-width: 680px;
}

.footer-inner {
  display: grid;
  gap: 12px;
  color: var(--gray-500);
  font-size: 0.95rem;
}

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

.footer-links a {
  color: var(--gray-500);
}

.footer-note {
  color: var(--gray-500);
}

.visually-hidden {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.mobile-only {
  display: none;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .split-column.is-not {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--gray-500);
    padding-top: 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 50px;
  }

  .section {
    padding: 56px 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-form button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 16px 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .waitlist-card {
    padding: 22px;
  }

  .waitlist-form button {
    padding: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* Landing redesign */
.landing {
  --lp-navy: #1f3a63;
  --lp-yellow: #f4d03f;
  --lp-light: #eceff1;
  --lp-mid: #b0bec5;
  --lp-slate: #546e7a;
  --lp-white: #ffffff;
}

.landing .site-header {
  background: rgba(31, 58, 99, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.landing .logo {
  color: var(--lp-yellow);
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.landing .launch-link {
  color: var(--lp-navy);
  background: var(--lp-yellow);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
}

.landing .lp-hero {
  background: linear-gradient(180deg, #1f3a63 0%, #172e4f 100%);
  padding: 106px 0 104px;
  position: relative;
  overflow: hidden;
}

.landing .lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.12;
  animation: drift 18s linear infinite;
}

.landing .lp-hero::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 16%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.25), rgba(244, 208, 63, 0));
  filter: blur(6px);
}

.landing .lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.landing .lp-badge {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(244, 208, 63, 0.2);
  border: 1px solid rgba(244, 208, 63, 0.6);
  color: var(--lp-yellow);
  font-weight: 600;
  font-size: 0.84rem;
}

.landing .lp-hero-copy h1 {
  margin: 16px 0;
  font-size: clamp(3rem, 5.8vw, 5.1rem);
  line-height: 1.01;
  color: var(--lp-white);
  letter-spacing: -0.02em;
}

.landing .hero-line-secondary {
  display: block;
  margin-top: 8px;
  font-size: 0.52em;
  color: rgba(236, 239, 241, 0.96);
  font-weight: 600;
}

.landing .lp-hero-copy p {
  max-width: 640px;
  font-size: 1.16rem;
  color: rgba(236, 239, 241, 0.92);
  margin-bottom: 0;
}

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

.landing .lp-power-line {
  margin-top: 16px;
  font-size: 0.98rem;
  color: rgba(236, 239, 241, 0.9);
  font-weight: 600;
}

.landing .lp-protocol {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.landing .lp-protocol span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(236, 239, 241, 0.92);
  border: 1px solid rgba(236, 239, 241, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.landing .lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.landing .lp-button-primary {
  background: var(--lp-yellow);
  color: var(--lp-navy);
}

.landing .lp-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(21, 31, 51, 0.38);
}

.landing .lp-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--lp-white);
}

.landing .lp-button-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.landing .lp-hero-visual {
  position: relative;
  min-height: 380px;
  z-index: 1;
}

.landing .lp-grid-orb {
  position: absolute;
  right: 36px;
  top: 4px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(244, 208, 63, 0.28);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.03);
}

.landing .lp-chart-panel {
  position: absolute;
  right: 34px;
  top: 10px;
  width: 250px;
  height: 160px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: end;
  justify-content: space-evenly;
  padding: 20px 16px;
  box-shadow: 0 18px 34px rgba(14, 25, 43, 0.4);
}

.landing .lp-chart-panel .bar {
  width: 18px;
  border-radius: 6px 6px 0 0;
  background: #f1f5fa;
}

.landing .lp-chart-panel .b1 {
  height: 40px;
}
.landing .lp-chart-panel .b2 {
  height: 56px;
}
.landing .lp-chart-panel .b3 {
  height: 78px;
  background: var(--lp-yellow);
}
.landing .lp-chart-panel .b4 {
  height: 92px;
}
.landing .lp-chart-panel .b5 {
  height: 112px;
  background: #d4e0ea;
}

.landing .lp-glass-card {
  position: absolute;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(7px);
  background: rgba(255, 255, 255, 0.14);
  color: var(--lp-white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 12px;
}

.landing .lp-glass-card.gc1 {
  left: 34px;
  top: 8px;
}

.landing .lp-glass-card.gc2 {
  right: 18px;
  top: 184px;
}

.landing .lp-vehicle {
  position: absolute;
  bottom: 24px;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(14, 25, 43, 0.42);
  overflow: hidden;
}

.landing .lp-vehicle.suv {
  left: 16px;
  width: 280px;
  height: 124px;
  background: linear-gradient(155deg, #f8dd62, #e0b612 64%, #c99e00 100%);
}

.landing .lp-vehicle.sedan {
  right: 14px;
  width: 240px;
  height: 108px;
  background: linear-gradient(160deg, #ffffff, #d4e0ea 72%, #bdcedd 100%);
}

.landing .lp-vehicle::before,
.landing .lp-vehicle::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.landing .lp-vehicle::before {
  top: 18px;
}

.landing .lp-vehicle::after {
  top: 42px;
  opacity: 0.45;
}

.landing .lp-lens {
  position: absolute;
  right: -8px;
  top: 92px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 10px solid #f5f8fb;
  box-shadow: 0 10px 20px rgba(18, 30, 49, 0.28);
}

.landing .lp-lens::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -22px;
  width: 48px;
  height: 12px;
  background: #f5f8fb;
  transform: rotate(40deg);
  border-radius: 8px;
}

.landing .lp-section {
  padding: 108px 0;
}

.landing .lp-section-light {
  background: var(--lp-light);
}

.landing .lp-section-white {
  background: var(--lp-white);
}

.landing .lp-section-dark {
  background: var(--lp-navy);
}

.landing .lp-section-head {
  max-width: 680px;
  margin-bottom: 44px;
}

.landing .lp-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lp-slate);
}

.landing .lp-section-dark .lp-eyebrow {
  color: rgba(236, 239, 241, 0.74);
}

.landing .lp-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #17253e;
}

.landing .lp-section-head p {
  color: var(--lp-slate);
  margin: 0;
  max-width: 680px;
}

.landing .lp-bridge-line {
  margin-top: 14px;
  color: #243f56;
  font-weight: 600;
}

.landing .micro-proof {
  margin-top: 18px;
  padding: 12px 0 12px 14px;
  border-left: 4px solid var(--lp-yellow);
  color: #17253e;
  font-size: 1rem;
}

.landing .lp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.landing .lp-card {
  background: var(--lp-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 16px 32px rgba(32, 46, 70, 0.15);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  border: 1px solid transparent;
}

.landing .lp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(32, 46, 70, 0.22);
  border-color: rgba(244, 208, 63, 0.55);
}

.landing .lp-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lp-yellow);
  color: var(--lp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
  box-shadow: 0 0 0 0 rgba(244, 208, 63, 0.5);
}

.landing .lp-card:hover .lp-icon {
  box-shadow: 0 0 0 8px rgba(244, 208, 63, 0.22);
}

.landing .lp-card h3 {
  margin: 0 0 10px;
  color: #17253e;
}

.landing .lp-card p {
  margin: 0;
  color: var(--lp-slate);
}

.landing .lp-dark-inner h2 {
  color: var(--lp-white);
  margin-bottom: 28px;
}

.landing .lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

.landing .lp-steps-grid::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(244, 208, 63, 0.25), rgba(244, 208, 63, 0.9), rgba(244, 208, 63, 0.25));
}

.landing .lp-step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 24px 18px;
  position: relative;
  z-index: 1;
  animation: riseIn 0.7s ease both;
}

.landing .lp-step:nth-child(2) {
  animation-delay: 0.08s;
}
.landing .lp-step:nth-child(3) {
  animation-delay: 0.16s;
}
.landing .lp-step:nth-child(4) {
  animation-delay: 0.24s;
}

.landing .lp-step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lp-yellow);
  color: var(--lp-navy);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 0 0 0 rgba(244, 208, 63, 0.55);
}

.landing .lp-step:hover span {
  box-shadow: 0 0 0 10px rgba(244, 208, 63, 0.2);
}

.landing .lp-step h3 {
  margin: 0;
  color: var(--lp-white);
  font-size: 1.05rem;
}

.landing .lp-trust-grid {
  border-top: 1px solid rgba(84, 110, 122, 0.35);
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.landing .lp-trust-item {
  background: var(--lp-light);
  border-radius: 14px;
  padding: 18px 18px 18px 50px;
  color: #17253e;
  font-weight: 600;
  position: relative;
}

.landing .lp-trust-item::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lp-yellow);
  color: var(--lp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}

.landing .lp-final-cta {
  background: var(--lp-navy);
}

.landing .lp-final-cta-inner {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.landing .lp-final-cta h2 {
  color: var(--lp-white);
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
}

.landing .lp-final-cta p {
  color: rgba(236, 239, 241, 0.9);
  margin: 0 0 22px;
}

.landing .lp-final-cta small {
  display: block;
  margin-top: 12px;
  color: rgba(236, 239, 241, 0.82);
}

.landing .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.landing .site-footer {
  background: #17253e;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.landing .footer-inner,
.landing .footer-links a,
.landing .footer-note {
  color: rgba(236, 239, 241, 0.85);
}

@keyframes drift {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-10px) translateY(8px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

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

@media (max-width: 980px) {
  .landing .lp-hero-grid {
    grid-template-columns: 1fr;
  }

  .landing .lp-hero-visual {
    min-height: 300px;
  }

  .landing .lp-steps-grid::before {
    display: none;
  }

  .landing .lp-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing .lp-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .landing .lp-hero {
    padding: 88px 0 82px;
  }

  .landing .lp-card-grid {
    grid-template-columns: 1fr;
  }

  .landing .lp-chart-panel {
    width: 210px;
    height: 136px;
    right: 10px;
  }

  .landing .lp-glass-card {
    font-size: 0.72rem;
    padding: 8px 10px;
  }

  .landing .lp-vehicle.suv {
    width: 220px;
    height: 102px;
  }

  .landing .lp-vehicle.sedan {
    width: 190px;
    height: 92px;
  }

  .landing .lp-steps-grid {
    grid-template-columns: 1fr;
  }

  .landing .lp-protocol {
    gap: 8px;
  }

  .landing .lp-protocol span {
    font-size: 0.74rem;
  }

  .landing .launch-link {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

/* Privacy page redesign */
.legal-page {
  --legal-navy: #1f3a63;
  --legal-yellow: #f4d03f;
  --legal-light: #eceff1;
  --legal-mid: #b0bec5;
  --legal-slate: #546e7a;
  background: var(--legal-light);
}

.legal-page .site-header {
  background: var(--legal-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-page .logo,
.legal-page .status {
  color: var(--legal-yellow);
}

.legal-page .legal-hero {
  background: linear-gradient(180deg, #1f3a63 0%, #172e4f 100%);
  padding: 72px 0;
}

.legal-page .legal-hero-inner {
  max-width: 860px;
}

.legal-page .legal-eyebrow {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 208, 63, 0.16);
  color: var(--legal-yellow);
  border: 1px solid rgba(244, 208, 63, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-page .legal-hero h1 {
  color: #ffffff;
  margin: 14px 0 10px;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
}

.legal-page .legal-updated {
  color: rgba(236, 239, 241, 0.82);
  margin-bottom: 16px;
  font-weight: 500;
}

.legal-page .legal-intro {
  color: rgba(236, 239, 241, 0.92);
  max-width: 820px;
}

.legal-page .legal-policy {
  padding: 56px 0 74px;
}

.legal-page .legal-content {
  max-width: 900px;
  display: grid;
  gap: 16px;
}

.legal-page .legal-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(31, 58, 99, 0.12);
  border: 1px solid rgba(176, 190, 197, 0.34);
}

.legal-page .legal-block h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: #1f3a63;
}

.legal-page .legal-block h3 {
  margin-top: 16px;
  margin-bottom: 8px;
  color: #2e4a58;
  font-size: 1.03rem;
}

.legal-page .legal-block p {
  margin-bottom: 12px;
  color: #2e4a58;
}

.legal-page .legal-block ul {
  margin-top: 8px;
  margin-bottom: 12px;
  padding-left: 18px;
  color: #2e4a58;
}

.legal-page .legal-block a {
  color: #1f3a63;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page .site-footer {
  background: #172e4f;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.legal-page .footer-inner,
.legal-page .footer-links a,
.legal-page .footer-note {
  color: rgba(236, 239, 241, 0.86);
}

@media (max-width: 720px) {
  .legal-page .legal-hero {
    padding: 56px 0;
  }

  .legal-page .legal-policy {
    padding: 40px 0 56px;
  }

  .legal-page .legal-block {
    padding: 20px;
  }
}

/* Register page redesign */
.register-page {
  --reg-navy: #1f3a63;
  --reg-yellow: #f4d03f;
  --reg-light: #eceff1;
  --reg-mid: #b0bec5;
  --reg-slate: #546e7a;
  background: var(--reg-light);
}

.register-page .site-header {
  background: var(--reg-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.register-page .logo,
.register-page .status {
  color: var(--reg-yellow);
}

.register-page .register-hero {
  background: linear-gradient(180deg, #1f3a63 0%, #172e4f 100%);
  padding: 70px 0 64px;
}

.register-page .register-hero-inner {
  max-width: 860px;
}

.register-page .register-eyebrow {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 208, 63, 0.2);
  color: var(--reg-yellow);
  border: 1px solid rgba(244, 208, 63, 0.56);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.register-page .register-hero h1 {
  color: #ffffff;
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.08;
}

.register-page .register-hero p {
  color: rgba(236, 239, 241, 0.9);
  max-width: 760px;
}

.register-page .register-points {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.register-page .register-points span {
  font-size: 0.78rem;
  color: rgba(236, 239, 241, 0.9);
  border: 1px solid rgba(236, 239, 241, 0.28);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 600;
}

.register-page .register-shell {
  padding: 52px 0 72px;
}

.register-page .form-wrap {
  max-width: 940px;
  margin: 0 auto;
}

.register-page .form-card {
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(176, 190, 197, 0.42);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 58, 99, 0.12);
  gap: 18px;
}

.register-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.register-page .field > span {
  font-weight: 600;
  color: #20384e;
}

.register-page .field input {
  border: 1px solid rgba(176, 190, 197, 0.62);
  background: #ffffff;
  color: #172a38;
}

.register-page .field-note {
  color: #546e7a;
  font-size: 0.82rem;
}

.register-page .consent-stack {
  margin-top: 4px;
  display: grid;
  gap: 12px;
}

.register-page .consent-block {
  border: 1px solid rgba(176, 190, 197, 0.46);
  border-radius: 14px;
  background: #f9fbfc;
  padding: 14px;
}

.register-page .consent-block.required {
  background: #ffffff;
}

.register-page .consent-block h2 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #546e7a;
}

.register-page .platform-consent,
.register-page .sms-consent {
  gap: 8px;
}

.register-page .checkbox {
  align-items: flex-start;
  gap: 10px;
  color: #20384e;
}

.register-page .checkbox input[type="checkbox"] {
  margin-top: 3px;
  inline-size: 16px;
  block-size: 16px;
  accent-color: #1f3a63;
}

.register-page .platform-consent a,
.register-page .sms-consent a {
  color: #1f3a63;
}

.register-page .consent-note,
.register-page .sms-disclaimer,
.register-page .sms-examples {
  color: #20384e;
  font-size: 0.95rem;
  line-height: 1.5;
}

.register-page .marketing-consent {
  background: transparent;
  border: 0;
  padding: 0;
}

.register-page .waitlist-form button {
  width: 100%;
  min-height: 54px;
  border-radius: 12px;
  background: #f4d03f;
  color: #1f3a63;
  font-weight: 700;
}

.register-page .waitlist-form button:hover {
  background: #e8c536;
  box-shadow: 0 12px 24px rgba(31, 58, 99, 0.2);
}

.register-page .waitlist-form small:last-child {
  text-align: center;
  margin-top: 2px;
}

.register-page .sms-optional-note {
  margin: 4px 0 0;
  color: #20384e;
  font-size: 0.95rem;
  font-weight: 500;
}

.register-page .site-footer {
  background: #172e4f;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.register-page .footer-inner,
.register-page .footer-links a,
.register-page .footer-note {
  color: rgba(236, 239, 241, 0.86);
}

@media (max-width: 900px) {
  .register-page .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .register-page .register-hero {
    padding: 56px 0 48px;
  }

  .register-page .register-shell {
    padding: 34px 0 48px;
  }

  .register-page .form-card {
    padding: 20px;
  }
}
