:root {
  --ink: #06101c;
  --ink-2: #0a1626;
  --panel: #111d2c;
  --paper: #eef2f4;
  --white: #fff;
  --muted: #98a6b7;
  --ice: #4cd3e8;
  --blue: #4aa8ff;
  --coral: #ff6b4a;
  --line: rgba(255, 255, 255, .12);
  --page: min(7vw, 112px);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; background: white; color: black; padding: 12px 18px; border-radius: 10px; }
.skip-link:focus { top: 12px; }
.serif, em { font-family: "Playfair Display", Georgia, serif; font-weight: 500; font-style: italic; }

.site-header {
  position: fixed; top: 16px; left: 18px; right: 18px; z-index: 100;
  height: 64px; padding: 7px 8px 7px 12px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  border: 1px solid rgba(255,255,255,.16); border-radius: 20px;
  background: rgba(6, 12, 22, .42); backdrop-filter: blur(22px) saturate(130%);
  box-shadow: 0 18px 60px rgba(0,0,0,.15);
  transition: background .3s, border-color .3s, transform .3s;
  animation: navDown .8s cubic-bezier(.16,1,.3,1) both;
}
.site-header.scrolled { background: rgba(6, 12, 22, .82); border-color: rgba(255,255,255,.1); }
.brand { display: inline-flex; width: fit-content; align-items: center; gap: 10px; text-decoration: none; font-size: 20px; font-weight: 600; letter-spacing: -.04em; }
.brand img { width: 38px; height: 38px; border-radius: 11px; object-fit: cover; }
.desktop-nav { display: flex; align-items: center; gap: 3px; padding: 5px; border-radius: 14px; background: rgba(255,255,255,.07); }
.desktop-nav a { padding: 10px 17px; border-radius: 10px; color: rgba(255,255,255,.72); text-decoration: none; font-size: 13px; font-weight: 500; transition: .25s; }
.desktop-nav a:hover { color: white; background: rgba(255,255,255,.09); }
.nav-cta { justify-self: end; padding: 14px 20px; border-radius: 13px; background: white; color: #07101b; font-size: 13px; font-weight: 600; text-decoration: none; transition: transform .25s, background .25s; }
.nav-cta:hover { transform: translateY(-2px); background: #e9f9fc; }
.menu-toggle { display: none; justify-self: end; width: 46px; height: 46px; border: 0; border-radius: 13px; background: rgba(255,255,255,.1); position: relative; }
.menu-toggle span { position: absolute; left: 13px; width: 20px; height: 1.5px; background: white; transition: .3s cubic-bezier(.16,1,.3,1); }
.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; visibility: hidden; opacity: 0; background: rgba(4,9,16,.72); backdrop-filter: blur(24px); transition: .4s; }
.mobile-menu.open { visibility: visible; opacity: 1; }
.mobile-menu-panel { position: absolute; top: 92px; left: 18px; right: 18px; padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(15,25,39,.95); transform: translateY(-14px) scale(.98); transition: .5s cubic-bezier(.16,1,.3,1); }
.mobile-menu.open .mobile-menu-panel { transform: none; }
.mobile-menu-panel > a { display: flex; align-items: center; justify-content: space-between; padding: 16px; color: white; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu-panel > a span { color: var(--muted); font-size: 11px; }
.mobile-menu-panel .mobile-menu-cta { justify-content: center; margin-top: 14px; border: 0; border-radius: 13px; background: white; color: var(--ink); font-weight: 600; }

.hero { min-height: 100vh; height: 100dvh; position: relative; overflow: hidden; background: #03080e; }
.hero-image { position: absolute; inset: 0; background-position: center 39%; background-size: cover; background-repeat: no-repeat; transform: scale(1.06); animation: heroZoom 2.2s cubic-bezier(.16,1,.3,1) forwards; }
.hero-image-base { z-index: 0; background-image: url('/assets/hero-base.png'); filter: saturate(.8) contrast(1.06); }
.hero-image-reveal {
  z-index: 1; background-image: url('/assets/hero-reveal.png'); --x: 69%; --y: 42%;
  -webkit-mask-image: radial-gradient(circle 285px at var(--x) var(--y), #000 0, #000 34%, rgba(0,0,0,.8) 55%, rgba(0,0,0,.25) 78%, transparent 100%);
  mask-image: radial-gradient(circle 285px at var(--x) var(--y), #000 0, #000 34%, rgba(0,0,0,.8) 55%, rgba(0,0,0,.25) 78%, transparent 100%);
  will-change: -webkit-mask-image, mask-image;
}
.hero-shade { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(3,8,14,.92) 0%, rgba(3,8,14,.68) 38%, rgba(3,8,14,.18) 68%, rgba(3,8,14,.52) 100%), linear-gradient(0deg, rgba(3,8,14,.72), transparent 42%); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; z-index: 3; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, #000, transparent 70%); pointer-events: none; }
.hero-inner { position: relative; z-index: 5; width: 100%; height: 100%; max-width: 1600px; margin: auto; padding: 110px var(--page) 62px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .72fr); align-items: center; gap: 5vw; }
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.68); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 32px; height: 1px; background: var(--ice); box-shadow: 0 0 12px rgba(76,211,232,.7); }
.hero h1 { margin: 0; font-size: clamp(52px, 6.6vw, 110px); line-height: .91; font-weight: 500; letter-spacing: -.068em; }
.hero h1 > span { display: block; }
.hero h1 .serif { color: #dcebf1; letter-spacing: -.055em; }
.hero-lede { max-width: 570px; margin: 34px 0 0; color: rgba(255,255,255,.7); font-size: clamp(16px, 1.22vw, 20px); line-height: 1.55; letter-spacing: -.018em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 54px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; border-radius: 15px; text-decoration: none; font-size: 14px; font-weight: 600; transition: transform .25s, background .25s, border-color .25s; }
.button:hover { transform: translateY(-3px); }
.button-light { background: white; color: var(--ink); box-shadow: 0 14px 42px rgba(255,255,255,.12); }
.button-light:hover { background: #eafaff; }
.button-glass { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.button-glass:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.4); }
.hero-product { justify-self: end; position: relative; width: min(30vw, 410px); transform: rotate(2.5deg); }
.phone { position: relative; overflow: hidden; background: #030609; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 50px 100px rgba(0,0,0,.42), 0 0 0 7px rgba(255,255,255,.03); }
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone-speaker { position: absolute; z-index: 3; top: 12px; left: 50%; transform: translateX(-50%); width: 30%; height: 25px; border-radius: 18px; background: #020304; box-shadow: 0 0 0 1px rgba(255,255,255,.03); }
.phone-hero { aspect-ratio: 1206 / 2622; border-radius: 13.5% / 6.3%; }
.float-stat { position: absolute; z-index: 5; min-width: 142px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(9,17,29,.54); backdrop-filter: blur(18px); box-shadow: 0 20px 50px rgba(0,0,0,.2); transform: rotate(-2.5deg); }
.float-stat span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 600; letter-spacing: .14em; }
.float-stat strong { font-size: 22px; letter-spacing: -.05em; }
.float-stat small { color: var(--ice); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.float-stat-speed { left: -96px; top: 30%; }
.float-stat-vert { right: -48px; bottom: 18%; }
.spotlight-note { position: absolute; z-index: 6; left: var(--page); bottom: 28px; display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.spotlight-note span { width: 8px; height: 8px; border: 1px solid var(--ice); border-radius: 50%; animation: pulse 2s infinite; }
.hero-index { position: absolute; z-index: 6; right: var(--page); bottom: 28px; color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .13em; }
.invite-toast { position: absolute; z-index: 20; top: 96px; left: 50%; transform: translateX(-50%); padding: 9px 14px 9px 9px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; background: rgba(7,15,26,.72); backdrop-filter: blur(20px); box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.invite-avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(145deg,var(--ice),var(--blue)); color: #06101c; font-weight: 700; }
.invite-toast strong, .invite-toast span { display: block; }
.invite-toast strong { font-size: 13px; }
.invite-toast span { color: var(--muted); font-size: 11px; }

.signal-strip { min-height: 142px; display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid rgba(255,255,255,.09); background: #081321; }
.signal-item { position: relative; padding: 34px clamp(22px,3vw,50px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.09); }
.signal-item:last-child { border-right: 0; }
.signal-item > span { position: absolute; right: 20px; top: 18px; color: rgba(255,255,255,.2); font-size: 10px; letter-spacing: .15em; }
.signal-item strong { font-size: 16px; font-weight: 500; }
.signal-item small { margin-top: 5px; color: var(--muted); font-size: 12px; }

.story-section { padding: 150px var(--page); background: var(--paper); color: var(--ink); }
.section-intro { max-width: 860px; margin: 0 auto 120px; text-align: center; }
.eyebrow.dark { justify-content: center; color: #687482; }
.section-intro h2, .map-copy h2, .season-heading h2, .community-copy h2, .final-content h2 { margin: 0; font-size: clamp(48px,6.2vw,96px); line-height: .96; letter-spacing: -.065em; font-weight: 500; }
.section-intro h2 em, .map-copy h2 em, .season-heading h2 em, .community-copy h2 em, .final-content h2 em { color: #587086; }
.section-intro > p:last-child { max-width: 570px; margin: 28px auto 0; color: #637080; font-size: 17px; line-height: 1.6; }
.experience-stage { max-width: 1380px; min-height: 720px; margin: 0 auto; padding: 80px clamp(34px,6vw,88px); display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 8vw; overflow: hidden; border-radius: 44px; color: white; background: radial-gradient(circle at 78% 40%, rgba(60,118,183,.33), transparent 30%), linear-gradient(140deg,#07111f,#0c1d33 58%,#07101b); box-shadow: 0 40px 100px rgba(14,28,45,.18); }
.chapter { display: block; margin-bottom: 24px; color: var(--ice); font-size: 10px; font-weight: 600; letter-spacing: .18em; }
.experience-copy h3 { margin: 0; font-size: clamp(38px,4.3vw,67px); line-height: 1; letter-spacing: -.055em; font-weight: 500; }
.experience-copy > p { margin: 25px 0 40px; color: var(--muted); font-size: 16px; line-height: 1.62; }
.metric-row { padding-top: 26px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.metric-row strong,.metric-row span { display: block; }
.metric-row strong { font-size: clamp(20px,2.2vw,32px); letter-spacing: -.05em; }
.metric-row span { margin-top: 6px; color: #6e7c8e; font-size: 9px; letter-spacing: .12em; }
.live-visual { min-height: 640px; position: relative; display: grid; place-items: center; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 540px; height: 540px; background: radial-gradient(circle at 35% 30%, rgba(76,211,232,.25), rgba(49,79,135,.1) 48%, transparent 70%); }
.orb-two { width: 380px; height: 380px; border: 1px solid rgba(76,211,232,.15); box-shadow: 0 0 90px rgba(76,211,232,.08); }
.phone-feature { z-index: 2; width: min(29vw, 330px); aspect-ratio: 1206 / 2622; border-radius: 13.5% / 6.3%; transform: rotate(3deg); }
.telemetry { position: absolute; z-index: 3; padding: 15px 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(17,29,47,.72); backdrop-filter: blur(18px); box-shadow: 0 22px 60px rgba(0,0,0,.24); }
.telemetry span,.telemetry strong,.telemetry small { display: block; }
.telemetry span { color: #758499; font-size: 9px; letter-spacing: .15em; }
.telemetry strong { margin-top: 5px; font-size: 17px; }
.telemetry-a { left: 1%; top: 20%; }
.telemetry-a i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #3ddca3; box-shadow: 0 0 14px #3ddca3; }
.telemetry-b { right: 2%; bottom: 24%; min-width: 112px; }
.telemetry-b strong { color: var(--coral); font-size: 32px; line-height: 1; }
.telemetry-b small { color: #788698; font-size: 9px; }

.map-section { min-height: 1000px; padding: 150px var(--page); display: grid; grid-template-columns: .72fr 1.1fr; align-items: center; gap: 6vw; overflow: hidden; background: #e4ebef; color: var(--ink); }
.map-copy { max-width: 600px; }
.map-copy h2 em { color: #4a83a5; }
.map-copy > p { max-width: 480px; margin: 28px 0 44px; color: #627181; font-size: 17px; line-height: 1.65; }
.map-copy ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(6,16,28,.13); }
.map-copy li { padding: 18px 0; border-bottom: 1px solid rgba(6,16,28,.13); font-size: 14px; }
.map-copy li span { display: inline-block; width: 54px; color: #8393a2; font-size: 10px; letter-spacing: .12em; }
.map-visual { min-height: 760px; position: relative; display: grid; place-items: center; }
.map-visual::before { content:""; position: absolute; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, #f8fbfc, #cad9e2 70%); box-shadow: inset -30px -30px 70px rgba(51,82,105,.1), 0 50px 100px rgba(67,92,110,.15); }
.map-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(34,96,134,.15); }
.ring-one { width: 610px; height: 610px; }
.ring-two { width: 810px; height: 810px; }
.phone-map { z-index: 2; width: min(31vw,360px); aspect-ratio: 1206 / 2622; border-radius: 13.5% / 6.3%; transform: rotate(-4deg); }
.route-card { position: absolute; z-index: 3; right: 2%; bottom: 21%; width: 235px; padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; color: white; background: rgba(10,21,35,.76); backdrop-filter: blur(20px); box-shadow: 0 22px 70px rgba(32,60,81,.22); }
.route-card span,.route-card strong { display:block; }
.route-card span { color: #8d9aaa; font-size: 9px; letter-spacing: .13em; }
.route-card strong { margin: 7px 0 14px; font-size: 28px; letter-spacing: -.05em; }
.route-card strong small { color: #8996a6; font-size: 10px; }
.route-card div { padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); color: #98a6b7; font-size: 9px; letter-spacing: .08em; }
.route-card i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--ice); }

.season-section { padding: 150px var(--page); display: grid; grid-template-columns: .75fr 1.05fr; align-items: center; gap: 7vw; background: #081321; }
.season-heading > p { color: var(--muted); font-size: 16px; }
.season-card { padding: clamp(26px,4vw,54px); border: 1px solid rgba(255,255,255,.1); border-radius: 38px; background: radial-gradient(circle at 80% 0,rgba(74,168,255,.14),transparent 35%),rgba(255,255,255,.045); backdrop-filter: blur(20px); box-shadow: 0 45px 100px rgba(0,0,0,.22); }
.season-card-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.season-card-head span,.season-card-head strong { display:block; }
.season-card-head span { color: #8090a3; font-size: 10px; letter-spacing: .17em; }
.season-card-head strong { margin-top: 14px; font-size: clamp(42px,5vw,78px); letter-spacing: -.07em; line-height: 1; }
.season-card-head strong small { color: #657589; font-size: .3em; letter-spacing: 0; }
.season-badge { padding: 9px 11px; border-radius: 9px; background: rgba(76,211,232,.12); color: var(--ice); font-size: 12px; }
.season-bars { height: 210px; margin-top: 62px; display:flex; align-items:flex-end; gap: 5px; background-image: linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px); background-size: 100% 25%; }
.season-bars i { flex:1; height:var(--h); border-radius: 2px 2px 0 0; background: linear-gradient(#effdff,#66cfe2); transform: scaleY(0); transform-origin: bottom; animation: barGrow .75s cubic-bezier(.16,1,.3,1) calc(var(--d) * 38ms + .2s) forwards; }
.season-bars i.projected { background: rgba(255,255,255,.12); }
.season-axis { display:flex; justify-content:space-between; padding-top: 13px; color:#68788b; font-size:9px; letter-spacing:.1em; }
.season-details { margin-top: 35px; padding-top: 25px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #78889b; font-size: 12px; }
.season-details b { margin-right: 5px; color: white; font-size: 19px; }

.community-section { min-height: 1050px; padding: 150px var(--page); display:grid; grid-template-columns:1.1fr .8fr; align-items:center; gap:7vw; background:#f1f4f5; color:var(--ink); overflow:hidden; }
.community-copy > p { max-width: 500px; margin: 30px 0 50px; color: #647181; font-size: 17px; line-height: 1.65; }
.community-quotes { padding-top: 28px; display:flex; gap:50px; border-top:1px solid rgba(6,16,28,.13); }
.community-quotes strong,.community-quotes span { display:block; }
.community-quotes strong { font-size:28px; letter-spacing:-.05em; }
.community-quotes span { margin-top:5px; color:#7a8794; font-size:11px; }
.community-visual { min-height: 760px; position: relative; display:grid; place-items:center; }
.community-visual::before { content:""; position:absolute; width:660px; height:660px; border-radius:50%; background:radial-gradient(circle at 35% 30%,#d8f8fd,#c4d8e7 54%,#9eb7cc); box-shadow:0 60px 120px rgba(48,79,102,.17); }
.phone-community { z-index:2; width:min(31vw,360px); aspect-ratio:1206/2622; border-radius:13.5% / 6.3%; transform:rotate(3deg); }
.rank-card { position:absolute; z-index:3; min-width:280px; padding:14px 16px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:12px; border:1px solid rgba(255,255,255,.17); border-radius:18px; color:white; background:rgba(10,22,37,.79); backdrop-filter:blur(18px); box-shadow:0 25px 60px rgba(42,66,87,.22); }
.rank-card > span:first-child { padding:7px 9px; border-radius:9px; color:#53b7ff; background:rgba(74,168,255,.16); font-weight:600; }
.rank-card strong,.rank-card small { display:block; }
.rank-card strong { font-size:13px; }
.rank-card small { color:#7f8d9d; font-size:8px; letter-spacing:.12em; }
.rank-card b { font-size:13px; }
.rank-you { left:0; top:25%; }
.rank-friend { right:-2%; bottom:22%; }
.rank-card > span.online { width:9px; height:9px; padding:0; border-radius:50%; background:#3ddca3; box-shadow:0 0 15px #3ddca3; }
.rank-friend b { color:#3ddca3; font-size:10px; letter-spacing:.1em; }

.final-cta { min-height: 86vh; position:relative; display:grid; place-items:center; overflow:hidden; text-align:center; }
.final-bg { position:absolute; inset:0; background:url('/assets/hero-reveal.png') center 38%/cover no-repeat; transform:scale(1.05); }
.final-shade { position:absolute; inset:0; background:linear-gradient(rgba(3,8,14,.55),rgba(3,8,14,.84)),radial-gradient(circle at center,transparent,rgba(3,8,14,.55)); }
.final-content { position:relative; z-index:2; max-width:880px; padding:100px 24px; }
.final-content .eyebrow { justify-content:center; }
.final-content h2 { font-size:clamp(60px,8vw,118px); }
.final-content h2 em { color:#dcebf1; }
.final-content > p:not(.eyebrow) { max-width:520px; margin:30px auto; color:rgba(255,255,255,.68); line-height:1.6; }

footer { padding:52px var(--page) 34px; display:grid; grid-template-columns:1fr auto; align-items:center; gap:25px; background:#050c15; border-top:1px solid rgba(255,255,255,.08); }
.footer-brand { grid-row:span 2; }
footer > p { margin:0; color:#718094; font-size:13px; text-align:right; }
footer > div { display:flex; gap:24px; color:#59687b; font-size:10px; letter-spacing:.08em; text-transform:uppercase; }
footer > div a { text-decoration:none; }

.load-in { opacity:0; animation:fadeUp 1s cubic-bezier(.16,1,.3,1) var(--delay) forwards; }
.reveal-on-scroll { opacity:0; transform:translateY(32px); transition:opacity .9s cubic-bezier(.16,1,.3,1),transform .9s cubic-bezier(.16,1,.3,1); }
.reveal-on-scroll.visible { opacity:1; transform:none; }
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); filter:blur(10px); } to { opacity:1; transform:none; filter:blur(0); } }
@keyframes navDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }
@keyframes heroZoom { from { transform:scale(1.11); } to { transform:scale(1.02); } }
@keyframes pulse { 50% { box-shadow:0 0 0 7px rgba(76,211,232,0); background:var(--ice); } }
@keyframes barGrow { to { transform:scaleY(1); } }

@media (max-width: 1050px) {
  :root { --page: 32px; }
  .desktop-nav,.nav-cta { display:none; }
  .site-header { grid-template-columns:1fr auto; }
  .menu-toggle { display:block; }
  .hero-inner { grid-template-columns:1fr minmax(290px,.58fr); gap:22px; }
  .hero h1 { font-size:clamp(52px,7.2vw,78px); }
  .hero-product { width:min(32vw,330px); }
  .float-stat-speed { left:-64px; }
  .experience-stage { gap:35px; }
  .map-section,.season-section,.community-section { gap:40px; }
  .rank-card { min-width:240px; }
}

@media (max-width: 760px) {
  :root { --page: 20px; }
  .site-header { top:10px; left:10px; right:10px; height:58px; border-radius:17px; }
  .brand { font-size:18px; }
  .brand img { width:36px; height:36px; }
  .menu-toggle { width:42px; height:42px; }
  .menu-toggle span { left:11px; }
  .hero { min-height:850px; height:100svh; max-height:960px; }
  .hero-image { background-position:57% 31%; }
  .hero-image-reveal { --x:65%; --y:34%; -webkit-mask-image:radial-gradient(circle 170px at var(--x) var(--y),#000,rgba(0,0,0,.8) 48%,transparent 100%); mask-image:radial-gradient(circle 170px at var(--x) var(--y),#000,rgba(0,0,0,.8) 48%,transparent 100%); }
  .hero-shade { background:linear-gradient(0deg,rgba(3,8,14,.92) 0%,rgba(3,8,14,.46) 54%,rgba(3,8,14,.48) 100%); }
  .hero-grid { background-size:50px 50px; }
  .hero-inner { padding:96px 20px 38px; display:flex; flex-direction:column; justify-content:flex-end; align-items:stretch; }
  .hero-copy { position:relative; z-index:3; }
  .hero h1 { font-size:clamp(43px,11.5vw,57px); line-height:.94; letter-spacing:-.06em; }
  .hero h1 .serif { font-size:1.08em; }
  .hero-lede { max-width:520px; margin-top:22px; font-size:15px; line-height:1.5; }
  .eyebrow { margin-bottom:16px; font-size:9px; }
  .hero-actions { margin-top:24px; }
  .button { min-height:50px; padding:0 18px; gap:14px; }
  .hero-product { position:absolute; z-index:1; width:175px; right:25px; top:102px; opacity:.88; }
  .phone-speaker { top:6px; height:13px; }
  .float-stat { display:none; }
  .spotlight-note { display:none; }
  .hero-index { right:20px; bottom:19px; font-size:8px; }
  .signal-strip { grid-template-columns:repeat(2,1fr); }
  .signal-item { min-height:118px; padding:25px 20px; border-bottom:1px solid rgba(255,255,255,.09); }
  .signal-item:nth-child(2) { border-right:0; }
  .story-section,.map-section,.season-section,.community-section { padding:96px 20px; }
  .section-intro { margin-bottom:65px; }
  .section-intro h2,.map-copy h2,.season-heading h2,.community-copy h2 { font-size:clamp(44px,13vw,65px); }
  .section-intro > p:last-child,.map-copy > p,.community-copy > p { font-size:15px; }
  .experience-stage { min-height:auto; padding:48px 24px 0; grid-template-columns:1fr; gap:40px; border-radius:30px; }
  .experience-copy h3 { font-size:43px; }
  .metric-row { gap:8px; }
  .metric-row strong { font-size:18px; }
  .live-visual { min-height:510px; }
  .phone-feature { width:230px; }
  .telemetry-a { left:0; }
  .telemetry-b { right:0; }
  .map-section { min-height:auto; grid-template-columns:1fr; gap:60px; }
  .map-visual { min-height:620px; }
  .map-visual::before { width:500px; height:500px; }
  .ring-one { width:440px;height:440px; }.ring-two{width:580px;height:580px;}
  .phone-map { width:260px; }
  .route-card { right:0; bottom:13%; width:205px; }
  .season-section { grid-template-columns:1fr; gap:58px; }
  .season-card { border-radius:27px; }
  .season-bars { height:150px; margin-top:45px; gap:3px; }
  .community-section { min-height:auto; grid-template-columns:1fr; }
  .community-copy { grid-row:1; }
  .community-visual { min-height:650px; }
  .community-visual::before { width:510px;height:510px; }
  .phone-community { width:255px; }
  .rank-card { min-width:225px; }
  .rank-you { left:0;top:25%; }.rank-friend{right:0;bottom:21%;}
  .final-cta { min-height:780px; }
  .final-bg { background-position:52% 32%; }
  .final-content h2 { font-size:clamp(58px,16vw,82px); }
  footer { grid-template-columns:1fr; }
  .footer-brand { grid-row:auto; }
  footer > p { text-align:left; }
  footer > div { flex-wrap:wrap; gap:12px 20px; }
}

@media (max-width: 430px) {
  .hero { min-height:800px; }
  .hero-product { width:150px; right:12px; top:92px; }
  .hero-actions { display:grid; grid-template-columns:1fr 1fr; }
  .button { font-size:12px; }
  .metric-row strong { font-size:16px; }
  .live-visual { min-height:480px; }
  .phone-feature { width:205px; }
  .telemetry { padding:12px; }
  .map-visual { min-height:560px; }
  .phone-map,.phone-community { width:230px; }
  .route-card { width:180px; }
  .community-visual { min-height:590px; }
  .rank-card { min-width:190px; padding:11px 12px; gap:8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.001ms !important; animation-delay:0ms !important; transition-duration:.001ms !important; }
  .load-in,.reveal-on-scroll { opacity:1; transform:none; filter:none; }
}
