:root {
  --bg: #f5f8fc;
  --bg-2: #eef3fa;
  --surface: rgba(255,255,255,.78);
  --surface-strong: rgba(255,255,255,.92);
  --ink: #0f1725;
  --ink-2: #24334a;
  --muted: #617187;
  --line: rgba(15, 23, 37, .11);
  --blue-900: #0b1627;
  --blue-800: #10243d;
  --blue-700: #173455;
  --blue-600: #234d80;
  --blue-500: #3f76b6;
  --blue-400: #7db4ff;
  --gold: #c99d56;
  --gold-2: #f1d39a;
  --green: #5f8f76;
  --card-shadow: 0 28px 80px rgba(11, 22, 39, .12);
  --soft-shadow: 0 16px 40px rgba(11, 22, 39, .08);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Segoe UI, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(125,180,255,.22), transparent 30rem),
    radial-gradient(circle at 100% 15%, rgba(201,157,86,.18), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #f1f6fd 55%, #f8fbff 100%);
  line-height: 1.56;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15,23,37,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,37,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.24), transparent 72%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }
img, svg { max-width: 100%; }
.skip-link {
  position: absolute; left: -999px; top: 10px;
  background: var(--blue-900); color: white; padding: 10px 14px; border-radius: 12px;
}
.skip-link:focus { left: 10px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(22px);
  background: rgba(248, 251, 255, .84);
  border-bottom: 1px solid rgba(15, 23, 37, .08);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(23, 52, 85, .25);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-2);
  font-size: 14px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: white;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 10px 15px;
  box-shadow: 0 18px 32px rgba(16, 36, 61, .18);
}
.nav-cta:hover { text-decoration: none; transform: translateY(-1px); }

main { min-height: 70vh; }
.section { max-width: var(--max); margin: 0 auto; padding: 82px 22px; }
.section.narrow { max-width: 900px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-600);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}
h1, h2, h3 { line-height: 1.02; letter-spacing: -.05em; margin: 0 0 18px; }
h1 { font-size: clamp(48px, 8vw, 92px); max-width: 960px; }
h2 { font-size: clamp(36px, 5vw, 62px); max-width: 860px; }
h3 { font-size: 26px; }
p { margin: 0 0 18px; color: var(--ink-2); }
.lead { font-size: clamp(19px, 2.4vw, 25px); color: var(--ink-2); max-width: 760px; }
.small { font-size: 13px; color: var(--muted); }
.muted { color: var(--muted); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 22px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.hero-copy { position: relative; }
.hero-copy::before {
  content: "";
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 42px;
  background: radial-gradient(circle at 35% 35%, rgba(125,180,255,.5), rgba(35,77,128,.18) 60%, transparent 75%);
  filter: blur(14px);
  inset: -36px auto auto -20px;
  z-index: -1;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.tag {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(15,23,37,.08);
  box-shadow: var(--soft-shadow);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 750;
  color: var(--ink-2);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 18px; border-radius: 999px;
  border: 1px solid rgba(15,23,37,.10);
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn.primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: white;
  box-shadow: 0 18px 34px rgba(16, 36, 61, .22);
}
.btn.secondary {
  background: rgba(255,255,255,.82);
  color: var(--ink);
  box-shadow: var(--soft-shadow);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.mockup-stack { position: relative; min-height: 680px; }
.device {
  position: relative;
  width: 340px;
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(145deg, #0b1524, #223754 65%, #13263e);
  box-shadow: 0 55px 120px rgba(11,22,39,.26);
  border: 1px solid rgba(255,255,255,.10);
}
.device.back {
  position: absolute;
  right: 22px;
  top: 120px;
  transform: rotate(10deg) scale(.92);
  opacity: .95;
  z-index: 0;
}
.device.front {
  position: relative;
  z-index: 2;
}
.device-screen {
  border-radius: 34px;
  min-height: 620px;
  background:
    radial-gradient(circle at 18% 0%, rgba(125,180,255,.22), transparent 20rem),
    linear-gradient(180deg, #f9fbff 0%, #edf4fb 100%);
  padding: 22px;
  overflow: hidden;
}
.status-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.mini-brand {
  width: 34px; height: 34px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  display: grid; place-items: center;
  color: white; font-weight: 900;
}
.state-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(35,77,128,.1);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.phone-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,37,.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 32px rgba(11,22,39,.06);
  margin: 12px 0;
}
.phone-card strong { display: block; font-size: 17px; margin-bottom: 6px; }
.phone-card .meta { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.source-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(35,77,128,.08);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
}
.source-chip::before {
  content: "";
  width: 18px; height: 14px; border-radius: 4px;
  background: linear-gradient(135deg, rgba(35,77,128,.18), rgba(125,180,255,.34));
  border: 1px solid rgba(35,77,128,.12);
}
.device-banner {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(17,52,85,.96), rgba(25,58,98,.88));
  color: white;
  padding: 16px 18px;
  border-radius: 22px;
}
.device-banner p { color: rgba(255,255,255,.82); margin: 4px 0 0; }
.float-card {
  position: absolute;
  right: -16px;
  top: 34px;
  width: 220px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,37,.08);
  box-shadow: 0 24px 48px rgba(11,22,39,.14);
  border-radius: 24px;
  padding: 18px;
  z-index: 3;
}
.float-card .label {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.backup-glyph {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 16px 28px rgba(35,77,128,.22);
  position: relative;
  margin-bottom: 12px;
}
.backup-glyph::before {
  content: "";
  position: absolute;
  inset: 15px 13px 13px 15px;
  border: 3px solid rgba(255,255,255,.92);
  border-top-color: transparent;
  border-radius: 50%;
}
.backup-glyph::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 15px;
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(255,255,255,.92);
  border-right: 3px solid rgba(255,255,255,.92);
  transform: rotate(45deg);
}
.grid { display: grid; gap: 20px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }

.panel {
  background: var(--surface);
  border: 1px solid rgba(15,23,37,.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--soft-shadow);
}
.panel.dark {
  background: linear-gradient(145deg, #0d1a2b, #173455 70%, #10243d);
  border-color: rgba(255,255,255,.1);
  color: white;
  box-shadow: 0 24px 60px rgba(11,22,39,.22);
}
.panel.dark p, .panel.dark li, .panel.dark .small { color: rgba(255,255,255,.82); }
.panel.accent {
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(236,245,255,.92));
}
.state-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(35,77,128,.10);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(15,23,37,.08);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(35,77,128,.18);
}
.price-card h3 { display: flex; align-items: baseline; gap: 10px; }
.price { font-size: 52px; letter-spacing: -.06em; font-weight: 950; color: var(--ink); }
.price small { font-size: 16px; color: var(--muted); letter-spacing: 0; }
ul.clean { padding: 0; list-style: none; margin: 18px 0 0; }
ul.clean li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-top: 1px solid rgba(15,23,37,.08);
}
ul.clean li::before {
  content: "✓";
  position: absolute; left: 0;
  font-weight: 950; color: var(--green);
}
.backup-visual {
  position: relative;
  min-height: 420px;
}
.backup-pane {
  position: absolute;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(15,23,37,.08);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  padding: 18px;
}
.backup-pane.main { left: 0; right: 70px; top: 34px; }
.backup-pane.file { right: 0; top: 0; width: 220px; }
.backup-pane.verify { left: 84px; right: 0; bottom: 0; }
.file-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(201,157,86,.14);
  color: #8d6730;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}
.progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(15,23,37,.08);
  overflow: hidden;
  margin: 14px 0;
}
.progress span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
}
.notice {
  border-left: 4px solid var(--gold);
  background: rgba(201,157,86,.12);
  padding: 16px 18px;
  border-radius: 0 16px 16px 0;
  margin: 24px 0;
}
.legal h1 { font-size: clamp(38px, 6vw, 70px); }
.legal h2 { font-size: 32px; margin-top: 36px; }
.legal h3 { margin-top: 28px; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul, .legal ol { padding-left: 24px; }

.table { width: 100%; border-collapse: collapse; margin: 24px 0; overflow: hidden; border-radius: 18px; }
.table th, .table td { text-align: left; padding: 14px; border-bottom: 1px solid rgba(15,23,37,.08); vertical-align: top; }
.table th { background: rgba(35,77,128,.07); }

.footer {
  border-top: 1px solid rgba(15,23,37,.08);
  background: rgba(255,255,255,.54);
  margin-top: 60px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 22px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}
.footer-title { font-weight: 950; margin-bottom: 10px; }
.footer a { display: block; margin: 8px 0; color: var(--ink-2); }

.form { display: grid; gap: 14px; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(15,23,37,.10);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: rgba(255,255,255,.9);
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .mockup-stack { min-height: auto; display: grid; gap: 20px; }
  .device, .device.back, .device.front { position: relative; top: auto; right: auto; width: min(100%, 360px); transform: none; margin: 0 auto; }
  .float-card { position: relative; right: auto; top: auto; width: 100%; margin: 12px auto 0; }
  .backup-visual { min-height: auto; display: grid; gap: 14px; }
  .backup-pane { position: relative; inset: auto !important; width: auto !important; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .section { padding: 58px 18px; }
  .grid.three, .grid.two, .footer-inner { grid-template-columns: 1fr; }
}


/* Final deployment polish: official onboarding hero art + screenshot-matched premium theme */
.final-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 22px 58px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
  align-items: center;
}
.final-hero-copy h1 {
  max-width: 790px;
}
.hero-art-wrap {
  position: relative;
  isolation: isolate;
}
.hero-art-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -4% auto auto;
  width: 72%;
  height: 46%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(125,180,255,.23), rgba(125,180,255,0) 70%);
  filter: blur(20px);
  z-index: -1;
}
.hero-art {
  width: min(100%, 470px);
  display: block;
  margin: 0 auto;
  border-radius: 34px;
  box-shadow: 0 32px 90px rgba(11,22,39,.16);
}
.official-icon-inline {
  width: 72px;
  height: 72px;
  border-radius: 19px;
  box-shadow: 0 18px 36px rgba(11,22,39,.18);
}
.brand-proof {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 28px 0;
}
.brand-proof strong {
  display: block;
}
.brand-proof p {
  margin: 0;
}
.premium-card {
  background: linear-gradient(145deg, rgba(13,26,43,.98), rgba(23,52,85,.94) 65%, rgba(11,22,39,.98));
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 30px 78px rgba(11,22,39,.22);
}
.premium-card p, .premium-card li {
  color: rgba(255,255,255,.82);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.showcase-mini {
  min-height: 255px;
}
@media (max-width: 980px) {
  .final-hero {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }
  .hero-art {
    width: min(100%, 420px);
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}


/* Humanized final polish */
.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}
.app-store-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 18px;
  border-radius: 18px;
  background: #050b14;
  color: white;
  box-shadow: 0 18px 34px rgba(11,22,39,.24);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 900;
  text-decoration: none;
}
.app-store-cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.apple-mark {
  font-size: 24px;
  line-height: 1;
}
.store-text {
  display: grid;
  line-height: 1.05;
}
.store-text small {
  font-size: 11px;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}
.store-text strong {
  font-size: 18px;
  color: white;
}
.future-note {
  color: var(--muted);
  font-size: 13px;
}
.idea-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.idea {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,37,.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(11,22,39,.05);
}
.idea strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.why-strip .panel {
  padding: 18px;
}
@media (max-width: 900px) {
  .idea-list,
  .why-strip {
    grid-template-columns: 1fr;
  }
}


/* ULTIMATE FINAL DESIGN PASS — premium senior developer conversion polish */
:root {
  --navy-glass: rgba(10, 22, 38, .84);
  --navy-glass-2: rgba(18, 43, 72, .88);
  --cream-glow: rgba(255, 250, 240, .82);
  --blue-glow: rgba(125, 180, 255, .30);
}
body {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
.site-header { box-shadow: 0 10px 36px rgba(11,22,39,.045); }
.nav { min-height: 72px; }
.brand { text-decoration: none !important; }
.nav-links a:not(.nav-cta) { opacity: .9; font-weight: 760; }
.nav-links a:not(.nav-cta):hover { opacity: 1; }
.final-hero {
  position: relative;
  padding-top: 92px;
  padding-bottom: 72px;
}
.final-hero::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  max-width: var(--max);
  margin: auto;
  background: linear-gradient(90deg, transparent, rgba(15,23,37,.14), transparent);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(35, 77, 128, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 12px 32px rgba(11,22,39,.055);
  font-size: 13px;
  font-weight: 900;
  color: var(--blue-700);
  margin-bottom: 18px;
}
.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,157,86,.12);
}
.final-hero-copy h1 { letter-spacing: -.072em; }
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15,23,37,.08);
  background: rgba(255,255,255,.74);
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 850;
}
.hero-proof::before {
  content: "✓";
  color: var(--green);
  font-weight: 950;
}
.hero-art {
  border: 1px solid rgba(255,255,255,.74);
  transform: translateZ(0);
}
.hero-art-wrap::after {
  content: "";
  position: absolute;
  width: 56%;
  height: 52%;
  right: 4%;
  bottom: 4%;
  z-index: -1;
  background: radial-gradient(circle, rgba(201,157,86,.18), transparent 72%);
  filter: blur(20px);
}
.conversion-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 42px;
}
.conversion-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(145deg, var(--navy-glass), var(--navy-glass-2));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 32px;
  padding: 26px;
  color: white;
  box-shadow: 0 32px 90px rgba(11,22,39,.22);
  backdrop-filter: blur(18px);
}
.conversion-inner p { color: rgba(255,255,255,.78); margin: 0; }
.conversion-inner strong { color: white; }
.glass-card {
  background: linear-gradient(145deg, rgba(11,22,39,.94), rgba(23,52,85,.90));
  color: white;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 28px 75px rgba(11,22,39,.19);
  overflow: hidden;
  position: relative;
}
.glass-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: -80px;
  right: -70px;
  background: radial-gradient(circle, rgba(125,180,255,.24), transparent 68%);
}
.glass-card p, .glass-card li { color: rgba(255,255,255,.82); }
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.compare-card {
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(15,23,37,.08);
  background: rgba(255,255,255,.72);
  box-shadow: 0 15px 44px rgba(11,22,39,.06);
}
.compare-card.winner {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(234,243,255,.88));
  border-color: rgba(35,77,128,.16);
}
.compare-card h3 { margin-bottom: 12px; }
.compare-card ul { margin: 0; padding-left: 18px; }
.product-metric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.metric {
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,37,.08);
  border-radius: 22px;
  padding: 18px;
}
.metric strong {
  display: block;
  font-size: 28px;
  letter-spacing: -.04em;
  color: var(--blue-700);
}
.cta-final {
  background:
    radial-gradient(circle at 10% 0%, rgba(125,180,255,.24), transparent 24rem),
    linear-gradient(145deg, #0b1627, #173455 60%, #10243d);
  border-radius: 36px;
  padding: 38px;
  color: white;
  box-shadow: 0 36px 95px rgba(11,22,39,.24);
  border: 1px solid rgba(255,255,255,.13);
}
.cta-final h2 { color: white; }
.cta-final p { color: rgba(255,255,255,.78); }
.app-store-cta.disabled { cursor: default; }
@media (max-width: 980px) {
  .conversion-inner, .comparison, .product-metric { grid-template-columns: 1fr; }
}
