:root {
  --ink: #152033;
  --ink-soft: #42506a;
  --muted: #68758b;
  --line: #dbe2ec;
  --line-strong: #bdc8d8;
  --page: #ffffff;
  --soft: #f4f7fb;
  --blue: #0048ff;
  --blue-dark: #0036bf;
  --mint: #12b886;
  --rose: #e84572;
  --focus: #ffb000;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: var(--blue);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 226, 236, 0.9);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 82svh);
  overflow: hidden;
  align-items: center;
  background: #dce5f3 url("live-map.png") center 34% / cover no-repeat;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(9, 21, 44, 0.66);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0 48% 0 0;
  background: rgba(9, 21, 44, 0.43);
  content: "";
}

.hero-content {
  width: min(690px, 72%);
  padding: 92px 0 108px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 18px;
  color: #bfe0ff;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #ecf2fb;
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 720;
  text-decoration: none;
}

.button-primary {
  background: #ffffff;
  color: #0d2c6d;
}

.button-primary:hover {
  background: #eef4ff;
  color: #0d2c6d;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(12, 31, 67, 0.26);
  color: #ffffff;
}

.button-secondary:hover {
  background: rgba(12, 31, 67, 0.58);
  color: #ffffff;
}

.hero-note {
  margin: 18px 0 0;
  color: #d7e2f1;
  font-size: 13px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 118px;
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--ink);
  font-size: 16px;
}

.trust-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  line-height: 1.14;
}

.section-intro {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 88px;
  align-items: center;
}

.product-showcase > * {
  min-width: 0;
}

.phone-stage {
  position: relative;
  display: flex;
  min-height: 700px;
  align-items: center;
  justify-content: center;
}

.phone {
  position: relative;
  width: min(100%, 344px);
  padding: 8px;
  overflow: hidden;
  border: 1px solid #9aa7ba;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 28px 60px rgba(32, 47, 77, 0.24);
}

.phone img {
  width: 100%;
  border-radius: 23px;
}

.phone-secondary {
  position: absolute;
  right: -42px;
  bottom: 2px;
  width: 210px;
  transform: rotate(3deg);
  box-shadow: 0 22px 44px rgba(32, 47, 77, 0.18);
}

.feature-list {
  margin-top: 42px;
  border-top: 1px solid var(--line-strong);
}

.feature-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.feature-row h3,
.feature-row p {
  margin: 0;
}

.feature-row h3 {
  font-size: 19px;
}

.feature-row p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
}

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

.how-step {
  padding-top: 22px;
  border-top: 4px solid var(--blue);
}

.how-step:nth-child(2) {
  border-color: var(--mint);
}

.how-step:nth-child(3) {
  border-color: var(--rose);
}

.how-step span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.how-step h3 {
  margin: 10px 0 0;
  font-size: 22px;
}

.how-step p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.safety-points {
  border-top: 1px solid var(--line-strong);
}

.safety-point {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.safety-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.safety-point h3,
.safety-point p {
  margin: 0;
}

.safety-point h3 {
  font-size: 17px;
}

.safety-point p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.notice-band {
  background: #152033;
  color: #ffffff;
}

.notice-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 46px 0;
}

.notice-inner h2,
.notice-inner p {
  margin: 0;
}

.notice-inner h2 {
  font-size: 26px;
}

.notice-inner p {
  max-width: 730px;
  margin-top: 8px;
  color: #cbd5e4;
}

.notice-inner .button {
  border-color: #ffffff;
  color: #ffffff;
}

.faq-list {
  max-width: 860px;
  margin-top: 44px;
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 44px 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
}

.faq-list p {
  max-width: 760px;
  margin: -6px 0 22px;
  color: var(--ink-soft);
}

.site-footer {
  background: #0c1423;
  color: #d7dfeb;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 54px;
  padding: 72px 0 52px;
}

.single-page-footer {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.footer-brand p {
  max-width: 330px;
  margin: 16px 0 0;
  color: #aab7ca;
  font-size: 14px;
}

.footer-title {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #c4cfdd;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #2a3547;
  color: #97a5b8;
  font-size: 12px;
}

.legal-hero {
  padding: 74px 0 58px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.legal-hero .section-kicker {
  margin-bottom: 10px;
}

.legal-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: 48px;
  line-height: 1.12;
}

.legal-meta {
  margin: 16px 0 0;
  color: var(--muted);
}

.legal-summary {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 64px;
  align-items: start;
  padding: 64px 0 96px;
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 9px;
  padding-left: 16px;
  border-left: 2px solid var(--line);
}

.legal-toc a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--blue);
}

.legal-content section {
  scroll-margin-top: 96px;
}

.legal-content section + section {
  margin-top: 42px;
}

.legal-content h2,
.legal-content h3,
.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-top: 0;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.3;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-content th,
.legal-content td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: var(--soft);
  color: var(--ink);
}

.legal-callout {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: #eef4ff;
  color: var(--ink-soft);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0;
}

.support-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.support-item h3,
.support-item p {
  margin: 0;
}

.support-item p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px;
    background: #ffffff;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .menu-button {
    display: block;
  }

  .hero-content {
    width: min(720px, 92%);
  }

  .hero::after {
    right: 16%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .product-showcase,
  .safety-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 58px;
  }

  .phone-stage {
    order: 2;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-page-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  .nav-wrap {
    min-height: 64px;
  }

  .site-nav {
    top: 64px;
  }

  .brand span {
    max-width: 230px;
  }

  .hero {
    min-height: 720px;
    background-position: center 22%;
  }

  .hero::before {
    background: rgba(9, 21, 44, 0.72);
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding: 88px 0 102px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.05;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    min-height: 0;
    padding: 20px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    font-size: 34px;
  }

  .section-intro {
    font-size: 16px;
  }

  .phone-stage {
    min-height: 620px;
  }

  .phone {
    width: 290px;
  }

  .phone-secondary {
    right: -4px;
    width: 174px;
  }

  .feature-row {
    grid-template-columns: 42px 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .notice-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 56px;
  }

  .single-page-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .legal-hero {
    padding: 52px 0 42px;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-summary {
    font-size: 16px;
  }

  .legal-layout {
    padding: 42px 0 72px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-content {
    min-width: 0;
  }

  .legal-content table {
    display: block;
    overflow-x: auto;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) and (max-height: 650px) {
  .hero {
    min-height: calc(100svh - 112px);
  }

  .hero-content {
    padding: 28px 0 32px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .button {
    min-height: 44px;
    padding-block: 9px;
  }

  .hero-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
