:root {
  --ink: #0b1220;
  --ink-2: #111c2e;
  --navy: #0c1a2d;
  --navy-soft: #14263d;
  --blue: #2563eb;
  --blue-2: #2f7df4;
  --sky: #7dd3fc;
  --violet: #6d28d9;
  --paper: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #edf3fa;
  --text: #0f172a;
  --copy: #4f6077;
  --muted: #718197;
  --line: #dfe7f1;
  --line-dark: rgba(255, 255, 255, 0.12);
  --success: #35c77b;
  --shadow: 0 24px 70px rgba(10, 27, 50, 0.13);
  --shadow-soft: 0 12px 34px rgba(10, 27, 50, 0.08);
  --radius-sm: 13px;
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1180px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.legal-page,
body.download-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 0%, rgba(47, 125, 244, 0.2), transparent 32%),
    linear-gradient(180deg, #0b1728 0%, #0b1220 100%);
  color: #f8fafc;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, a { font: inherit; -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

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

.hero-shell {
  position: relative;
  isolation: isolate;
  min-height: 880px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 36%, rgba(71, 153, 255, 0.28), transparent 29%),
    radial-gradient(circle at 93% 0%, rgba(125, 211, 252, 0.16), transparent 24%),
    linear-gradient(135deg, #08111f 0%, #0c1b31 47%, #102a4d 100%);
}

.hero-shell::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -180px;
  bottom: -220px;
  z-index: -1;
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(37, 99, 235, 0.025), 0 0 0 180px rgba(37, 99, 235, 0.018);
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 17, 31, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.light-header {
  color: #fff;
  background: rgba(8, 17, 31, 0.84);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.brand-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 780;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.brand-copy span {
  display: block;
  margin-top: 3px;
  color: rgba(226, 236, 250, 0.68);
  font-size: 11px;
  font-weight: 560;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(235, 243, 253, 0.76);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 19px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #347df4 100%);
  box-shadow: 0 15px 34px rgba(37, 99, 235, 0.32);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(37, 99, 235, 0.4); }
.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}
.btn-header { min-height: 40px; padding: 10px 15px; }
.btn-icon { width: 18px; height: 18px; }

.hero {
  position: relative;
  padding: 78px 0 112px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(53, 199, 123, 0.12), 0 0 18px rgba(53, 199, 123, 0.55);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(54px, 5.2vw, 78px);
  font-weight: 790;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero h1 .accent {
  display: block;
  margin-top: 9px;
  color: transparent;
  background: linear-gradient(105deg, #79c7ff 0%, #4f8cff 54%, #ad89ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 610px;
  margin: 27px 0 0;
  color: rgba(226, 236, 250, 0.76);
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(226, 236, 250, 0.62);
  font-size: 12px;
  font-weight: 620;
}

.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: #79c7ff; }

.product-orbit {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.product-orbit::before {
  content: "";
  position: absolute;
  inset: 6% -4% 3%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 50% 18%, rgba(93, 171, 255, 0.2), transparent 43%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 38px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.phone {
  position: relative;
  z-index: 3;
  width: 302px;
  aspect-ratio: 390 / 844;
  overflow: hidden;
  border-radius: 47px;
  background: #07101c;
  box-shadow: 0 0 0 8px #07101c, 0 0 0 9px rgba(255, 255, 255, 0.18), 0 42px 84px rgba(0, 0, 0, 0.42);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 39px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 39px;
}

.float-card {
  position: absolute;
  z-index: 4;
  width: 200px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: #fff;
  background: rgba(13, 29, 50, 0.77);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.float-card.one { top: 90px; right: -20px; }
.float-card.two { left: -14px; bottom: 76px; }
.float-card-label { display: block; color: #86caff; font-size: 10px; font-weight: 760; letter-spacing: 0.09em; text-transform: uppercase; }
.float-card strong { display: block; margin-top: 5px; font-size: 14px; line-height: 1.25; }
.float-card small { display: block; margin-top: 4px; color: rgba(226,236,250,.65); font-size: 11px; }

.proof-wrap { position: relative; z-index: 10; margin-top: -62px; }
.proof-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(15, 35, 60, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}
.proof-item { min-height: 118px; display: flex; align-items: center; gap: 13px; padding: 22px 24px; }
.proof-item + .proof-item { border-left: 1px solid var(--line); }
.proof-icon {
  width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center;
  border-radius: 12px; color: var(--blue); background: #edf4ff;
}
.proof-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.proof-item strong { display: block; color: var(--ink); font-size: 14px; line-height: 1.25; }
.proof-item span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.35; }

.section { padding: 112px 0; }
.section.compact { padding-top: 74px; }
.section-kicker { margin: 0 0 15px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section-title { max-width: 780px; margin: 0; color: var(--ink); font-size: clamp(38px, 4vw, 56px); line-height: 1.07; letter-spacing: -0.043em; }
.section-lede { max-width: 640px; margin: 20px 0 0; color: var(--copy); font-size: 17px; line-height: 1.7; }
.section-head.center { display: grid; justify-items: center; text-align: center; }

.moments-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.moment-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.moment-card::after {
  content: attr(data-step);
  position: absolute;
  right: -4px;
  bottom: -36px;
  color: rgba(37, 99, 235, 0.055);
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
}
.moment-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--blue); background: #edf4ff; }
.moment-icon.purple { color: #6d28d9; background: #f3efff; }
.moment-icon.green { color: #0d8c6f; background: #eaf8f3; }
.moment-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.moment-card h3 { margin: 28px 0 0; font-size: 23px; letter-spacing: -.025em; }
.moment-card p { margin: 12px 0 0; color: var(--copy); font-size: 14px; line-height: 1.68; }
.moment-list { position: relative; z-index: 1; margin: 20px 0 0; padding: 0; list-style: none; color: #334155; font-size: 12px; font-weight: 650; }
.moment-list li { margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.moment-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

.showcase-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(109, 40, 217, .22), transparent 30%),
    linear-gradient(135deg, #0c1a2d 0%, #102642 100%);
}
.showcase-section .section-kicker { color: #8fd2ff; }
.showcase-section .section-title { color: #fff; }
.showcase-section .section-lede { color: rgba(226, 236, 250, 0.68); }
.showcase-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(500px, 1.25fr); align-items: center; gap: 70px; }
.tool-tabs { margin-top: 32px; display: grid; gap: 10px; }
.tool-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 39px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  text-align: left;
  background: rgba(255,255,255,.035);
  cursor: pointer;
}
.tool-tab[aria-selected="true"] { border-color: rgba(125,211,252,.35); background: rgba(75,135,232,.16); box-shadow: inset 0 0 0 1px rgba(125,211,252,.08); }
.tool-tab-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; color: #89ceff; background: rgba(125,211,252,.11); }
.tool-tab-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tool-tab strong { display: block; color: #fff; font-size: 13px; }
.tool-tab small { display: block; margin-top: 2px; color: rgba(226,236,250,.58); font-size: 10px; }
.tool-tab-arrow { color: rgba(226,236,250,.4); }

.product-stage {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025)),
    radial-gradient(circle at 50% 16%, rgba(80,155,255,.22), transparent 44%);
  box-shadow: inset 0 1px rgba(255,255,255,.1), 0 40px 90px rgba(0,0,0,.25);
}
.product-panel { display: none; width: 100%; min-height: 650px; place-items: center; padding: 30px; }
.product-panel.active { display: grid; }
.product-panel .phone { width: 290px; }
.panel-caption {
  position: absolute;
  right: 32px;
  bottom: 30px;
  max-width: 190px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(8,17,31,.72);
  backdrop-filter: blur(14px);
}
.panel-caption strong { display: block; font-size: 12px; }
.panel-caption span { display: block; margin-top: 4px; color: rgba(226,236,250,.62); font-size: 10px; line-height: 1.45; }

.duty-section { padding: 112px 0; }
.duty-grid { display: grid; grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr); align-items: center; gap: 86px; }
.duty-visual { position: relative; min-height: 680px; display: grid; place-items: center; }
.duty-visual::before { content: ""; position: absolute; inset: 5% 0 1%; border-radius: 36px; background: linear-gradient(150deg, #dcecff, #edf5fc); }
.duty-visual .phone { width: 300px; box-shadow: 0 40px 80px rgba(10,27,50,.22); }
.duty-pill {
  position: absolute; z-index: 5; display: flex; align-items: center; gap: 9px; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 999px; color: #334155; background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); font-size: 11px; font-weight: 700;
}
.duty-pill.one { top: 104px; left: 8px; }
.duty-pill.two { right: 0; bottom: 98px; }
.duty-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.benefit-list { margin-top: 38px; display: grid; gap: 12px; }
.benefit {
  display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 17px;
  border: 1px solid transparent; border-radius: 17px;
}
.benefit:hover { border-color: var(--line); background: rgba(255,255,255,.65); }
.benefit-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; color: var(--blue); background: #e8f1ff; }
.benefit-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { margin: 1px 0 0; font-size: 16px; }
.benefit p { margin: 5px 0 0; color: var(--copy); font-size: 12px; line-height: 1.55; }

.probationer-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 32%, rgba(78, 160, 255, .24), transparent 34%),
    radial-gradient(circle at 9% 88%, rgba(44, 199, 190, .09), transparent 28%),
    linear-gradient(135deg, #081424 0%, #102d4e 100%);
}
.probationer-section .section-kicker { color: #8ed5ff; }
.probationer-section .section-title { color: #fff; }
.probationer-section .section-lede { color: rgba(226, 236, 250, .7); }
.probationer-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr); align-items: center; gap: 84px; }
.probationer-points { margin-top: 38px; display: grid; gap: 10px; }
.probationer-points article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 17px;
  background: rgba(255, 255, 255, .045);
}
.probationer-points article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #9bdcff;
  background: rgba(125, 211, 252, .11);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.probationer-points h3 { margin: 1px 0 0; font-size: 15px; }
.probationer-points p { margin: 5px 0 0; color: rgba(226, 236, 250, .62); font-size: 11px; line-height: 1.55; }
.probationer-visual { position: relative; min-height: 690px; display: grid; place-items: center; }
.probationer-halo {
  position: absolute;
  inset: 4% 2% 1%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 38px 90px rgba(0, 0, 0, .25);
}
.probationer-visual .phone { width: 300px; }
.probationer-chip {
  position: absolute;
  z-index: 5;
  min-width: 156px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(8, 20, 36, .78);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}
.probationer-chip.one { top: 105px; right: -10px; }
.probationer-chip.two { bottom: 86px; left: -8px; }
.probationer-chip strong { display: block; font-size: 12px; }
.probationer-chip span { display: block; margin-top: 3px; color: rgba(226, 236, 250, .6); font-size: 10px; }

.trust-section { padding: 90px 0; background: #fff; }
.trust-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .7fr); gap: 56px; align-items: center; padding: 48px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, #fff, #f4f8fc); box-shadow: var(--shadow-soft); }
.trust-panel h2 { margin: 0; font-size: 34px; line-height: 1.13; letter-spacing: -.035em; }
.trust-panel p { margin: 15px 0 0; color: var(--copy); font-size: 14px; line-height: 1.7; }
.trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.trust-badge { padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.trust-badge strong { display: block; font-size: 12px; }
.trust-badge span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.4; }

.download-section { position: relative; overflow: hidden; padding: 104px 0; color: #fff; background: linear-gradient(135deg, #08111f 0%, #102a4d 100%); }
.download-section::after { content: ""; position: absolute; width: 440px; height: 440px; right: -130px; top: -170px; border-radius: 50%; background: radial-gradient(circle, rgba(125,211,252,.2), transparent 67%); }
.download-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.download-brand { display: flex; align-items: center; gap: 16px; }
.download-brand .brand-mark { width: 64px; height: 64px; border-radius: 18px; }
.download-section h2 { margin: 25px 0 0; max-width: 680px; font-size: clamp(40px, 4.6vw, 62px); line-height: 1.04; letter-spacing: -.045em; }
.download-section p { max-width: 620px; margin: 18px 0 0; color: rgba(226,236,250,.7); font-size: 15px; }
.price { color: #9edbff; font-weight: 750; }
.store-stack { min-width: 260px; display: grid; gap: 12px; justify-items: stretch; }
.store-badge { display: block; border-radius: 12px; transition: transform 160ms ease; }
.store-badge:hover { transform: translateY(-2px); }
.store-badge img { width: 218px; height: 64px; object-fit: contain; margin: auto; }

.site-footer { padding: 35px 0; color: #8190a5; background: #070e19; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand strong { display: block; color: #dbe5f2; font-size: 13px; }
.footer-brand span { display: block; margin-top: 5px; font-size: 10px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }
.footer-links a { color: #9aabc0; text-decoration: none; font-size: 11px; font-weight: 650; }
.footer-links a:hover { color: #fff; }

/* Standalone download and legal pages */
.subpage-shell { width: min(calc(100% - 32px), 940px); margin: 0 auto; padding: 44px 0 74px; }
.subpage-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 25px; color: #a9cfff; text-decoration: none; font-size: 13px; font-weight: 700; }
.subpage-card { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: rgba(255,255,255,.065); box-shadow: 0 30px 80px rgba(0,0,0,.3); backdrop-filter: blur(18px); }
.subpage-head { padding: 42px; border-bottom: 1px solid rgba(255,255,255,.1); background: linear-gradient(145deg, rgba(47,125,244,.2), rgba(255,255,255,.025)); }
.subpage-head .brand-mark { width: 68px; height: 68px; border-radius: 19px; }
.subpage-head h1 { margin: 24px 0 0; font-size: clamp(34px, 5vw, 52px); line-height: 1.05; letter-spacing: -.04em; }
.subpage-head p { max-width: 650px; margin: 13px 0 0; color: rgba(226,236,250,.68); }
.subpage-content { padding: 38px 42px 44px; }
.subpage-content h2 { margin: 28px 0 8px; color: #f8fafc; font-size: 18px; }
.subpage-content h2:first-child { margin-top: 0; }
.subpage-content p, .subpage-content li { color: #afbdd0; font-size: 14px; line-height: 1.75; }
.subpage-content a { color: #94d5ff; }
.subpage-content b, .subpage-content strong { color: #e7eef8; }
.updated-pill { display: inline-flex; margin-top: 17px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: #bad9ff; background: rgba(255,255,255,.055); font-size: 10px; font-weight: 700; }

.download-card-grid { display: grid; grid-template-columns: .9fr 1.1fr; }
.download-visual { min-height: 610px; display: grid; place-items: center; padding: 42px; background: linear-gradient(150deg, rgba(47,125,244,.23), rgba(125,211,252,.05)); }
.download-visual .phone { width: 236px; }
.download-choice { padding: 48px 44px; align-self: center; }
.download-choice h1 { margin: 0; font-size: 39px; line-height: 1.08; letter-spacing: -.04em; }
.download-choice > p { color: #afbdd0; }
.smart-status { margin: 24px 0; padding: 13px 15px; border: 1px solid rgba(125,211,252,.18); border-radius: 14px; color: #c8d9ec; background: rgba(125,211,252,.07); font-size: 12px; }
.smart-status i { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px rgba(53,199,123,.55); }
.store-buttons { display: grid; gap: 11px; }
.store-button { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; color: #fff; text-decoration: none; background: rgba(255,255,255,.07); transition: transform 160ms ease, background 160ms ease; }
.store-button:hover { transform: translateY(-2px); background: rgba(255,255,255,.11); }
.store-button-copy { display: flex; align-items: center; gap: 13px; }
.store-button-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.09); }
.store-button-icon { font-size: 10px; font-weight: 800; letter-spacing: -.02em; }
.store-button small { display: block; color: #9dacc0; font-size: 9px; }
.store-button strong { display: block; margin-top: 2px; font-size: 15px; }
.download-trust { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.download-trust span { padding: 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; color: #9dacc0; text-align: center; font-size: 9px; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 390px; gap: 35px; }
  .product-orbit { min-height: 620px; }
  .phone { width: 285px; }
  .float-card { width: 174px; }
  .showcase-grid { grid-template-columns: .72fr 1fr; gap: 40px; }
  .product-stage { min-height: 630px; }
  .product-panel { min-height: 590px; }
  .duty-grid { gap: 48px; }
  .probationer-grid { gap: 48px; }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .hero-shell { min-height: auto; }
  .hero { padding: 64px 0 110px; }
  .hero-grid, .showcase-grid, .duty-grid, .probationer-grid, .trust-panel, .download-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 670px; }
  .product-orbit { margin-top: 12px; min-height: 640px; }
  .product-orbit::before { inset: 4% 7% 2%; }
  .float-card.one { right: 5%; }
  .float-card.two { left: 7%; }
  .proof-rail { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .proof-item:nth-child(4) { border-top: 1px solid var(--line); }
  .moments-grid { grid-template-columns: 1fr; }
  .moment-card { min-height: 0; }
  .showcase-grid { gap: 46px; }
  .tool-tabs { grid-template-columns: repeat(3, 1fr); }
  .tool-tab { grid-template-columns: 34px 1fr; }
  .tool-tab small, .tool-tab-arrow { display: none; }
  .product-stage { width: min(100%, 620px); margin: auto; }
  .duty-grid { gap: 54px; }
  .duty-copy { order: -1; }
  .duty-visual { width: min(100%, 620px); margin: auto; }
  .probationer-copy { max-width: 680px; }
  .probationer-visual { width: min(100%, 620px); margin: auto; }
  .trust-badges { grid-template-columns: repeat(4, 1fr); }
  .download-grid { gap: 34px; }
  .store-stack { min-width: 0; grid-template-columns: 218px 218px; }
  .download-card-grid { grid-template-columns: 1fr; }
  .download-visual { min-height: 520px; }
}

@media (max-width: 560px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 67px; gap: 12px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy span { display: none; }
  .btn-header { min-height: 38px; margin-left: auto; padding: 9px 13px; font-size: 12px; }
  .hero { padding: 53px 0 94px; }
  .eyebrow { margin-bottom: 18px; font-size: 10px; }
  .hero h1 { font-size: clamp(43px, 13.5vw, 58px); }
  .hero-copy { margin-top: 22px; font-size: 15px; line-height: 1.65; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { gap: 8px 13px; font-size: 10px; }
  .product-orbit { min-height: 565px; margin-top: 24px; }
  .product-orbit::before { inset: 4% 0 2%; border-radius: 30px; }
  .product-orbit .phone { width: 252px; border-radius: 39px; }
  .product-orbit .phone img, .product-orbit .phone::after { border-radius: 31px; }
  .float-card { width: 145px; padding: 11px; border-radius: 14px; }
  .float-card.one { top: 52px; right: -6px; }
  .float-card.two { left: -5px; bottom: 46px; }
  .float-card strong { font-size: 11px; }
  .float-card small { display: none; }
  .proof-wrap { margin-top: -48px; }
  .proof-rail { grid-template-columns: 1fr 1fr; border-radius: 19px; }
  .proof-item { min-height: 105px; display: block; padding: 15px; }
  .proof-icon { width: 32px; height: 32px; margin-bottom: 9px; border-radius: 10px; }
  .proof-item strong { font-size: 12px; }
  .proof-item span { font-size: 9px; }
  .section, .duty-section, .probationer-section { padding: 82px 0; }
  .section.compact { padding-top: 62px; }
  .section-title { font-size: 36px; }
  .section-lede { font-size: 15px; }
  .moments-grid { margin-top: 38px; gap: 13px; }
  .moment-card { padding: 22px; border-radius: 22px; }
  .moment-card h3 { margin-top: 20px; font-size: 20px; }
  .showcase-section { padding: 80px 0; }
  .tool-tabs { grid-template-columns: 1fr; }
  .tool-tab { grid-template-columns: 38px 1fr auto; }
  .tool-tab small, .tool-tab-arrow { display: block; }
  .product-stage { min-height: 610px; border-radius: 28px; }
  .product-panel { min-height: 580px; padding: 18px; }
  .product-panel .phone { width: 248px; }
  .panel-caption { right: 14px; bottom: 14px; max-width: 155px; padding: 11px; }
  .duty-visual { min-height: 600px; }
  .duty-visual .phone { width: 257px; }
  .duty-pill.one { top: 76px; left: -4px; }
  .duty-pill.two { right: -4px; bottom: 72px; }
  .probationer-grid { gap: 48px; }
  .probationer-visual { min-height: 610px; }
  .probationer-visual .phone { width: 257px; }
  .probationer-halo { inset: 3% 0 1%; border-radius: 30px; }
  .probationer-chip { min-width: 140px; padding: 11px 12px; }
  .probationer-chip.one { top: 72px; right: -5px; }
  .probationer-chip.two { bottom: 66px; left: -5px; }
  .benefit { padding: 13px 0; }
  .trust-section { padding: 72px 0; }
  .trust-panel { padding: 28px 22px; border-radius: 24px; gap: 30px; }
  .trust-panel h2 { font-size: 29px; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .download-section { padding: 80px 0; }
  .store-stack { grid-template-columns: 1fr; }
  .store-badge img { margin-left: 0; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .subpage-shell { padding-top: 22px; }
  .subpage-head, .subpage-content, .download-choice { padding: 28px 22px; }
  .download-visual { min-height: 470px; padding: 30px; }
  .download-choice h1 { font-size: 34px; }
  .download-trust { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
