:root {
  --ink: #071817;
  --ink-soft: #102523;
  --ink-elevated: #16312e;
  --paper: #f5f7f2;
  --paper-warm: #ecefe8;
  --white: #ffffff;
  --mint: #82f2c5;
  --mint-bright: #b9ffdf;
  --mint-dark: #0b6b54;
  --sky: #85c8ff;
  --amber: #f4c572;
  --coral: #ff887a;
  --text: #11221f;
  --muted: #60706c;
  --line: rgba(9, 34, 30, 0.13);
  --dark-line: rgba(218, 255, 241, 0.14);
  --shadow: 0 30px 80px rgba(3, 22, 18, 0.16);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 15px;
  --shell: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(0.2, 0.85, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

img {
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 11px 15px;
  border-radius: 9px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    background-color 220ms ease,
    backdrop-filter 220ms ease,
    border-color 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(6, 23, 21, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-icon {
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(126, 240, 204, 0.24);
  border-radius: 11px;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(4, 13, 18, 0.35),
    0 6px 18px rgba(43, 231, 193, 0.11);
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: -0.035em;
}

.brand-copy small {
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 13px;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--mint);
  color: var(--ink);
  background: var(--mint);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 930px;
  padding: 150px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 37%, rgba(70, 206, 161, 0.14), transparent 27%),
    radial-gradient(circle at 12% 80%, rgba(95, 171, 255, 0.1), transparent 23%),
    linear-gradient(145deg, #061412 0%, #091e1b 58%, #071513 100%);
  overflow: hidden;
}

.hero-grid,
.download-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(172, 255, 225, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(172, 255, 225, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 72%, transparent);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(141, 244, 205, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 20px var(--mint);
}

.hero-orbit-one {
  top: 105px;
  right: -280px;
  width: 760px;
  height: 760px;
  animation: orbit-spin 20s linear infinite;
}

.hero-orbit-two {
  top: 275px;
  right: -110px;
  width: 420px;
  height: 420px;
  opacity: 0.6;
  animation: orbit-spin 14s linear infinite reverse;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, 0.97fr);
  align-items: center;
  gap: 68px;
}

.hero-copy {
  padding-bottom: 84px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--mint-dark);
}

.eyebrow.light {
  color: var(--mint);
}

.eyebrow.center {
  justify-content: center;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 27px;
  font-size: clamp(56px, 6.1vw, 88px);
  font-weight: 670;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero-closing {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  display: inline;
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.download-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.button {
  display: inline-flex;
  min-height: 59px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 14px;
  font-weight: 750;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  min-width: 198px;
  padding: 11px 20px;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 15px 40px rgba(74, 237, 176, 0.17);
}

.button-primary:hover {
  background: var(--mint-bright);
  box-shadow: 0 18px 50px rgba(74, 237, 176, 0.25);
}

.button small {
  display: block;
  margin-bottom: 2px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.button span:not(.store-symbol):not(.play-symbol) {
  font-size: 17px;
  line-height: 1.05;
}

.store-symbol {
  font-size: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--mint);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 19px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-line span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-line span::before {
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

.hero-product {
  position: relative;
  min-height: 650px;
}

.signal-field {
  position: absolute;
  top: 10px;
  right: -55px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(137, 244, 203, 0.12);
  border-radius: 50%;
}

.signal-field::before,
.signal-field::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: inherit;
  border-radius: inherit;
}

.signal-field::after {
  inset: 31%;
}

.signal-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
  animation: signal-blink 3.8s ease-in-out infinite;
}

.dot-one {
  top: 25%;
  left: 7%;
}

.dot-two {
  top: 13%;
  right: 26%;
  animation-delay: 1s;
}

.dot-three {
  right: 9%;
  bottom: 27%;
  animation-delay: 2s;
}

.dot-four {
  bottom: 13%;
  left: 29%;
  animation-delay: 2.7s;
}

.phone {
  position: absolute;
  z-index: 3;
  top: 3px;
  left: 50%;
  width: 305px;
  height: 625px;
  transform: translateX(-50%) rotate(2deg);
  border: 7px solid #172825;
  border-radius: 49px;
  background: #09110f;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.phone::after {
  position: absolute;
  inset: -10px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(171, 248, 220, 0.19);
  border-radius: 53px;
}

.phone-island {
  position: absolute;
  z-index: 5;
  top: 10px;
  left: 50%;
  width: 82px;
  height: 23px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #030504;
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 29%, rgba(74, 218, 167, 0.15), transparent 29%),
    linear-gradient(#f8faf6, #eef3ed);
  color: #10201e;
  overflow: hidden;
}

.phone-topline {
  display: flex;
  justify-content: space-between;
  padding: 15px 23px 5px;
  font-size: 9px;
  font-weight: 800;
}

.phone-status {
  letter-spacing: 1px;
}

.app-head {
  display: flex;
  align-items: center;
  padding: 15px 18px 13px;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
}

.app-head button {
  margin-left: auto;
  border: 0;
  color: #73807d;
  background: none;
}

.mini-brand-icon {
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 3px 9px rgba(8, 69, 56, 0.13);
}

.status-card {
  margin: 0 12px;
  padding: 25px 15px 22px;
  border: 1px solid rgba(14, 79, 62, 0.11);
  border-radius: 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 15px 30px rgba(21, 70, 57, 0.07);
}

.status-ring {
  position: relative;
  display: grid;
  width: 106px;
  height: 106px;
  margin: 0 auto 17px;
  place-items: center;
  border: 1px solid rgba(17, 141, 105, 0.15);
  border-radius: 50%;
}

.status-ring::after {
  position: absolute;
  inset: 11px;
  content: "";
  border: 1px solid rgba(17, 141, 105, 0.17);
  border-radius: 50%;
}

.scan-arc {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: #27b78b;
  border-radius: 50%;
  animation: orbit-spin 4s linear infinite;
}

.status-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  border-radius: 50%;
  background: #dff8ed;
  box-shadow: 0 0 0 7px rgba(45, 186, 141, 0.07);
}

.status-core i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1fb184;
  box-shadow: 0 0 11px #27c697;
}

.status-kicker {
  margin-bottom: 8px;
  color: #148464;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.status-card h2 {
  margin-bottom: 7px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.status-card > p:last-child {
  margin: 0;
  color: #75817e;
  font-size: 10px;
}

.observation-card {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 12px;
  padding: 14px;
  border: 1px solid rgba(16, 81, 65, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.86);
}

.observation-icon {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #e4f8ef;
}

.observation-icon .lens {
  width: 9px;
  height: 7px;
  border: 1.5px solid #12664f;
  border-radius: 4px;
}

.observation-icon .bridge {
  width: 5px;
  height: 1px;
  background: #12664f;
}

.observation-card > span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.observation-card small {
  color: #279475;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.observation-card strong {
  margin: 3px 0;
  font-size: 10px;
}

.observation-card em {
  color: #7a8784;
  font-size: 8px;
  font-style: normal;
}

.observation-card b {
  color: #77908a;
}

.app-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 12px;
}

.app-actions div {
  display: flex;
  height: 70px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(16, 81, 65, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.66);
}

.app-actions span {
  color: #168765;
  font-size: 19px;
}

.app-actions small {
  color: #556965;
  font-size: 7px;
  font-weight: 750;
}

.phone-home {
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 95px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #1b2826;
}

.floating-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(206, 255, 236, 0.17);
  border-radius: 15px;
  background: rgba(20, 47, 42, 0.85);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(18px);
}

.floating-note small,
.floating-note strong {
  display: block;
}

.floating-note small {
  margin-bottom: 4px;
  color: var(--mint);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.floating-note strong {
  font-size: 11px;
}

.float-glasses {
  top: 150px;
  left: -15px;
  animation: float-y 4.5s ease-in-out infinite;
}

.float-privacy {
  right: -50px;
  bottom: 92px;
  animation: float-y 5.2s ease-in-out infinite reverse;
}

.glasses-icon {
  display: flex;
  width: 37px;
  height: 37px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(129, 242, 197, 0.11);
}

.glasses-icon i {
  width: 10px;
  height: 7px;
  border: 1.5px solid var(--mint);
  border-radius: 4px;
}

.glasses-icon b {
  width: 5px;
  height: 1px;
  background: var(--mint);
}

.privacy-pulse {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--mint);
  border-radius: 50%;
}

.privacy-pulse::before,
.privacy-pulse::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  border: 1px solid rgba(130, 242, 197, 0.55);
  border-radius: 50%;
}

.privacy-pulse::before {
  width: 20px;
  height: 20px;
}

.privacy-pulse::after {
  width: 6px;
  height: 6px;
  border: 0;
  background: var(--mint);
}

.proof-strip {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.5fr;
  align-items: center;
  min-height: 114px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.proof-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-strip strong {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.proof-strip > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 125px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 65px;
}

.section-heading.compact {
  max-width: 630px;
  margin-bottom: 50px;
}

.section-heading h2,
.privacy-copy h2,
.faq-intro h2,
.intelligence-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 4.5vw, 65px);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.faq-intro > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.product-story {
  background:
    linear-gradient(rgba(16, 53, 44, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 72px;
}

.story-stack {
  display: grid;
  gap: 30px;
}

.story-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  min-height: 580px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 50px rgba(7, 37, 30, 0.04);
  overflow: hidden;
}

.story-card:nth-child(even) {
  grid-template-columns: 1.12fr 0.88fr;
}

.story-card:nth-child(even) .story-copy {
  order: 2;
}

.story-copy {
  padding: 65px 56px;
}

.card-number {
  margin-bottom: 21px;
  color: var(--mint-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.story-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(31px, 3.1vw, 45px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.06;
}

.story-copy > p:not(.card-number) {
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.clean-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.clean-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.45;
}

.clean-list li::before {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  content: "✓";
  place-items: center;
  border-radius: 50%;
  color: var(--mint-dark);
  background: #d9f4e8;
  font-size: 9px;
  font-weight: 900;
}

.demo {
  position: relative;
  min-height: 580px;
  align-self: stretch;
  overflow: hidden;
}

.demo-label {
  position: absolute;
  z-index: 5;
  top: 27px;
  left: 29px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.demo-footnote {
  position: absolute;
  right: 27px;
  bottom: 20px;
  left: 27px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.demo-glasses {
  background:
    radial-gradient(circle at 50% 38%, rgba(122, 242, 195, 0.2), transparent 33%),
    linear-gradient(150deg, #102a26, #071715);
}

.glasses-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.glasses-scene::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(to bottom, rgba(4, 18, 16, 0.04) 45%, rgba(4, 18, 16, 0.74) 100%),
    linear-gradient(90deg, rgba(4, 18, 16, 0.12), transparent 20%, transparent 80%, rgba(4, 18, 16, 0.12));
  pointer-events: none;
}

.glasses-render {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  animation: cad-float 9s var(--ease) infinite;
}

.ble-wave {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 230px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(133, 255, 207, 0.18);
  border-radius: 50%;
  animation: wave-expand 3.5s ease-out infinite;
}

.wave-two {
  animation-delay: 1.1s;
}

.wave-three {
  animation-delay: 2.2s;
}

.alert-preview {
  position: absolute;
  z-index: 6;
  right: 9%;
  bottom: 68px;
  left: 9%;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(244, 250, 246, 0.94);
  color: #0c211c;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
  animation: alert-rise 7s var(--ease) infinite;
}

.alert-mark {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border: 1px solid #69bfa1;
  border-radius: 50%;
}

.alert-mark::before,
.alert-mark i {
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
}

.alert-mark::before {
  width: 24px;
  height: 24px;
  border: 1px solid #69bfa1;
}

.alert-mark i {
  width: 7px;
  height: 7px;
  background: #178864;
}

.alert-preview small,
.alert-preview strong,
.alert-preview p {
  display: block;
}

.alert-preview small {
  margin: 0 0 4px;
  color: #2b8268;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.alert-preview strong {
  font-size: 12px;
}

.alert-preview p {
  margin: 4px 0 0;
  color: #66736f;
  font-size: 9px;
}

.demo-tracker {
  background:
    radial-gradient(circle at 70% 28%, rgba(122, 198, 255, 0.14), transparent 32%),
    #e8eee8;
}

.tracker-map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(122, 198, 255, 0.12), transparent 31%),
    #e6ede8;
  overflow: hidden;
}

.tracker-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.map-place {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #31574e;
  font-size: 9px;
  font-weight: 800;
  opacity: 0.55;
  transform: translate(-50%, -50%) scale(0.92);
  transition:
    opacity 280ms ease,
    transform 350ms var(--ease);
}

.map-place.observed {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.place-icon {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(18, 100, 79, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  font-style: normal;
  box-shadow:
    0 8px 20px rgba(14, 61, 50, 0.08),
    inset 0 1px 0 white;
}

.map-place.observed .place-icon {
  border-color: rgba(14, 130, 97, 0.42);
  box-shadow:
    0 0 0 5px rgba(34, 178, 135, 0.08),
    0 8px 20px rgba(14, 61, 50, 0.11),
    inset 0 1px 0 white;
}

.map-place > span {
  margin-top: 2px;
}

.map-place > small {
  color: #7d918b;
  font-size: 6px;
  font-weight: 750;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(-2px);
  transition:
    opacity 260ms ease,
    transform 260ms var(--ease);
}

.map-place.observed > small {
  opacity: 1;
  transform: translateY(0);
}

.place-icon b,
.place-icon::before,
.place-icon::after {
  position: absolute;
  display: block;
  content: "";
}

.icon-home b {
  top: 16px;
  left: 12px;
  width: 14px;
  height: 11px;
  border: 1.5px solid #226c59;
  border-top: 0;
  border-radius: 1px 1px 3px 3px;
}

.icon-home::before {
  top: 10px;
  left: 12px;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  border-top: 1.5px solid #226c59;
  border-left: 1.5px solid #226c59;
}

.icon-home::after {
  right: 14px;
  bottom: 11px;
  width: 3px;
  height: 7px;
  border-radius: 1px 1px 0 0;
  background: #226c59;
}

.icon-stop b {
  width: 11px;
  height: 11px;
  transform: rotate(45deg);
  border: 1.5px solid #226c59;
  background: rgba(34, 108, 89, 0.07);
}

.icon-stop::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #226c59;
}

.icon-work b {
  width: 15px;
  height: 19px;
  border: 1.5px solid #226c59;
  border-radius: 2px;
  background:
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(34, 108, 89, 0.8) 3px 4px),
    repeating-linear-gradient(transparent 0 4px, rgba(34, 108, 89, 0.8) 4px 5px);
}

.icon-work::after {
  bottom: 9px;
  width: 21px;
  height: 1.5px;
  border-radius: 99px;
  background: #226c59;
}

.place-home {
  top: 70%;
  left: 17%;
}

.place-stop {
  top: 49%;
  left: 47%;
}

.place-work {
  top: 20%;
  left: 78%;
}

.map-legend {
  position: absolute;
  z-index: 5;
  top: 23px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(21, 110, 85, 0.13);
  border-radius: 999px;
  color: #58746d;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 8px 18px rgba(14, 61, 50, 0.05);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.map-legend i {
  width: 18px;
  height: 1px;
  border-top: 2px dotted #15936e;
}

.tracker-result {
  position: absolute;
  z-index: 8;
  right: 28px;
  bottom: 61px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  border-radius: 17px;
  background: rgba(10, 38, 33, 0.93);
  color: white;
  box-shadow: 0 20px 45px rgba(5, 33, 27, 0.23);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 380ms ease,
    transform 420ms var(--ease);
}

.tracker-result.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.tracker-result small,
.tracker-result strong {
  display: block;
}

.tracker-result small {
  margin-bottom: 4px;
  color: var(--amber);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.tracker-result strong {
  font-size: 12px;
}

.tracker-result > span {
  padding: 7px 10px;
  border-radius: 8px;
  color: #0b261f;
  background: var(--mint);
  font-size: 9px;
  font-weight: 850;
}

.demo-tracker .demo-footnote {
  color: #788983;
}

.demo-sweep {
  padding: 66px 33px 53px;
  background:
    radial-gradient(circle at 35% 45%, rgba(131, 242, 197, 0.12), transparent 30%),
    #0a211e;
}

.sweep-tabs {
  display: flex;
  width: max-content;
  margin: 0 auto 20px;
  padding: 4px;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.sweep-tabs span {
  padding: 8px 20px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
}

.sweep-tabs .active {
  color: #0b251f;
  background: var(--mint);
}

.floorplan {
  position: relative;
  width: 100%;
  height: 360px;
  border: 1px solid rgba(173, 255, 224, 0.19);
  border-radius: 16px;
  background: #071817;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.floorplan::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(to bottom, rgba(5, 21, 18, 0.03), rgba(5, 21, 18, 0.32)),
    radial-gradient(circle at 50% 45%, transparent 30%, rgba(2, 12, 10, 0.27) 100%);
  pointer-events: none;
}

.room-render {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04) brightness(0.9);
  transform: scale(1.025);
  animation: room-drift 12s var(--ease) infinite;
}

.sweep-origin {
  position: absolute;
  z-index: 5;
  top: 72%;
  left: 48%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--mint);
  border-radius: 50%;
  background: #0b221e;
  box-shadow:
    0 0 0 8px rgba(130, 242, 197, 0.1),
    0 0 22px var(--mint);
}

.sweep-beam {
  position: absolute;
  z-index: 4;
  top: calc(72% + 5px);
  left: calc(48% + 5px);
  width: 330px;
  height: 330px;
  transform-origin: 0 0;
  border-radius: 0 100% 0 0;
  background: conic-gradient(from -8deg at 0 0, rgba(130, 242, 197, 0.23), transparent 18deg);
  mix-blend-mode: screen;
  animation: sweep-rotate 7s linear infinite;
}

.sweep-marker {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.38));
  animation: marker-appear 7s var(--ease) infinite;
}

.sweep-marker b {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.sweep-marker small {
  padding: 5px 7px;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: white;
  background: rgba(5, 22, 19, 0.8);
  font-size: 7px;
  font-weight: 750;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.marker-check {
  color: var(--mint);
}

.marker-check b {
  background: rgba(8, 44, 36, 0.88);
}

.marker-review {
  color: var(--coral);
}

.marker-review b {
  background: rgba(65, 22, 20, 0.88);
}

.marker-smoke {
  top: 13%;
  left: 55%;
  animation-delay: 0.55s;
}

.marker-clock {
  top: 38%;
  left: 50%;
  animation-delay: 1.4s;
}

.marker-mirror {
  top: 34%;
  left: 73%;
  animation-delay: 2.25s;
}

.marker-vent {
  top: 13%;
  left: 69%;
  animation-delay: 3.1s;
}

.marker-outlet {
  top: 51%;
  right: 4%;
  flex-direction: row-reverse;
  animation-delay: 3.95s;
}

.coverage-row {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  gap: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 650;
}

.coverage-row b {
  color: var(--mint);
}

.coverage-review b {
  color: var(--coral);
}

.intelligence {
  position: relative;
  color: white;
  background:
    radial-gradient(circle at 7% 23%, rgba(125, 236, 194, 0.12), transparent 23%),
    linear-gradient(150deg, #071715, #0d2824);
}

.intelligence::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.1;
  background-image: radial-gradient(rgba(160, 255, 218, 0.7) 0.65px, transparent 0.65px);
  background-size: 18px 18px;
}

.intelligence-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.intelligence-copy {
  position: sticky;
  top: 130px;
}

.intelligence-copy > p:not(.eyebrow):not(.intelligence-note) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.75;
}

.intelligence-note {
  padding: 19px 20px;
  border-left: 2px solid var(--mint);
  color: rgba(255, 255, 255, 0.69);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  line-height: 1.65;
}

.intelligence-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.intelligence-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 145px;
  padding: 30px 0;
  border-top: 1px solid var(--dark-line);
}

.intelligence-steps li:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.intelligence-steps > li > span {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.intelligence-steps strong {
  display: block;
  margin-bottom: 9px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.intelligence-steps p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.65;
}

.differentiators {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.differentiators article {
  min-height: 270px;
  padding: 34px 27px;
  border-right: 1px solid var(--dark-line);
}

.differentiators article:first-child {
  border-left: 1px solid var(--dark-line);
}

.diff-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 35px;
  place-items: center;
  border: 1px solid rgba(130, 242, 197, 0.33);
  border-radius: 15px;
  color: var(--mint);
  background:
    linear-gradient(145deg, rgba(130, 242, 197, 0.09), rgba(130, 242, 197, 0.015)),
    rgba(3, 18, 15, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 25px rgba(0, 0, 0, 0.11);
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    background-color 220ms ease;
}

.differentiators article:hover .diff-icon {
  transform: translateY(-3px);
  border-color: rgba(130, 242, 197, 0.62);
}

.diff-filter i {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
}

.diff-filter i::after {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  content: "";
  transform: translateY(-50%);
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: #0a211d;
}

.diff-filter i:nth-child(1) {
  top: 15px;
}

.diff-filter i:nth-child(1)::after {
  left: 4px;
}

.diff-filter i:nth-child(2) {
  top: 23px;
}

.diff-filter i:nth-child(2)::after {
  right: 4px;
}

.diff-filter i:nth-child(3) {
  top: 31px;
}

.diff-filter i:nth-child(3)::after {
  left: 8px;
}

.diff-behavior i {
  position: absolute;
  top: 16px;
  left: 13px;
  width: 22px;
  height: 16px;
  transform: rotate(-8deg);
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  border-radius: 50% 45% 0 0;
}

.diff-behavior b,
.diff-behavior em {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: #0a211d;
}

.diff-behavior b {
  bottom: 13px;
  left: 11px;
}

.diff-behavior em {
  top: 11px;
  right: 10px;
}

.diff-place i {
  position: relative;
  width: 20px;
  height: 24px;
  transform: translateY(-1px);
  border: 1.5px solid currentColor;
  border-radius: 12px 12px 14px 14px;
}

.diff-place i::before {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 6px;
  height: 6px;
  content: "";
  transform: translateX(-50%);
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.diff-place i::after {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 1.5px;
  height: 5px;
  content: "";
  transform: translateX(-50%);
  background: currentColor;
}

.diff-place b {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 11px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(10, 33, 29, 0.92);
  box-shadow: 0 0 0 3px rgba(130, 242, 197, 0.08);
}

.diff-evidence i {
  position: relative;
  width: 19px;
  height: 24px;
  transform: translate(-2px, -1px);
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.diff-evidence i::before {
  position: absolute;
  top: 6px;
  left: 4px;
  width: 9px;
  height: 1px;
  content: "";
  background: currentColor;
  box-shadow:
    0 5px 0 currentColor,
    0 10px 0 currentColor;
  opacity: 0.72;
}

.diff-evidence b {
  position: absolute;
  right: 7px;
  bottom: 8px;
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: #0a211d;
}

.diff-evidence b::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 5px;
  height: 3px;
  content: "";
  transform: rotate(-45deg);
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}

.differentiators h3 {
  margin-bottom: 13px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.differentiators p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.66;
}

.process {
  background: var(--paper-warm);
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: center;
}

.process-flow article {
  min-height: 230px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.63);
}

.process-flow article > span {
  display: grid;
  width: 33px;
  height: 33px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 50%;
  color: #0c4a3a;
  background: #d6f3e7;
  font-family: Georgia, "Times New Roman", serif;
}

.process-flow h3 {
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.process-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.process-flow > i {
  color: #83a59a;
  font-style: normal;
  text-align: center;
}

.privacy-section {
  background: #f8faf6;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.privacy-visual {
  min-height: 570px;
}

.privacy-rings {
  position: relative;
  width: 540px;
  max-width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
}

.privacy-ring {
  position: absolute;
  border: 1px solid rgba(16, 117, 87, 0.16);
  border-radius: 50%;
}

.ring-a {
  inset: 2%;
  animation: orbit-spin 30s linear infinite;
}

.ring-b {
  inset: 17%;
  border-style: dashed;
  animation: orbit-spin 20s linear infinite reverse;
}

.ring-c {
  inset: 32%;
}

.privacy-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 170px;
  height: 245px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) rotate(-4deg);
  border: 4px solid #13352d;
  border-radius: 27px;
  color: white;
  background:
    radial-gradient(circle at 50% 35%, rgba(130, 242, 197, 0.17), transparent 28%),
    #0b2420;
  box-shadow: var(--shadow);
}

.lock-body {
  position: relative;
  display: block;
  width: 53px;
  height: 48px;
  margin-bottom: 28px;
  border: 1.5px solid var(--mint);
  border-radius: 12px;
}

.lock-body::before {
  position: absolute;
  top: -26px;
  left: 50%;
  width: 28px;
  height: 30px;
  content: "";
  transform: translateX(-50%);
  border: 1.5px solid var(--mint);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.lock-body i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 15px;
  transform: translate(-50%, -50%);
  border-radius: 99px;
  background: var(--mint);
}

.privacy-phone strong {
  margin-bottom: 7px;
  font-size: 13px;
}

.privacy-phone small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

.orbit-label {
  position: absolute;
  padding: 9px 13px;
  border: 1px solid rgba(18, 110, 83, 0.12);
  border-radius: 999px;
  color: #41675d;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(11, 72, 55, 0.08);
  font-size: 10px;
  font-weight: 750;
}

.orbit-label::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  content: "";
  border-radius: 50%;
  background: #2db98d;
}

.label-history {
  top: 15%;
  left: 11%;
}

.label-location {
  top: 30%;
  right: 3%;
}

.label-signals {
  right: 10%;
  bottom: 15%;
}

.privacy-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.privacy-points {
  display: grid;
  margin-top: 36px;
  gap: 23px;
}

.privacy-points > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.privacy-points > div > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--mint-dark);
  background: #d9f4e8;
  font-size: 11px;
  font-weight: 900;
}

.privacy-points p,
.privacy-points strong,
.privacy-points small {
  display: block;
}

.privacy-points p {
  margin: 0;
}

.privacy-points strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.privacy-points small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.honesty {
  padding-top: 0;
  background: #f8faf6;
}

.honesty-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  padding: 65px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 6% 15%, rgba(244, 197, 114, 0.13), transparent 24%),
    #102623;
}

.honesty-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 630;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.honesty-copy {
  padding-top: 38px;
}

.honesty-copy p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.72;
}

.honesty-copy p:last-child {
  margin-bottom: 0;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 95px;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.025em;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint-dark);
  font-size: 20px;
  font-weight: 400;
  transition: transform 250ms var(--ease);
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 670px;
  margin: -8px 55px 30px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.download {
  position: relative;
  padding: 125px 0;
  color: white;
  background:
    radial-gradient(circle at 50% 10%, rgba(99, 225, 176, 0.19), transparent 31%),
    linear-gradient(150deg, #061412, #0c2924);
  overflow: hidden;
}

.download-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.download-icon {
  display: block;
  width: 76px;
  height: 76px;
  margin-bottom: 35px;
  border: 1px solid rgba(132, 247, 210, 0.28);
  border-radius: 22px;
  object-fit: cover;
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(58, 240, 198, 0.12);
}

.download-inner h2 {
  margin-bottom: 23px;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 640;
  letter-spacing: -0.064em;
  line-height: 1;
}

.download-inner > p {
  max-width: 590px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 16px;
  line-height: 1.7;
}

.button-store {
  min-width: 185px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--ink);
  background: white;
}

.button-store.muted {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.button-store[aria-disabled="true"] {
  cursor: default;
}

.launch-note {
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.39);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer {
  padding: 75px 0 28px;
  color: rgba(255, 255, 255, 0.64);
  background: #061311;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.7fr;
  padding-bottom: 55px;
  gap: 70px;
}

.footer-brand {
  margin-bottom: 20px;
  color: white;
}

.footer-grid > div:first-child > p {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.41);
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: white;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  line-height: 1.55;
}

.footer-bottom span:last-child {
  max-width: 520px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes signal-blink {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  45% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes cad-float {
  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }
  50% {
    transform: scale(1.035) translateY(-5px);
  }
}

@keyframes room-drift {
  0%,
  100% {
    transform: scale(1.025) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.045) translate3d(-3px, -2px, 0);
  }
}

@keyframes wave-expand {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }
  20% {
    opacity: 1;
  }
  85%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.55);
  }
}

@keyframes alert-rise {
  0%,
  18% {
    opacity: 0;
    transform: translateY(35px) scale(0.97);
  }
  28%,
  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  90%,
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.99);
  }
}

@keyframes sweep-rotate {
  from {
    transform: rotate(-120deg);
  }
  to {
    transform: rotate(240deg);
  }
}

@keyframes marker-appear {
  0%,
  10%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }
  17%,
  82% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    padding-bottom: 120px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero-product {
    width: min(620px, 100%);
    margin: -10px auto 40px;
  }

  .proof-strip {
    position: relative;
    width: 100%;
    margin-top: 15px;
    padding: 30px max(24px, calc((100vw - var(--shell)) / 2));
  }

  .story-card,
  .story-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .story-card:nth-child(even) .story-copy {
    order: 0;
  }

  .demo {
    min-height: 520px;
  }

  .intelligence-layout {
    gap: 55px;
  }

  .differentiators {
    grid-template-columns: 1fr 1fr;
  }

  .differentiators article:nth-child(2) {
    border-right: 1px solid var(--dark-line);
  }

  .differentiators article:nth-child(3) {
    border-left: 1px solid var(--dark-line);
    border-top: 1px solid var(--dark-line);
  }

  .differentiators article:nth-child(4) {
    border-top: 1px solid var(--dark-line);
  }

  .privacy-layout {
    gap: 50px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 32px, 640px);
    --radius-lg: 27px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    height: 68px;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    gap: 6px;
  }

  .menu-button span {
    display: block;
    width: 17px;
    height: 1px;
    background: white;
    transition: transform 220ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 32px;
    gap: 24px;
    background: rgba(5, 21, 19, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    font-size: 26px;
    letter-spacing: -0.035em;
  }

  .nav-cta {
    margin-top: 10px;
    padding: 12px 20px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero-product {
    min-height: 600px;
    margin-top: 15px;
  }

  .phone {
    width: 278px;
    height: 570px;
  }

  .float-glasses {
    top: 124px;
    left: -8px;
  }

  .float-privacy {
    right: -8px;
    bottom: 65px;
  }

  .signal-field {
    top: 20px;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translateX(-50%);
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .faq-intro h2,
  .intelligence-copy h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .story-copy {
    padding: 45px 28px;
  }

  .demo,
  .story-card {
    min-height: 490px;
  }

  .demo-sweep {
    padding-inline: 20px;
  }

  .intelligence-layout,
  .privacy-layout,
  .faq-layout,
  .honesty-card {
    grid-template-columns: 1fr;
  }

  .intelligence-layout {
    gap: 50px;
  }

  .intelligence-copy,
  .faq-intro {
    position: static;
  }

  .differentiators {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .differentiators article,
  .differentiators article:first-child,
  .differentiators article:nth-child(3) {
    min-height: 0;
    border-top: 1px solid var(--dark-line);
    border-right: 1px solid var(--dark-line);
    border-left: 1px solid var(--dark-line);
  }

  .differentiators article:first-child {
    border-top: 0;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-flow > i {
    transform: rotate(90deg);
  }

  .process-flow article {
    min-height: 0;
  }

  .privacy-layout {
    gap: 30px;
  }

  .privacy-visual {
    min-height: 440px;
  }

  .privacy-rings {
    width: 430px;
  }

  .honesty-card {
    gap: 0;
    padding: 42px 27px;
  }

  .honesty-copy {
    padding-top: 28px;
  }

  .faq-layout {
    gap: 45px;
  }

  .download-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .trust-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-product {
    min-height: 540px;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .float-glasses {
    left: -33px;
  }

  .float-privacy {
    right: -34px;
  }

  .floating-note {
    padding: 11px;
  }

  .demo,
  .story-card {
    min-height: 455px;
  }

  .alert-preview {
    right: 18px;
    left: 18px;
  }

  .floorplan {
    height: 305px;
  }

  .coverage-row {
    gap: 12px;
  }

  .privacy-visual {
    min-height: 350px;
  }

  .privacy-rings {
    width: 350px;
  }

  .privacy-phone {
    width: 136px;
    height: 206px;
  }

  .orbit-label {
    padding: 7px 9px;
    font-size: 8px;
  }

  .accordion summary {
    min-height: 82px;
    font-size: 16px;
  }

  .download-inner h2 {
    font-size: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
