@font-face {
  font-family: "Geist";
  src: url("assets/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #f7f9ff;
  --muted: #9aa9c7;
  --navy-950: #020713;
  --navy-900: #041028;
  --navy-850: #071632;
  --navy-800: #0a1d42;
  --blue: #2f7fff;
  --cyan: #63eaff;
  --violet: #9d72ff;
  --line: rgba(151, 184, 255, 0.16);
  --glass: rgba(8, 24, 55, 0.68);
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--ink);
  font-family: "Geist", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection { background: var(--cyan); color: var(--navy-950); }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 140px 0; scroll-margin-top: 84px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100vw - 32px));
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(147, 184, 255, 0.18);
  border-radius: 22px;
  background: rgba(3, 12, 31, 0.72);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px) saturate(135%);
  overflow: visible;
}

.brand { position: relative; z-index: 2; width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; }
.brand img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 18px rgba(49, 220, 255, .24)); }

.nav-links { margin-left: auto; display: flex; align-items: center; gap: 28px; color: #cdd7eb; font-size: 13px; font-weight: 650; letter-spacing: .01em; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: white; }
.nav-links .nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(121, 225, 255, .32);
  border-radius: 999px;
  background: rgba(74, 183, 255, .10);
  color: #fff;
}

.menu-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.06); padding: 0; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: white; transition: transform .2s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 54% center; }
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 6, 18, .98) 0%, rgba(2, 10, 27, .90) 27%, rgba(3, 13, 34, .42) 52%, rgba(2, 8, 20, .10) 76%),
    linear-gradient(0deg, rgba(2, 7, 18, .74) 0%, transparent 36%, rgba(1, 7, 18, .28) 100%);
}

.hero::after { content: ""; position: absolute; z-index: 1; inset: auto 0 0; height: 220px; background: linear-gradient(transparent, var(--navy-950)); }
.hero-logo { position: absolute; z-index: 4; top: 112px; left: max(24px, calc((100vw - 1180px) / 2)); width: 142px; height: 111px; display: grid; place-items: center; pointer-events: none; }
.hero-logo::before { content: ""; position: absolute; inset: 13% -18%; border-radius: 50%; background: rgba(2, 9, 24, .42); filter: blur(22px); }
.hero-logo img { position: relative; width: 142px; height: 111px; object-fit: contain; filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .35)); }
.hero-content { position: relative; z-index: 4; height: 100%; display: flex; align-items: flex-start; padding-top: clamp(270px, 30svh, 350px); }
.hero-copy { max-width: 680px; }

.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 24px; color: #80dfff; font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; }
h1 { max-width: 700px; margin-bottom: 26px; font-size: clamp(64px, 6.1vw, 96px); line-height: .93; font-weight: 680; }
h1 em, h2 em { color: var(--cyan); font-style: normal; text-shadow: 0 0 34px rgba(54, 220, 255, .18); }

.hero-lede { max-width: 600px; margin-bottom: 20px; color: #c8d4e8; font-size: 17px; line-height: 1.65; }
.brand-line { margin-bottom: 32px; color: #8cddff; font-size: 14px; letter-spacing: .03em; }
.brand-line strong { color: #f9fbff; }
.brand-line span { color: #b994ff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-secondary-link { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 13px; color: #eef7ff; font-size: 13px; font-weight: 720; }
.hero-secondary-link svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; transition: transform .2s ease; }
.hero-secondary-link:hover svg { transform: translateX(3px); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-primary { background: linear-gradient(110deg, #f7fbff, #bdf4ff); color: #041126; box-shadow: 0 12px 40px rgba(68, 214, 255, .18); }
.button-primary:hover { box-shadow: 0 16px 50px rgba(68, 214, 255, .30); }
.button-ghost { border-color: rgba(202, 221, 255, .25); background: rgba(4, 17, 43, .48); color: white; backdrop-filter: blur(12px); }
.button-ghost:hover { background: rgba(14, 39, 81, .72); }

.scroll-cue { position: absolute; z-index: 5; left: 50%; bottom: 34px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: #98a8c3; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 36px; background: linear-gradient(var(--cyan), transparent); }

.hero-orbit { position: absolute; z-index: 2; border: 1px solid rgba(83, 216, 255, .12); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 720px; height: 260px; right: -230px; top: 16%; transform: rotate(-17deg); }
.orbit-two { width: 520px; height: 180px; right: -110px; top: 24%; transform: rotate(13deg); border-color: rgba(154, 111, 255, .11); }

.network { background: radial-gradient(circle at 100% 10%, rgba(28, 81, 175, .18), transparent 30%), var(--navy-950); }
.section-intro { margin-bottom: 68px; }
.split-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; }
.section-intro h2, .cities-heading h2, .identity-copy h2, .platforms-heading h2, .faq-heading h2, .closing h2, .beta-copy h2 { margin-bottom: 0; font-size: clamp(48px, 5.5vw, 78px); line-height: .95; font-weight: 660; }
.split-intro > p, .cities-heading > p, .identity-copy > p, .platforms-heading > p { margin-bottom: 4px; color: var(--muted); font-size: 16px; line-height: 1.75; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-card { min-height: 370px; padding: 22px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(13, 36, 80, .76), rgba(4, 14, 35, .72)); box-shadow: inset 0 1px rgba(255,255,255,.04); overflow: hidden; }
.card-top { display: flex; justify-content: space-between; color: #9bb1d3; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.card-top i { font-style: normal; color: #466087; }
.feature-card h3 { margin: auto 0 8px; font-size: 22px; letter-spacing: -.025em; }
.feature-card > p { margin-bottom: 0; color: #91a2c0; font-size: 13px; line-height: 1.6; }

.people-stack { height: 126px; display: flex; align-items: center; justify-content: center; }
.people-stack span { width: 54px; height: 54px; margin-left: -15px; border: 3px solid #0a1b3e; border-radius: 50%; background: linear-gradient(135deg, #65efff, #256cf5); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.people-stack span:nth-child(2) { background: linear-gradient(135deg, #c3a2ff, #6747f4); }
.people-stack span:nth-child(3) { background: linear-gradient(135deg, #ffbba2, #dd5d97); }
.people-stack span:nth-child(4) { background: linear-gradient(135deg, #bbf7cf, #31b6a9); }
.people-stack b { margin-left: 9px; color: #b7c8e4; font-size: 11px; }

.profile-visual { position: relative; height: 148px; display: grid; place-items: center; }
.profile-avatar { position: relative; z-index: 2; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(118, 235, 255, .45); border-radius: 50%; background: radial-gradient(circle at 35% 25%, #8af5ff, #2b6cff 45%, #15295e 75%); color: white; font-size: 11px; font-weight: 800; box-shadow: 0 0 42px rgba(72, 192, 255, .33); }
.profile-ring { position: absolute; width: 180px; height: 56px; border: 1px solid rgba(96, 220, 255, .18); border-radius: 50%; transform: rotate(-12deg); }
.ring-b { width: 130px; transform: rotate(37deg); border-color: rgba(170, 113, 255, .2); }

.moment-card { height: 126px; padding: 12px; display: flex; flex-direction: column; justify-content: end; gap: 8px; }
.moment-card div { height: 70px; border: 1px solid rgba(136, 190, 255, .16); border-radius: 15px; background: radial-gradient(circle at 70% 30%, rgba(104, 232, 255, .65), transparent 22%), linear-gradient(135deg, #193c7b, #121947 65%, #532b89); }
.moment-card span { color: #7288aa; font-size: 9px; }

.community-map { position: relative; height: 138px; }
.community-map::before, .community-map::after { content: ""; position: absolute; inset: 34px 15px auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(102, 220, 255, .4), transparent); transform: rotate(18deg); }
.community-map::after { top: 75px; transform: rotate(-16deg); }
.community-map i, .community-map span { position: absolute; width: 12px; height: 12px; border: 2px solid #69e6ff; border-radius: 50%; box-shadow: 0 0 14px #3dd7ff; }
.community-map i:nth-child(1) { left: 18%; top: 35%; }
.community-map i:nth-child(2) { left: 50%; top: 17%; border-color: #9e78ff; }
.community-map i:nth-child(3) { right: 16%; top: 54%; }
.community-map i:nth-child(4) { left: 34%; bottom: 18%; border-color: #cf8fff; }
.community-map span { left: 58%; bottom: 13%; width: 22px; height: 22px; background: rgba(77, 191, 255, .2); }

.social-scene { position: relative; min-height: 640px; margin-top: 84px; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: #061430; box-shadow: 0 40px 100px rgba(0,0,0,.32); }
.social-scene picture, .social-scene picture::after, .social-scene img { position: absolute; inset: 0; width: 100%; height: 100%; }
.social-scene img { object-fit: cover; }
.social-scene picture::after { content: ""; background: linear-gradient(90deg, rgba(2, 9, 24, .86), rgba(3, 13, 33, .20) 58%, rgba(2, 9, 25, .32)); }
.social-scene-copy { position: absolute; z-index: 2; left: 54px; top: 55px; width: 380px; }
.social-scene-copy h3 { margin-bottom: 18px; font-size: clamp(42px, 5vw, 68px); line-height: .92; letter-spacing: -.05em; }
.social-scene-copy > p:last-child { color: #b5c1d7; font-size: 14px; line-height: 1.65; }
.live-card { position: absolute; z-index: 3; width: 210px; padding: 15px 17px; display: flex; flex-direction: column; border: 1px solid rgba(114, 215, 255, .28); border-radius: 16px; background: rgba(4, 18, 46, .70); box-shadow: 0 18px 50px rgba(0,0,0,.28); backdrop-filter: blur(16px); }
.live-card span { margin-bottom: 7px; color: #6ee7ff; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.live-card strong { font-size: 13px; }
.live-card small { margin-top: 5px; color: #8798b7; font-size: 10px; }
.live-card-one { right: 34px; top: 54px; }
.live-card-two { right: 105px; top: 195px; }

.cities { min-height: 1220px; padding-bottom: 110px; background: #041022; isolation: isolate; }
.cities-bg, .cities-bg picture, .cities-bg img, .cities-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.cities-bg { z-index: -3; }
.cities-bg img { object-fit: cover; object-position: center; }
.cities-overlay { z-index: -2; background: linear-gradient(180deg, rgba(2, 8, 20, .88) 0%, rgba(2, 10, 26, .56) 34%, rgba(2, 8, 20, .88) 76%, #020713 100%), linear-gradient(90deg, rgba(1, 7, 19, .86), transparent 66%); }
.cities-content { position: relative; }
.cities-heading { max-width: 760px; }
.cities-heading > p:last-child { max-width: 700px; margin-top: 28px; }
.network-statement { margin: 72px 0 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 18px 22px; border: 1px solid rgba(118, 224, 255, .22); border-radius: 15px; background: rgba(2, 11, 30, .64); color: #aec0dd; font-size: 12px; letter-spacing: .035em; backdrop-filter: blur(14px); }
.network-statement strong { color: #7de9ff; }
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 0; padding: 0; list-style: none; }
.city-grid li { min-height: 74px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; padding: 12px 16px; border: 1px solid rgba(151, 184, 255, .14); border-radius: 15px; background: rgba(4, 17, 42, .66); backdrop-filter: blur(14px); transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.city-grid li:hover { transform: translateY(-2px); border-color: rgba(108, 226, 255, .32); background: rgba(9, 32, 72, .78); }
.city-grid li.is-building { border-color: rgba(88, 222, 255, .28); background: linear-gradient(90deg, rgba(30, 121, 180, .24), rgba(7, 25, 58, .72)); }
.city-index { color: #5d7398; font: 600 10px/1 monospace; }
.city-grid div { display: flex; flex-direction: column; gap: 3px; }
.city-grid strong { font-size: 15px; }
.city-grid small { color: #8597b7; font-size: 10px; }
.city-state { padding: 6px 9px; border: 1px solid rgba(150, 182, 236, .14); border-radius: 99px; color: #7488a9; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.is-building .city-state { color: #7ae9ff; border-color: rgba(100, 227, 255, .24); }
.more-cities { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 36px auto 0; color: #a7b7d2; font-size: 12px; text-align: center; }
.more-cities span { width: 36px; height: 1px; background: linear-gradient(90deg, transparent, rgba(104, 224, 255, .55)); }
.more-cities span:last-child { transform: rotate(180deg); }

.identity { background: #eef4ff; color: #071531; }
.identity-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 105px; align-items: center; }
.identity-copy h2 em { color: #146ee8; text-shadow: none; }
.identity-copy > p { color: #52617b; }
.identity-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.identity-tags span { padding: 8px 12px; border: 1px solid rgba(17, 65, 135, .15); border-radius: 999px; color: #41526e; font-size: 10px; font-weight: 700; }
.identity-art { position: relative; aspect-ratio: 1; display: grid; place-items: center; border-radius: 34px; background: radial-gradient(circle at 50% 45%, #dffbff 0%, #9fcaff 36%, #3269ce 74%, #123270 100%); box-shadow: 0 35px 80px rgba(23, 68, 139, .23); overflow: hidden; }
.identity-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.65), transparent 40%, rgba(5, 35, 105, .22)); }
.identity-core { position: relative; z-index: 4; width: 128px; height: 128px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(242, 253, 255, .27); box-shadow: 0 0 50px rgba(255,255,255,.45), inset 0 0 30px rgba(255,255,255,.26); backdrop-filter: blur(10px); text-align: center; color: white; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.identity-glow { position: absolute; width: 52%; height: 52%; border-radius: 50%; background: rgba(209, 248, 255, .36); filter: blur(32px); }
.identity-orbit { position: absolute; z-index: 3; width: 76%; height: 27%; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; transform: rotate(-17deg); }
.identity-orbit-b { width: 60%; transform: rotate(43deg); border-color: rgba(206, 236, 255, .45); }
.identity-node { position: absolute; z-index: 5; width: 10px; height: 10px; border-radius: 50%; background: white; box-shadow: 0 0 16px white; }
.node-a { top: 33%; right: 12%; }.node-b { bottom: 22%; left: 22%; }.node-c { top: 17%; left: 38%; }

.journey { background: radial-gradient(circle at 0 100%, rgba(39, 97, 205, .18), transparent 32%), #030a1b; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 48px; left: 3%; right: 3%; height: 1px; background: linear-gradient(90deg, rgba(90, 222, 255, .38), rgba(139, 105, 255, .35)); }
.timeline li { position: relative; min-height: 265px; padding: 0 28px 26px; border-left: 1px solid var(--line); }
.timeline li:last-child { border-right: 1px solid var(--line); }
.timeline li > span { color: #6fe9ff; font: 700 11px/1 monospace; }
.timeline li > i { position: relative; z-index: 2; width: 12px; height: 12px; display: block; margin: 30px 0 42px; border: 3px solid #071631; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(82, 227, 255, .62); }
.timeline h3 { font-size: 18px; letter-spacing: -.02em; }
.timeline p { margin-bottom: 0; color: #8799b8; font-size: 12px; line-height: 1.65; }
.timeline-target { background: linear-gradient(180deg, rgba(87, 74, 200, .10), transparent); }
.timeline-target li > i { background: var(--violet); }
.timeline-note { margin: 22px 0 0; color: #596b8a; font-size: 10px; }

.beta { padding-top: 50px; background: #030a1b; }
.beta-panel { position: relative; min-height: 490px; padding: 70px; display: grid; grid-template-columns: 190px 1fr 200px; gap: 50px; align-items: center; overflow: hidden; border: 1px solid rgba(112, 159, 255, .22); border-radius: 36px; background: radial-gradient(circle at 15% 40%, rgba(56, 178, 255, .24), transparent 28%), radial-gradient(circle at 92% 10%, rgba(148, 89, 255, .27), transparent 28%), linear-gradient(135deg, #0b2356, #101540 56%, #26155b); box-shadow: 0 45px 120px rgba(0,0,0,.34); }
.beta-panel::before { content: ""; position: absolute; width: 460px; height: 155px; right: -180px; bottom: -30px; border: 1px solid rgba(111, 225, 255, .18); border-radius: 50%; transform: rotate(-11deg); }
.beta-mark { position: relative; width: 170px; height: 170px; display: grid; place-items: center; border: 1px solid rgba(132, 226, 255, .27); border-radius: 50%; background: rgba(8, 27, 71, .43); box-shadow: inset 0 0 50px rgba(57, 141, 255, .12), 0 0 60px rgba(64, 189, 255, .12); }
.beta-mark span { font-size: 76px; font-weight: 300; color: #d8f9ff; }
.beta-mark i { position: absolute; right: 24px; top: 25px; color: #8eefff; font-style: normal; font-weight: 800; }
.beta-copy h2 { font-size: clamp(45px, 4.9vw, 68px); }
.beta-copy > p:not(.eyebrow):not(.unrevealed) { max-width: 630px; margin: 24px 0; color: #b8c5dc; font-size: 15px; line-height: 1.72; }
.unrevealed { display: flex; align-items: center; gap: 12px; margin-bottom: 0; color: #d4def0; font-size: 12px; }
.mini-lock { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(124, 229, 255, .26); border-radius: 50%; background: rgba(98, 211, 255, .08); }
.mini-lock svg { width: 15px; fill: none; stroke: #76e7ff; stroke-width: 1.6; }
.beta-status { padding: 22px; display: flex; flex-direction: column; border: 1px solid rgba(172, 200, 255, .16); border-radius: 18px; background: rgba(2, 10, 31, .35); }
.beta-status span { color: #798baa; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.beta-status strong { margin-top: 9px; font-size: 16px; }
.beta-status small { margin-top: 32px; color: #74e7ff; font-size: 28px; font-weight: 700; }

.platforms { background: radial-gradient(circle at 50% 0, rgba(38, 108, 234, .22), transparent 32%), #06122b; }
.platforms-heading { max-width: 760px; margin-bottom: 58px; }
.platforms-heading > p:last-child { max-width: 610px; margin-top: 26px; }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.platform-card { min-height: 106px; display: grid; grid-template-columns: 48px 1fr 34px; align-items: center; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(135deg, rgba(13, 38, 82, .75), rgba(4, 14, 35, .74)); text-align: left; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
button.platform-card:hover { transform: translateY(-3px); border-color: rgba(109, 227, 255, .34); background: linear-gradient(135deg, rgba(18, 54, 112, .86), rgba(6, 20, 49, .82)); }
.platform-mark { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(126, 220, 255, .22); border-radius: 14px; background: rgba(72, 173, 255, .10); color: #bff6ff; font-size: 11px; font-weight: 800; }
.platform-label { display: flex; flex-direction: column; gap: 5px; }
.platform-label small { color: #7587a7; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.platform-label strong { font-size: 14px; }
.platform-lock { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.04); }
.platform-lock svg { width: 15px; fill: none; stroke: #6d82a5; stroke-width: 1.5; }
.platform-more { cursor: default; border-style: dashed; }
.platform-soon { color: #7285a5; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.platform-caption { margin: 22px 0 0; color: #617392; font-size: 10px; }

.faq { background: #eef4ff; color: #06142e; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading h2 em { color: #176ee8; text-shadow: none; }
.faq .eyebrow { color: #1469cf; }
.faq-list { border-top: 1px solid rgba(20, 63, 124, .16); }
.faq-list details { border-bottom: 1px solid rgba(20, 63, 124, .16); }
.faq-list summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 730; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #1870e6; font-size: 26px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 670px; margin: -4px 50px 28px 0; color: #586883; font-size: 14px; line-height: 1.7; }

.closing { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 50%, #103d8b 0%, #071b48 34%, #020713 72%); text-align: center; }
.closing-content { position: relative; z-index: 2; max-width: 820px; }
.closing-emblem { width: 104px; height: 104px; margin: 0 auto 28px; display: grid; place-items: center; border: 1px solid rgba(112, 226, 255, .22); border-radius: 32px; background: rgba(5, 20, 52, .48); box-shadow: 0 18px 70px rgba(40, 177, 255, .18), inset 0 1px rgba(255,255,255,.06); backdrop-filter: blur(14px); }
.closing-emblem img { width: 86px; height: 86px; object-fit: contain; filter: drop-shadow(0 0 22px rgba(47, 218, 255, .24)); }
.closing .eyebrow { justify-content: center; }
.closing h2 { font-size: clamp(65px, 8vw, 112px); }
.closing p:not(.eyebrow) { max-width: 620px; margin: 26px auto 32px; color: #aebdd5; font-size: 16px; line-height: 1.65; }
.closing-orbits { position: absolute; inset: 0; display: grid; place-items: center; }
.closing-orbits i { position: absolute; width: min(1000px, 90vw); height: 310px; border: 1px solid rgba(93, 223, 255, .13); border-radius: 50%; transform: rotate(-12deg); }
.closing-orbits i:nth-child(2) { width: min(760px, 75vw); transform: rotate(28deg); border-color: rgba(150, 103, 255, .15); }
.closing-orbits i:nth-child(3) { width: min(560px, 60vw); transform: rotate(75deg); }

.footer { padding: 48px 0; border-top: 1px solid var(--line); background: #01050d; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 56px; align-items: end; }
.footer-brand img { width: 100px; height: 78px; object-fit: contain; margin-left: -13px; }
.footer p { margin-bottom: 0; color: #8291ac; font-size: 11px; line-height: 1.7; }
.footer-brand p { color: #b8c5d8; }
.footer-meta { text-align: right; }
.footer-meta small { display: block; margin-top: 14px; color: #53627e; font-size: 9px; }

.privacy-banner[hidden] { display: none; }
.privacy-banner { position: fixed; z-index: 240; right: 18px; bottom: 18px; width: min(420px, calc(100vw - 36px)); padding: 20px 22px; border: 1px solid rgba(118, 218, 255, .26); border-radius: 22px; background: rgba(4, 16, 43, .96); box-shadow: 0 24px 80px rgba(0, 0, 0, .48), inset 0 1px rgba(255,255,255,.045); backdrop-filter: blur(22px) saturate(135%); }
.privacy-banner p { margin-bottom: 16px; color: #aebbd2; font-size: 13px; line-height: 1.55; }
.privacy-banner strong { color: #fff; }
.privacy-actions { display: flex; justify-content: flex-end; gap: 9px; }
.privacy-actions button { min-height: 39px; padding: 0 16px; border-radius: 999px; cursor: pointer; font-size: 12px; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.privacy-actions button:hover { transform: translateY(-1px); }
.privacy-essential { border: 1px solid rgba(190, 211, 246, .18); background: rgba(255,255,255,.025); color: #edf3ff; }
.privacy-essential:hover { border-color: rgba(190, 211, 246, .32); background: rgba(255,255,255,.055); }
.privacy-accept { border: 1px solid rgba(185, 244, 255, .72); background: linear-gradient(110deg, #e8fbff, #aeefff); color: #05142e; }
.privacy-accept:hover { background: #effcff; }

.modal-backdrop[hidden] { display: none; }
.modal-backdrop { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(0, 4, 13, .76); backdrop-filter: blur(14px); }
.interest-modal { position: relative; width: min(650px, 100%); max-height: min(790px, calc(100svh - 40px)); padding: 42px; overflow: auto; border: 1px solid rgba(113, 218, 255, .30); border-radius: 30px; background: radial-gradient(circle at 10% 0, rgba(65, 184, 255, .17), transparent 34%), linear-gradient(145deg, #0b214c, #07132e); box-shadow: 0 45px 140px rgba(0,0,0,.55); }
.interest-modal > p:not(.eyebrow) { margin-bottom: 24px; color: #aebbd1; font-size: 13px; line-height: 1.65; }
.interest-modal h2 { margin-bottom: 14px; font-size: clamp(34px, 5vw, 48px); letter-spacing: -.045em; }
.interest-frame { overflow: hidden; border: 1px solid rgba(148, 205, 255, .16); border-radius: 18px; background: #fff; }
.interest-frame iframe { width: 100%; height: min(500px, 58svh); display: block; border: 0; }
.availability-modal { position: relative; width: min(480px, 100%); padding: 42px; overflow: hidden; border: 1px solid rgba(113, 218, 255, .30); border-radius: 28px; background: radial-gradient(circle at 10% 0, rgba(65, 184, 255, .18), transparent 34%), linear-gradient(145deg, #0b214c, #07132e); box-shadow: 0 45px 140px rgba(0,0,0,.55); }
.availability-modal::after { content: ""; position: absolute; width: 240px; height: 80px; right: -100px; bottom: -22px; border: 1px solid rgba(109, 228, 255, .15); border-radius: 50%; transform: rotate(-13deg); }
.modal-close { position: absolute; z-index: 2; top: 16px; right: 16px; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; background: rgba(255,255,255,.04); cursor: pointer; font-size: 22px; font-weight: 300; }
.modal-lock { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 26px; border: 1px solid rgba(105, 228, 255, .32); border-radius: 18px; background: rgba(70, 199, 255, .10); box-shadow: 0 0 38px rgba(61, 190, 255, .12); }
.modal-lock svg { width: 25px; fill: none; stroke: #84edff; stroke-width: 1.5; }
.availability-modal .eyebrow { margin-bottom: 16px; }
.availability-modal h2 { margin-bottom: 16px; font-size: 38px; letter-spacing: -.04em; }
.availability-modal > p:not(.eyebrow) { margin-bottom: 26px; color: #aebbd1; font-size: 14px; line-height: 1.7; }

@media (max-width: 1050px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .beta-panel { grid-template-columns: 150px 1fr; }
  .beta-mark { width: 140px; height: 140px; }
  .beta-status { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; }
  .beta-status small { margin-top: 0; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 36px, 680px); }
  .section { padding: 100px 0; }
  .site-header { top: 10px; width: calc(100vw - 20px); height: 62px; padding: 0 10px 0 12px; }
  .brand { width: 42px; height: 42px; }
  .brand img { width: 38px; height: 38px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 4px; border: 1px solid var(--line); border-radius: 20px; background: rgba(3, 12, 31, .96); box-shadow: 0 25px 70px rgba(0,0,0,.4); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .nav-links .nav-cta { margin-top: 5px; text-align: center; }
  .hero { min-height: 780px; }
  .hero-media img { object-position: 67% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(1, 6, 18, .98) 0%, rgba(2, 8, 22, .86) 48%, rgba(2, 9, 24, .24) 100%); }
  .hero-logo { top: 92px; left: 18px; width: 116px; height: 91px; }
  .hero-logo img { width: 116px; height: 91px; }
  .hero-content { align-items: end; padding: 0 0 110px; }
  h1 { font-size: clamp(52px, 13vw, 75px); }
  .hero-lede { font-size: 15px; }
  .scroll-cue { display: none; }
  .split-intro, .identity-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .split-intro > p { max-width: 620px; }
  .social-scene { min-height: 720px; }
  .social-scene-copy { left: 30px; right: 30px; top: 36px; width: auto; }
  .social-scene picture::after { background: linear-gradient(180deg, rgba(2, 9, 24, .88) 0%, rgba(3, 13, 33, .22) 58%, rgba(2, 9, 25, .45)); }
  .live-card-one { right: 18px; top: auto; bottom: 116px; }
  .live-card-two { right: auto; left: 18px; top: auto; bottom: 22px; }
  .cities { min-height: 1500px; }
  .city-grid { grid-template-columns: 1fr; }
  .identity-art { width: min(500px, 100%); margin-inline: auto; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .timeline::before { display: none; }
  .timeline li > i { margin-bottom: 24px; }
  .beta-panel { padding: 48px; grid-template-columns: 1fr; }
  .beta-mark { width: 120px; height: 120px; }
  .beta-status { grid-column: auto; }
  .faq-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 28px); }
  .section { padding: 84px 0; }
  .hero { min-height: 760px; }
  .hero-logo { top: 84px; left: 14px; width: 108px; height: 84px; }
  .hero-logo img { width: 108px; height: 84px; }
  .hero-content { padding-bottom: 66px; }
  h1 { font-size: 50px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-secondary-link { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 340px; }
  .section-intro h2, .cities-heading h2, .identity-copy h2, .platforms-heading h2, .faq-heading h2, .beta-copy h2 { font-size: 44px; }
  .social-scene { min-height: 680px; margin-top: 56px; border-radius: 25px; }
  .social-scene-copy { left: 22px; right: 22px; }
  .social-scene-copy h3 { font-size: 47px; }
  .live-card { width: 185px; }
  .cities { min-height: 1610px; }
  .city-grid li { grid-template-columns: 32px 1fr; }
  .city-state { grid-column: 2; justify-self: start; }
  .network-statement { flex-direction: column; }
  .more-cities span { display: none; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline li { min-height: 230px; padding-bottom: 38px; }
  .beta-panel { width: calc(100vw - 28px); padding: 32px 24px; border-radius: 26px; }
  .beta-status { grid-template-columns: 1fr auto; }
  .beta-status strong { grid-column: 1; }
  .beta-status small { grid-column: 2; grid-row: 1 / 3; }
  .platform-grid { grid-template-columns: 1fr; }
  .faq-list summary { min-height: 74px; font-size: 15px; }
  .closing { min-height: 620px; }
  .closing h2 { font-size: 62px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-meta { grid-column: auto; }
  .privacy-banner { left: 10px; right: 10px; bottom: 10px; width: auto; padding: 17px; border-radius: 19px; }
  .privacy-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .privacy-actions button { padding-inline: 10px; }
  .interest-modal { padding: 34px 18px 20px; border-radius: 24px; }
  .interest-frame iframe { height: min(480px, 60svh); }
  .availability-modal { padding: 34px 24px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
