:root {
  --bg: #041114;
  --bg-deep: #02090b;
  --panel: rgba(10, 35, 41, 0.72);
  --panel-strong: rgba(8, 29, 34, 0.94);
  --line: rgba(121, 245, 239, 0.13);
  --text: #edfdfb;
  --muted: #9db9b8;
  --muted-2: #749392;
  --cyan: #38efe2;
  --cyan-2: #7af7ee;
  --teal: #1bb7b2;
  --blue: #2778ff;
  --danger: #ff717f;
  --shadow: 0 30px 90px rgba(0, 0, 0, .36);
  --radius: 28px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 8%, rgba(30, 176, 179, .09), transparent 30%),
    linear-gradient(180deg, #05171a 0%, var(--bg) 35%, #02090b 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::selection { background: rgba(56, 239, 226, .28); color: white; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: #071619;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}
.section { padding: 118px 0; position: relative; }
.section-tight { padding-top: 92px; padding-bottom: 92px; }

.ambient {
  position: fixed;
  z-index: -3;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .22;
  pointer-events: none;
}
.ambient-one { background: #06e4d2; left: -270px; top: 18%; }
.ambient-two { background: #176cff; right: -320px; top: 45%; opacity: .14; }
.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .025;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.65) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(3, 15, 18, .52);
  backdrop-filter: blur(20px) saturate(140%);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(3, 15, 18, .82);
}
.nav-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.025em;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #b8cecd;
  font-size: .92rem;
}
.site-nav a { transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; }
.menu-toggle { display: none; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 750;
  font-size: .94rem;
  letter-spacing: -.015em;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #031819;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  box-shadow: 0 12px 35px rgba(56, 239, 226, .18);
}
.button-primary:hover { box-shadow: 0 18px 45px rgba(56, 239, 226, .24); }
.button-ghost {
  border-color: rgba(201,255,251,.14);
  background: rgba(255,255,255,.025);
  color: #dff8f6;
}
.button-ghost:hover { border-color: rgba(201,255,251,.28); background: rgba(255,255,255,.05); }
.button-glass {
  border-color: rgba(201,255,251,.12);
  background: rgba(255,255,255,.04);
}
.button-small { min-height: 42px; padding: 0 16px; border-radius: 14px; }
.button-disabled { opacity: .86; cursor: default; }
.button-disabled:hover { transform: none; }

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  align-items: center;
  gap: 64px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #8eece5;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
  font-size: .73rem;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(56,239,226,.1), 0 0 20px rgba(56,239,226,.65);
  animation: beacon 2s ease-in-out infinite;
}
@keyframes beacon {
  50% { box-shadow: 0 0 0 10px rgba(56,239,226,.02), 0 0 30px rgba(56,239,226,.9); }
}
.hero h1 {
  margin: 20px 0 22px;
  max-width: 820px;
  font-size: clamp(3.35rem, 6.7vw, 6.45rem);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 880;
}
.gradient-text {
  background: linear-gradient(115deg, #eafffd 0%, #7ef7ed 38%, #3de7dc 62%, #7aa9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 700px;
  margin: 0;
  color: #a8c2c1;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 32px;
  color: #789795;
  font-size: .84rem;
}
.trust-strip span { position: relative; padding-left: 16px; }
.trust-strip span::before {
  content: "";
  position: absolute; left: 0; top: .72em;
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--cyan);
}
.trust-strip b { color: #b9d1d0; font-weight: 650; }

.hero-visual {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 1200px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 490px; height: 490px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 237, 223, .18), rgba(28, 122, 255, .04) 48%, transparent 70%);
  filter: blur(10px);
  z-index: -2;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(84, 245, 235, .12);
  z-index: -1;
}
.orbit-one { width: 530px; height: 530px; animation: orbitSpin 18s linear infinite; }
.orbit-two { width: 430px; height: 430px; border-style: dashed; animation: orbitSpin 26s linear infinite reverse; }
.orbit::after {
  content: "";
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #58f5e9;
  box-shadow: 0 0 18px #58f5e9;
  top: 23px; left: 96px;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.logo-beacon {
  position: absolute;
  width: 100px; height: 100px;
  right: 14px; top: 72px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.32));
  animation: float 5.2s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-12px) rotate(2deg); } }

.phone {
  width: 310px;
  min-height: 590px;
  border-radius: 44px;
  border: 1px solid rgba(176, 255, 250, .16);
  padding: 16px 15px 19px;
  background:
    linear-gradient(180deg, rgba(13, 45, 51, .96), rgba(4, 18, 22, .98)),
    #061417;
  box-shadow: 0 45px 110px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.06);
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(-2deg);
  position: relative;
  overflow: hidden;
}
.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.05), transparent 25% 73%, rgba(64,239,226,.03));
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 6px 12px;
  font-size: .65rem;
  color: #a6bebc;
}
.phone-sensors { display: flex; gap: 3px; align-items: end; }
.phone-sensors i { width: 3px; height: 5px; border-radius: 2px; background: #9ec6c2; }
.phone-sensors i:nth-child(2) { height: 7px; }
.phone-sensors i:nth-child(3) { width: 12px; height: 5px; }

.app-head { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 9px 2px 14px; }
.app-head img { width: 34px; height: 34px; }
.app-head small, .status-card small, .mock-action small, .mini-map small, .floating-card small { color: #789391; font-size: .64rem; display: block; }
.app-head strong { display: block; font-size: .9rem; }
.app-head button { color: #89aaa8; border: 0; background: transparent; letter-spacing: .1em; }

.status-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(68,241,226,.14);
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(48,220,207,.11), rgba(27,96,139,.06));
}
.status-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 16px;
  color: #001b1a;
  background: linear-gradient(145deg, #85fff6, #3debdc);
  box-shadow: 0 12px 25px rgba(46,238,223,.18);
  font-weight: 900;
}
.status-card h3 { margin: 1px 0 0; font-size: 1rem; letter-spacing: -.03em; }
.status-card p { margin: 1px 0 0; color: #799895; font-size: .67rem; }

.mock-action {
  width: 100%;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.06);
  color: white;
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.025);
  text-align: left;
}
.mock-action-icon {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 13px;
  color: var(--cyan);
  background: rgba(56,239,226,.08);
}
.mock-action b { font-size: .75rem; font-weight: 720; }

.mini-map {
  margin-top: 12px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  background: #071b20;
}
.mini-map-head {
  display: flex;
  justify-content: space-between;
  padding: 13px 14px 10px;
}
.mini-map-head b { display: block; font-size: .78rem; }
.mini-map-head > span {
  align-self: center;
  color: #8fc6c2;
  font-size: .62rem;
  border: 1px solid rgba(79,237,225,.13);
  border-radius: 9px;
  padding: 4px 7px;
}
.map-field {
  height: 184px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(45,208,197,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,208,197,.055) 1px, transparent 1px),
    radial-gradient(circle at 45% 45%, #0c3038, #06161a 68%);
  background-size: 34px 34px, 34px 34px, auto;
}
.coast {
  position: absolute;
  border: 2px solid rgba(118,214,204,.14);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 70% 35% 66% 36%;
  transform: rotate(37deg);
}
.c1 { width: 28px; height: 86px; left: 131px; top: 30px; }
.c2 { width: 16px; height: 66px; left: 166px; top: 86px; transform: rotate(-28deg); }
.c3 { width: 15px; height: 38px; left: 106px; top: 92px; transform: rotate(80deg); }
.c4 { width: 12px; height: 30px; left: 142px; top: 129px; transform: rotate(20deg); }
.quake, .province-pin {
  position: absolute;
  display: block;
  border-radius: 50%;
  z-index: 3;
}
.quake {
  background: #5cf5e9;
  box-shadow: 0 0 0 4px rgba(92,245,233,.08), 0 0 16px rgba(92,245,233,.5);
}
.q1 { width: 8px; height: 8px; left: 92px; top: 71px; }
.q2 { width: 12px; height: 12px; left: 191px; top: 48px; background: #ffd05d; box-shadow: 0 0 0 5px rgba(255,208,93,.08), 0 0 18px rgba(255,208,93,.35); }
.q3 { width: 6px; height: 6px; left: 158px; top: 117px; }
.q4 { width: 10px; height: 10px; left: 76px; top: 137px; background: #ff8e72; box-shadow: 0 0 0 5px rgba(255,142,114,.07); }
.province-pin { width: 7px; height: 7px; left: 140px; top: 79px; background: white; box-shadow: 0 0 0 4px rgba(255,255,255,.09); }

.floating-card {
  position: absolute;
  min-width: 190px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 17px;
  border: 1px solid rgba(136,244,237,.13);
  background: rgba(7, 27, 32, .84);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 45px rgba(0,0,0,.3);
  z-index: 3;
}
.floating-card b { display: block; font-size: .73rem; }
.float-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 13px;
  color: var(--cyan);
  background: rgba(56,239,226,.09);
  font-weight: 800;
}
.float-one { left: 1px; top: 162px; animation: float 6s ease-in-out infinite .6s; }
.float-two { right: -10px; bottom: 88px; animation: float 5.7s ease-in-out infinite 1.2s; }

.signal-band {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(51,238,224,.035), rgba(48,106,204,.025));
}
.signal-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.signal-icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(91,247,235,.22);
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(63,240,226,.07);
  font-weight: 900;
}
.signal-inner p { color: #9cb8b7; margin: 0; }
.signal-inner strong { color: #eafcfb; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2 {
  margin: 14px 0 15px;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.058em;
}
.section-heading p { color: #91aeac; font-size: 1.04rem; margin: 0; max-width: 680px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step-card, .bento-card, .truth-card {
  border: 1px solid rgba(158,245,238,.09);
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 42%),
    rgba(7, 25, 29, .65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.step-card {
  min-height: 315px;
  padding: 26px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.step-card:hover { transform: translateY(-7px); border-color: rgba(99,244,233,.2); background: rgba(9,32,37,.82); }
.step-card::after {
  content: "";
  position: absolute; width: 150px; height: 150px;
  border-radius: 50%; background: rgba(52,229,216,.07);
  right: -80px; bottom: -80px; filter: blur(5px);
}
.step-number { color: #567775; font-weight: 800; letter-spacing: .08em; font-size: .72rem; }
.step-icon {
  margin-top: 49px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 15px;
  color: var(--cyan);
  background: rgba(56,239,226,.07);
  border: 1px solid rgba(56,239,226,.1);
  font-weight: 800;
}
.step-card h3 { margin: 20px 0 10px; font-size: 1.05rem; letter-spacing: -.025em; }
.step-card p { color: #7f9c9a; margin: 0; font-size: .88rem; line-height: 1.65; }

.feature-showcase { border-top: 1px solid rgba(99,239,229,.06); }
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.bento-card {
  grid-column: span 4;
  min-height: 260px;
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.bento-card:hover { transform: translateY(-5px); border-color: rgba(87,239,229,.18); }
.bento-large { grid-column: span 7; min-height: 365px; }
.map-card { grid-column: span 5; min-height: 365px; }
.bento-wide { grid-column: span 8; }
.card-label {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 9px;
  background: rgba(52,233,219,.07);
  color: #79dfd8;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.bento-card h3 {
  max-width: 630px;
  margin: 19px 0 12px;
  font-size: clamp(1.38rem, 2.4vw, 2.12rem);
  line-height: 1.1;
  letter-spacing: -.045em;
}
.bento-card p { max-width: 620px; margin: 0; color: #84a19f; font-size: .9rem; }
.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.brand-cloud span, .magnitude-scale span {
  border: 1px solid rgba(157,242,235,.08);
  background: rgba(255,255,255,.025);
  color: #91afad;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: .72rem;
}
.map-card::after {
  content: "";
  position: absolute;
  width: 250px; height: 250px; border-radius: 50%;
  right: -70px; bottom: -100px;
  background: radial-gradient(circle, rgba(50,237,222,.11), transparent 65%);
}
.magnitude-scale { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 28px; }
.magnitude-scale span:nth-child(4) { color: #f4d274; }
.magnitude-scale span:nth-child(5) { color: #ffad73; }
.magnitude-scale span:nth-child(6) { color: #ff7f8f; }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #8df0e9;
  margin-top: 24px;
  font-size: .86rem;
  font-weight: 700;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.progress-demo { margin-top: 30px; }
.progress-demo > div:first-child { display: flex; justify-content: space-between; color: #87a4a2; font-size: .76rem; }
.progress-demo b { color: white; }
.progress-track {
  margin-top: 8px;
  height: 8px;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.progress-track i {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #34e8da, #6ff8ee);
  box-shadow: 0 0 16px rgba(52,232,218,.26);
}
.wide-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 30px; align-items: end; }
.status-demo {
  align-self: stretch;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.022);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.status-demo small { color: #73908e; }
.status-demo strong { margin-top: 7px; font-size: 1.2rem; }
.status-demo span { color: #789593; font-size: .73rem; }
.status-demo button {
  margin-top: auto;
  border: 0;
  border-radius: 12px;
  min-height: 38px;
  background: rgba(56,239,226,.09);
  color: #8bf5ed;
  font-weight: 750;
  cursor: pointer;
}

.privacy-section {
  border-block: 1px solid rgba(112,240,231,.06);
  background: linear-gradient(180deg, rgba(42,213,201,.025), transparent);
}
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.privacy-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.privacy-console {
  border: 1px solid rgba(110,241,231,.12);
  border-radius: 28px;
  padding: 16px;
  background: rgba(5, 22, 26, .86);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.035);
}
.console-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 14px;
  color: #83a3a1;
  font-size: .78rem;
}
.console-head span { margin-right: auto; }
.console-head i { width: 7px; height: 7px; border-radius: 50%; background: #214145; }
.data-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px;
  border-top: 1px solid rgba(255,255,255,.045);
  color: #7f9b99;
  font-size: .82rem;
}
.data-row b { color: #d9efed; font-weight: 650; text-align: right; }
.console-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 12px;
}
.console-actions span {
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  color: #87ded8;
  background: rgba(63,235,222,.06);
  font-size: .75rem;
  font-weight: 700;
}
.console-actions .danger { color: #ff9da6; background: rgba(255,113,127,.06); }

.truth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.truth-card { padding: 25px; border-radius: 22px; min-height: 235px; }
.truth-card > span { color: #587775; font-size: .7rem; font-weight: 800; }
.truth-card h3 { margin: 50px 0 9px; font-size: 1.02rem; letter-spacing: -.025em; }
.truth-card p { margin: 0; color: #7d9b99; font-size: .84rem; }
.source-panel {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  border: 1px solid rgba(122,245,236,.1);
  border-radius: var(--radius);
  padding: 34px;
  background: linear-gradient(135deg, rgba(48,224,211,.045), rgba(38,88,163,.025));
}
.source-panel small { color: #64b7b2; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; font-size: .68rem; }
.source-panel h3 { margin: 9px 0 9px; font-size: 1.55rem; letter-spacing: -.035em; }
.source-panel p { color: #7e9a98; margin: 0; font-size: .88rem; }
.source-links { display: grid; gap: 8px; }
.source-links a, .legal-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 13px;
  color: #a8c9c7;
  background: rgba(255,255,255,.018);
  font-size: .79rem;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.source-links a:hover, .legal-links a:hover { color: white; border-color: rgba(92,242,231,.16); transform: translateX(2px); }

.faq-list { border-top: 1px solid rgba(255,255,255,.06); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 44px 23px 0;
  font-size: 1rem;
  font-weight: 720;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 5px; top: 50%;
  transform: translateY(-50%);
  color: #7dece4;
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: -4px 0 24px; max-width: 850px; color: #809c9a; font-size: .9rem; }

.download-card {
  min-height: 300px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 42px;
  border-radius: 34px;
  border: 1px solid rgba(107,245,235,.14);
  background:
    linear-gradient(135deg, rgba(55,227,214,.075), rgba(35,104,181,.035)),
    rgba(5,22,26,.8);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.download-card > * { position: relative; z-index: 2; }
.download-card > img { width: 100px; filter: drop-shadow(0 18px 35px rgba(21,224,211,.16)); }
.download-card h2 { margin: 8px 0 8px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.055em; }
.download-card p { margin: 0; color: #839f9d; max-width: 670px; }
.download-glow {
  position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,231,218,.14), transparent 68%);
  right: -110px; top: -170px;
}
.download-actions { display: grid; gap: 8px; min-width: 210px; }

.site-footer {
  border-top: 1px solid rgba(110,241,231,.07);
  padding: 60px 0 24px;
  color: #7d9a98;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; }
.footer-grid > div:first-child p { max-width: 380px; font-size: .82rem; }
.footer-links { display: grid; grid-template-columns: .7fr .7fr 1.6fr; gap: 30px; }
.footer-links > div { display: grid; align-content: start; gap: 9px; }
.footer-links strong { color: #d9eeec; font-size: .78rem; margin-bottom: 2px; }
.footer-links a { font-size: .78rem; overflow-wrap: anywhere; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.045);
  margin-top: 46px;
  padding-top: 22px;
  font-size: .72rem;
  color: #5d7c79;
}

/* Legal page */
.legal-page { background: #031013; }
.legal-hero { padding: 110px 0 58px; border-bottom: 1px solid rgba(112,240,231,.07); }
.legal-shell { max-width: 900px; }
.legal-hero h1 {
  margin: 13px 0 16px;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -.07em;
  line-height: .95;
}
.legal-intro { margin: 0; color: #91aeac; font-size: 1.08rem; max-width: 820px; }
.legal-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.legal-meta span {
  border: 1px solid rgba(133,242,234,.1);
  background: rgba(255,255,255,.02);
  padding: 8px 10px;
  border-radius: 11px;
  color: #7f9b99;
  font-size: .76rem;
}
.legal-meta b { color: #c8dddc; margin-right: 4px; }
.legal-body { padding: 65px 0 100px; }
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 820px);
  gap: 65px;
  align-items: start;
  justify-content: center;
}
.legal-toc {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 5px;
  max-height: calc(100vh - 130px);
  overflow: auto;
  padding-right: 10px;
}
.legal-toc strong { color: #d9efed; font-size: .78rem; margin-bottom: 8px; }
.legal-toc a { color: #6f8e8c; font-size: .73rem; padding: 4px 0; }
.legal-toc a:hover { color: #bde4e1; }
.legal-document { min-width: 0; }
.legal-document section { scroll-margin-top: 105px; padding: 14px 0 32px; }
.legal-document h2 {
  margin: 0 0 13px;
  color: #e8faf8;
  font-size: 1.35rem;
  letter-spacing: -.035em;
}
.legal-document p, .legal-document li {
  color: #89a5a3;
  font-size: .91rem;
}
.legal-document p { margin: 0 0 14px; }
.legal-document ul { padding-left: 20px; margin: 12px 0 16px; }
.legal-document li { margin: 7px 0; }
.legal-document strong { color: #cbe5e3; }
.legal-document a { color: #7fece4; text-decoration: underline; text-underline-offset: 3px; }
.legal-highlight, .legal-note {
  border: 1px solid rgba(98,241,230,.13);
  border-radius: 19px;
  padding: 20px 22px;
  background: rgba(56,239,226,.035);
  margin-bottom: 28px;
}
.legal-highlight > strong, .legal-note > strong { color: #8ff2ea; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.legal-highlight p, .legal-note p { margin: 7px 0 0; }
.legal-links { display: grid; gap: 7px; margin-top: 18px; }
.legal-links a { text-decoration: none; }
.legal-document address {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 17px;
  padding: 18px;
  background: rgba(255,255,255,.02);
  color: #8ca7a5;
  font-style: normal;
}
.legal-document address strong { display: inline-block; margin-bottom: 6px; }
.legal-note { margin-top: 30px; border-color: rgba(255,207,94,.14); background: rgba(255,207,94,.025); }
.legal-note > strong { color: #e9cf83; }
.legal-footer { padding-top: 20px; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .14s; }

@media (max-width: 1040px) {
  .site-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 26px; }
  .hero-visual { transform: scale(.9); transform-origin: center; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .bento-card { grid-column: span 6; }
  .bento-large, .map-card, .bento-wide { grid-column: span 6; }
  .privacy-grid { gap: 40px; }
  .truth-grid { grid-template-columns: repeat(2, 1fr); }
  .download-card { grid-template-columns: 80px 1fr; }
  .download-card > img { width: 80px; }
  .download-actions { grid-column: 2; display: flex; min-width: 0; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .site-header { position: sticky; }
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 1px; background: #cce2e0; }
  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 14px; right: 14px;
    padding: 16px;
    border: 1px solid rgba(113,238,229,.12);
    border-radius: 18px;
    background: rgba(4,20,24,.97);
    box-shadow: 0 24px 55px rgba(0,0,0,.4);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 8px; }
  .nav-cta { display: none; }
  .hero { padding-top: 50px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1 { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-strip { justify-content: center; }
  .hero-visual { min-height: 600px; margin-top: 15px; transform: scale(.92); }
  .section { padding: 84px 0; }
  .privacy-grid { grid-template-columns: 1fr; }
  .source-panel { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 25px; }
  .legal-toc { position: static; max-height: none; grid-template-columns: repeat(2, 1fr); padding: 16px; border: 1px solid rgba(255,255,255,.06); border-radius: 16px; }
  .legal-toc strong { grid-column: 1 / -1; }
  .legal-nav { display: none; }
}

@media (max-width: 620px) {
  .section-heading { margin-bottom: 34px; }
  .hero { min-height: auto; padding-bottom: 45px; }
  .hero h1 { font-size: clamp(3.05rem, 15.4vw, 5.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .trust-strip { font-size: .76rem; gap: 10px 16px; }
  .hero-visual { min-height: 520px; transform: scale(.78); margin: -30px -42px -60px; }
  .signal-inner { align-items: flex-start; padding-block: 20px; }
  .signal-inner p { font-size: .85rem; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: 270px; }
  .bento { display: grid; grid-template-columns: 1fr; }
  .bento-card, .bento-large, .map-card, .bento-wide { grid-column: 1; min-height: auto; }
  .wide-grid { grid-template-columns: 1fr; }
  .truth-grid { grid-template-columns: 1fr; }
  .truth-card { min-height: 210px; }
  .download-card { display: flex; flex-direction: column; align-items: flex-start; padding: 28px; }
  .download-actions { display: grid; width: 100%; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .console-actions { grid-template-columns: 1fr; }
  .legal-hero { padding-top: 72px; }
  .legal-meta { display: grid; }
  .legal-toc { grid-template-columns: 1fr; }
}

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