@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {

  color-scheme: light;

  --bg: #ffffff;
  --bg-soft: #f3f8fc;
  --surface: #ffffff;
  --line: rgba(13, 42, 70, .11);
  --text: #0d2137;
  --text-2: #4c657e;
  --accent: #017FC7;
  --accent-strong: #016397;
  --accent-soft: rgba(1, 127, 199, .09);

  --accent-text: #016397;
  --btn-bg: #016397;
  --btn-fg: #ffffff;

  --gold: #f5a623;
  --badge-bg: #0c1117;
  --badge-text: #ffffff;
  --nav-bg: rgba(255, 255, 255, .72);
  --shadow-card: 0 2px 6px rgba(13, 42, 70, .05);
  --shadow-lift: 0 18px 40px -18px rgba(13, 42, 70, .25);
  --shadow-device: 0 44px 80px -32px rgba(2, 62, 102, .42);
  --ease: cubic-bezier(.22, .7, .25, 1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0a141f;
  --bg-soft: #0e1a29;
  --surface: #101d2d;
  --line: rgba(148, 196, 236, .14);
  --text: #e9f2fa;
  --text-2: #9cb3c9;
  --accent: #3aa7e6;
  --accent-strong: #6ec0f0;
  --accent-soft: rgba(58, 167, 230, .12);

  --accent-text: #3aa7e6;
  --btn-bg: #3aa7e6;
  --btn-fg: #0a141f;
  --badge-bg: #101d2d;
  --badge-text: #f2f8fd;
  --nav-bg: rgba(10, 20, 31, .72);
  --shadow-card: 0 2px 6px rgba(0, 0, 0, .25);
  --shadow-lift: 0 18px 40px -18px rgba(0, 0, 0, .6);
  --shadow-device: 0 44px 80px -32px rgba(0, 0, 0, .7);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #0a141f;
    --bg-soft: #0e1a29;
    --surface: #101d2d;
    --line: rgba(148, 196, 236, .14);
    --text: #e9f2fa;
    --text-2: #9cb3c9;
    --accent: #3aa7e6;
    --accent-strong: #6ec0f0;
    --accent-soft: rgba(58, 167, 230, .12);

    --accent-text: #3aa7e6;
    --btn-bg: #3aa7e6;
    --btn-fg: #0a141f;
    --badge-bg: #101d2d;
    --badge-text: #f2f8fd;
    --nav-bg: rgba(10, 20, 31, .72);
    --shadow-card: 0 2px 6px rgba(0, 0, 0, .25);
    --shadow-lift: 0 18px 40px -18px rgba(0, 0, 0, .6);
    --shadow-device: 0 44px 80px -32px rgba(0, 0, 0, .7);
  }
}

body {
  font-family: "Inter", "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(20px, 4.5vw, 44px); }
section { padding-block: clamp(64px, 9vw, 116px); }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; font-weight: 800; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus {
  left: 0;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-text); background: var(--accent-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px;
}
.brandpin {
  width: 19px; height: 19px; flex: none;
  background: url("/img/map-pin-light.png") center/contain no-repeat;
}
[data-theme="dark"] .brandpin { background-image: url("/img/map-pin-dark.png"); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brandpin { background-image: url("/img/map-pin-dark.png"); }
}

.only-dark { display: none !important; }
[data-theme="dark"] .only-light { display: none !important; }
[data-theme="dark"] .only-dark { display: block !important; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .only-light { display: none !important; }
  :root:not([data-theme="light"]) .only-dark { display: block !important; }
}

.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 60;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 80px; }
.brand { display: flex; align-items: center; min-width: 0; }
.brand img { height: 54px; width: auto; }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 14.5px; font-weight: 600; color: var(--text-2); }
.nav-links a { transition: color .25s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  margin-left: 6px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--btn-bg); color: var(--btn-fg); font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 6px 16px -6px rgba(1, 127, 199, .55);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(1, 127, 199, .65); }
.theme-btn {
  margin-left: auto; display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--line); background: var(--surface);
  color: var(--text-2); cursor: pointer; transition: color .25s, border-color .25s, transform .25s;
}
.nav-links + .theme-btn { margin-left: 0; }
.theme-btn:hover { color: var(--accent); border-color: var(--accent); transform: rotate(12deg); }
.theme-btn svg { width: 19px; height: 19px; }

.theme-icon { display: none; }
html:not([data-theme-pref]) .theme-icon--system,
[data-theme-pref="system"] .theme-icon--system,
[data-theme-pref="light"] .theme-icon--light,
[data-theme-pref="dark"] .theme-icon--dark { display: block; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .theme-btn { margin-left: auto; }
  .brand img { height: 48px; }
}
@media (max-width: 520px) {
  .nav-inner { gap: 14px; }
  .brand img { height: 44px; }
  .nav-cta { padding: 9px 15px; font-size: 13px; }
}

.hero { position: relative; padding-top: calc(80px + clamp(48px, 7vw, 90px)); padding-bottom: clamp(60px, 8vw, 110px); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg .glow {
  position: absolute; right: -12%; top: -18%; width: 62vw; height: 62vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(1, 127, 199, .16), transparent 62%);
  filter: blur(10px);
}
.hero-bg .dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(1, 127, 199, .14) 1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: radial-gradient(58% 58% at 68% 34%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(58% 58% at 68% 34%, #000 0%, transparent 75%);
}
.hero-bg .mark {
  position: absolute; right: -5%; top: 3%; width: min(44vw, 600px); aspect-ratio: 1/1;
  background: url("/img/map-pin-light.png") center/contain no-repeat;
  opacity: .07; transform: rotate(-12deg);
}
[data-theme="dark"] .hero-bg .mark { background-image: url("/img/map-pin-dark.png"); opacity: .1; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero-bg .mark { background-image: url("/img/map-pin-dark.png"); opacity: .1; }
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.35rem); margin: 22px 0 18px; }
.hero h1 .tint {
  background: linear-gradient(92deg, var(--accent), var(--accent-strong));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--text-2); max-width: 34em; margin-bottom: 30px; }
.badges { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.stats { display: flex; gap: clamp(20px, 3vw, 36px); margin-top: 38px; flex-wrap: wrap; }
.stat { padding-left: 16px; border-left: 2px solid var(--accent-soft); }
.stat b { display: block; font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--accent); }
.stat span { font-size: 13px; color: var(--text-2); }
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone-drift { position: relative; animation: float 7.5s ease-in-out infinite; }
.hero-phone img.framed { width: min(340px, 72vw); filter: drop-shadow(0 46px 60px rgba(2, 62, 102, .34)); }
[data-theme="dark"] .hero-phone img.framed { filter: drop-shadow(0 46px 60px rgba(0, 0, 0, .66)); }
.chip-float {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 15px; box-shadow: var(--shadow-lift);
  font-size: 13px; font-weight: 600; white-space: nowrap;
}
.chip-float svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.chip-float small { display: block; font-weight: 500; color: var(--text-2); font-size: 11.5px; }
.chip-a { top: 16%; left: -8%; animation: float 6.2s .6s ease-in-out infinite; }
.chip-b { bottom: 14%; right: -9%; animation: float 6.8s 1.1s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phone { margin-top: 16px; }
  .chip-a { left: 2%; }
  .chip-b { right: 2%; }
}

.badge { display: inline-block; transition: transform .28s var(--ease); }
.badge:hover { transform: translateY(-3px); }
.badge img { width: auto; }
.badge--apple img { height: 40px; }
.badge--google img { height: 59.5px; }

.trust { padding-block: 0; }
.trust-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding-block: 22px; text-align: center;
  color: var(--text-2); font-size: 14.5px;
}
.trust-inner b { color: var(--text); font-weight: 700; }
.trust-inner .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }

.sec-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 16px 0 12px; }
.sec-head p { color: var(--text-2); font-size: 16.5px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  padding: 28px 26px; box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: rgba(1, 127, 199, .35); }
.feat .ic {
  width: 46px; height: 46px; border-radius: 14px; background: var(--accent-soft);
  display: grid; place-items: center; color: var(--accent); margin-bottom: 18px;
}
.feat .ic svg { width: 23px; height: 23px; }
.feat h3 { font-size: 17px; font-weight: 700; letter-spacing: -.015em; margin-bottom: 8px; }
.feat p { font-size: 14.5px; color: var(--text-2); }
@media (max-width: 1000px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .feat-grid { grid-template-columns: 1fr; } }

.dive { background: var(--bg); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.row + .row { margin-top: clamp(72px, 9vw, 120px); }
.row.rev .media { order: 2; }
.row h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 14px 0 14px; }
.row .copy p { color: var(--text-2); font-size: 16px; margin-bottom: 18px; }
.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.ticks svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 3px; }
.media { display: flex; justify-content: center; position: relative; }
.media .halo {
  position: absolute; inset: 8% -4% 0;
  background: radial-gradient(52% 52% at 50% 46%, var(--accent-soft), transparent 72%);
  z-index: 0; border-radius: 40px;
}
.device {
  position: relative; z-index: 1; border-radius: 46px; background: #0d1016; padding: 11px;
  border: 1px solid rgba(255, 255, 255, .09); box-shadow: var(--shadow-device);
  width: min(300px, 74vw);
}
.device img { border-radius: 36px; width: 100%; }
.device::before {
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 25%; height: 20px; background: #0d1016; border-radius: 11px; z-index: 3;
}
.device::after {
  content: ""; position: absolute; inset: 11px; border-radius: 36px; z-index: 2; pointer-events: none;
  background: linear-gradient(118deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, 0) 32%);
}
.device--wide { width: min(560px, 92vw); border-radius: 26px; padding: 12px; }
.device--wide img { border-radius: 16px; }
.device--wide::before { display: none; }
.device--wide::after { inset: 12px; border-radius: 16px; }
.media-pair { display: grid; gap: 22px; justify-items: center; }
@media (max-width: 940px) {
  .row { grid-template-columns: 1fr; }
  .row .media { order: -1; }
  .row.rev .media { order: -1; }
}

.how { background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 30px 26px;
  box-shadow: var(--shadow-card); position: relative;
}
.step .num {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--btn-bg); color: var(--btn-fg); font-weight: 800; font-size: 19px; margin-bottom: 18px;
  box-shadow: 0 8px 18px -8px rgba(1, 127, 199, .7);
}
.step h3 { font-size: 17.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text-2); }
@media (max-width: 840px) { .steps { grid-template-columns: 1fr; } }

.chips { display: flex; flex-wrap: wrap; gap: 11px; margin: 26px 0 22px; }
.chip {
  border: 1px solid var(--line); background: var(--surface); border-radius: 999px;
  padding: 9px 17px; font-size: 14px; font-weight: 600; color: var(--text-2);
  display: inline-flex; align-items: center; gap: 9px;
  transition: border-color .25s, color .25s, transform .25s var(--ease);
}
.chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.chip svg { width: 14px; height: 14px; color: var(--accent); }
.more-link { font-weight: 700; color: var(--accent-text); font-size: 15px; display: inline-flex; align-items: center; gap: 7px; }
.more-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.more-link:hover svg { transform: translateX(4px); }

.cta-panel {
  position: relative; overflow: hidden; border-radius: 32px; text-align: center;
  padding: clamp(44px, 7vw, 80px) clamp(24px, 5vw, 72px);
  background: linear-gradient(135deg, #01426b 0%, #01568a 52%, #0170b0 100%);
  color: #fff; box-shadow: var(--shadow-lift);
}
.cta-icon {
  width: 94px; height: 94px; border-radius: 24px; margin: 0 auto 24px; display: block; position: relative;
  box-shadow: 0 14px 34px rgba(1, 30, 55, .4), 0 0 0 4px rgba(255, 255, 255, .28);
}
.cta-panel h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin-bottom: 14px; }
.cta-panel p { font-size: 16.5px; opacity: 1; max-width: 36em; margin: 0 auto 30px; }
.cta-panel .badges { justify-content: center; }
.cta-panel .fine { margin-top: 24px; font-size: 13px; opacity: .95; }
.cta-compass { position: absolute; right: -70px; top: -70px; width: 300px; height: 300px; opacity: .14; animation: spin 70s linear infinite; }
.cta-compass.two { left: -90px; right: auto; top: auto; bottom: -110px; width: 340px; height: 340px; opacity: .1; animation-duration: 95s; }
@keyframes spin { to { transform: rotate(360deg); } }

.page-head { padding-top: calc(80px + clamp(36px, 5vw, 64px)); padding-bottom: clamp(24px, 3vw, 40px); }
.page-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 14px; }
.prose { padding-bottom: clamp(64px, 9vw, 116px); max-width: 72ch; }
.prose h2 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin: 2em 0 .6em; }
.prose h3 { font-size: 1.15rem; margin: 1.6em 0 .5em; }
.prose p, .prose li { color: var(--text-2); font-size: 16px; }
.prose p { margin-bottom: 1.1em; }
.prose ul, .prose ol { margin: 0 0 1.1em 1.4em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--accent-text); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--text); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.prose img { border-radius: 14px; margin: 1.4em 0; }
.prose code {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 6px;
  padding: .1em .4em; font-size: .92em;
}

.notice {
  border: 1px solid var(--line); background: var(--bg-soft); border-radius: 18px;
  padding: clamp(24px, 4vw, 40px); text-align: center; max-width: 46em;
}
.notice .ic { width: 42px; height: 42px; color: var(--accent); margin: 0 auto 14px; }
.notice h2 { font-size: 1.25rem; margin-bottom: 10px; }
.notice p { color: var(--text-2); font-size: 15.5px; }

.contact-form { max-width: 42em; padding-bottom: clamp(64px, 9vw, 116px); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 7px; }
.field .optional { font-weight: 400; color: var(--text-2); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color .25s;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 160px; }
.field span.optional { display: block; margin-top: 6px; font-size: 13px; }

.field-error, .field-errors { display: block; margin-top: 6px; font-size: 14px; color: #c0392b; font-weight: 600; }
[data-theme="dark"] .field-error, [data-theme="dark"] .field-errors { color: #ff8b7d; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .field-error,
  :root:not([data-theme="light"]) .field-errors { color: #ff8b7d; }
}
.field-errors:empty, .field-error:empty { display: none; }

.submit { border: 0; cursor: pointer; font-size: 15px; padding: 13px 26px; }

footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--bg); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand img { height: 46px; width: auto; margin-bottom: 14px; }
.foot-brand p { font-size: 13.5px; color: var(--text-2); max-width: 26em; }
.foot-col h2 { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); margin-bottom: 14px; font-weight: 700; }
.foot-col a { display: block; font-size: 14.5px; color: var(--text-2); padding-block: 5px; transition: color .25s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-2);
}
.foot-bottom a { color: var(--accent-text); font-weight: 600; }
@media (max-width: 840px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--d, 0ms);
}
.rv.in { opacity: 1; transform: none; }

.d-70  { --d: 70ms; }
.d-80  { --d: 80ms; }
.d-90  { --d: 90ms; }
.d-130 { --d: 130ms; }
.d-140 { --d: 140ms; }
.d-160 { --d: 160ms; }
.d-170 { --d: 170ms; }
.d-180 { --d: 180ms; }
.d-200 { --d: 200ms; }
.d-220 { --d: 220ms; }
.d-230 { --d: 230ms; }
.d-240 { --d: 240ms; }
.d-290 { --d: 290ms; }
.d-320 { --d: 320ms; }
.d-350 { --d: 350ms; }

.brandpin--sm { width: 18px; height: 18px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
