:root{
  --bg0:#07080A;
  --bg1:#0B0D10;
  --bg2:#10141A;
  --card:#0E1217;
  --card2:#0B0F14;
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);
  --text:#EAF0F7;
  --muted:rgba(234,240,247,.72);
  --muted2:rgba(234,240,247,.55);
  --accent:#D2FF16;
  --accent2:#8BFF55;
  --shadow:0 22px 60px rgba(0,0,0,.55);
  --shadow2:0 10px 30px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;
  --container:1140px;
  --headerH:72px;
  --focus:0 0 0 4px rgba(210,255,22,.20);
  --badgeBg:#000;
  --badgeStroke:rgba(255,255,255,.78);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 25% 0%, rgba(210,255,22,.10), transparent 60%),
    radial-gradient(1000px 680px at 85% 20%, rgba(139,255,85,.08), transparent 62%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 40%, var(--bg0));
  line-height:1.4;
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block; height:auto}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.section{
  position:relative;
  padding:72px 0;
  scroll-margin-top:calc(var(--headerH) + 14px);
}
.section:not(.hero)::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  opacity:.9;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  padding:10px 12px;
  background:rgba(0,0,0,.7);
  border:1px solid var(--stroke);
  border-radius:12px;
}
.skip-link:focus{left:12px; outline:none; box-shadow:var(--focus)}

/* Header / nav */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  height:var(--headerH);
  display:flex;
  align-items:center;
  background:rgba(8,10,12,.38);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter:saturate(160%) blur(10px);
  -webkit-backdrop-filter:saturate(160%) blur(10px);
}
.site-header.is-scrolled{
  background:rgba(8,10,12,.68);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:max-content;
}
.brand-logo{
  height:22px;
  width:auto;
  display:block;
  filter:drop-shadow(0 14px 28px rgba(0,0,0,.35));
}
.brand-logo--footer{height:24px}
.brand-text{
  font-weight:800;
  letter-spacing:.2px;
}
.brand-text--sr{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.nav-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
}
.nav-toggle:hover{background:rgba(255,255,255,.06)}
.nav-toggle:focus{outline:none; box-shadow:var(--focus)}

.nav-toggle-lines{
  width:18px;
  height:12px;
  position:relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  border-radius:2px;
  background:rgba(234,240,247,.85);
}
.nav-toggle-lines::before{top:0}
.nav-toggle-lines::after{bottom:0}

.nav-menu{
  position:absolute;
  right:20px;
  top:calc(var(--headerH) - 6px);
  width:min(360px, calc(100vw - 40px));
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(10,12,15,.82);
  backdrop-filter:saturate(160%) blur(14px);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
  box-shadow:var(--shadow2);
  display:none;
}
.nav-menu.is-open{display:block}
.nav-link{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:rgba(234,240,247,.86);
  font-weight:600;
  letter-spacing:.1px;
}
.nav-link:hover{
  background:rgba(255,255,255,.06);
  color:rgba(234,240,247,.95);
}
.nav-cta{padding:8px 8px 4px}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(234,240,247,.90);
  font-weight:700;
}
.btn:hover{background:rgba(255,255,255,.06)}
.btn:focus{outline:none; box-shadow:var(--focus)}
.btn-sm{padding:10px 12px; border-radius:12px; font-weight:700}
.btn-ghost{
  background:rgba(210,255,22,.08);
  border:1px solid rgba(210,255,22,.24);
}
.btn-ghost:hover{background:rgba(210,255,22,.12)}

/* Store badges */
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.store-badge{
  min-width:198px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.store-badge:hover{
  transform:translateY(-1px);
  border-color:rgba(210,255,22,.32);
  background:linear-gradient(180deg, rgba(210,255,22,.10), rgba(255,255,255,.03));
}
.store-badge:focus{outline:none; box-shadow:var(--focus)}
.store-badge .badge-icon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,247,.92);
}
.badge-icon--flat{
  width:34px;
  height:34px;
  border-radius:10px;
  background:transparent;
  border:none;
  color:#fff;
}
.store-badge .badge-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.badge-top{
  font-size:11px;
  color:rgba(234,240,247,.68);
  letter-spacing:.22px;
}
.badge-bottom{
  font-size:16px;
  font-weight:800;
  letter-spacing:.2px;
}

.store-badge--official{
  border-radius:12px;
  border:1px solid var(--badgeStroke);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    var(--badgeBg);
  box-shadow:0 18px 44px rgba(0,0,0,.32);
  padding:12px 16px;
}
.store-badge--official:hover{
  transform:translateY(-1px);
  border-color:#fff;
  background:
    linear-gradient(180deg, rgba(210,255,22,.12), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    var(--badgeBg);
}
.store-badge--official .badge-text{gap:2px}
.store-badge--official .badge-top{
  font-size:10px;
  color:rgba(255,255,255,.85);
  letter-spacing:.14em;
}
.store-badge--official .badge-bottom{
  font-size:17px;
  font-weight:900;
  letter-spacing:.01em;
  color:#fff;
}

/* Hero */
.hero{
  padding-top:84px;
  padding-bottom:86px;
}
.hero-grid{
  display:grid;
  gap:34px;
}
.eyebrow{
  margin:0 0 12px;
  color:rgba(234,240,247,.70);
  font-weight:700;
  letter-spacing:.18px;
  font-size:13px;
}
.headline{
  margin:0;
  font-weight:900;
  letter-spacing:-.03em;
  font-size:42px;
  line-height:1.03;
}
.accent{
  background:linear-gradient(90deg, var(--accent), rgba(210,255,22,.55));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.subhead{
  margin:14px 0 0;
  color:rgba(234,240,247,.74);
  font-size:16px;
  max-width:56ch;
}
.hero-micro{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.micro-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:rgba(234,240,247,.78);
  font-weight:700;
  font-size:13px;
}
.dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(210,255,22,.14);
}

.hero-visual{position:relative}
.mockup-stack{
  position:relative;
  border-radius:var(--radius2);
  padding:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.mockup-stack .device{
  max-width:460px;
  margin-inline:auto;
}
.mockup-stack::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 320px at 15% 0%, rgba(210,255,22,.14), transparent 62%),
    radial-gradient(520px 280px at 85% 28%, rgba(234,240,247,.08), transparent 62%),
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 40%, rgba(255,255,255,.02));
  opacity:.55;
  pointer-events:none;
  mix-blend-mode:screen;
}
.mockup-stack::before{
  content:"";
  position:absolute;
  inset:-120px -80px auto auto;
  width:280px;
  height:280px;
  background:radial-gradient(circle at 30% 30%, rgba(210,255,22,.22), transparent 60%);
  filter:blur(2px);
}
.device{
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(12,16,20,.9), rgba(10,12,15,.86));
  box-shadow:0 18px 44px rgba(0,0,0,.40);
  overflow:hidden;
}
.device-header{
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.device-pill{
  width:84px;
  height:8px;
  border-radius:999px;
  background:rgba(234,240,247,.18);
}
.device-dot{
  position:absolute;
  right:14px;
  width:8px;
  height:8px;
  border-radius:99px;
  background:rgba(210,255,22,.75);
  box-shadow:0 0 0 6px rgba(210,255,22,.15);
}
.device-screen{
  padding:14px;
  display:grid;
  gap:12px;
}
.app-shot{
  width:100%;
  height:auto;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 22px 60px rgba(0,0,0,.45);
  background:rgba(0,0,0,.18);
}

.status-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:2px 2px 6px;
  color:rgba(234,240,247,.72);
  font-weight:800;
  font-size:11px;
  letter-spacing:.06em;
}
.status-icons{
  width:64px;
  height:10px;
  border-radius:999px;
  background:
    linear-gradient(90deg, rgba(234,240,247,.20), rgba(234,240,247,.10)),
    radial-gradient(circle at 80% 50%, rgba(210,255,22,.55), transparent 55%);
  opacity:.85;
}
.device-primary{position:relative}

.chip{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(210,255,22,.24);
  background:rgba(210,255,22,.08);
  color:rgba(234,240,247,.92);
  font-weight:800;
  font-size:12px;
  letter-spacing:.18px;
}
.chip-soft{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.screen-metrics{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-top:10px;
}
.metric{
  padding:10px 10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.metric-label{
  color:rgba(234,240,247,.60);
  font-weight:700;
  font-size:11px;
  letter-spacing:.18px;
}
.metric-value{
  margin-top:6px;
  font-weight:900;
  letter-spacing:-.02em;
  font-size:18px;
}
.unit{
  margin-left:3px;
  font-size:11px;
  color:rgba(234,240,247,.62);
  font-weight:800;
}
.screen-map{
  position:relative;
  height:160px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  background:
    radial-gradient(160px 120px at 30% 30%, rgba(210,255,22,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.map-legend{
  position:absolute;
  left:12px;
  bottom:12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.26);
  color:rgba(234,240,247,.78);
  font-weight:900;
  font-size:11px;
  letter-spacing:.08em;
}
.legend-dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:rgba(234,240,247,.55);
}
.legend-dot--live{
  background:rgba(210,255,22,.95);
  box-shadow:0 0 0 6px rgba(210,255,22,.12);
}
.map-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:26px 26px;
  opacity:.18;
}
.route{
  position:absolute;
  inset:18px 18px 24px 18px;
  border-radius:16px;
  border:2px solid rgba(210,255,22,.45);
  filter:drop-shadow(0 10px 24px rgba(210,255,22,.18));
  opacity:.85;
  transform:skewX(-6deg);
}
.route-b{
  inset:34px 26px 34px 30px;
  border-color:rgba(234,240,247,.22);
  opacity:.7;
}
.pin{
  position:absolute;
  width:10px;
  height:10px;
  border-radius:99px;
  background:var(--accent);
  box-shadow:0 0 0 7px rgba(210,255,22,.12);
}
.pin-a{left:28px; top:44px}
.pin-b{right:30px; bottom:38px}
.screen-bottom{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:10px;
}
.bar{
  height:12px;
  border-radius:999px;
  background:rgba(210,255,22,.55);
  box-shadow:0 10px 22px rgba(210,255,22,.10);
}
.bar-dim{background:rgba(234,240,247,.12); box-shadow:none}

.card-mini{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:12px;
  display:grid;
  gap:10px;
}
.big-number{
  font-size:30px;
  font-weight:900;
  letter-spacing:-.03em;
}
.mini-row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.mini-kpi{
  padding:10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}
.mini-label{font-size:11px; color:rgba(234,240,247,.58); font-weight:800; letter-spacing:.16px}
.mini-value{margin-top:6px; font-weight:900; font-size:13px}
.share-pill{
  margin-top:2px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(210,255,22,.22);
  background:rgba(210,255,22,.08);
  color:rgba(234,240,247,.90);
  font-weight:900;
  letter-spacing:.16px;
  font-size:12px;
}
.share-dot{
  width:10px;
  height:10px;
  border-radius:99px;
  background:rgba(234,240,247,.78);
  box-shadow:0 0 0 6px rgba(234,240,247,.10);
}
.device-caption{
  color:rgba(234,240,247,.55);
  font-weight:700;
  font-size:12px;
  text-align:center;
}

.hero-glow{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-220px;
  width:min(1100px, 92vw);
  height:380px;
  background:
    radial-gradient(circle at 35% 40%, rgba(210,255,22,.18), transparent 60%),
    radial-gradient(circle at 70% 45%, rgba(139,255,85,.12), transparent 62%);
  filter:blur(22px);
  pointer-events:none;
  opacity:.9;
}

/* Section heads */
.section-head{
  display:grid;
  gap:10px;
  margin-bottom:22px;
  max-width:68ch;
}
.section-head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.03em;
  font-weight:900;
}
.section-head p{
  margin:0;
  color:rgba(234,240,247,.72);
  font-weight:600;
}

/* Features */
.feature-grid{
  display:grid;
  gap:12px;
}
.feature-card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(420px 180px at 15% 0%, rgba(210,255,22,.10), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  padding:16px;
  box-shadow:0 18px 44px rgba(0,0,0,.18);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.feature-card:hover{
  transform:translateY(-1px);
  border-color:rgba(210,255,22,.22);
  background:linear-gradient(180deg, rgba(210,255,22,.08), rgba(255,255,255,.02));
}
.feature-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.feature-icon{
  width:38px;
  height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid rgba(210,255,22,.22);
  background:rgba(210,255,22,.08);
  color:rgba(234,240,247,.95);
  box-shadow:0 16px 32px rgba(210,255,22,.08);
}
.feature-card h3{
  margin:0;
  font-weight:900;
  letter-spacing:-.02em;
  font-size:18px;
}
.feature-card p{
  margin:0;
  color:rgba(234,240,247,.70);
  font-weight:600;
}
.feature-visual{
  height:110px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(140px 120px at 20% 30%, rgba(210,255,22,.16), transparent 62%),
    radial-gradient(140px 120px at 80% 70%, rgba(234,240,247,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(255,255,255,.02));
  position:relative;
  overflow:hidden;
  margin-top:14px;
}
.feature-visual--image{
  height:auto;
  padding:10px;
  background:
    radial-gradient(160px 120px at 20% 30%, rgba(210,255,22,.10), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.24), rgba(255,255,255,.02));
}
.feature-shot{
  width:100%;
  height:140px;
  object-fit:cover;
  object-position:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 16px 40px rgba(0,0,0,.35);
}
.feature-visual::after{
  content:attr(data-label);
  position:absolute;
  left:12px;
  bottom:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.28);
  color:rgba(234,240,247,.82);
  font-weight:900;
  font-size:12px;
  letter-spacing:.16px;
}
.feature-visual::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    linear-gradient(to right, rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size:30px 30px;
  opacity:.10;
}

/* Screens */
.screen-gallery{
  display:grid;
  gap:12px;
}
.screen-tile{
  margin:0;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(420px 180px at 20% 0%, rgba(210,255,22,.08), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:0 18px 44px rgba(0,0,0,.16);
  overflow:hidden;
}
.screen-frame{
  position:relative;
  padding:14px 14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(240px 160px at 25% 20%, rgba(210,255,22,.14), transparent 60%),
    radial-gradient(240px 180px at 80% 65%, rgba(234,240,247,.08), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.screen-frame::before{
  content:"";
  position:absolute;
  left:50%;
  top:10px;
  transform:translateX(-50%);
  width:84px;
  height:18px;
  border-radius:999px;
  background:rgba(0,0,0,.48);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 10px 24px rgba(0,0,0,.35);
  opacity:.95;
  pointer-events:none;
}
.screen-frame::after{
  content:attr(data-screen);
  position:absolute;
  left:14px;
  bottom:14px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.30);
  color:rgba(234,240,247,.84);
  font-weight:900;
  font-size:12px;
  letter-spacing:.16px;
}
.screen-inner{
  height:220px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(255,255,255,.02)),
    radial-gradient(180px 140px at 25% 25%, rgba(210,255,22,.18), transparent 65%),
    linear-gradient(to right, rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size:auto, auto, 34px 34px, 34px 34px;
  box-shadow:0 22px 60px rgba(0,0,0,.45);
  overflow:hidden;
  position:relative;
}
.screen-inner::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(255,255,255,.10), transparent 35%, rgba(255,255,255,.02));
  opacity:.55;
  pointer-events:none;
}
.screen-inner--img{
  padding:0;
  background:rgba(0,0,0,.16);
}
.screen-shot{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  border-radius:22px;
}
.screen-tile figcaption{
  padding:12px 14px 14px;
  color:rgba(234,240,247,.80);
  font-weight:900;
  letter-spacing:-.01em;
}

.screen-tile--featured .screen-inner{height:260px}

/* How */
.how-grid{
  display:grid;
  gap:18px;
}
.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.step{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:16px;
  box-shadow:0 18px 44px rgba(0,0,0,.14);
}
.step-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
}
.step-number{
  color:rgba(210,255,22,.88);
  font-weight:900;
  letter-spacing:.2em;
  font-size:12px;
}
.step-title{
  font-weight:900;
  letter-spacing:-.02em;
}
.step p{
  margin:10px 0 0;
  color:rgba(234,240,247,.70);
  font-weight:600;
}

/* Download */
.download-card{
  border-radius:calc(var(--radius2) + 6px);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(210,255,22,.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  overflow:hidden;
  display:grid;
  gap:18px;
  padding:18px;
  position:relative;
}
.cta-points{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:8px;
  max-width:62ch;
}
.cta-points li{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(234,240,247,.74);
  font-weight:700;
}
.cta-points li::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:99px;
  background:rgba(210,255,22,.92);
  box-shadow:0 0 0 6px rgba(210,255,22,.12);
  flex:0 0 auto;
}
.download-copy h2{
  margin:0;
  font-size:28px;
  font-weight:900;
  letter-spacing:-.03em;
}
.download-copy p{
  margin:10px 0 0;
  color:rgba(234,240,247,.72);
  font-weight:600;
  max-width:64ch;
}
.availability{
  margin-top:12px;
  color:rgba(234,240,247,.56);
  font-weight:700;
  font-size:12px;
}
.download-visual{
  position:absolute;
  right:-80px;
  top:-70px;
  width:320px;
  height:320px;
  pointer-events:none;
  opacity:.9;
}
.download-orb{
  position:absolute;
  inset:0;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(210,255,22,.26), transparent 62%),
    radial-gradient(circle at 70% 60%, rgba(139,255,85,.16), transparent 64%);
  filter:blur(2px);
}
.download-lines{
  position:absolute;
  inset:22px;
  border-radius:999px;
  border:1px dashed rgba(234,240,247,.18);
  box-shadow:0 0 0 18px rgba(234,240,247,.04);
}

/* Footer */
.footer{
  padding:48px 0 34px;
  border-top:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
.footer-grid{
  display:grid;
  gap:22px;
  align-items:start;
}
.footer-line{
  margin:10px 0 0;
  color:rgba(234,240,247,.66);
  font-weight:700;
}
.footer-links{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.footer-col{
  display:grid;
  gap:10px;
}
.footer-title{
  font-weight:900;
  letter-spacing:.16px;
  color:rgba(234,240,247,.82);
  font-size:12px;
  text-transform:uppercase;
}
.footer-col a{
  color:rgba(234,240,247,.68);
  font-weight:700;
}
.footer-col a:hover{color:rgba(234,240,247,.90)}
.footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-bottom p{
  margin:0;
  color:rgba(234,240,247,.58);
  font-weight:700;
  font-size:12px;
}
.to-top{
  color:rgba(234,240,247,.76);
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  padding:10px 12px;
  border-radius:999px;
}
.to-top:hover{border-color:rgba(210,255,22,.26); background:rgba(210,255,22,.08)}
.to-top:focus{outline:none; box-shadow:var(--focus)}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-in{
  opacity:1;
  transform:none;
}

/* Desktop enhancements */
@media (min-width: 840px){
  .nav-toggle{display:none}
  .nav-menu{
    position:static;
    display:flex;
    align-items:center;
    gap:6px;
    padding:0;
    width:auto;
    background:transparent;
    border:none;
    box-shadow:none;
    backdrop-filter:none;
  }
  .nav-link{padding:10px 12px; border-radius:12px}
  .nav-cta{padding:0 0 0 8px}

  .section{padding:92px 0}
  .hero{padding-top:98px}
  .hero-grid{
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:42px;
  }
  .headline{font-size:56px}
  .subhead{font-size:17px}

  .feature-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:14px;
  }
  .screen-gallery{
    grid-template-columns:repeat(12, minmax(0, 1fr));
    gap:14px;
  }
  .screen-tile{grid-column:span 3}
  .screen-tile--featured{grid-column:span 6}
  .screen-inner{height:240px}
  .screen-tile--featured .screen-inner{height:300px}
  .feature-shot{height:150px}

  .how-grid{
    grid-template-columns:1fr 1fr;
    align-items:start;
    gap:26px;
  }
  .steps{gap:14px}

  .download-card{
    grid-template-columns:1.2fr .8fr;
    align-items:center;
    padding:26px;
  }
  .download-visual{
    position:relative;
    right:auto;
    top:auto;
    width:100%;
    height:220px;
    justify-self:end;
    opacity:1;
  }
  .download-orb{inset:auto; width:320px; height:320px; right:-70px; top:-130px; position:absolute}
  .download-lines{inset:auto; width:240px; height:240px; right:-32px; top:-70px; position:absolute}

  .footer-grid{
    grid-template-columns:1.1fr .9fr;
    gap:30px;
  }
  .footer-links{grid-template-columns:repeat(3, minmax(0,1fr))}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{transition:none}
  .store-badge{transition:none}
  .feature-card{transition:none}
}

/* Privacy policy page */
.policy{
  padding-top:56px;
}
.policy-wrap{
  max-width:860px;
}
.policy-head{
  display:grid;
  gap:10px;
  margin-bottom:18px;
}
.policy-title{
  margin:0;
  font-size:34px;
  font-weight:900;
  letter-spacing:-.03em;
  line-height:1.08;
}
.policy-subtitle{
  margin:0;
  color:rgba(234,240,247,.72);
  font-weight:600;
  max-width:70ch;
}
.policy-meta{
  margin:4px 0 0;
  color:rgba(234,240,247,.62);
  font-weight:700;
  font-size:13px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.policy-meta a{color:rgba(234,240,247,.82)}
.policy-meta a:hover{color:rgba(234,240,247,.95)}
.policy-meta .sep{opacity:.55}

.policy-card{
  border-radius:calc(var(--radius2) + 6px);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(720px 260px at 20% 0%, rgba(210,255,22,.10), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:var(--shadow2);
  padding:18px;
}
.policy-card h2{
  margin:18px 0 10px;
  font-size:18px;
  letter-spacing:-.02em;
  font-weight:900;
}
.policy-card h2:first-child{margin-top:0}
.policy-card p{
  margin:0 0 12px;
  color:rgba(234,240,247,.74);
  font-weight:600;
}
.policy-card ul{
  margin:0 0 14px;
  padding-left:18px;
  color:rgba(234,240,247,.72);
  font-weight:600;
}
.policy-card li{margin:6px 0}
.policy-card strong{color:rgba(234,240,247,.92)}
.policy-actions{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

@media (min-width: 840px){
  .policy{padding-top:70px}
  .policy-card{padding:26px}
  .policy-title{font-size:42px}
}
