:root {
  color-scheme: light;
  --ink: #10213f;
  --muted: #63718a;
  --blue: #0a6cf1;
  --blue-dark: #064db4;
  --cyan: #31d5ff;
  --line: #dce7f5;
  --surface: #f5f9ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.86); border-bottom: 1px solid rgba(220,231,245,.8);
  backdrop-filter: blur(18px);
}
.nav .wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; text-decoration: none; letter-spacing: -.03em; }
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.links { display: flex; gap: 24px; align-items: center; }
.links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.hero {
  min-height: calc(100vh - 72px); display: grid; place-items: center; overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(49,213,255,.25), transparent 28rem),
    radial-gradient(circle at 18% 75%, rgba(10,108,241,.15), transparent 30rem),
    linear-gradient(180deg, #fbfdff, #eef6ff);
}
.hero-inner { padding: 92px 0 70px; text-align: center; }
.eyebrow { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { max-width: 920px; margin: 18px auto 22px; font-size: clamp(3rem, 7vw, 6.8rem); line-height: .96; letter-spacing: -.065em; }
.gradient { color: var(--blue); }
.lead { max-width: 690px; margin: 0 auto; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.actions { display: flex; justify-content: center; gap: 12px; margin: 34px 0 23px; flex-wrap: wrap; }
.button {
  min-height: 50px; padding: 0 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; font-weight: 750; text-decoration: none;
  box-shadow: 0 12px 30px rgba(10,108,241,.25);
}
.button.secondary { color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: none; }
.trust { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.trust span { padding: 7px 11px; color: #45607d; background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; }
.product {
  width: min(900px, 100%); margin: 60px auto 0; padding: 14px; border-radius: 28px;
  background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 34px 90px rgba(25,75,137,.16);
}
.app-window { min-height: 360px; padding: 26px; border-radius: 18px; text-align: left; background: #fff; border: 1px solid var(--line); }
.window-top { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); font-weight: 800; }
.scan-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; margin-top: 22px; }
.scan-copy { padding: 26px; border-radius: 16px; background: var(--surface); }
.scan-copy h2 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.04em; }
.photo-stack { min-height: 230px; position: relative; border-radius: 16px; background: linear-gradient(145deg,#e8f4ff,#cae7ff); overflow: hidden; }
.photo-stack::before, .photo-stack::after {
  content: ""; position: absolute; width: 55%; height: 64%; border: 8px solid #fff; border-radius: 12px;
  background: linear-gradient(150deg, #7ddfff 0 42%, #2579dd 43% 64%, #0e519e 65%);
  box-shadow: 0 18px 30px rgba(10,70,140,.18);
}
.photo-stack::before { left: 16%; top: 22%; transform: rotate(-7deg); }
.photo-stack::after { right: 14%; top: 13%; transform: rotate(7deg); }
.section { padding: 110px 0; }
.section.alt { background: var(--surface); }
.section-head { max-width: 670px; margin: 0 auto 48px; text-align: center; }
.section h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.05em; line-height: 1.05; }
.section-head p, .card p, .step p { color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--blue); background: #e9f3ff; font-weight: 900; }
.card h3 { margin: 19px 0 7px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; counter-reset: steps; }
.step { position: relative; padding-top: 54px; counter-increment: steps; }
.step::before {
  content: "0" counter(steps); position: absolute; top: 0; color: var(--blue); font-weight: 850; letter-spacing: .08em;
}
.cta { padding: 70px 30px; border-radius: 28px; color: #fff; text-align: center; background: linear-gradient(135deg, #0756c5, #0a6cf1 55%, #1196dc); }
.cta h2 { margin-bottom: 14px; }
.cta p { color: #dceeff; }
.cta .button { color: var(--blue-dark); background: #fff; }
.footer { padding: 36px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.legal { padding: 80px 0 120px; }
.legal article { max-width: 780px; }
.legal h1 { margin: 0 0 12px; font-size: clamp(2.7rem, 6vw, 5rem); }
.legal h2 { margin-top: 36px; }
.legal .updated { color: var(--muted); }

@media (max-width: 760px) {
  .links a:not(.button) { display: none; }
  .hero-inner { padding-top: 70px; }
  .scan-grid, .cards, .steps { grid-template-columns: 1fr; }
  .photo-stack { min-height: 210px; }
  .button { width: 100%; }
}
