:root {
  --bg: #f7f5f1;
  --surface: #fffdf8;
  --surface-soft: #f2edf9;
  --ink: #0f1322;
  --text: #171427;
  --muted: #6b7280;
  --border: rgba(78, 69, 112, 0.15);
  --primary: #7c5cff;
  --primary-strong: #633fd6;
  --primary-soft: rgba(124, 92, 255, 0.12);
  --cream: #fffaf1;
  --green: #48b77a;
  --shadow: 0 24px 70px rgba(44, 36, 93, 0.16);
  --soft-shadow: 0 14px 40px rgba(44, 36, 93, 0.09);
}

[data-theme="dark"] {
  --bg: #0f1322;
  --surface: #171427;
  --surface-soft: #211c35;
  --ink: #fffdf8;
  --text: #f7f5f1;
  --muted: #c7c2d8;
  --border: rgba(255, 255, 255, 0.16);
  --primary: #a78bff;
  --primary-strong: #c4b5fd;
  --primary-soft: rgba(167, 139, 255, 0.16);
  --cream: #171427;
  --green: #64d596;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --soft-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(124, 92, 255, 0.17), transparent 28rem),
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.85), transparent 30rem),
    linear-gradient(180deg, #fffdf8 0%, #f7f5f1 54%, #fffdf8 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at 10% 10%, rgba(124, 92, 255, 0.25), transparent 28rem),
    radial-gradient(circle at 82% 0%, rgba(78, 69, 112, 0.24), transparent 30rem),
    linear-gradient(180deg, #111426 0%, #0f1322 56%, #151326 100%);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #8c72ff, #633fd6);
  box-shadow: 0 13px 28px rgba(124, 92, 255, 0.3);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.site-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-select,
.theme-toggle {
  height: 38px;
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: 999px;
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  font-weight: 850;
}

.language-select {
  padding: 0 10px;
  max-width: 132px;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  cursor: pointer;
}

[data-theme="dark"] .language-select,
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .nav-button,
[data-theme="dark"] .button.secondary,
[data-theme="dark"] .trust-strip div,
[data-theme="dark"] .coverage-stats div,
[data-theme="dark"] .info-card,
[data-theme="dark"] .screenshot-card,
[data-theme="dark"] .content-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .contact-aside,
[data-theme="dark"] .waitlist-band,
[data-theme="dark"] .network-card,
[data-theme="dark"] .floating-proof,
[data-theme="dark"] .fallback-card {
  background: rgba(23, 20, 39, 0.78);
}

[data-theme="dark"] .waitlist-modal,
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] .waitlist-modal input,
[data-theme="dark"] .waitlist-modal select,
[data-theme="dark"] .modal-close {
  color: var(--text);
  background: #171427;
}

[data-theme="dark"] .screenshot-frame {
  background: linear-gradient(180deg, #19162a, #211c35);
}

.nav a {
  text-decoration: none;
}

.nav-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: 999px;
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 850;
  box-shadow: var(--soft-shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.9fr);
  gap: 52px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 0;
  padding: 64px 0 56px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 13px;
  border: 1px solid rgba(124, 92, 255, 0.24);
  border-radius: 999px;
  color: var(--primary-strong);
  background: rgba(124, 92, 255, 0.09);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 18px 0 16px;
  max-width: 800px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
  font-weight: 950;
  color: var(--ink);
}

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: default;
  opacity: 0.7;
  transform: none;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #8d6cff, #633fd6);
  box-shadow: 0 16px 32px rgba(124, 92, 255, 0.34);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--border);
  box-shadow: var(--soft-shadow);
}

.button.full {
  width: 100%;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 174px;
  min-height: 62px;
  padding: 10px 16px;
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: 22px;
  color: var(--ink);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.74);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  border-color: rgba(124, 92, 255, 0.42);
  box-shadow: 0 18px 42px rgba(44, 36, 93, 0.16);
  transform: translateY(-2px);
}

.store-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #8c72ff, #633fd6);
  box-shadow: 0 12px 24px rgba(124, 92, 255, 0.28);
}

.store-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.store-button strong,
.store-button small {
  display: block;
  line-height: 1.12;
}

.store-button strong {
  font-size: 15px;
  font-weight: 950;
}

.store-button small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.download-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 30px;
}

.trust-strip div,
.coverage-stats div {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--soft-shadow);
}

.trust-strip strong,
.coverage-stats strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.trust-strip span,
.coverage-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(365px, 100%);
  padding: 13px;
  border-radius: 46px;
  background: linear-gradient(160deg, #151727, #050712);
  box-shadow: var(--shadow);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  border-radius: 36px;
  background: linear-gradient(180deg, #10132b 0%, #161732 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mock-map {
  position: relative;
  height: 440px;
  background:
    radial-gradient(circle at 58% 58%, rgba(124, 92, 255, 0.26), transparent 7rem),
    linear-gradient(42deg, transparent 49%, rgba(127, 111, 255, 0.22) 49%, rgba(127, 111, 255, 0.22) 51%, transparent 51%),
    linear-gradient(140deg, transparent 40%, rgba(90, 106, 179, 0.18) 40%, rgba(90, 106, 179, 0.18) 43%, transparent 43%),
    #11152d;
}

.map-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 48px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(160deg, #987aff, #6d48dc);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.34);
}

.map-pin {
  font-size: 13px;
}

.map-pin span,
.map-pin {
  line-height: 1;
}

.pin-a {
  left: 48%;
  top: 34%;
}

.pin-b {
  left: 70%;
  top: 48%;
}

.pin-c {
  left: 28%;
  top: 62%;
}

.map-pin {
  color: transparent;
}

.map-pin::before {
  content: attr(data-score);
}

.pin-a::before {
  content: "4.2";
}

.pin-b::before {
  content: "4.0";
}

.pin-c::before {
  content: "3.6";
}

.map-pin::before {
  color: #fff;
  transform: rotate(45deg);
}

.map-toggle {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(18px);
}

.map-toggle span {
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 13px;
}

.map-toggle span:first-child {
  background: linear-gradient(135deg, #9777ff, #633fd6);
}

.mock-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  padding: 16px;
  border-radius: 28px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.mock-card-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 13px;
  align-items: center;
}

.mock-photo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.18)),
    linear-gradient(135deg, #e6e0d1, #6f7b66);
}

.mock-address {
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
}

.mock-meta {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.score-bubble {
  display: grid;
  place-items: center;
  width: 46px;
  height: 38px;
  border-radius: 14px;
  color: #7affb3;
  border: 1px solid rgba(122, 255, 179, 0.34);
  font-weight: 950;
}

.mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 11px;
}

.mini-chips span {
  padding: 6px 8px;
  border-radius: 999px;
  color: #cbffe0;
  background: rgba(72, 183, 122, 0.23);
  font-size: 11px;
  font-weight: 850;
}

.mock-button {
  width: 100%;
  height: 45px;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #8d6cff, #633fd6);
  font-weight: 900;
}

.floating-proof {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(250px, 56%);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-proof strong,
.floating-proof span {
  display: block;
}

.floating-proof span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.screens-section,
.coverage-section,
.sections,
.waitlist-band,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.screens-section {
  padding: 42px 0 54px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-heading h2,
.coverage-copy h2,
.waitlist-band h2 {
  margin: 13px 0 10px;
  color: var(--ink);
  font-size: clamp(31px, 4.4vw, 52px);
  line-height: 1.02;
  font-weight: 950;
}

.section-heading p,
.coverage-copy p,
.waitlist-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.screenshot-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
}

.screenshot-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 18.2;
  border-radius: 25px;
  background: linear-gradient(180deg, #fffdf8, #f2edf9);
  border: 8px solid #171427;
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tilted hero phone presentation */
.hero-tilted-visual {
  min-height: 650px;
  perspective: 1400px;
  isolation: isolate;
}

.hero-tilted-visual::before {
  content: "";
  position: absolute;
  width: min(580px, 96vw);
  height: min(580px, 96vw);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(124, 92, 255, 0.28), transparent 62%),
    radial-gradient(circle at 70% 30%, rgba(166, 134, 255, 0.18), transparent 48%);
  filter: blur(8px);
  z-index: -2;
}

.hero-map-layer {
  position: absolute;
  inset: 40px 2px 52px;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 58% 54%, rgba(124, 92, 255, 0.34), transparent 7rem),
    radial-gradient(circle at 22% 30%, rgba(83, 67, 190, 0.24), transparent 5rem),
    linear-gradient(155deg, rgba(11, 15, 34, 0.94), rgba(21, 22, 53, 0.84));
  box-shadow: 0 36px 88px rgba(64, 44, 143, 0.28);
  transform: rotate(-5deg) skewY(-1deg) scale(0.96);
  z-index: -1;
}

.hero-map-layer::before,
.hero-map-layer::after {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 0.62;
  background:
    linear-gradient(26deg, transparent 47%, rgba(129, 116, 255, 0.24) 48%, rgba(129, 116, 255, 0.24) 50%, transparent 51%),
    linear-gradient(106deg, transparent 38%, rgba(111, 139, 226, 0.18) 39%, rgba(111, 139, 226, 0.18) 42%, transparent 43%),
    linear-gradient(154deg, transparent 55%, rgba(129, 116, 255, 0.16) 56%, rgba(129, 116, 255, 0.16) 58%, transparent 59%);
}

.hero-map-layer::after {
  transform: rotate(18deg);
  opacity: 0.34;
}

.hero-street {
  position: absolute;
  height: 7px;
  border-radius: 999px;
  background: rgba(126, 121, 224, 0.28);
  box-shadow: 0 0 18px rgba(124, 92, 255, 0.16);
}

.street-one {
  width: 72%;
  left: 9%;
  top: 33%;
  transform: rotate(19deg);
}

.street-two {
  width: 54%;
  right: 5%;
  top: 62%;
  transform: rotate(-31deg);
}

.street-three {
  width: 48%;
  left: 20%;
  bottom: 22%;
  transform: rotate(8deg);
}

.hero-score-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 50px;
  border-radius: 50% 50% 50% 10px;
  color: #fff;
  background: linear-gradient(150deg, #a78bff, #6f45df);
  box-shadow: 0 16px 34px rgba(109, 63, 217, 0.36);
  font-size: 13px;
  font-weight: 950;
  transform: rotate(-45deg);
  z-index: 1;
}

.hero-score-pin::before {
  content: "";
  position: absolute;
  inset: -13px;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.16);
}

.hero-score-pin {
  color: transparent;
}

.hero-score-pin::after {
  content: attr(class);
}

.hero-score-pin.hero-pin-a::after {
  content: "4.2";
}

.hero-score-pin.hero-pin-b::after {
  content: "4.0";
}

.hero-score-pin.hero-pin-c::after {
  content: "3.6";
}

.hero-score-pin::after {
  color: #fff;
  transform: rotate(45deg);
}

.hero-pin-a {
  top: 20%;
  left: 22%;
}

.hero-pin-b {
  top: 44%;
  right: 18%;
}

.hero-pin-c {
  bottom: 20%;
  left: 14%;
}

.hero-phone-tilted {
  position: relative;
  z-index: 2;
  width: min(392px, 82vw);
  padding: 12px;
  border-radius: 52px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 20%, rgba(5, 7, 18, 0.94) 42%),
    linear-gradient(160deg, #151727, #050712);
  box-shadow:
    0 34px 86px rgba(12, 12, 28, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 72px rgba(109, 63, 217, 0.22);
  transform: rotate(-4.5deg) translateY(6px);
  transform-origin: center;
}

.hero-phone-screen {
  min-height: 0;
  aspect-ratio: 9 / 19.5;
  border-radius: 40px;
  background: #10132b;
}

.hero-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-screen-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 22%, transparent 68%, rgba(255, 255, 255, 0.09)),
    linear-gradient(180deg, rgba(5, 7, 18, 0.06), rgba(5, 7, 18, 0.24));
}

.hero-screen-fallback {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 54% 48%, rgba(124, 92, 255, 0.34), transparent 6rem),
    linear-gradient(42deg, transparent 49%, rgba(127, 111, 255, 0.22) 49%, rgba(127, 111, 255, 0.22) 51%, transparent 51%),
    linear-gradient(140deg, transparent 40%, rgba(90, 106, 179, 0.18) 40%, rgba(90, 106, 179, 0.18) 43%, transparent 43%),
    #11152d;
}

.hero-fallback-toggle {
  position: absolute;
  top: 24px;
  left: 50%;
  display: flex;
  gap: 5px;
  padding: 6px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.hero-fallback-toggle span {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero-fallback-toggle span:first-child {
  background: linear-gradient(135deg, #9777ff, #633fd6);
}

.hero-fallback-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 48px;
  border-radius: 50% 50% 50% 8px;
  color: #fff;
  background: linear-gradient(160deg, #987aff, #6d48dc);
  font-size: 13px;
  font-weight: 950;
  transform: rotate(-45deg);
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.34);
}

.hero-fallback-pin {
  color: transparent;
}

.hero-fallback-pin::after {
  color: #fff;
  transform: rotate(45deg);
}

.fallback-pin-a {
  left: 48%;
  top: 34%;
}

.fallback-pin-a::after {
  content: "4.2";
}

.fallback-pin-b {
  left: 70%;
  top: 48%;
}

.fallback-pin-b::after {
  content: "4.0";
}

.fallback-pin-c {
  left: 28%;
  top: 62%;
}

.fallback-pin-c::after {
  content: "3.6";
}

.hero-fallback-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
}

.hero-fallback-card strong {
  font-size: 18px;
}

.hero-fallback-card span {
  color: rgba(255, 255, 255, 0.75);
}

.hero-floating-proof {
  right: 4px;
  bottom: 82px;
  z-index: 4;
  width: min(286px, 58%);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 24px 58px rgba(21, 21, 42, 0.22),
    0 0 36px rgba(124, 92, 255, 0.16);
  transform: rotate(-1deg);
}

.screenshot-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.screenshot-card:hover {
  transform: translateY(-4px);
}

.screenshot-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.08));
}

[data-theme="dark"] .hero-floating-proof {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(19, 18, 31, 0.72);
}

[data-theme="dark"] .hero-map-layer {
  box-shadow: 0 36px 88px rgba(0, 0, 0, 0.44);
}

.screenshot-card h3 {
  margin: 13px 4px 5px;
  color: var(--ink);
  font-size: 16px;
}

.screenshot-card p {
  margin: 0 4px 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.screenshot-placeholder {
  display: grid;
  gap: 11px;
  padding: 18px 12px;
  height: 100%;
}

.placeholder-search,
.placeholder-card,
.placeholder-list,
.placeholder-hero,
.placeholder-score-row,
.placeholder-button,
.placeholder-chip-row,
.placeholder-header {
  border-radius: 18px;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.15);
}

.placeholder-search {
  height: 42px;
  border-radius: 999px;
  background: #fff;
}

.placeholder-card {
  height: 90px;
  background: rgba(255, 255, 255, 0.82);
}

.placeholder-card.wide {
  height: 138px;
}

.placeholder-card.small {
  height: 58px;
}

.placeholder-hero {
  height: 142px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.7), rgba(72, 183, 122, 0.24));
}

.placeholder-score-row,
.placeholder-chip-row {
  height: 72px;
}

.placeholder-button {
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8d6cff, #633fd6);
}

.placeholder-list {
  height: 70px;
  background: rgba(255, 255, 255, 0.84);
}

.placeholder-header {
  height: 96px;
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: 28px;
  align-items: center;
  padding: 54px 0;
}

.coverage-copy {
  min-width: 0;
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.network-card {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.16), transparent 9rem),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.network-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: 50%;
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--soft-shadow);
  font-weight: 900;
  font-size: 13px;
}

.network-node.core {
  left: 50%;
  top: 50%;
  width: 118px;
  height: 118px;
  color: #fff;
  background: linear-gradient(135deg, #8d6cff, #633fd6);
  transform: translate(-50%, -50%);
}

.network-node.n1 {
  left: 32px;
  top: 34px;
}

.network-node.n2 {
  right: 36px;
  top: 42px;
}

.network-node.n3 {
  left: 54px;
  bottom: 42px;
}

.network-node.n4 {
  right: 58px;
  bottom: 36px;
}

.network-line {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  width: 180px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.05), rgba(124, 92, 255, 0.38));
  transform-origin: left center;
}

.l1 {
  transform: rotate(218deg);
}

.l2 {
  transform: rotate(322deg);
}

.l3 {
  transform: rotate(142deg);
}

.l4 {
  transform: rotate(38deg);
}

.city-cloud {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.city-cloud span {
  padding: 9px 12px;
  border: 1px solid rgba(124, 92, 255, 0.18);
  border-radius: 999px;
  color: var(--primary-strong);
  background: rgba(124, 92, 255, 0.08);
  font-size: 13px;
  font-weight: 850;
}

.coverage-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.coverage-map-card {
  position: relative;
  min-height: 440px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 54% 42%, rgba(124, 92, 255, 0.22), transparent 14rem),
    radial-gradient(circle at 82% 74%, rgba(72, 183, 122, 0.11), transparent 12rem),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.coverage-map-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 36%),
    radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.08), transparent 18rem);
  pointer-events: none;
}

.coverage-us-map {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 400px;
  display: block;
}

.us-outline {
  fill: rgba(255, 255, 255, 0.72);
  stroke: rgba(124, 92, 255, 0.24);
  stroke-width: 3;
  filter: drop-shadow(0 22px 32px rgba(44, 36, 93, 0.12));
}

.coverage-state {
  fill: rgba(124, 92, 255, 0.13);
  stroke: rgba(124, 92, 255, 0.17);
  stroke-width: 1.2;
}

.state-east,
.state-south {
  fill: rgba(124, 92, 255, 0.19);
}

.coverage-link {
  fill: none;
  stroke: rgba(124, 92, 255, 0.34);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  animation: dash-flow 9s linear infinite;
}

.coverage-city-node {
  color: var(--ink);
  cursor: pointer;
  outline: none;
}

.coverage-city-node circle {
  fill: #7c5cff;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 3;
  filter: drop-shadow(0 0 12px rgba(124, 92, 255, 0.55));
  animation: node-pulse 2.8s ease-in-out infinite;
}

.coverage-city-node.major circle {
  fill: #633fd6;
}

.coverage-city-node text {
  fill: var(--ink);
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 4;
  stroke-linejoin: round;
  font-size: 16px;
  font-weight: 900;
}

.coverage-city-node:hover circle,
.coverage-city-node:focus-visible circle,
.coverage-city-node.is-active circle {
  fill: #48b77a;
  filter: drop-shadow(0 0 18px rgba(72, 183, 122, 0.64));
}

.coverage-map-tooltip {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  width: min(290px, calc(100% - 44px));
  padding: 16px;
  border: 1px solid rgba(124, 92, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.coverage-map-tooltip strong,
.coverage-map-tooltip span,
.coverage-map-tooltip small {
  display: block;
}

.coverage-map-tooltip strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.coverage-map-tooltip span {
  margin-top: 4px;
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-map-tooltip p {
  margin: 8px 0 4px;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.coverage-map-tooltip small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

[data-theme="dark"] .store-button,
[data-theme="dark"] .coverage-map-card,
[data-theme="dark"] .coverage-map-tooltip {
  background: rgba(23, 20, 39, 0.78);
}

[data-theme="dark"] .us-outline {
  fill: rgba(33, 28, 53, 0.78);
  stroke: rgba(167, 139, 255, 0.3);
}

[data-theme="dark"] .coverage-state {
  fill: rgba(167, 139, 255, 0.18);
}

[data-theme="dark"] .coverage-city-node text {
  fill: #fffdf8;
  stroke: rgba(15, 19, 34, 0.86);
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -96;
  }
}

@keyframes node-pulse {
  0%, 100% {
    r: 6;
    opacity: 0.88;
  }
  50% {
    r: 8;
    opacity: 1;
  }
}

.sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 42px 0 40px;
}

.info-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--soft-shadow);
}

.info-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.waitlist-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 58px;
  padding: 30px;
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 92, 255, 0.17), transparent 16rem),
    rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.waitlist-band h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.simple-page {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 70px;
}

.page-hero {
  max-width: 760px;
  margin-bottom: 24px;
}

.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(40px, 6.4vw, 68px);
  line-height: 0.98;
}

.page-hero p,
.content-card p,
.contact-aside p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  gap: 18px;
  align-items: start;
}

.content-card,
.contact-card,
.contact-aside {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.content-card {
  padding: 28px;
}

.content-card h2,
.contact-aside h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.content-card h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.content-card p {
  margin: 0 0 13px;
}

.contact-card {
  padding: 26px;
}

.contact-form {
  display: grid;
  gap: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(124, 92, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.12);
}

.contact-aside {
  padding: 24px;
}

.contact-aside a {
  color: var(--primary-strong);
  font-weight: 850;
}

.legal-list {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-list li + li {
  margin-top: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 24px;
  padding: 28px 0 38px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 950;
  font-size: 18px;
}

.site-footer strong {
  color: var(--ink);
  font-size: 16px;
}

.site-footer p {
  margin: 5px 0 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 750;
}

.footer-links a {
  text-decoration: none;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  max-width: 820px;
  line-height: 1.5;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.footer-meta a {
  color: var(--primary-strong);
  font-weight: 800;
}

.fallback {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 82px);
  padding: 40px 20px 80px;
}

.fallback-card {
  width: min(640px, 100%);
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  text-align: center;
}

.fallback-card h1 {
  margin: 14px auto;
  font-size: clamp(34px, 8vw, 54px);
  line-height: 1.04;
}

.fallback-card p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.link-pill {
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary-strong);
  background: rgba(124, 111, 205, 0.1);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 19, 34, 0.42);
  backdrop-filter: blur(14px);
}

.modal-backdrop[hidden] {
  display: none;
}

.waitlist-modal {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.waitlist-modal h2 {
  margin: 13px 0 8px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.waitlist-modal p {
  margin: 0 0 16px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
}

.waitlist-modal form {
  display: grid;
  gap: 12px;
}

.waitlist-modal label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.waitlist-modal label span {
  color: var(--muted);
  font-weight: 650;
}

.waitlist-modal input,
.waitlist-modal select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.waitlist-modal input:focus,
.waitlist-modal select:focus {
  border-color: rgba(124, 92, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.12);
}

.form-message {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.form-message.success {
  color: #16824e;
}

.form-message.error {
  color: #bd2b2b;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 92, 255, 0.16), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(167, 139, 255, 0.14), transparent 30%),
    var(--cream);
}

.auth-card {
  width: min(100%, 460px);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .auth-card {
  background: rgba(22, 18, 34, 0.88);
}

.brand-link {
  text-decoration: none;
}

.auth-copy {
  margin: 28px 0 18px;
}

.auth-copy h1 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: clamp(32px, 8vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.auth-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.auth-card .form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.auth-card input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
}

.auth-card input:focus {
  border-color: rgba(124, 92, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.12);
}

.auth-actions {
  margin-top: 14px;
}

@media (max-width: 980px) {
  .hero,
  .coverage-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .screenshot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .network-card {
    min-height: 290px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .screens-section,
  .coverage-section,
  .sections,
  .waitlist-band,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .nav {
    display: none;
  }

  .site-controls {
    gap: 6px;
  }

  .language-select {
    max-width: 106px;
  }

  .site-controls .nav-button {
    display: none;
  }

  .hero {
    padding: 30px 0 38px;
    gap: 34px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .lead {
    font-size: 17px;
  }

  .trust-strip,
  .coverage-stats,
  .sections {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    width: min(342px, 100%);
  }

  .phone-screen {
    min-height: 610px;
  }

  .floating-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-section {
    grid-template-columns: 1fr;
    padding: 36px 0;
  }

  .coverage-map-card {
    min-height: 360px;
  }

  .coverage-us-map {
    min-height: 330px;
  }

  .coverage-city-node text {
    font-size: 13px;
  }

  .city-cloud span {
    font-size: 12px;
  }

  .waitlist-band {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
    border-radius: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .download-buttons {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .coverage-map-card {
    padding: 10px;
    min-height: 310px;
  }

  .coverage-us-map {
    min-height: 280px;
  }

  .coverage-city-node:not(.major) text {
    display: none;
  }

  .coverage-city-node.major text {
    font-size: 12px;
  }

  .coverage-map-tooltip {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 10px;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-card {
    width: min(260px, 100%);
    margin: 0 auto;
  }

  .waitlist-modal {
    padding: 24px 18px;
    border-radius: 26px;
  }
}

@media (max-width: 980px) {
  .hero-tilted-visual {
    min-height: 610px;
  }

  .hero-phone-tilted {
    width: min(365px, 78vw);
  }

  .hero-floating-proof {
    right: 28px;
    bottom: 54px;
  }
}

@media (max-width: 760px) {
  .hero-tilted-visual {
    min-height: 590px;
    margin-top: 18px;
  }

  .hero-map-layer {
    inset: 36px 6px 86px;
    border-radius: 40px;
    transform: rotate(-3deg) skewY(-1deg) scale(0.95);
  }

  .hero-phone-tilted {
    width: min(335px, 84vw);
    transform: rotate(-3deg) translateY(0);
  }

  .hero-phone-screen {
    min-height: 0;
    border-radius: 34px;
  }

  .hero-floating-proof {
    position: absolute;
    right: 16px;
    bottom: 26px;
    width: min(276px, 76%);
    margin-top: 0;
    transform: rotate(-0.5deg);
  }
}

@media (max-width: 480px) {
  .hero-tilted-visual {
    min-height: auto;
    padding-bottom: 8px;
  }

  .hero-map-layer {
    inset: 28px 0 96px;
  }

  .hero-phone-tilted {
    width: min(302px, 84vw);
  }

  .hero-floating-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 318px);
    margin-top: -12px;
    transform: none;
  }
}
