@font-face {
  font-family: "Satoshi";
  src: url("./assets/Satoshi-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "PP Mori";
  src: url("./assets/PPMori-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "FIKA Store Brands";
  src: url("./assets/FontAwesome5-Brands.ttf") format("truetype");
  font-weight: 400;
  font-display: block;
}

:root {
  --ocean: #142b3a;
  --lime: #c6f456;
  --lime-soft: #eaf8c8;
  --cream: #f5f3e5;
  --canvas: #f3f4f6;
  --white: #ffffff;
  --coffee: #4a433f;
  --muted: #6b7280;
  --border: rgba(20, 43, 58, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 32px 80px rgba(20, 43, 58, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ocean);
  font-family: "Satoshi", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.brand { width: 92px; height: 46px; display: flex; align-items: center; }
.site-nav { display: flex; gap: 34px; color: var(--cream); font-size: 13px; font-weight: 700; }
.site-nav a { opacity: .72; transition: opacity .2s ease; }
.site-nav a:hover { opacity: 1; }
.header-login { justify-self: end; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--ocean); }
.button-secondary { border: 1px solid rgba(245, 243, 229, .32); color: var(--cream); }
.button-quiet { min-height: 42px; border: 1px solid var(--border); background: rgba(255,255,255,.42); }

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 32px;
  padding: 128px max(48px, calc((100vw - 1344px) / 2)) 80px;
  background:
    linear-gradient(118deg, rgba(20,43,58,.99) 0%, rgba(20,43,58,.96) 48%, rgba(15,34,46,.96) 100%);
  color: var(--cream);
}
.hero-copy { position: relative; z-index: 3; max-width: 640px; }
.eyebrow { margin: 0; color: var(--lime); font-size: 11px; font-weight: 700; letter-spacing: 2.2px; }
h1, h2 { font-family: "PP Mori", "Satoshi", sans-serif; font-weight: 600; letter-spacing: -.035em; }
h1 { max-width: 720px; margin: 20px 0 24px; font-size: clamp(54px, 6.2vw, 92px); line-height: .96; }
.hero-word-tech {
  color: var(--cream);
  background: linear-gradient(100deg, var(--cream) 18%, var(--lime) 48%, var(--cream) 76%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: word-signal 7s ease-in-out infinite;
}
.hero-signal {
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(198,244,86,.24);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(198,244,86,.06);
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 1.35px;
}
.hero-signal span, .hero-signal strong { font-weight: 700; }
.hero-signal strong { color: rgba(245,243,229,.72); }
.hero-signal i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px rgba(198,244,86,.8); animation: core-pulse 2s ease-out infinite; }
.hero-lede { max-width: 560px; margin: 0; font-size: 20px; line-height: 1.55; color: rgba(245,243,229,.75); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-actions .button-primary { gap: 18px; }
.hero-actions .button-primary span { font-size: 17px; line-height: 1; transition: transform .2s ease; }
.hero-actions .button-primary:hover span { transform: translateX(4px); }
.hero-note { margin-top: 16px; display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(245,243,229,.48); }
.hero-note i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px rgba(198,244,86,.55); }
.hero-orbit { position: absolute; border: 1px solid rgba(198,244,86,.14); border-radius: 50%; }
.hero-orbit-one { width: 580px; height: 580px; right: -80px; top: -180px; }
.hero-orbit-two { width: 760px; height: 760px; left: -420px; bottom: -550px; }
.hero-tech-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,244,86,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,244,86,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 76% 43%, #000, transparent 64%);
  mask-image: radial-gradient(circle at 76% 43%, #000, transparent 64%);
}
.hero-motion-field { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .62; }
.hero-motion-field path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.motion-field-shadow { stroke: rgba(198,244,86,.055); stroke-width: 18; }
.motion-field-line { stroke: rgba(198,244,86,.3); stroke-width: 1.4; stroke-dasharray: 7 14; animation: hero-route-flow 11s linear infinite; }
.hero-motion-field circle { fill: var(--ocean); stroke: rgba(198,244,86,.58); stroke-width: 2; filter: drop-shadow(0 0 6px rgba(198,244,86,.42)); }

.hero-visual { position: relative; z-index: 3; height: 660px; min-width: 520px; }
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 7;
  left: -4%;
  top: 0;
  width: 108%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,244,86,.78), transparent);
  box-shadow: 0 0 18px rgba(198,244,86,.28);
  opacity: .46;
  pointer-events: none;
  animation: system-scan 8s ease-in-out infinite;
}
.hero-system-status { position: absolute; z-index: 8; left: 50%; top: -22px; transform: translateX(-50%); min-width: 230px; display: flex; justify-content: space-between; gap: 22px; color: rgba(245,243,229,.5); font-size: 7px; letter-spacing: 1.25px; }
.hero-system-status strong { color: var(--lime); font-size: 7px; }
.hero-system-status i { display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); animation: core-pulse 2s ease-out infinite; }
.hero-core-halo { position: absolute; z-index: 0; width: 390px; height: 390px; left: 50%; top: 112px; transform: translateX(-50%); display: grid; place-items: center; border: 1px solid rgba(198,244,86,.13); border-radius: 50%; box-shadow: inset 0 0 80px rgba(198,244,86,.04), 0 0 100px rgba(198,244,86,.04); }
.hero-core-halo::before, .hero-core-halo::after { content: ""; position: absolute; border: 1px dashed rgba(198,244,86,.12); border-radius: 50%; }
.hero-core-halo::before { inset: 28px; animation: orbit-turn 24s linear infinite; }
.hero-core-halo::after { inset: 76px; animation: orbit-turn 18s linear infinite reverse; }
.hero-core-halo span { color: rgba(198,244,86,.13); font-family: "PP Mori"; font-size: 34px; letter-spacing: 12px; }
.hero-connection-map { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hero-connection-map path, .hero-connection-map circle { fill: none; stroke: rgba(198,244,86,.14); stroke-width: 1; stroke-dasharray: 4 8; }
.hero-connection-map circle:last-child { opacity: .5; }
.hero-satellite { position: absolute; z-index: 8; min-height: 30px; padding: 0 10px; border: 1px solid rgba(198,244,86,.25); border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; background: rgba(12,26,36,.86); box-shadow: 0 10px 30px rgba(0,0,0,.18); backdrop-filter: blur(10px); color: rgba(245,243,229,.7); font-size: 7px; font-weight: 700; letter-spacing: .9px; white-space: nowrap; }
.hero-satellite i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 9px var(--lime); }
.hero-satellite b { color: var(--lime); font-size: 6px; letter-spacing: .8px; }
.satellite-gps i, .satellite-gps b { animation: satellite-gps-wake 10s linear infinite; }
.satellite-health i, .satellite-health b { animation: satellite-health-wake 10s linear infinite; }
.satellite-community i, .satellite-community b { animation: satellite-community-wake 10s linear infinite; }
.satellite-evolution i, .satellite-evolution b { animation: satellite-evolution-wake 10s linear infinite; }
.satellite-gps { left: -3%; top: 52px; animation: satellite-float 5.6s ease-in-out infinite; }
.satellite-health { right: -2%; top: 24px; animation: satellite-float 6.2s .8s ease-in-out infinite; }
.satellite-community { right: -5%; bottom: 78px; animation: satellite-float 5.8s .35s ease-in-out infinite; }
.satellite-evolution { left: 0; bottom: 82px; animation: satellite-float 6.4s 1.2s ease-in-out infinite; }
.phone {
  position: absolute;
  width: 264px;
  margin: 0;
  overflow: hidden;
  border-radius: 38px;
  border: 7px solid #0c1a24;
  background: #0c1a24;
  box-shadow: var(--shadow);
}
.phone img { width: 100%; height: auto; }
.phone-front { z-index: 3; left: 50%; top: 10px; transform: translateX(-50%); }
.phone-awakening { position: absolute; z-index: 4; inset: 0; overflow: hidden; border-radius: 30px; pointer-events: none; }
.phone-data-layer {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 116px 13px 16px;
  background: linear-gradient(180deg, rgba(7,21,29,.06), rgba(7,21,29,.3));
  clip-path: inset(0 0 100% 0);
  animation: phone-data-reveal 10s ease-in-out infinite;
}
.telemetry-heading { display: flex; align-items: center; justify-content: space-between; color: rgba(245,243,229,.62); font-size: 5px; letter-spacing: .8px; }
.telemetry-heading > span { color: var(--lime); font-weight: 700; }
.telemetry-heading b { display: flex; align-items: center; gap: 4px; font-size: 4px; }
.telemetry-heading i { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.telemetry-metrics { margin-top: 8px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.telemetry-metrics > span { min-height: 45px; padding: 7px 6px 5px; border: 1px solid rgba(198,244,86,.2); border-radius: 9px; display: grid; grid-template-columns: auto 1fr; align-items: end; background: rgba(9,27,36,.82); box-shadow: inset 0 0 16px rgba(198,244,86,.035); }
.telemetry-metrics small { grid-column: 1 / -1; color: rgba(245,243,229,.5); font-size: 4px; letter-spacing: .55px; }
.telemetry-metrics strong { color: var(--cream); font-family: "PP Mori"; font-size: 15px; line-height: 1; }
.telemetry-metrics em { align-self: end; padding-bottom: 1px; color: var(--lime); font-size: 4px; font-style: normal; }
.telemetry-chart { margin-top: 6px; padding: 7px 8px 4px; border: 1px solid rgba(245,243,229,.11); border-radius: 9px; background: rgba(9,27,36,.74); }
.telemetry-chart > div { display: flex; justify-content: space-between; color: rgba(245,243,229,.5); font-size: 4px; letter-spacing: .6px; }
.telemetry-chart > div b { color: var(--lime); font-size: 5px; }
.telemetry-chart svg { width: 100%; height: 42px; overflow: visible; }
.telemetry-area { fill: rgba(198,244,86,.1); }
.telemetry-line { fill: none; stroke: var(--lime); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 260; animation: telemetry-draw 10s ease-in-out infinite; }
.telemetry-chart circle { fill: var(--lime); filter: drop-shadow(0 0 5px var(--lime)); }
.telemetry-recovery { margin-top: 6px; padding: 7px 8px; border: 1px solid rgba(198,244,86,.17); border-radius: 9px; display: flex; align-items: center; gap: 9px; background: rgba(9,27,36,.8); }
.recovery-ring { width: 40px; height: 40px; flex: 0 0 auto; border: 3px solid rgba(198,244,86,.18); border-top-color: var(--lime); border-right-color: rgba(198,244,86,.65); border-radius: 50%; display: grid; place-content: center; text-align: center; transform: rotate(-24deg); }
.recovery-ring strong, .recovery-ring small { transform: rotate(24deg); }
.recovery-ring strong { color: var(--cream); font-family: "PP Mori"; font-size: 12px; line-height: 1; }
.recovery-ring small { margin-top: 2px; color: rgba(245,243,229,.45); font-size: 3px; }
.telemetry-recovery p { flex: 1; margin: 0; display: flex; align-items: center; justify-content: space-between; }
.telemetry-recovery p span { color: rgba(245,243,229,.66); font-size: 5px; }
.telemetry-recovery p b { color: var(--lime); font-size: 5px; letter-spacing: .5px; }
.telemetry-wearable { margin-top: 6px; min-height: 24px; padding: 0 8px; border: 1px solid rgba(245,243,229,.1); border-radius: 8px; display: flex; align-items: center; gap: 6px; background: rgba(9,27,36,.76); color: rgba(245,243,229,.55); font-size: 4px; letter-spacing: .5px; }
.telemetry-wearable i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.telemetry-wearable b { margin-left: auto; color: var(--lime); font-size: 4px; }
.phone-dormant { position: absolute; z-index: 3; inset: 0; display: grid; place-content: center; justify-items: center; background: radial-gradient(circle at 50% 42%, rgba(58,88,50,.38), transparent 24%), linear-gradient(180deg, rgba(10,28,38,.95), rgba(7,21,29,.985)); clip-path: inset(0 0 0 0); animation: phone-dormant-release 10s ease-in-out infinite; }
.dormant-core { position: relative; width: 72px; height: 72px; margin-bottom: 18px; border: 1px solid rgba(198,244,86,.25); border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 28px rgba(198,244,86,.06), 0 0 35px rgba(198,244,86,.06); }
.dormant-core::before, .dormant-core::after { content: ""; position: absolute; border: 1px dashed rgba(198,244,86,.15); border-radius: 50%; animation: orbit-turn 12s linear infinite; }
.dormant-core::before { inset: 8px; }
.dormant-core::after { inset: 18px; animation-direction: reverse; animation-duration: 8s; }
.dormant-core span { color: var(--lime); font-family: "PP Mori"; font-size: 10px; letter-spacing: 3px; }
.dormant-core i { position: absolute; right: 6px; top: 14px; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 9px var(--lime); animation: core-pulse 2s ease-out infinite; }
.phone-dormant > strong { color: rgba(245,243,229,.74); font-size: 6px; letter-spacing: 1.25px; }
.phone-dormant > small { margin-top: 6px; color: rgba(245,243,229,.34); font-size: 5px; letter-spacing: .8px; }
.phone-scan-line { position: absolute; z-index: 5; left: 0; top: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent 3%, var(--lime) 28%, #fff 50%, var(--lime) 72%, transparent 97%); box-shadow: 0 0 12px rgba(198,244,86,.75), 0 0 34px rgba(198,244,86,.32); opacity: 0; animation: phone-scan 10s ease-in-out infinite; }
.phone-scan-line i { position: absolute; left: 50%; top: -2px; width: 7px; height: 7px; border: 1px solid var(--lime); border-radius: 50%; background: #fff; box-shadow: 0 0 10px var(--lime); }
.phone-back { z-index: 1; left: 4%; top: 96px; width: 224px; transform: rotate(-7deg); opacity: .86; }
.phone-side { z-index: 2; right: 2%; top: 76px; width: 232px; transform: rotate(7deg); opacity: .92; }
.hero-visual:hover .phone-front { transform: translateX(-50%) translateY(-5px) scale(1.018); }
.hero-visual:hover .phone-back { transform: rotate(-8deg) translate(-4px, 3px); }
.hero-visual:hover .phone-side { transform: rotate(8deg) translate(4px, 3px); }
.phone-front, .phone-back, .phone-side { transition: transform .55s cubic-bezier(.2,.8,.2,1); }

@keyframes word-signal { 0%, 70%, 100% { background-position: 100% center; } 35% { background-position: 0 center; } }
@keyframes hero-route-flow { to { stroke-dashoffset: -168; } }
@keyframes core-pulse { 0%, 100% { opacity: .55; transform: scale(.85); } 45% { opacity: 1; transform: scale(1.3); } }
@keyframes system-scan { 0%, 12% { transform: translateY(35px); opacity: 0; } 24% { opacity: .45; } 74% { opacity: .35; } 88%, 100% { transform: translateY(555px); opacity: 0; } }
@keyframes satellite-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes phone-dormant-release { 0%, 12% { clip-path: inset(0 0 0 0); } 60%, 92% { clip-path: inset(100% 0 0 0); } 98%, 100% { clip-path: inset(0 0 0 0); } }
@keyframes phone-data-reveal { 0%, 12% { clip-path: inset(0 0 100% 0); } 60%, 92% { clip-path: inset(0 0 0 0); } 98%, 100% { clip-path: inset(0 0 100% 0); } }
@keyframes phone-scan { 0%, 12% { top: 0; opacity: 0; } 14% { top: 0; opacity: 1; } 60% { top: calc(100% - 2px); opacity: 1; } 64%, 100% { top: calc(100% - 2px); opacity: 0; } }
@keyframes telemetry-draw { 0%, 25% { stroke-dashoffset: 260; } 58%, 92% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -260; } }
@keyframes satellite-gps-wake { 0%, 59%, 96%, 100% { opacity: .22; filter: saturate(.2); } 64%, 91% { opacity: 1; filter: none; } }
@keyframes satellite-health-wake { 0%, 64%, 96%, 100% { opacity: .22; filter: saturate(.2); } 69%, 91% { opacity: 1; filter: none; } }
@keyframes satellite-community-wake { 0%, 69%, 96%, 100% { opacity: .22; filter: saturate(.2); } 74%, 91% { opacity: 1; filter: none; } }
@keyframes satellite-evolution-wake { 0%, 74%, 96%, 100% { opacity: .22; filter: saturate(.2); } 79%, 91% { opacity: 1; filter: none; } }

.proof {
  max-width: 1240px;
  margin: -32px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(198,244,86,.16);
  border-radius: var(--radius-md);
  background:
    linear-gradient(rgba(198,244,86,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,244,86,.035) 1px, transparent 1px),
    #0d1d28;
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 24px 60px rgba(12,26,36,.22);
}
.proof::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 15px rgba(198,244,86,.5);
  animation: proof-signal 7s ease-in-out infinite;
}
.proof-card {
  --proof-accent: var(--lime);
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: 24px 28px 22px;
  border-right: 1px solid rgba(245,243,229,.11);
  color: var(--cream);
  transition: background-color .25s ease;
}
.proof-card:last-child { border-right: 0; }
.proof-card:hover { background: rgba(198,244,86,.055); }
.proof-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  right: -50px;
  top: -64px;
  border: 1px solid rgba(198,244,86,.11);
  border-radius: 50%;
}
.proof-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.proof-meta > span { color: var(--lime); font-size: 9px; font-weight: 700; letter-spacing: 1.3px; }
.proof-meta small { display: flex; align-items: center; gap: 5px; color: rgba(245,243,229,.42); font-size: 7px; letter-spacing: 1px; white-space: nowrap; }
.proof-meta i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px rgba(198,244,86,.9); animation: core-pulse 2s ease-out infinite; }
.proof-icon { width: 44px; height: 44px; margin: 20px 0 16px; display: grid; place-items: center; border: 1px solid rgba(198,244,86,.21); border-radius: 14px; background: rgba(198,244,86,.06); box-shadow: inset 0 0 22px rgba(198,244,86,.035); }
.proof-icon svg { width: 29px; height: 29px; overflow: visible; }
.proof-icon path, .proof-icon circle { fill: none; stroke: var(--lime); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 96; animation: proof-draw 6s ease-in-out infinite; }
.proof-card > strong, .proof-card > span { display: block; }
.proof-card > strong { font-family: "PP Mori", "Satoshi", sans-serif; font-size: 17px; }
.proof-card > span { margin-top: 6px; color: rgba(245,243,229,.58); font-size: 12px; }
.proof-readout { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px; }
.proof-readout b { padding: 5px 7px; border: 1px solid rgba(198,244,86,.14); border-radius: 999px; color: rgba(198,244,86,.7); font-size: 7px; letter-spacing: .8px; }
.proof-connect .proof-meta i { animation-delay: .4s; }
.proof-evolve .proof-meta i { animation-delay: .8s; }

@keyframes proof-signal { 0%, 100% { transform: translateX(-100%); opacity: 0; } 15%, 85% { opacity: 1; } 50% { transform: translateX(360%); } }
@keyframes proof-draw { 0%, 18% { stroke-dashoffset: 96; opacity: .35; } 42%, 82% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: -96; opacity: .35; } }

.experience { max-width: 1344px; margin: 0 auto; padding: 140px 48px; }
.section-heading { display: grid; grid-template-columns: .55fr 1fr 1fr; align-items: end; gap: 44px; }
.section-heading .eyebrow { color: #3d6b1e; align-self: start; padding-top: 10px; }
.section-heading h2, .movement h2, .download h2 { margin: 0; font-size: clamp(38px, 4vw, 62px); line-height: 1.02; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.feature-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  --tech-line: rgba(20,43,58,.14);
  --tech-strong: var(--ocean);
  position: relative;
  isolation: isolate;
  min-height: 450px;
  padding: 26px 30px 30px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(var(--tech-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--tech-line) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 68%);
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}
.feature-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 230px;
  right: -100px;
  top: -110px;
  border: 1px solid var(--tech-line);
  border-radius: 50%;
  box-shadow: 0 0 80px var(--tech-line);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(20,43,58,.15); }
.feature-card h3 { margin: 0 0 14px; font-family: "PP Mori"; font-size: 28px; line-height: 1.05; }
.feature-card p { margin: 0; max-width: 340px; font-size: 14px; line-height: 1.6; opacity: .72; }
.feature-number { position: relative; z-index: 3; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; }
.feature-copy { position: relative; z-index: 3; margin-top: auto; }
.feature-dark { --tech-line: rgba(198,244,86,.11); --tech-strong: var(--lime); background: var(--ocean); color: var(--cream); }
.feature-dark .feature-number { color: var(--lime); }
.feature-lime { --tech-line: rgba(20,43,58,.12); background: var(--lime); color: var(--ocean); }
.feature-light { --tech-line: rgba(20,43,58,.09); background: var(--white); border: 1px solid var(--border); }

.feature-visual { position: relative; z-index: 2; height: 210px; margin: 7px -6px 10px; }
.tech-readout { position: absolute; z-index: 4; top: 4px; right: 0; text-align: right; }
.tech-readout span, .tech-readout small { display: block; }
.tech-readout span { font-size: 8px; font-weight: 700; letter-spacing: 1.25px; }
.tech-readout small { margin-top: 4px; font-size: 7px; letter-spacing: .9px; opacity: .5; }
.tech-readout i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: var(--tech-strong); box-shadow: 0 0 12px var(--tech-strong); }
.route-map { position: absolute; inset: 20px 0 auto; width: 100%; height: 150px; overflow: visible; }
.route-shadow, .route-track { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.route-shadow { stroke: rgba(198,244,86,.15); stroke-width: 12; }
.route-track { stroke: var(--lime); stroke-width: 2.5; stroke-dasharray: 9 8; animation: route-flow 5s linear infinite; }
.route-node { fill: var(--ocean); stroke: var(--lime); stroke-width: 3; }
.route-node-mid { fill: var(--lime); animation: signal-pulse 2.2s ease-out infinite; transform-box: fill-box; transform-origin: center; }
.route-node-end { fill: var(--lime); filter: drop-shadow(0 0 8px rgba(198,244,86,.8)); }
.tech-chips { position: absolute; left: 0; right: 0; bottom: 8px; display: flex; gap: 7px; }
.tech-chips span { padding: 5px 9px; border: 1px solid var(--tech-line); border-radius: 999px; background: rgba(255,255,255,.04); font-size: 7px; font-weight: 700; letter-spacing: 1px; }

.network-map { position: absolute; inset: 24px 0 24px; }
.network-map svg { width: 100%; height: 100%; overflow: visible; }
.network-map path, .network-map circle { fill: none; stroke: rgba(20,43,58,.25); stroke-width: 1; stroke-dasharray: 3 5; }
.network-map circle:last-child { opacity: .45; animation: orbit-turn 18s linear infinite; transform-origin: center; }
.network-core, .network-node { position: absolute; display: grid; place-items: center; border-radius: 50%; }
.network-core { width: 54px; height: 54px; left: calc(50% - 27px); top: calc(50% - 27px); background: var(--ocean); color: var(--lime); font-family: "PP Mori"; font-size: 21px; box-shadow: 0 10px 28px rgba(20,43,58,.25); }
.network-node { width: 24px; height: 24px; border: 1px solid rgba(20,43,58,.3); background: rgba(245,243,229,.8); box-shadow: 0 7px 18px rgba(20,43,58,.14); }
.network-node b { width: 7px; height: 7px; border-radius: 50%; background: var(--ocean); }
.network-node-one { left: 17%; top: 14%; }
.network-node-two { left: 20%; bottom: 8%; }
.network-node-three { right: 16%; top: 11%; }
.network-node-four { right: 13%; bottom: 12%; }
.network-node-five { left: calc(50% - 12px); top: -3px; }
.network-node-one, .network-node-four { animation: signal-pulse 2.6s ease-out infinite; }
.network-node-three { animation: signal-pulse 2.6s .8s ease-out infinite; }
.network-status { position: absolute; left: 0; right: 0; bottom: 2px; display: flex; justify-content: space-between; align-items: center; }
.network-status strong { padding: 5px 9px; border-radius: 999px; background: var(--ocean); color: var(--lime); font-size: 8px; text-transform: uppercase; letter-spacing: .8px; }
.network-status span { font-size: 7px; font-weight: 700; letter-spacing: .75px; opacity: .58; }

.metric-display { position: absolute; inset: 38px 0 35px; display: grid; grid-template-columns: 84px 1fr; align-items: center; gap: 16px; }
.metric-ring { position: relative; width: 82px; height: 82px; display: grid; place-items: center; border: 1px solid rgba(20,43,58,.18); border-radius: 50%; }
.metric-ring::before { content: ""; position: absolute; inset: 8px; border: 7px solid rgba(20,43,58,.08); border-top-color: var(--lime); border-right-color: var(--lime); border-radius: 50%; transform: rotate(24deg); }
.metric-ring span, .metric-ring strong { position: relative; z-index: 1; display: block; text-align: center; }
.metric-ring span { color: #4c7a21; font-size: 18px; line-height: 1; }
.metric-ring strong { margin-top: 4px; font-size: 7px; letter-spacing: .8px; }
.metric-chart { width: 100%; overflow: visible; }
.metric-area { fill: rgba(198,244,86,.24); }
.metric-line { fill: none; stroke: #67942f; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 260; stroke-dashoffset: 260; animation: chart-draw 3.6s ease-in-out infinite alternate; }
.metric-chart circle { fill: var(--lime); stroke: var(--ocean); stroke-width: 2; filter: drop-shadow(0 0 5px rgba(103,148,47,.45)); }

@keyframes route-flow { to { stroke-dashoffset: -68; } }
@keyframes signal-pulse { 0%, 100% { transform: scale(1); } 45% { transform: scale(1.22); } }
@keyframes orbit-turn { to { transform: rotate(360deg); } }
@keyframes chart-draw { to { stroke-dashoffset: 0; } }

.movement {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  padding: 112px max(48px, calc((100vw - 1248px) / 2));
  background: var(--cream);
}
.movement-copy > p:last-child { max-width: 520px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.movement .eyebrow { color: #3d6b1e; margin-bottom: 22px; }
.movement-list { border-top: 1px solid var(--border); }
.movement-list > div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  border-bottom: 1px solid var(--border);
}
.movement-list span { color: #3d6b1e; font-size: 11px; font-weight: 700; }
.movement-list strong { font-family: "PP Mori"; font-size: 20px; }
.movement-list small { color: var(--muted); font-size: 12px; }

.download {
  max-width: 1248px;
  margin: 96px auto;
  min-height: 380px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 72px;
  padding: 64px;
  border-radius: 42px;
  background: var(--ocean);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.download::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(198,244,86,.2); border-radius: 50%; right: -150px; top: -160px; }
.download h2 { margin-top: 18px; }
.download p:last-child { max-width: 560px; color: rgba(245,243,229,.68); line-height: 1.6; }
.download-actions { position: relative; z-index: 2; display: grid; gap: 10px; }
.store-button {
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(245,243,229,.2);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 13px;
  background: rgba(255,255,255,.04);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(198,244,86,.55);
  background: rgba(255,255,255,.08);
}
.store-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(245,243,229,.1);
  color: var(--cream);
  font-family: "FIKA Store Brands";
  font-size: 23px;
  font-style: normal;
}
.store-brand-icon-apple::before { content: "\f179"; }
.store-brand-icon-play::before { content: "\f3ab"; font-size: 20px; }
.store-copy { min-width: 0; display: flex; flex-direction: column; }
.store-copy small { font-size: 9px; text-transform: uppercase; letter-spacing: 1.1px; opacity: .58; }
.store-copy strong { margin-top: 2px; font-size: 17px; }
.store-cta {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--ocean);
  font-size: 11px;
  font-weight: 700;
}
.store-cta b { font-size: 13px; }
.button-web { background: var(--lime); color: var(--ocean); }

footer { padding: 54px max(32px, calc((100vw - 1248px) / 2)); background: #0c1a24; color: var(--cream); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.footer-brand { width: 82px; height: 38px; overflow: hidden; display: flex; align-items: center; }
footer p { color: rgba(245,243,229,.56); font-size: 12px; }
footer nav { display: flex; gap: 22px; font-size: 12px; }
footer small { grid-column: 1 / -1; color: rgba(245,243,229,.34); font-size: 10px; }

@media (max-width: 1050px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { text-align: center; margin: 0 auto; }
  .hero-lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-signal { margin-inline: auto; }
  .hero-note { justify-content: center; }
  .hero-visual { max-width: 720px; width: 100%; margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr 1fr; }
  .section-heading .eyebrow { grid-column: 1 / -1; }
  .download { margin-inline: 32px; }
}

@media (max-width: 760px) {
  .site-header { position: absolute; height: 72px; padding: 0 20px; grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .brand { width: 76px; }
  .header-login { min-height: 38px; padding-inline: 18px; }
  .hero { display: block; padding: 126px 20px 64px; }
  h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { height: 500px; min-width: 0; margin-top: 54px; }
  .hero-tech-grid { background-size: 36px 36px; opacity: .7; }
  .hero-motion-field { opacity: .34; }
  .hero-system-status { top: -28px; min-width: 210px; }
  .hero-core-halo { width: 300px; height: 300px; top: 74px; }
  .hero-core-halo span { font-size: 24px; }
  .hero-satellite { min-height: 26px; padding-inline: 8px; font-size: 6px; }
  .satellite-gps { left: -6px; top: 44px; }
  .satellite-health { right: -6px; top: 18px; }
  .satellite-community { right: -10px; bottom: 52px; }
  .satellite-evolution { display: none; }
  .phone { width: 205px; border-width: 5px; border-radius: 30px; }
  .phone-front { top: 0; }
  .phone-awakening { border-radius: 25px; }
  .phone-data-layer { padding: 90px 10px 12px; }
  .telemetry-metrics > span { min-height: 36px; padding: 5px; }
  .telemetry-metrics strong { font-size: 11px; }
  .telemetry-chart { padding-block: 5px 2px; }
  .telemetry-chart svg { height: 31px; }
  .telemetry-recovery { padding: 5px 6px; }
  .recovery-ring { width: 31px; height: 31px; }
  .recovery-ring strong { font-size: 9px; }
  .telemetry-wearable { min-height: 19px; margin-top: 4px; }
  .dormant-core { width: 58px; height: 58px; }
  .phone-back { width: 165px; left: -28px; top: 70px; }
  .phone-side { width: 170px; right: -28px; top: 58px; }
  .proof {
    max-width: none;
    margin: 0;
    padding: 16px 20px 18px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    border-inline: 0;
    border-radius: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .proof::-webkit-scrollbar { display: none; }
  .proof-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 236px;
    padding: 22px;
    border: 1px solid rgba(245,243,229,.1);
    border-radius: 22px;
    scroll-snap-align: center;
  }
  .proof-card:last-child { border-right: 1px solid rgba(245,243,229,.1); }
  .experience { padding: 92px 20px; }
  .section-heading { display: block; }
  .section-heading h2 { margin: 18px 0; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .feature-card { min-height: 430px; }
  .movement { grid-template-columns: 1fr; gap: 48px; padding: 86px 20px; }
  .movement-list > div { grid-template-columns: 34px 1fr; }
  .movement-list small { grid-column: 2; margin-top: -20px; padding-bottom: 14px; }
  .download { grid-template-columns: 1fr; gap: 40px; margin: 48px 16px; padding: 44px 24px; border-radius: 28px; }
  .store-button { grid-template-columns: 40px 1fr auto; }
  .store-cta { min-height: 32px; padding-inline: 11px; }
  footer { grid-template-columns: 1fr; padding: 44px 24px; }
  footer nav { flex-wrap: wrap; }
  footer small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .phone-dormant, .phone-scan-line { display: none; }
  .phone-data-layer { clip-path: none; }
}
