:root {
  --blue: #0876f9;
  --blue-dark: #032c63;
  --blue-deep: #062f68;
  --cyan: #11b8ff;
  --ink: #17324d;
  --muted: #5e748a;
  --soft: #f7fbff;
  --soft-blue: #eaf4ff;
  --white: #ffffff;
  --container: 1200px;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(3, 44, 99, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

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

.site-header {
  height: 104px;
  background: #fff;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #eef4fa;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  width: 178px;
  height: 76px;
  display: flex;
  align-items: center;
  overflow: visible;
  flex: 0 0 auto;
}
.brand img {
  width: 160px;
  height: 76px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 48px);
  font-size: 14px;
  font-weight: 500;
}
.main-nav > a:not(.button) { transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: var(--blue); }
.menu-toggle { display: none; }

.button {
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(8, 118, 249, .22); }
.button--small { min-height: 52px; padding-inline: 24px; }
.button--light { background: #fff; color: var(--blue-dark); box-shadow: 0 8px 24px rgba(3, 44, 99, .08); }
.button--ghost { background: transparent; color: var(--blue-dark); }
.button--cyan { background: #0e4d8c; }
.button--dark { background: var(--blue-dark); }
.button--store { min-width: 205px; font-size: 12px; }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.button-row--center { justify-content: center; }

.hero {
  min-height: 757px;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-inner { min-height: 757px; display: flex; align-items: center; position: relative; z-index: 1; }
.hero-content { width: 650px; padding-top: 12px; }
.eyebrow {
  margin: 0 0 30px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 620px;
  color: var(--blue-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(54px, 4.9vw, 70px);
  font-weight: 800;
  line-height: .97;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero h1 span { color: var(--blue); }
.hero-description { width: 470px; margin: 34px 0 38px; color: var(--ink); font-size: 19px; line-height: 1.5; }

.section { position: relative; }
.section--soft { background: var(--soft-blue); }
.section-heading { max-width: 1000px; margin: 0 auto 54px; }
.section-heading--center { text-align: center; }
.section-heading .eyebrow { margin-bottom: 24px; }
.section-heading h2,
.split-content h2,
.app-content h2,
.digital-content h2,
.final-cta h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: -.035em;
  font-weight: 700;
}
.section-heading > p:last-child { margin: 26px 0 0; color: var(--muted); font-size: 18px; }

.benefits { padding: 72px 0 80px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.benefit-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid #dbeafb;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}
.benefit-card h3 { margin: 20px 0 8px; color: var(--blue-dark); font-size: 19px; line-height: 1.25; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; }
.benefits .button-row { margin-top: 48px; }

.first-access { min-height: 823px; overflow: hidden; background: #fff; }
.split-layout { min-height: 823px; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-content { padding: 76px 70px 54px 0; align-self: center; }
.split-content .eyebrow { margin-bottom: 24px; }
.split-content h2 { max-width: 560px; font-size: 42px; }
.lead { margin: 24px 0 32px; color: var(--muted); font-size: 16px; max-width: 500px; }
.steps { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 20px; }
.steps li { display: grid; grid-template-columns: 42px 1fr; align-items: start; gap: 16px; }
.steps li > span {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff; font-weight: 700;
}
.steps h3 { margin: 0 0 4px; color: var(--blue-dark); font-size: 15px; }
.steps p { margin: 0; color: var(--muted); font-size: 13px; }
.split-media--edge {
  margin-right: calc((100vw - min(var(--container), calc(100vw - 40px))) / -2);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 3%, #f7fbff 25%, #fff 100%);
}
.split-media img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }

.app-section { min-height: 754px; padding: 0; background: var(--blue-dark); color: #fff; overflow: hidden; }
.app-grid { min-height: 754px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.app-device { height: 754px; display: flex; align-items: flex-end; justify-content: center; }
.app-device img { width: min(570px, 100%); max-height: 720px; object-fit: contain; object-position: bottom center; }
.app-content { max-width: 540px; padding: 70px 0; }
.app-content h2 { color: #fff; font-size: 48px; }
.app-content > p { margin: 34px 0; color: #d7e7f6; font-size: 17px; max-width: 500px; }
.check-list { list-style: none; padding: 0; margin: 32px 0 38px; display: grid; gap: 18px; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink); font-size: 15px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--soft-blue); color: var(--blue); font-size: 13px; font-weight: 700;
}
.check-list--light li { color: #fff; }
.check-list--light li::before { background: var(--cyan); color: var(--blue-dark); }

.digital { min-height: 743px; overflow: hidden; background: #fff; }
.digital-grid { min-height: 743px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.digital-content { padding: 70px 60px 70px 0; }
.digital-content .eyebrow { margin-bottom: 22px; }
.digital-content h2 { font-size: 49px; max-width: 560px; }
.digital-media {
  height: 743px;
  margin-right: calc((100vw - min(var(--container), calc(100vw - 40px))) / -2);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.digital-media img { width: 100%; height: 100%; object-fit: contain; object-position: bottom right; }

.faq-section { padding: 94px 0 112px; }
.faq-section .section-heading { margin-bottom: 42px; }
.faq-section .section-heading h2 { font-size: 40px; }
.faq-list { display: grid; gap: 16px; }
.faq-item { border: 1px solid #dbeafb; border-radius: 18px; background: #fff; overflow: hidden; box-shadow: 0 8px 24px rgba(3, 44, 99, .035); }
.faq-item h3 { margin: 0; }
.faq-item button {
  width: 100%; min-height: 72px; padding: 18px 24px 18px 26px;
  border: 0; background: transparent; color: var(--blue-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  cursor: pointer; text-align: left; font-weight: 600; font-size: 15px;
}
.faq-icon {
  width: 36px; height: 36px; border-radius: 50%; flex: 0 0 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--soft-blue); color: var(--blue); font-size: 20px; font-weight: 500;
}
.faq-answer { padding: 0 74px 24px 26px; }
.faq-answer p { margin: 0; color: #33405c; font-size: 15px; line-height: 1.6; }

.final-cta { min-height: 415px; padding: 60px 0; display: flex; align-items: center; background: var(--blue); text-align: center; }
.final-cta h2 { max-width: 920px; margin-inline: auto; color: #fff; font-size: 40px; }
.final-cta p { max-width: 720px; margin: 28px auto 38px; color: #e5f2ff; font-size: 18px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 22px; }
  .benefits-grid { gap: 22px; }
  .split-content { padding-right: 40px; }
  .digital-content { padding-right: 30px; }
}

@media (max-width: 900px) {
  .site-header { height: 76px; }
  .brand { width: 132px; height: 58px; }
  .brand img { width: 122px; height: 58px; }
  .menu-toggle {
    width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 12px;
    display: grid; align-content: center; gap: 5px; background: var(--soft-blue); cursor: pointer;
  }
  .menu-toggle span { display: block; width: 100%; height: 2px; background: var(--blue-dark); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute; top: 76px; left: 20px; right: 20px;
    padding: 22px; border: 1px solid #dbeafb; border-radius: 18px;
    background: #fff; box-shadow: var(--shadow);
    display: none; align-items: stretch; flex-direction: column; gap: 8px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 10px 4px; }
  .main-nav .button { margin-top: 6px; }

  .hero { min-height: 0; padding-top: 54px; display: flex; flex-direction: column; }
  .hero-inner { min-height: 0; display: block; order: 1; }
  .hero-content { width: 100%; padding: 0; }
  .hero-media {
    position: relative; height: 430px; margin-top: 34px;
    order: 2; background: var(--soft);
  }
  .hero-media::before {
    content: ""; position: absolute; z-index: 1; inset: 0 0 auto; height: 105px;
    background: linear-gradient(to bottom, var(--soft) 0%, rgba(247,251,255,.88) 35%, rgba(247,251,255,0) 100%);
  }
  .hero-media img { object-position: 69% center; }
  .hero h1 { font-size: clamp(44px, 8vw, 62px); line-height: 1; }
  .hero-description { width: min(620px, 100%); font-size: 17px; }

  .benefits { padding: 80px 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading h2, .split-content h2, .app-content h2, .digital-content h2 { font-size: 38px; }

  .first-access, .split-layout { min-height: 0; }
  .split-layout { grid-template-columns: 1fr; }
  .split-content { padding: 80px 0 30px; }
  .split-media--edge { margin: 0 -20px; height: 520px; order: 2; }
  .split-media img { object-position: center bottom; }

  .app-section, .app-grid { min-height: 0; }
  .app-grid { grid-template-columns: 1fr; gap: 0; }
  .app-content { max-width: none; padding: 80px 0 30px; order: 1; }
  .app-device { height: 570px; order: 2; }
  .app-device img { max-height: 560px; }

  .digital, .digital-grid { min-height: 0; }
  .digital-grid { grid-template-columns: 1fr; }
  .digital-content { padding: 80px 0 30px; }
  .digital-media { height: 520px; margin: 0 -20px; }
  .digital-media img { object-position: center bottom; }

  .faq-section { padding: 80px 0; }
}

@media (max-width: 620px) {
  .container, .container--narrow { width: calc(100% - 40px); }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 100%; width: 100%; }
  .eyebrow { margin-bottom: 20px; font-size: 12px; }

  .hero { padding-top: 44px; }
  .hero h1 { font-size: clamp(39px, 12vw, 52px); letter-spacing: -.04em; }
  .hero-description { margin: 26px 0 28px; font-size: 16px; }
  .hero-media { height: 380px; margin-top: 22px; }
  .hero-media img { object-position: 68% center; }

  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .split-content h2, .app-content h2, .digital-content h2 { font-size: 32px; line-height: 1.18; }
  .section-heading > p:last-child { margin-top: 18px; font-size: 15px; }

  .benefits { padding: 68px 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-card { min-height: 0; padding: 24px; }
  .benefits .button-row { margin-top: 32px; }

  .split-content { padding-top: 68px; }
  .lead { font-size: 15px; }
  .steps { gap: 18px; }
  .steps li { grid-template-columns: 38px 1fr; gap: 12px; }
  .steps li > span { width: 34px; height: 34px; }
  .split-media--edge { height: 390px; }

  .app-content { padding-top: 68px; }
  .app-content > p { margin: 24px 0; font-size: 15px; }
  .check-list { margin: 26px 0 32px; gap: 15px; }
  .app-device { height: 500px; }
  .app-device img { width: 430px; max-width: 116%; }

  .digital-content { padding-top: 68px; }
  .digital-media { height: 400px; }

  .faq-section { padding: 68px 0 76px; }
  .faq-section .section-heading h2 { font-size: 31px; }
  .faq-item button { min-height: 70px; padding: 16px; font-size: 14px; gap: 12px; }
  .faq-icon { width: 32px; height: 32px; flex-basis: 32px; }
  .faq-answer { padding: 0 16px 20px; }
  .faq-answer p { font-size: 14px; }

  .final-cta { min-height: 0; padding: 68px 0 74px; }
  .final-cta h2 { font-size: 32px; line-height: 1.18; }
  .final-cta p { margin: 24px auto 32px; font-size: 16px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 38px; }
  .hero-media { height: 340px; }
  .section-heading h2, .split-content h2, .app-content h2, .digital-content h2, .final-cta h2 { font-size: 29px; }
  .button { padding-inline: 16px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
