:root {
  color-scheme: light;
  --ink: #071b2d;
  --ink-soft: #173148;
  --paper: #f6f4ed;
  --white: #ffffff;
  --leaf: #2b745e;
  --aqua: #18d7d0;
  --amber: #ffad20;
  --muted: #61707c;
  --line: rgba(7, 27, 45, 0.1);
  --shadow: 0 28px 80px rgba(7, 27, 45, 0.14);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-nav {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 28px), 1080px);
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(250, 250, 247, 0.76);
  box-shadow: 0 12px 44px rgba(7, 27, 45, 0.08);
  backdrop-filter: blur(22px) saturate(160%);
  transform: translateX(-50%);
}

.wordmark,
.nav-links,
.nav-cta,
.hero-actions,
.trust-row,
.footer-links {
  display: flex;
  align-items: center;
}

.wordmark {
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.wordmark img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(7, 27, 45, 0.18);
}

.nav-links {
  gap: 26px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 40px;
  padding: 0 17px;
  color: var(--white);
  background: var(--ink);
}

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

.landing-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 138px 24px 78px;
  background:
    radial-gradient(circle at 82% 16%, rgba(24, 215, 208, 0.2), transparent 27%),
    radial-gradient(circle at 12% 82%, rgba(43, 116, 94, 0.16), transparent 25%),
    linear-gradient(145deg, #f8f6ef 0%, #eef5f1 52%, #f8f6ef 100%);
}

.hero-orbit,
.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(43, 116, 94, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-orbit {
  top: 17%;
  left: 64%;
  width: 610px;
  height: 610px;
  animation: rotate 24s linear infinite;
}

.hero-orbit::before {
  inset: 70px;
}

.hero-orbit::after {
  inset: 156px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1160px);
  margin: 0 auto;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 76px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7.1vw, 96px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero-copy h1 span {
  color: var(--leaf);
}

.lede {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.45;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 0 23px;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(7, 27, 45, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.liquid-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.liquid-button span {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  text-align: center;
  transition: color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-button::before,
.liquid-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.liquid-button::before {
  inset: -50% -24%;
  border-radius: 44%;
  background: linear-gradient(115deg, #0b2940 4%, #155d73 48%, #2b745e 100%);
  transform: translateX(-116%) rotate(-5deg);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-button::after {
  width: 42%;
  height: 210%;
  top: -55%;
  left: -50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(12px);
  transform: rotate(18deg);
  transition: left 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-button:hover,
.liquid-button:focus-visible {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(11, 41, 64, 0.22);
  transform: translateY(-2px);
}

.liquid-button:hover::before,
.liquid-button:focus-visible::before {
  transform: translateX(0) rotate(0deg);
}

.liquid-button:hover::after,
.liquid-button:focus-visible::after {
  left: 108%;
}

.button-primary.liquid-button::before {
  background: linear-gradient(110deg, #155d73 0%, #2b745e 48%, #0b2940 100%);
}

.button-primary.liquid-button:hover,
.button-primary.liquid-button:focus-visible {
  color: #fff;
}

.trust-row {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.trust-row span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
}

.device-stage {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  perspective: 1200px;
}

.device {
  position: relative;
  width: min(100%, 342px);
  aspect-ratio: 0.49;
  overflow: hidden;
  padding: 10px;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 56px;
  background: #07131e;
  box-shadow: 0 44px 100px rgba(7, 27, 45, 0.28);
  transform: rotateY(-8deg) rotateX(3deg);
  animation: device-float 6s ease-in-out infinite;
}

.device::before {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  width: 104px;
  height: 28px;
  border-radius: 18px;
  background: #07131e;
  content: "";
  transform: translateX(-50%);
}

.map-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 45px;
  background:
    linear-gradient(32deg, transparent 43%, rgba(255, 255, 255, 0.86) 44% 47%, transparent 48%),
    linear-gradient(123deg, transparent 46%, rgba(255, 255, 255, 0.78) 47% 50%, transparent 51%),
    repeating-linear-gradient(12deg, rgba(7, 27, 45, 0.08) 0 2px, transparent 2px 44px),
    repeating-linear-gradient(99deg, rgba(7, 27, 45, 0.08) 0 2px, transparent 2px 52px),
    #dfe9df;
}

.map-screen::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent 50%, rgba(7, 27, 45, 0.08));
  content: "";
}

.map-top {
  position: absolute;
  z-index: 2;
  top: 46px;
  right: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.area-pill,
.map-avatar {
  display: grid;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(7, 27, 45, 0.12);
  backdrop-filter: blur(12px);
  place-items: center;
}

.area-pill {
  padding: 0 16px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 750;
}

.map-avatar {
  width: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  border: 4px solid white;
  border-radius: 50% 50% 50% 7px;
  color: white;
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(7, 27, 45, 0.28);
  transform: rotate(-45deg);
  place-items: center;
}

.map-pin span {
  font-weight: 900;
  transform: rotate(45deg);
}

.pin-one {
  top: 28%;
  left: 24%;
  background: #c03c39;
}

.pin-two {
  top: 48%;
  right: 20%;
  background: #6751e8;
}

.pin-three {
  bottom: 27%;
  left: 38%;
  background: var(--leaf);
}

.map-nav {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 18px;
  left: 16px;
  display: grid;
  height: 58px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(7, 27, 45, 0.18);
  backdrop-filter: blur(15px);
  grid-template-columns: repeat(3, 1fr);
}

.map-nav span {
  display: grid;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  place-items: center;
}

.map-nav .active {
  border-radius: 24px;
  color: var(--white);
  background: var(--ink);
}

.report-fab {
  position: absolute;
  z-index: 4;
  bottom: 80px;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  border: 5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: white;
  background: var(--ink);
  box-shadow: 0 13px 30px rgba(7, 27, 45, 0.28);
  font-size: 29px;
  font-weight: 400;
  transform: translateX(-50%);
  place-items: center;
}

.signal-card {
  position: absolute;
  z-index: 4;
  right: -28px;
  bottom: 100px;
  width: 210px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  animation: card-float 5s ease-in-out infinite reverse;
}

.signal-card strong,
.signal-card span {
  display: block;
}

.signal-card strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.signal-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.section {
  padding: 120px 24px;
}

.section-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading h2,
.closing h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 70px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading p,
.closing p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(7, 27, 45, 0.06);
}

.feature-card:nth-child(2) {
  color: white;
  background: var(--ink);
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 68px;
  border-radius: 19px;
  color: var(--leaf);
  background: rgba(43, 116, 94, 0.11);
  font-size: 26px;
  font-weight: 800;
  place-items: center;
}

.feature-card:nth-child(2) .feature-icon {
  color: var(--aqua);
  background: rgba(24, 215, 208, 0.12);
}

.feature-card h3 {
  margin-bottom: 11px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.68);
}

.privacy-section {
  color: white;
  background:
    radial-gradient(circle at 14% 20%, rgba(24, 215, 208, 0.17), transparent 27%),
    var(--ink);
}

.privacy-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

.privacy-lock {
  position: relative;
  display: grid;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 215, 208, 0.17), rgba(24, 215, 208, 0.02) 55%, transparent 56%);
  font-size: 92px;
  place-items: center;
}

.privacy-lock::before,
.privacy-lock::after {
  position: absolute;
  border: 1px solid rgba(24, 215, 208, 0.16);
  border-radius: 50%;
  content: "";
}

.privacy-lock::before {
  inset: 46px;
}

.privacy-lock::after {
  inset: 90px;
}

.privacy-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.privacy-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.privacy-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.privacy-point b {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--aqua);
  place-items: center;
}

.privacy-point span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.closing {
  padding: 130px 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 173, 32, 0.15), transparent 20%),
    var(--paper);
}

.closing-inner {
  width: min(100%, 800px);
  margin: 0 auto;
}

.closing .button {
  display: inline-flex;
  margin-top: 14px;
}

.safety-note {
  width: min(calc(100% - 48px), 900px);
  margin: 0 auto 80px;
  padding: 20px 24px;
  border: 1px solid rgba(192, 60, 57, 0.16);
  border-radius: 22px;
  color: #8f2e2b;
  background: rgba(192, 60, 57, 0.06);
  text-align: center;
  line-height: 1.5;
}

.site-footer {
  padding: 30px 24px 40px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  width: min(100%, 1080px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  flex-wrap: wrap;
  gap: 18px;
}

.launch-page {
  min-height: 100svh;
  overflow: hidden;
  padding: 30px 22px;
  background:
    radial-gradient(circle at 78% 14%, rgba(24, 215, 208, 0.22), transparent 26%),
    radial-gradient(circle at 20% 88%, rgba(43, 116, 94, 0.22), transparent 25%),
    linear-gradient(145deg, #f8f6ef, #edf4f0);
}

.launch-page::before,
.launch-page::after {
  position: fixed;
  border: 1px solid rgba(43, 116, 94, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.launch-page::before {
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  animation: rotate 28s linear infinite;
}

.launch-page::after {
  bottom: -220px;
  left: -160px;
  width: 480px;
  height: 480px;
}

.launch-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 580px);
  min-height: calc(100svh - 60px);
  margin: 0 auto;
  place-items: center;
}

.launch-card {
  width: 100%;
  padding: clamp(32px, 7vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(24px) saturate(160%);
}

.launch-logo-wrap {
  position: relative;
  display: grid;
  width: 118px;
  height: 118px;
  margin: 0 auto 28px;
  place-items: center;
}

.launch-logo-wrap::before,
.launch-logo-wrap::after {
  position: absolute;
  border: 1px solid rgba(43, 116, 94, 0.22);
  border-radius: 50%;
  content: "";
  animation: launch-ripple 2.4s ease-out infinite;
}

.launch-logo-wrap::before {
  inset: -10px;
}

.launch-logo-wrap::after {
  inset: -26px;
  animation-delay: 0.7s;
}

.launch-logo {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 25px;
  box-shadow: 0 16px 36px rgba(7, 27, 45, 0.24);
  animation: logo-breathe 2.6s ease-in-out infinite;
}

.launch-kicker {
  margin-bottom: 12px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.launch-card h1 {
  margin-bottom: 13px;
  font-size: clamp(34px, 8vw, 48px);
  letter-spacing: -0.05em;
}

.launch-message {
  max-width: 430px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.countdown {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--ink);
  background: conic-gradient(var(--leaf) var(--countdown-progress, 0%), rgba(43, 116, 94, 0.1) 0);
  font-size: 22px;
  font-weight: 800;
  place-items: center;
}

.countdown::before {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  content: "";
}

.countdown span {
  position: relative;
}

.launch-button {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: white;
  background: var(--ink);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(7, 27, 45, 0.17);
}

.launch-footnote {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.launch-error {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 16px;
  color: #912f2c;
  background: rgba(192, 60, 57, 0.08);
  font-size: 14px;
  line-height: 1.45;
}

.launch-card[data-state="error"] .countdown,
.launch-card[data-state="error"] .launch-button {
  display: none;
}

.launch-card[data-state="error"] .launch-error {
  display: block;
}

.legal-page {
  min-height: 100svh;
  padding: 130px 24px 80px;
  background: linear-gradient(145deg, #f8f6ef, #eff5f1);
}

.legal-card {
  width: min(100%, 840px);
  margin: 0 auto;
  padding: clamp(30px, 7vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing: -0.055em;
}

.legal-card h2 {
  margin-top: 38px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
  line-height: 1.68;
}

.legal-card li + li {
  margin-top: 9px;
}

.legal-card .updated {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes device-float {
  0%,
  100% {
    transform: rotateY(-8deg) rotateX(3deg) translateY(0);
  }
  50% {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-14px);
  }
}

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

@keyframes launch-ripple {
  0% {
    opacity: 0.65;
    transform: scale(0.78);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

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

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

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

  .landing-hero {
    padding-top: 126px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-copy {
    text-align: center;
  }

  .lede,
  .hero-actions,
  .trust-row {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .device-stage {
    min-height: 600px;
  }

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

  .feature-card {
    min-height: 270px;
  }

  .feature-icon {
    margin-bottom: 42px;
  }

  .privacy-copy {
    text-align: center;
  }

  .privacy-point {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-nav {
    min-height: 54px;
    border-radius: 20px;
  }

  .wordmark span {
    display: none;
  }

  .nav-cta {
    font-size: 13px;
  }

  .landing-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .device-stage {
    min-height: 560px;
  }

  .device {
    width: 300px;
  }

  .signal-card {
    right: -4px;
  }

  .section {
    padding: 88px 18px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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