:root {
  --bg: #0f1117;
  --bg-deep: #090a0e;
  --surface: #1b202b;
  --surface-raised: #232a38;
  --ink: #f7f8fa;
  --muted: #a8b0c0;
  --pink: #ff4f9a;
  --pink-soft: #ff8cbd;
  --teal: #42d9c8;
  --paper: #f5f1ed;
  --paper-ink: #17171c;
  --paper-muted: #65636d;
  --line: rgba(255,255,255,.14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--bg); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 200; top: 12px; left: 12px; padding: 10px 14px; color: var(--bg); background: var(--teal); transform: translateY(-150%); text-decoration: none; font-weight: 800; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }

.site-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; padding: 16px 0; border-bottom: 1px solid transparent; transition: background-color .2s ease, border-color .2s ease, padding .2s ease; }
.site-header.is-scrolled { padding: 10px 0; background: rgba(9,10,14,.94); border-color: var(--line); backdrop-filter: blur(14px); }
.nav-shell { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-size: 18px; font-weight: 800; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; }
.site-nav a { position: relative; text-decoration: none; transition: color .2s ease; }
.site-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 2px; background: var(--teal); content: ''; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-nav > a:hover { color: var(--teal); }
.site-nav > a:hover::after { transform: scaleX(1); }
.nav-cta { min-height: 42px; display: inline-flex; align-items: center; padding: 0 17px; color: var(--bg); background: var(--pink); border-radius: 6px; }
.nav-cta:hover { color: var(--bg) !important; background: var(--pink-soft); }
.menu-button { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; color: var(--ink); background: transparent; border: 0; cursor: pointer; }
.menu-lines, .menu-lines::before, .menu-lines::after { display: block; width: 22px; height: 2px; background: currentColor; content: ''; transition: transform .2s ease, opacity .2s ease; }
.menu-lines { position: relative; }.menu-lines::before { position: absolute; top: -7px; }.menu-lines::after { position: absolute; top: 7px; }
.menu-button[aria-expanded="true"] .menu-lines { background: transparent; }.menu-button[aria-expanded="true"] .menu-lines::before { transform: translateY(7px) rotate(45deg); }.menu-button[aria-expanded="true"] .menu-lines::after { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 94svh; overflow: hidden; isolation: isolate; background: var(--bg-deep); }
.city-scene { position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 77% 25%, rgba(255,79,154,.15), transparent 25%), linear-gradient(#111522 0%, #17131b 55%, #0b0c11 100%); }
.city-scene::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,10,14,.98) 0%, rgba(9,10,14,.78) 40%, rgba(9,10,14,.15) 72%, rgba(9,10,14,.55) 100%); content: ''; }
.moon { position: absolute; top: 12%; right: 13%; width: 13vw; min-width: 150px; aspect-ratio: 1; border-radius: 50%; background: #efd9c5; box-shadow: 0 0 70px rgba(255,196,175,.18); opacity: .82; }
.city { position: absolute; right: -2%; bottom: 0; left: 35%; height: 47%; clip-path: polygon(0 35%,8% 35%,8% 18%,15% 18%,15% 45%,21% 45%,21% 8%,29% 8%,29% 39%,36% 39%,36% 23%,42% 23%,42% 48%,50% 48%,50% 0,57% 0,57% 34%,63% 34%,63% 13%,71% 13%,71% 43%,78% 43%,78% 26%,85% 26%,85% 49%,91% 49%,91% 19%,100% 19%,100% 100%,0 100%); background-color: #11131a; }
.city-back { bottom: 14%; opacity: .45; transform: scale(.9); transform-origin: bottom right; background: #343244; }
.city-front { z-index: 2; background-image: radial-gradient(circle, rgba(255,204,142,.9) 0 1.5px, transparent 2px); background-size: 24px 30px; }
.street-glow { position: absolute; right: 0; bottom: -12%; width: 55%; height: 36%; background: radial-gradient(ellipse, rgba(66,217,200,.18), transparent 65%); filter: blur(18px); }
.hero-grid { display: grid; min-height: 94svh; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .72fr); align-items: center; gap: 62px; padding-top: 115px; padding-bottom: 70px; }
.hero-copy { position: relative; z-index: 3; max-width: 690px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--teal); font-size: 12px; font-weight: 850; letter-spacing: 1.4px; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 2px; background: currentColor; }
.eyebrow.dark { color: #087e72; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(70px, 9vw, 126px); font-weight: 790; line-height: .9; }
h2 { font-size: clamp(40px, 5vw, 68px); font-weight: 730; line-height: 1.02; }
h3 { font-size: 22px; line-height: 1.2; }
.hero-line { max-width: 650px; margin: 20px 0 0; font-size: clamp(26px, 3.2vw, 44px); font-weight: 300; line-height: 1.15; }
.hero-text { max-width: 620px; margin: 22px 0 30px; color: #c9ced9; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 6px; text-decoration: none; font-weight: 800; transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.button-primary { color: var(--bg); background: var(--pink); }.button-primary:hover { background: var(--pink-soft); }
.button-quiet { color: var(--ink); border-color: rgba(255,255,255,.48); }.button-quiet:hover { color: var(--bg); background: var(--ink); border-color: var(--ink); }
.trust-line { display: flex; flex-wrap: wrap; gap: 12px 25px; margin-top: 34px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 700; }
.trust-line span::before { display: inline-block; width: 6px; height: 6px; margin: 0 9px 1px 0; background: var(--teal); border-radius: 50%; content: ''; }

.phone-stage { position: relative; z-index: 4; display: grid; min-height: 650px; place-items: center; }
.phone { position: relative; z-index: 2; width: 340px; min-height: 664px; padding: 15px 15px 70px; overflow: hidden; color: var(--ink); background: var(--bg); border: 1px solid rgba(255,255,255,.25); border-radius: 48px; box-shadow: 0 35px 80px rgba(0,0,0,.55), inset 0 0 0 6px #07080b; transform: rotate(2deg); }
.phone-top { display: flex; height: 32px; align-items: center; justify-content: space-between; padding: 0 10px; font-size: 10px; font-weight: 800; }
.phone-top i { width: 88px; height: 24px; background: #050609; border-radius: 14px; }
.app-head { display: flex; align-items: flex-end; justify-content: space-between; padding: 14px 7px 0; }.app-head div { display: flex; flex-direction: column; }.app-head small { color: var(--teal); font-size: 9px; font-weight: 800; letter-spacing: 1px; }.app-head strong { font-size: 27px; line-height: 1.1; }.app-head button { padding: 5px 9px; color: var(--teal); background: transparent; border: 1px solid rgba(66,217,200,.4); border-radius: 6px; font-size: 11px; }
.app-subtitle { margin: 7px 7px 8px; color: var(--muted); font-size: 11px; }.moderated-pill { display: inline-flex; align-items: center; gap: 5px; margin: 0 7px 13px; padding: 4px 8px; color: #b9eee8; background: rgba(66,217,200,.1); border-radius: 20px; font-size: 9px; font-weight: 750; }.moderated-pill span { color: var(--teal); }
.room-card { margin: 0 5px 11px; padding: 14px; background: var(--surface); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; }.room-card-live { border-color: rgba(255,79,154,.34); box-shadow: 0 10px 30px rgba(255,79,154,.08); }
.room-top { display: flex; align-items: center; gap: 9px; }.room-top > div:nth-child(2) { min-width: 0; flex: 1; }.room-mark { display: grid; width: 35px; height: 35px; flex: 0 0 35px; place-items: center; color: var(--bg); border-radius: 50%; font-weight: 850; }.music-mark { background: var(--pink); }.book-mark { background: var(--teal); font-size: 12px; }.room-card h2 { overflow: hidden; font-size: 13px; line-height: 1.25; white-space: nowrap; text-overflow: ellipsis; }.room-card p { margin: 2px 0 0; color: var(--muted); font-size: 9px; }.live-dot { color: var(--pink-soft); font-size: 8px; font-weight: 900; letter-spacing: .8px; }.live-dot::before { display: inline-block; width: 5px; height: 5px; margin: 0 4px 1px 0; background: var(--pink); border-radius: 50%; content: ''; }
.room-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 11px 0; }.room-tags span { padding: 3px 7px; color: #d7dbe3; background: var(--surface-raised); border-radius: 20px; font-size: 8px; }.room-foot { display: flex; min-height: 25px; align-items: center; justify-content: space-between; gap: 8px; }.room-foot b { color: var(--muted); font-size: 8px; }.room-foot > span { padding: 5px 9px; color: var(--bg); background: var(--pink); border-radius: 5px; font-size: 8px; font-weight: 850; }.room-foot > .outline-action { color: var(--teal); background: transparent; border: 1px solid rgba(66,217,200,.45); }
.audio-bars { display: flex; height: 18px; align-items: center; gap: 2px; }.audio-bars i { width: 2px; height: 5px; background: var(--teal); border-radius: 2px; animation: bars 1s ease-in-out infinite alternate; }.audio-bars i:nth-child(2) { height: 12px; animation-delay: -.2s; }.audio-bars i:nth-child(3) { height: 16px; animation-delay: -.5s; }.audio-bars i:nth-child(4) { height: 9px; animation-delay: -.35s; }
@keyframes bars { to { height: 16px; } }
.app-nav { position: absolute; right: 7px; bottom: 8px; left: 7px; display: flex; height: 52px; align-items: center; justify-content: space-around; padding: 0 8px; background: #151922; border-top: 1px solid var(--line); border-radius: 0 0 36px 36px; color: var(--muted); font-size: 8px; }.app-nav span { position: relative; padding-top: 11px; }.app-nav span::before { position: absolute; top: 0; left: 50%; width: 6px; height: 6px; background: currentColor; border-radius: 50%; content: ''; transform: translateX(-50%); }.app-nav .active { color: var(--pink); }
.orbit { position: absolute; border: 1px solid rgba(66,217,200,.15); border-radius: 50%; }.orbit-one { width: 500px; height: 500px; }.orbit-two { width: 650px; height: 650px; border-color: rgba(255,79,154,.1); }
.scroll-cue { position: absolute; z-index: 5; bottom: 22px; left: 50%; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; transform: translateX(-50%); }.scroll-cue span { width: 7px; height: 7px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); transform: rotate(45deg) translate(-1px,-1px); }

.signal-strip { padding: 18px 0; color: var(--bg); background: var(--teal); }.signal-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }.signal-inner p { margin: 0; font-size: 14px; font-weight: 850; }.city-ticker { display: flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 750; }.city-ticker i { width: 4px; height: 4px; background: currentColor; border-radius: 50%; }
.section { padding: 110px 0; }.rhythm, .connections, .cities { color: var(--paper-ink); background: var(--paper); }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(310px, .6fr); align-items: end; gap: 70px; margin-bottom: 72px; }.section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -38px; }.section-intro > p:last-child { margin: 0 0 4px; color: var(--paper-muted); font-size: 17px; }.section-intro.compact { margin-bottom: 54px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #ccc6c1; }.steps article { min-height: 380px; padding: 24px 28px 28px 0; border-right: 1px solid #ccc6c1; }.steps article + article { padding-left: 28px; }.steps article:last-child { border-right: 0; }.step-number { color: var(--paper-muted); font-size: 12px; font-weight: 850; letter-spacing: 1px; }.steps h3 { margin-top: 32px; font-size: 24px; }.steps p { margin: 13px 0 0; color: var(--paper-muted); }.step-symbol { position: relative; height: 110px; margin-top: 36px; }
.windows-symbol { display: grid; width: 116px; grid-template-columns: 1fr 1fr; gap: 6px; }.windows-symbol i { background: #202029; }.windows-symbol i:nth-child(2), .windows-symbol i:nth-child(3) { background: var(--pink); }.windows-symbol i:nth-child(4) { background: var(--teal); }
.wave-symbol { display: flex; align-items: center; gap: 8px; }.wave-symbol i { width: 5px; height: 34px; background: #202029; border-radius: 5px; }.wave-symbol i:nth-child(2), .wave-symbol i:nth-child(4) { height: 74px; background: var(--pink); }.wave-symbol i:nth-child(3) { height: 106px; background: var(--teal); }
.link-symbol i { position: absolute; top: 14px; width: 90px; height: 90px; border: 6px solid #202029; border-radius: 50%; }.link-symbol i:first-child { left: 0; border-color: var(--pink); }.link-symbol i:last-child { left: 62px; border-color: var(--teal); }

.room-focus { position: relative; overflow: hidden; background: #12141b; }.room-focus::before { position: absolute; right: -10%; bottom: -30%; width: 55%; height: 90%; background: radial-gradient(ellipse, rgba(255,79,154,.13), transparent 68%); content: ''; }.focus-grid { display: grid; grid-template-columns: minmax(420px, 1fr) minmax(340px, .78fr); align-items: center; gap: 90px; }.room-console { padding: 28px; background: #171b24; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.3); }.console-head { display: flex; align-items: center; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }.console-head > div { display: flex; flex: 1; flex-direction: column; }.console-head small { color: var(--teal); font-size: 10px; font-weight: 850; letter-spacing: 1.2px; }.console-head strong { font-size: 17px; }.console-head > span:last-child { color: var(--muted); font-size: 12px; }.status-light { width: 9px; height: 9px; background: var(--pink); border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,79,154,.12); }
.voice-field { position: relative; display: grid; height: 270px; place-items: center; overflow: hidden; }.voice-ring { position: absolute; border: 1px solid rgba(66,217,200,.25); border-radius: 50%; animation: breathe 3s ease-in-out infinite alternate; }.ring-a { width: 180px; height: 180px; }.ring-b { width: 245px; height: 245px; animation-delay: -1.5s; }.voice-core { z-index: 2; display: flex; width: 120px; height: 120px; align-items: center; justify-content: center; flex-direction: column; background: #202631; border-radius: 50%; box-shadow: 0 0 50px rgba(66,217,200,.14); }.voice-core span { width: 18px; height: 26px; margin-bottom: 8px; border: 3px solid var(--teal); border-radius: 12px; }.voice-core b { font-size: 12px; }.voice-core small { color: var(--muted); font-size: 8px; }
@keyframes breathe { to { transform: scale(1.07); opacity: .55; } }
.message-stream { display: grid; gap: 8px; }.message-stream p { margin: 0; padding: 10px 12px; color: #d4d8e0; background: #202631; border-radius: 5px; font-size: 11px; }.message-stream b { margin-right: 6px; color: var(--ink); }.message-mark { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; }.message-mark.pink { background: var(--pink); }.message-mark.teal { background: var(--teal); }.message-stream .glow-note { color: var(--pink-soft); background: rgba(255,79,154,.07); text-align: center; }
.console-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 15px; border-top: 1px solid var(--line); font-size: 11px; }.console-actions span { color: var(--muted); }.console-actions b { padding: 7px 10px; color: var(--bg); background: var(--pink); border-radius: 5px; }
.focus-copy > p:not(.eyebrow) { margin: 24px 0 30px; color: var(--muted); font-size: 17px; }.feature-list { margin: 0; }.feature-list div { display: grid; grid-template-columns: 120px 1fr; gap: 22px; padding: 17px 0; border-top: 1px solid var(--line); }.feature-list dt { color: var(--teal); font-weight: 800; }.feature-list dd { margin: 0; color: var(--muted); }

.connection-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(460px, 1fr); align-items: center; gap: 90px; }.connection-copy h2 { font-size: clamp(38px, 4.3vw, 61px); }.connection-copy > p:not(.eyebrow) { margin: 23px 0; color: var(--paper-muted); font-size: 17px; }.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px; border-bottom: 2px solid var(--pink); text-decoration: none; font-weight: 800; }.text-link:hover { color: #b52062; }
.connection-visual { position: relative; min-height: 420px; }.connection-node { position: absolute; top: 118px; display: grid; width: 138px; height: 138px; place-items: center; background: #202029; border-radius: 50%; box-shadow: 0 16px 35px rgba(23,23,28,.2); }.connection-node span { color: var(--paper); font-size: 11px; font-weight: 850; letter-spacing: 1px; }.connection-node i { position: absolute; width: 18px; height: 18px; border: 3px solid var(--paper); border-radius: 50%; }.node-left { left: 0; border: 7px solid var(--pink); }.node-right { right: 0; border: 7px solid var(--teal); }.node-left i { bottom: 31px; }.node-right i { bottom: 31px; }.connection-path { position: absolute; top: 175px; right: 118px; left: 118px; height: 20px; border-top: 2px dashed #aaa4a1; }.connection-path i { position: absolute; top: -6px; width: 10px; height: 10px; background: var(--paper); border: 2px solid #aaa4a1; border-radius: 50%; }.connection-path i:nth-child(1) { left: 10%; }.connection-path i:nth-child(2) { left: 48%; background: var(--pink); border-color: var(--pink); }.connection-path i:nth-child(3) { right: 10%; background: var(--teal); border-color: var(--teal); }.connection-path b { position: absolute; top: -30px; left: 50%; color: var(--paper-muted); font-size: 9px; letter-spacing: 1.2px; transform: translateX(-50%); }.consent-state { position: absolute; right: 70px; bottom: 30px; left: 70px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 17px; color: var(--ink); background: #1b202b; border-radius: 6px; }.consent-state > span { display: grid; width: 28px; height: 28px; place-items: center; color: var(--bg); background: var(--teal); border-radius: 50%; font-weight: 900; }.consent-state div { display: flex; flex-direction: column; }.consent-state small { color: var(--muted); }

.safety { background: #0b0c10; }.safety-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr); align-items: start; gap: 100px; }.safety-list { border-top: 1px solid var(--line); }.safety-list article { display: grid; grid-template-columns: 50px 1fr; gap: 24px; padding: 25px 0; border-bottom: 1px solid var(--line); }.safety-list article > span { color: var(--pink); font-size: 12px; font-weight: 850; }.safety-list h3 { font-size: 22px; }.safety-list p { margin: 7px 0 0; color: var(--muted); }
.city-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #ccc6c1; }.city-grid > div { position: relative; min-height: 210px; padding: 22px 18px; overflow: hidden; border-right: 1px solid #ccc6c1; }.city-grid > div:last-child { border-right: 0; }.city-grid span { color: var(--paper-muted); font-size: 10px; }.city-grid strong { display: block; margin-top: 70px; font-size: 20px; }.city-grid i { position: absolute; right: -40px; bottom: -60px; width: 150px; height: 150px; border: 1px solid #d6cfca; border-radius: 50%; }.city-grid > div:nth-child(2n) i { background: rgba(66,217,200,.16); border-color: var(--teal); }.city-grid > div:nth-child(3n) i { background: rgba(255,79,154,.12); border-color: var(--pink); }

.download { position: relative; overflow: hidden; padding: 90px 0; background: #17131b; }.download-sky { position: absolute; inset: 0; background: radial-gradient(circle at 74% 50%, rgba(255,79,154,.22), transparent 28%), linear-gradient(100deg, #11141c, #1d121b); }.download-sky i { position: absolute; bottom: -60px; width: 15%; height: 60%; background: #0b0c10; clip-path: polygon(0 18%,25% 18%,25% 0,75% 0,75% 28%,100% 28%,100% 100%,0 100%); }.download-sky i:nth-child(1) { left: 0; }.download-sky i:nth-child(2) { left: 18%; height: 46%; }.download-sky i:nth-child(3) { right: 38%; height: 55%; }.download-sky i:nth-child(4) { right: 18%; height: 40%; }.download-sky i:nth-child(5) { right: 0; height: 66%; }.download-inner { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }.download-inner > img { width: 112px; height: 112px; border-radius: 24px; box-shadow: 0 18px 45px rgba(0,0,0,.4); }.download-inner .eyebrow { margin-bottom: 8px; }.download-inner h2 { font-size: clamp(42px, 5vw, 64px); }.download-inner p:last-child { margin: 7px 0 0; color: var(--muted); }

.site-footer { padding: 54px 0 24px; color: var(--muted); background: #08090c; }.footer-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 44px; }.footer-main p { margin: 0; }.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }.footer-main nav a { color: var(--muted); text-decoration: none; }.footer-main nav a:hover { color: var(--teal); }.footer-brand { color: var(--ink); }.footer-bottom { display: flex; justify-content: space-between; margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; }

/* Legal and support pages */
.inner-page { background: var(--paper); color: var(--paper-ink); }.inner-page .site-header { position: sticky; padding: 12px 0; color: var(--ink); background: #0b0c10; }.inner-page .site-header.is-scrolled { padding: 10px 0; }.doc-hero { padding: 88px 0 58px; color: var(--ink); background: #12141b; }.doc-hero .eyebrow { margin-bottom: 14px; }.doc-hero h1 { max-width: 900px; font-size: clamp(45px, 7vw, 82px); line-height: .98; }.doc-hero p:last-child { max-width: 690px; margin: 22px 0 0; color: var(--muted); font-size: 17px; }.document { display: grid; grid-template-columns: 210px minmax(0, 760px); justify-content: center; gap: 70px; padding-top: 74px; padding-bottom: 100px; }.doc-index { position: sticky; top: 100px; align-self: start; }.doc-index strong { display: block; margin-bottom: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }.doc-index a { display: block; padding: 6px 0; color: var(--paper-muted); text-decoration: none; font-size: 13px; }.doc-index a:hover { color: #b52062; }.doc-content { min-width: 0; }.doc-content h2 { margin: 52px 0 13px; font-size: 30px; line-height: 1.15; }.doc-content h2:first-child { margin-top: 0; }.doc-content h3 { margin: 28px 0 8px; font-size: 18px; }.doc-content p, .doc-content li { color: var(--paper-muted); }.doc-content p { margin: 10px 0 0; }.doc-content li + li { margin-top: 7px; }.doc-content a { color: #a21855; font-weight: 650; text-underline-offset: 3px; }.doc-content blockquote, .support-callout { margin: 28px 0; padding: 20px 22px; background: #e8fffb; border-left: 4px solid #149c8e; }.doc-content blockquote p { color: var(--paper-ink); }.support-callout a { overflow-wrap: anywhere; }.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 44px; background: #ccc6c1; border: 1px solid #ccc6c1; }.support-card { min-height: 230px; padding: 25px; background: var(--paper); }.support-card h2 { margin: 0 0 12px; font-size: 24px; }.support-card p { margin: 0; }.support-card a { display: inline-block; margin-top: 16px; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 350px; gap: 30px; }.phone { width: 315px; }.phone-stage { min-height: 620px; }.orbit-one { width: 420px; height: 420px; }.orbit-two { width: 540px; height: 540px; }
  .section-intro { grid-template-columns: 1fr 1fr; gap: 44px; }.focus-grid, .connection-grid { gap: 55px; }.city-grid { grid-template-columns: repeat(3, 1fr); }.city-grid > div:nth-child(3) { border-right: 0; }.city-grid > div:nth-child(n+4) { border-top: 1px solid #ccc6c1; }
}

@media (max-width: 820px) {
  .menu-button { display: flex; }.site-nav { position: fixed; z-index: 90; top: 72px; right: 0; bottom: 0; left: 0; display: none; align-items: stretch; padding: 35px 24px; flex-direction: column; gap: 0; background: rgba(9,10,14,.98); font-size: 22px; }.site-nav.is-open { display: flex; }.site-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }.site-nav .nav-cta { justify-content: center; margin-top: 22px; padding: 0 18px; border: 0; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 145px; }.hero-copy { max-width: 720px; }.phone-stage { min-height: 570px; }.phone { min-height: 620px; transform: none; }.city-scene::after { background: linear-gradient(rgba(9,10,14,.82), rgba(9,10,14,.65)); }.scroll-cue { display: none; }
  .signal-inner { align-items: flex-start; flex-direction: column; gap: 8px; }.city-ticker { flex-wrap: wrap; }
  .section { padding: 82px 0; }.section-intro { grid-template-columns: 1fr; gap: 22px; }.section-intro .eyebrow { grid-column: auto; margin-bottom: 0; }.steps { grid-template-columns: 1fr; }.steps article, .steps article + article { min-height: 0; padding: 26px 0 36px; border-right: 0; border-bottom: 1px solid #ccc6c1; }.steps article:last-child { border-bottom: 0; }.step-symbol { height: 95px; }
  .focus-grid, .connection-grid, .safety-grid { grid-template-columns: 1fr; gap: 60px; }.room-console { order: 2; }.focus-copy { order: 1; }.connection-visual { min-height: 370px; }.safety-grid { gap: 42px; }
  .download-inner { grid-template-columns: auto 1fr; }.download-inner .button { grid-column: 1 / -1; justify-self: start; }.footer-main { grid-template-columns: 1fr; gap: 22px; }.footer-main nav { justify-content: flex-start; }
  .document { grid-template-columns: 1fr; gap: 30px; }.doc-index { position: static; display: flex; flex-wrap: wrap; gap: 5px 14px; padding-bottom: 18px; border-bottom: 1px solid #ccc6c1; }.doc-index strong { width: 100%; }.doc-index a { display: inline-block; }
}

@media (max-width: 560px) {
  .wrap { width: min(var(--max), calc(100% - 30px)); }.site-header { padding: 10px 0; }.brand img { width: 38px; height: 38px; }.brand { font-size: 16px; }.site-nav { top: 64px; }
  .hero { min-height: auto; }.hero-grid { min-height: auto; padding-top: 120px; padding-bottom: 65px; }.hero-copy h1 { font-size: clamp(54px, 18vw, 82px); }.hero-line { font-size: 27px; }.hero-actions { width: 100%; }.hero-actions .button { width: 100%; }.trust-line { gap: 8px 16px; }.phone-stage { min-height: 535px; margin: 0 -5px; }.phone { width: min(310px, 92vw); min-height: 590px; border-radius: 38px; }.orbit-one { width: 370px; height: 370px; }.orbit-two { width: 480px; height: 480px; }
  .city-ticker { gap: 8px 10px; }.section { padding: 68px 0; }.section-intro { margin-bottom: 45px; }.section-intro > p:last-child, .focus-copy > p:not(.eyebrow), .connection-copy > p:not(.eyebrow) { font-size: 16px; }.room-console { padding: 16px; }.voice-field { height: 235px; }.feature-list div { grid-template-columns: 1fr; gap: 4px; }.connection-visual { min-height: 330px; }.connection-node { top: 85px; width: 104px; height: 104px; }.node-left { left: 0; }.node-right { right: 0; }.connection-path { top: 132px; right: 90px; left: 90px; }.consent-state { right: 15px; bottom: 25px; left: 15px; }.safety-list article { grid-template-columns: 34px 1fr; gap: 12px; }.city-grid { grid-template-columns: 1fr; }.city-grid > div { min-height: 140px; border-right: 0; border-bottom: 1px solid #ccc6c1; }.city-grid > div:nth-child(n+4) { border-top: 0; }.city-grid strong { margin-top: 35px; }.download { padding: 70px 0; }.download-inner { grid-template-columns: 1fr; }.download-inner > img { width: 92px; height: 92px; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }.support-grid { grid-template-columns: 1fr; }.doc-hero { padding: 64px 0 48px; }.document { padding-top: 50px; }
}

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