:root {
  --blue: #1677f2;
  --blue-soft: #4d9bff;
  --navy-0: #071b3a;
  --navy-1: #0b2254;
  --navy-2: #0d1a3a;
  --ink: #101828;
  --muted: #667085;
  --paper: #f7f9fc;
  --line: #e4e7ec;
  --white-60: rgba(255, 255, 255, 0.6);
  --white-30: rgba(255, 255, 255, 0.3);
  --max: 1152px;
  --nav: 76px;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Manrope, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, .btn { font-family: inherit; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(7, 27, 58, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner, .wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.4px;
  font-size: 20px;
}
.brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-60);
}
.nav-links a:hover { color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.btn.lg { padding: 16px 32px; font-size: 16px; }
.menu-btn {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 8px 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav));
  display: flex;
  align-items: center;
  color: #fff;
  padding: 48px 0 72px;
  background:
    radial-gradient(ellipse 50% 60% at 72% 42%, rgba(22, 119, 242, 0.28), transparent 62%),
    linear-gradient(169deg, #071b3a 8%, #0b2254 46%, #0d1a3a 92%);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.glow-a {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 12%;
  background: rgba(77, 155, 255, 0.22);
  animation: drift 9s ease-in-out infinite;
}
.glow-b {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: 10%;
  background: rgba(22, 119, 242, 0.16);
  animation: drift 11s ease-in-out infinite reverse;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(52px, 5.6vw, 80px);
  line-height: 1.05;
  letter-spacing: -2.4px;
  font-weight: 800;
}
.hero h1 .w {
  display: inline-block;
  margin-right: 0.18em;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--d) * 90ms);
}
.hero h1 .accent {
  color: #1677f2;
  text-shadow: 0 0 28px rgba(22, 119, 242, 0.45);
}
.brand-line {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
}
.brand-line .accent { color: #1677f2; }
.rise {
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--d) * 90ms);
}
.swap {
  color: #4d9bff;
  font-weight: 700;
  display: inline-block;
  min-width: 5.2ch;
  animation: swapIn 2.8s ease infinite;
}
.text-link {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}
.text-link span {
  display: inline-block;
  transition: transform 0.25s ease;
}
.text-link:hover span { transform: translateX(4px); }
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 8px 0 22px;
}
.glow-btn {
  box-shadow: 0 0 0 0 rgba(22, 119, 242, 0.55);
  animation: pulse 2.4s ease-out infinite;
}
.glow-btn:hover { transform: translateY(-2px); }

.stage {
  --px: 0;
  --py: 0;
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.stage-shot {
  width: min(680px, 118%);
  max-width: none;
  height: auto;
  margin-right: -8%;
  transform: translate3d(calc(var(--px) * -22px), calc(var(--py) * -14px), 0);
  animation: heroIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) both, float 7s ease-in-out 1s infinite;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.35));
}
@keyframes heroIn {
  from { opacity: 0; scale: 0.94; }
  to { opacity: 1; scale: 1; }
}
.phone {
  position: absolute;
  transition: transform 0.35s ease;
}
.phone .bezel {
  background: #0a0c10;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.phone .screen {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #12203c, #0b1428);
  height: 100%;
}
.island {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 18px;
  width: 72px;
  height: 18px;
  margin-left: -36px;
  border-radius: 20px;
  background: #05070b;
}
.phone.back { width: 210px; height: 430px; opacity: 0.92; animation: float 6.5s ease-in-out infinite; }
.phone.back .screen { padding: 48px 16px 16px; }
.phone.back.left {
  left: 0;
  top: 70px;
  transform: rotate(-10deg) translate3d(calc(var(--px) * 28px), calc(var(--py) * 18px), 0);
}
.phone.back.right {
  right: 0;
  top: 36px;
  animation-delay: -2s;
  transform: rotate(9deg) translate3d(calc(var(--px) * -22px), calc(var(--py) * 16px), 0);
}
.phone.front {
  width: 250px;
  height: 520px;
  left: 50%;
  top: 18px;
  margin-left: -125px;
  z-index: 2;
  animation: float 5.5s ease-in-out infinite;
  animation-delay: -1s;
  transform: translate3d(calc(var(--px) * -16px), calc(var(--py) * -12px), 0);
}
.phone.front .screen { height: 500px; }
.onboard p, .result strong {
  margin: 8px 0 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.tiles, .thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tiles span, .thumbs span {
  aspect-ratio: 1;
  border-radius: 12px;
  background: rgba(77, 155, 255, 0.22);
}
.tiles span:nth-child(2) { background: rgba(22, 119, 242, 0.55); }
.next {
  margin-top: 22px;
  text-align: center;
  background: var(--blue);
  border-radius: 999px;
  padding: 10px;
  font-weight: 700;
}
.result .tiny { margin: 18px 0 4px; color: var(--blue-soft); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.result strong { display: block; font-size: 18px; }
.conf { color: rgba(255,255,255,.7); font-size: 13px; margin: 0; }
.bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,.12); margin: 14px 0 8px; overflow: hidden; }
.bar i { display: block; height: 100%; width: 92%; background: linear-gradient(90deg, #1677f2, #4d9bff); animation: fill 2.8s ease infinite; }
.cam { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; }
.idchip {
  position: absolute;
  top: 52px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 16, 36, 0.82);
  border: 1px solid rgba(77, 155, 255, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
}
.idchip.pop { animation: pop 0.55s cubic-bezier(0.16, 1, 0.3, 1); }
.live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4d9bff;
  box-shadow: 0 0 0 0 rgba(77, 155, 255, 0.7);
  animation: ping 1.6s ease-out infinite;
}
.finder {
  width: 168px;
  height: 168px;
  position: relative;
  display: grid;
  place-items: center;
  color: #d7e8ff;
}
.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid #4d9bff;
}
.corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.scanline {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4d9bff, transparent);
  box-shadow: 0 0 16px #1677f2;
  animation: scan 2.2s ease-in-out infinite;
}
.glyph { width: 78px; height: 56px; display: none; }
.finder[data-kind="laptop"] .g-laptop,
.finder[data-kind="plant"] .g-plant,
.finder[data-kind="shoe"] .g-shoe,
.finder[data-kind="crystal"] .g-crystal { display: block; animation: pop 0.45s ease; }
.shutter {
  position: absolute;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: inset 0 0 0 4px #0b1428, 0 0 0 8px rgba(255,255,255,.08);
}
.shutter::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #fff;
  animation: shutter 2.8s ease infinite;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 700;
}
.scroll-hint i {
  width: 18px;
  height: 18px;
  border-right: 2px solid #4d9bff;
  border-bottom: 2px solid #4d9bff;
  transform: rotate(45deg);
  animation: bob 1.4s ease-in-out infinite;
}

.trust {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: #fff;
  color: var(--ink);
}
.trust-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.trust-row svg { flex: none; color: var(--blue); }

.mini-finder {
  position: relative;
  height: 120px;
  margin: 16px 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 60%, rgba(77,155,255,.35), transparent 55%),
    #101828;
  overflow: hidden;
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--d, 0) * 1s);
}
.js .reveal.in { opacity: 1; transform: none; }
.card, .badge, .btn { transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(77, 155, 255, 0.35); }
.badge:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.28); }
.quotes span { animation: float 5s ease-in-out infinite; }
.quotes span:nth-child(2n) { animation-delay: -1.5s; }
.faq summary { transition: color 0.2s ease; }
.faq summary:hover { color: #4d9bff; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes swapIn {
  0%, 12% { opacity: 0; transform: translateY(8px); }
  18%, 82% { opacity: 1; transform: none; }
  92%, 100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
@keyframes scan {
  0% { top: 12px; }
  50% { top: calc(100% - 14px); }
  100% { top: 12px; }
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(77, 155, 255, 0.65); }
  100% { box-shadow: 0 0 0 10px rgba(77, 155, 255, 0); }
}
@keyframes pop {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 119, 242, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(22, 119, 242, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 119, 242, 0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes bob {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(3px, 3px); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, -18px); }
}
@keyframes fill {
  0% { width: 18%; }
  70%, 100% { width: 92%; }
}
@keyframes shutter {
  0%, 70%, 100% { transform: scale(1); }
  78% { transform: scale(0.86); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

.section {
  padding: 96px 0;
  background: #fff;
  color: var(--ink);
}
.section:nth-of-type(even) {
  background:
    radial-gradient(ellipse 40% 50% at 0% 0%, rgba(22, 119, 242, 0.08), transparent 70%),
    #f7f9fc;
}
.kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.kicker .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 8px;
  transform: translateY(-1px);
}
h2 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.6px;
  font-weight: 800;
}
.section .lead, .lead {
  color: var(--muted);
}
.hero .lead {
  color: var(--white-60);
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
}
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.grid-3, .grid-2, .grid-4 {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
}
.card h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.3px; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 15px; }
.num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(22,119,242,.16);
  color: var(--blue-soft);
  font-weight: 800;
  margin-bottom: 16px;
}

.shift-bad { background: rgba(255,255,255,.03); }
.shift-good {
  background: linear-gradient(180deg, rgba(22,119,242,.18), rgba(22,119,242,.05));
  border-color: rgba(22,119,242,.35);
}
.list { list-style: none; padding: 0; margin: 18px 0 0; }
.list li {
  padding: 10px 0 10px 22px;
  position: relative;
  color: var(--ink);
  line-height: 1.4;
}
.shift-bad .list li::before { content: "–"; position: absolute; left: 0; color: #f97066; }
.shift-good .list li::before { content: "✓"; position: absolute; left: 0; color: #4d9bff; }
.label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.feature.reverse { grid-template-columns: .9fr 1.1fr; }
.feature.reverse .copy { order: 2; }
.checks { margin: 20px 0 0; padding: 0; list-style: none; }
.checks li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--ink);
}
.checks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 14px;
}
.panel {
  background: #0d1117;
  color: #fff;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 54px rgba(0,0,0,.45);
  padding: 22px;
  min-height: 280px;
}
.panel .chip {
  display: inline-flex;
  background: #eef6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
}
.panel h4 { margin: 12px 0 6px; font-size: 22px; color: #fff; }
.panel p { color: #98a2b3; margin: 0; line-height: 1.5; }
.panel.light { background: #fff; color: var(--ink); }
.panel.light h4 { color: var(--ink); }
.panel.light p { color: var(--muted); }
.quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.quotes span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  color: var(--muted);
  line-height: 1.55;
  margin: 10px 0 0;
}

.cta {
  text-align: center;
  color: #fff;
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse at center, rgba(22,119,242,.28), transparent 60%),
    linear-gradient(180deg, #071b3a, #0b2254);
}
.badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  border: 1.3px solid #e4e7ec;
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 168px;
}
.badge img { width: 24px; height: 24px; }
.badge small { display: block; font-size: 10px; opacity: .8; line-height: 1.2; }
.badge strong { display: block; font-size: 14px; line-height: 1.2; }

.cta .lead { color: var(--white-60); }
.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0 28px;
  background: var(--navy-0);
  color: var(--white-60);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}
.footer h5 { margin: 0 0 12px; color: #fff; font-size: 13px; letter-spacing: .4px; }
.footer a { display: block; padding: 4px 0; color: var(--white-60); }
.footer a:hover { color: #fff; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
}
.legal nav { display: flex; gap: 16px; }

.subpage {
  padding: 56px 0 88px;
  background: #fff;
  color: var(--ink);
}
.subpage h1 {
  margin: 8px 0 16px;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: -1.6px;
  line-height: 1.05;
}
.prose { max-width: 720px; }
.prose p, .prose li { color: var(--muted); line-height: 1.65; font-size: 16px; }
.prose h2 { font-size: 28px; margin-top: 28px; }
.contact-form { display: grid; gap: 12px; max-width: 520px; margin-top: 20px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.form-note { min-height: 1.4em; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav);
    left: 0;
    right: 0;
    background: #071b3a;
    padding: 16px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .menu-btn { display: inline-flex; }
  .hero { min-height: 0; padding: 36px 0 28px; }
  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero h1 { font-size: 52px; letter-spacing: -1.8px; }
  .hero-actions { flex-wrap: wrap; }
  .stage { min-height: 0; transform: none; margin: 12px 0 0; }
  .stage-shot { width: 100%; margin-right: 0; }
  .scroll-hint { display: none; }
  .grid-3, .grid-4, .grid-2, .feature, .feature.reverse, .footer-grid {
    grid-template-columns: 1fr;
  }
  .feature.reverse .copy { order: 0; }
  .section { padding: 72px 0; }
  .nav { height: auto; }
  .nav-inner { position: relative; width: min(var(--max), calc(100% - 32px)); }
  .nav-links.open { top: 100%; }
  .hero h1 { font-size: 44px; }
  .badges { justify-content: flex-start; }
  .badge { min-width: 0; flex: 1 1 160px; }
  .trust-row { justify-content: flex-start; }
  .legal, .legal nav { flex-direction: column; align-items: flex-start; }
  .footer .brand { color: #fff; }
}

@media (max-width: 640px) {
  .hero { padding: 28px 0 12px; }
  .hero h1 { font-size: 36px; letter-spacing: -1.2px; }
  .hero .lead, .lead { font-size: 16px; }
  .hero-actions .btn.lg { width: 100%; }
  .badges { flex-direction: column; }
  .badge { width: 100%; }
  .trust { padding: 18px 0; }
  .trust-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section { padding: 56px 0; }
  h2 { font-size: 32px; }
  .quotes span { width: 100%; }
}
