:root {
  color-scheme: light;
  --navy: #1e293b;
  --hero: #03142e;
  --blue: #2d7ff9;
  --soft: #eaf2ff;
  --muted: #64748b;
  --border: #dce6f2;
  --bg: #f4f8fc;
  --shadow: 0 18px 42px rgba(3, 20, 46, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--bg);
  color: var(--navy);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  font-weight: 800;
}
.skip-link:focus {
  top: 12px;
}
.page-shell {
  width: min(1650px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  padding: 6px 13px 6px 6px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #071f42, #0c3b78);
  box-shadow: 0 8px 20px rgba(11, 46, 95, 0.22);
}
.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 13px;
  object-fit: cover;
}
.brand-copy {
  display: grid;
  gap: 3px;
}
.brand-copy strong {
  font-size: 1.3rem;
  line-height: 1;
}
.brand-copy small {
  color: #d7e9ff;
  font-size: 0.66rem;
  font-weight: 750;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 12px 14px;
  border-radius: 13px;
  font-size: 0.93rem;
  font-weight: 800;
}
.nav a:hover,
.nav a:focus-visible {
  background: var(--soft);
  outline: 0;
}
.nav .nav-primary {
  margin-left: 4px;
  color: #fff;
  background: #2563eb;
}
.menu-button {
  display: none;
  margin-left: auto;
  min-width: 48px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  font-weight: 850;
}
main {
  padding: 24px 0 140px;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: 30px;
  min-height: 540px;
  padding: 28px;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--hero), #082a5e 62%, #0b4b9e);
  box-shadow: 0 22px 42px rgba(3, 20, 46, 0.24);
  min-width: 0;
}
.hero-glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
}
.hero-content {
  min-width: 0;
}
.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0 0 26px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}
.eyebrow strong,
.lead strong {
  color: #ffa31a;
}
h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 3.65rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
h1 span {
  color: #2d8cff;
}
.lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 900;
  text-align: center;
}
.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(45, 127, 249, 0.25);
}
.button.secondary {
  border-color: var(--border);
  background: #fff;
  color: var(--navy);
}
.store-badge {
  overflow: hidden;
  display: block;
  height: 66px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.store-badge img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.google-play {
  height: 80px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.hero-stats li {
  display: grid;
  gap: 2px;
  width: 148px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}
.hero-stats strong {
  color: #60a5fa;
  font-size: 1.4rem;
}
.hero-stats li:first-child strong {
  color: #ffa31a;
}
.hero-stats li:last-child strong {
  color: #4ade80;
}
.hero-stats span {
  font-size: 0.78rem;
  font-weight: 800;
}
.secure-note {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}
.hero-visual {
  min-width: 0;
  max-width: 100%;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}
.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1000/788;
  border-radius: 21px;
  object-fit: contain;
}
.intro {
  max-width: 900px;
  margin: 42px auto 22px;
  text-align: center;
}
.section-kicker {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.intro h2,
.experience h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.025em;
}
.intro p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(30, 41, 59, 0.05);
}
.feature-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 15px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 900;
}
.feature-card h3,
.experience h3 {
  margin: 0;
  font-size: 1.08rem;
}
.feature-card p,
.experience p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}
.experience {
  margin-top: 42px;
}
.experience-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 14px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  max-width: 100%;
}
.experience article {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(#fff, #e0f2fe);
}
.experience article > div {
  display: grid;
  place-items: center;
  height: 128px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  color: var(--blue);
  font-size: 2.5rem;
}
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.final-cta h2 {
  margin: 0;
  font-size: 1.22rem;
}
.final-cta p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 650;
}
.final-cta > div:last-child {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.final-cta .button {
  min-height: 46px;
  padding: 10px 18px;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
}
.site-footer p {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}
.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.site-footer a {
  font-weight: 800;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
}
.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 24px;
  translate: -50% 0;
  width: min(420px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 14px;
  background: #101827;
  color: #fff;
  text-align: center;
  font-weight: 750;
  box-shadow: var(--shadow);
}
.content-card {
  max-width: 980px;
  margin: 24px auto 60px;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.content-card h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.legal-text {
  margin: 22px 0 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--navy);
  font: inherit;
  font-weight: 600;
  line-height: 1.72;
}
.contact-list {
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: var(--soft);
}
@media (max-width: 1120px) {
  .page-shell {
    width: min(1320px, calc(100% - 32px));
  }
  .brand-copy small {
    display: none;
  }
  .hero {
    min-height: 430px;
    padding: 20px;
  }
  .store-badge {
    height: 58px;
  }
  .google-play {
    height: 70px;
  }
}
@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav.is-open {
    display: grid;
  }
  .nav a {
    min-height: 44px;
  }
  .nav .nav-primary {
    margin: 0;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .final-cta > div:last-child {
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 22px, 560px);
  }
  .site-header {
    margin-top: 12px;
    padding: 8px;
    border-radius: 19px;
  }
  .brand {
    padding-right: 10px;
  }
  .brand-logo {
    width: 46px;
    height: 46px;
  }
  main {
    padding-top: 14px;
    padding-bottom: 64px;
  }
  .hero {
    gap: 24px;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 22px;
    border-radius: 26px;
  }
  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.72rem;
  }
  h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }
  .lead br {
    display: none;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .button,
  .store-badge {
    align-self: center;
    max-width: 100%;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-stats li {
    width: auto;
    min-width: 0;
    padding: 10px 8px;
  }
  .hero-stats strong {
    font-size: 1.08rem;
  }
  .hero-stats span {
    font-size: 0.64rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .final-cta > div:last-child {
    display: grid;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer nav {
    justify-content: flex-start;
  }
  .content-card {
    margin-top: 14px;
    border-radius: 22px;
  }
}
@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;
  }
}
