:root {
  --black: #000000;
  --ink: #111111;
  --muted: #5a5a5a;
  --line: #e9e2cf;
  --line-strong: #d9cca3;
  --white: #ffffff;
  --paper: #fbfaf7;
  --gold: #d5c18a;
  --gold-deep: #b7a066;
  --teal: #006e9c;
  --teal-soft: #e4f3f7;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  --max-width: 1160px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Open Sans",
    "Aptos",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(213, 193, 138, 0.45);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--black);
  font-weight: 800;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-mark span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #3f3f3f;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--black);
  background: rgba(213, 193, 138, 0.2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 120px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 80px);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 32%),
    #f3efe2;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.95) 0%, rgba(251, 250, 247, 0.8) 42%, rgba(251, 250, 247, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
}

.hero-logo {
  width: 86px;
  height: 86px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(213, 193, 138, 0.7);
  border-radius: 999px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.1);
}

.hero-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  font-family:
    "Poppins",
    "Aptos Display",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 10ch;
  font-size: 4.4rem;
  font-weight: 900;
}

h2 {
  font-size: 2.55rem;
  font-weight: 850;
}

h3 {
  font-size: 1.22rem;
  font-weight: 850;
}

.hero-lede {
  max-width: 590px;
  margin: 24px 0 0;
  color: #353535;
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--black);
  font-weight: 850;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(183, 160, 102, 0.28);
}

.button.primary:hover {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button.secondary {
  color: var(--black);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(0, 0, 0, 0.18);
}

.button.secondary:hover {
  border-color: var(--black);
  background: var(--white);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.map-layer {
  position: absolute;
  inset: -10%;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(0, 110, 156, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 110, 156, 0.12) 1px, transparent 1px);
  background-size: 84px 84px;
  transform: rotate(-8deg) scale(1.1);
}

.map-layer-2 {
  opacity: 0.25;
  background-size: 38px 38px;
  transform: rotate(12deg) scale(1.14);
}

.route-line {
  position: absolute;
  height: 4px;
  transform-origin: left center;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(0, 110, 156, 0.7) 0 18px, transparent 18px 32px);
}

.route-line-a {
  top: 33%;
  left: 46%;
  width: 52%;
  transform: rotate(24deg);
}

.route-line-b {
  top: 64%;
  left: 42%;
  width: 48%;
  transform: rotate(-19deg);
  background: repeating-linear-gradient(90deg, rgba(213, 193, 138, 0.85) 0 18px, transparent 18px 32px);
}

.spot-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--black);
  border: 4px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.spot-pin span {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.pin-a {
  top: 28%;
  right: 22%;
}

.pin-b {
  top: 58%;
  right: 10%;
  background: var(--teal);
}

.pin-c {
  bottom: 18%;
  right: 33%;
  background: var(--gold-deep);
}

.pin-d {
  top: 42%;
  right: 44%;
}

.trust-radar {
  position: absolute;
  right: 12%;
  top: 19%;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  border: 1px solid rgba(183, 160, 102, 0.45);
}

.trust-radar div {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(183, 160, 102, 0.45);
  border-radius: 999px;
}

.trust-radar div:nth-child(2) {
  inset: 30%;
}

.trust-radar div:nth-child(3) {
  inset: 46%;
  background: rgba(213, 193, 138, 0.22);
}

.phone-shell {
  position: absolute;
  right: clamp(26px, 8vw, 116px);
  bottom: clamp(24px, 7vw, 78px);
  width: min(320px, 28vw);
  min-width: 250px;
  padding: 13px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.phone-topbar {
  width: 74px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #111111;
}

.phone-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(0, 110, 156, 0.18) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(0, 110, 156, 0.14) 50%, transparent 51%),
    var(--teal-soft);
  background-size: 72px 72px;
}

.mini-route {
  position: absolute;
  height: 5px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 110, 156, 0.15);
}

.mini-route-a {
  top: 98px;
  left: 25px;
  width: 240px;
  transform: rotate(29deg);
}

.mini-route-b {
  top: 205px;
  left: 54px;
  width: 210px;
  transform: rotate(-24deg);
}

.mini-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 5px solid var(--white);
  border-radius: 999px;
  background: var(--black);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.mini-pin-a {
  top: 76px;
  left: 64px;
}

.mini-pin-b {
  top: 152px;
  right: 50px;
  background: var(--teal);
}

.mini-pin-c {
  bottom: 56px;
  left: 112px;
  background: var(--gold-deep);
}

.phone-panel {
  display: grid;
  gap: 2px;
  margin: -66px 14px 0;
  position: relative;
  padding: 15px 16px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
}

.phone-panel span,
.phone-panel small {
  color: rgba(255, 255, 255, 0.68);
}

.phone-panel strong {
  font-size: 1.35rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--max-width);
  margin: -24px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 clamp(20px, 5vw, 0px);
}

.signal-strip div {
  min-height: 108px;
  padding: 24px;
  background: var(--black);
  color: var(--white);
}

.signal-strip div:first-child {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.signal-strip div:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.signal-strip strong {
  display: block;
  font-size: 1.18rem;
  font-weight: 900;
}

.signal-strip span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.content-section,
.vision-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 28px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.84fr) minmax(300px, 1.16fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy p,
.beta-copy p,
.contact-copy p {
  margin: 0;
}

.section-copy p + p,
.beta-copy p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 36px;
}

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

.feature-card {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  border-color: rgba(213, 193, 138, 0.9);
  transform: translateY(-2px);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f3ead0;
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.beta-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.beta-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.beta-copy h2,
.contact-copy h2 {
  margin-bottom: 22px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  position: relative;
  min-height: 128px;
  padding: 22px 22px 22px 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 24px;
  width: 18px;
  height: 18px;
  border: 5px solid var(--gold);
  border-radius: 999px;
  background: var(--white);
}

.timeline-item.active {
  border-color: rgba(0, 110, 156, 0.28);
  background: #f2fafc;
}

.timeline-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-item strong {
  display: block;
  font-size: 1.08rem;
}

.timeline-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.vision-section {
  max-width: none;
  padding-left: max(clamp(20px, 5vw, 70px), calc((100vw - var(--max-width)) / 2 + 28px));
  padding-right: max(clamp(20px, 5vw, 70px), calc((100vw - var(--max-width)) / 2 + 28px));
  background: var(--black);
  color: var(--white);
}

.vision-section .eyebrow {
  color: var(--gold);
}

.vision-section h2 {
  max-width: 980px;
  color: var(--white);
  font-size: 3.1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.contact-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
}

.contact-links a:hover {
  border-color: var(--black);
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.06);
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: #333333;
  font-size: 0.88rem;
  font-weight: 800;
}

.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #ded7c6;
  border-radius: var(--radius);
  background: #fdfcf9;
  color: var(--black);
  font: inherit;
  font-weight: 500;
  resize: vertical;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  outline: 3px solid rgba(0, 110, 156, 0.18);
  border-color: var(--teal);
}

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

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer span:first-child {
  color: var(--black);
  font-weight: 900;
}

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

  .hero-section {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 360px;
  }

  .hero-section::after {
    background: rgba(251, 250, 247, 0.86);
  }

  .phone-shell {
    right: 50%;
    bottom: 34px;
    width: 300px;
    min-width: 0;
    transform: translateX(50%);
  }

  .trust-radar {
    right: 50%;
    top: auto;
    bottom: 84px;
    transform: translateX(50%);
  }

  .signal-strip,
  .feature-grid,
  .split-section,
  .beta-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: 0;
    padding: 0;
  }

  .signal-strip div,
  .signal-strip div:first-child,
  .signal-strip div:last-child {
    border-radius: 0;
  }

  .feature-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero-section {
    min-height: 760px;
    padding: 36px 18px 320px;
  }

  .hero-logo {
    display: none;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2,
  .vision-section h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .hero-actions {
    width: 100%;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.94rem;
  }

  .phone-shell {
    width: min(284px, calc(100vw - 36px));
  }

  .phone-map {
    min-height: 248px;
  }

  .trust-radar {
    width: 270px;
    height: 270px;
  }

  .content-section,
  .vision-section {
    padding: 64px 18px;
  }

  .waitlist-form {
    padding: 18px;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
