:root {
  --blue: #0e65b5;
  --blue-dark: #084b8c;
  --navy: #0d2945;
  --ink: #122c46;
  --muted: #66788a;
  --paper: #f7f8fa;
  --white: #fff;
  --yellow: #ffd34e;
  --line: #e5e7eb;
  --soft-blue: #f1f7fb;
  --shadow: 0 12px 30px rgba(13, 41, 69, .075);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: white;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
button { font: inherit; }
.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 96px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: white;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.025em;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(13, 41, 69, .06);
}
.site-nav { display: flex; align-items: center; gap: 26px; color: #425a70; font-size: 13px; font-weight: 700; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue); }
.site-nav a[aria-current="page"] { color: var(--navy); }
.site-nav .nav-cta {
  padding: 10px 15px;
  color: white;
  background: var(--blue);
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(14, 101, 181, .14);
}
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: white; background: var(--blue-dark); transform: translateY(-1px); }
.menu-toggle { display: none; padding: 8px; background: none; border: 0; }
.menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px; background: var(--ink); }

.hero { background: white; border-bottom: 1px solid var(--line); }
.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr .78fr;
  align-items: center;
  gap: 96px;
  padding-top: 58px;
  padding-bottom: 58px;
}
.hero-copy { padding-bottom: 12px; }
.eyebrow {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -.052em;
}
.hero-lede {
  max-width: 610px;
  margin: 25px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: var(--blue);
  color: white !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 7px 18px rgba(14, 101, 181, .15);
}
.button:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(14, 101, 181, .2); }
.secondary-button {
  color: var(--navy) !important;
  background: rgba(255, 255, 255, .72);
  border-color: var(--line);
  box-shadow: none;
}
.secondary-button:hover { color: var(--blue) !important; background: white; border-color: #b8cfdf; box-shadow: 0 8px 18px rgba(13, 41, 69, .08); }
.hero-availability {
  max-width: 600px;
  margin: 17px 0 0;
  color: #6f8294;
  font-size: 12px;
  line-height: 1.6;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #9bc5e7;
  text-underline-offset: 4px;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 38px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.hero-facts dt {
  margin-bottom: 6px;
  color: #8192a1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-facts dd { margin: 0; font-size: 13px; font-weight: 700; }
.hero-shot {
  width: min(100%, 330px);
  height: min(600px, calc(100vh - 140px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(13, 41, 69, .15));
}

.section-intro { max-width: 650px; }
.section-intro h2,
.contact h2,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.042em;
}
.section-intro > p:last-child, .contact-grid > div:first-child > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.features { padding-bottom: 84px; background: var(--paper); }
.feature-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.feature-list article { min-width: 0; padding-top: 18px; border-top: 2px solid var(--navy); }
.feature-list article:nth-child(2) { border-color: var(--blue); }
.feature-list article:nth-child(3) { border-color: var(--yellow); }
.feature-list article:nth-child(4) { border-color: #6b8194; }
.feature-list article:nth-child(5) { border-color: #49a878; }
.feature-list span { color: #8a9aa8; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.feature-list h3 { margin: 18px 0 8px; font-size: 18px; letter-spacing: -.025em; }
.feature-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.screenshots {
  padding-block: 96px;
  background: white;
  scroll-margin-top: 72px;
}
.screenshot-intro {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: end;
  gap: 90px;
}
.screenshot-intro > p { margin: 0 0 4px; }
.screenshot-grid {
  --phone-height: min(600px, 60vh);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 290px));
  justify-content: center;
  gap: 42px;
  margin-top: 48px;
}
.screenshot-grid figure {
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-rows: var(--phone-height) auto;
  align-items: end;
}
.screenshot-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(13, 41, 69, .13));
}
.screenshot-grid figcaption { display: flex; flex-direction: column; gap: 5px; padding: 17px 2px 0; text-align: center; }
.screenshot-grid figcaption strong { font-size: 15px; }
.screenshot-grid figcaption span { color: var(--muted); font-size: 12px; line-height: 1.5; }

.contact { background: var(--paper); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.contact-grid > div:first-child > p:last-child { margin-bottom: 0; }
.contact-links { border-top: 1px solid var(--line); }
.contact-links a {
  display: grid;
  grid-template-columns: 85px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-links a:hover strong { color: var(--blue); }
.contact-links span { color: #7e909f; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-links strong { overflow-wrap: anywhere; font-size: 14px; }
.contact-links b { color: var(--blue); }

.site-footer { padding: 38px 0 18px; background: var(--paper); color: var(--navy); border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1fr auto; gap: 52px; padding-bottom: 28px; }
.footer-main > div > p { max-width: 390px; margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.footer-links { display: flex; flex-wrap: wrap; align-items: start; justify-content: flex-end; gap: 22px; color: var(--blue); font-size: 12px; font-weight: 700; }
.footer-links a:hover { color: var(--blue-dark); }
.footer-links > div { min-width: 105px; display: flex; flex-direction: column; gap: 10px; }
.footer-links > div strong { margin-bottom: 2px; color: var(--navy); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #7b8997;
  font-size: 11px;
}

.page-hero { padding: 92px 0 68px; background: var(--paper); text-align: center; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-inline: auto; }
.page-hero h1 { max-width: 820px; margin-inline: auto; }
.page-hero > .container > p:last-child { max-width: 680px; margin: 21px auto 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.content-section { padding: 78px 0 104px; background: white; }
.content-narrow { width: min(780px, calc(100% - 48px)); margin-inline: auto; }
.content-narrow h2 { margin: 43px 0 13px; color: var(--navy); font-size: 26px; letter-spacing: -.035em; }
.content-narrow h2:first-child { margin-top: 0; }
.content-narrow h3 { margin: 26px 0 9px; color: var(--navy); font-size: 17px; }
.content-narrow p, .content-narrow li { color: #536a80; font-size: 15px; line-height: 1.75; }
.content-narrow a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.content-narrow ul { padding-left: 21px; }
.content-narrow li + li { margin-top: 8px; }
.policy-meta {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.notice { margin: 32px 0; padding: 21px 23px; border: 1px solid #f3e7bd; border-left: 4px solid var(--yellow); border-radius: 0 14px 14px 0; background: #fffdf5; }
.notice p { margin: 0; }
.support-page { background: white; }
.support-hero {
  padding: 94px 0 72px;
  background: var(--paper);
  text-align: left;
}
.support-hero .container { width: min(900px, calc(100% - 48px)); }
.support-hero .eyebrow { margin-inline: 0; }
.support-hero h1 { max-width: 680px; margin-inline: 0; }
.support-hero > .container > p:last-child { max-width: 650px; margin: 22px 0 0; font-size: 17px; }
.support-content { padding: 70px 0 110px; }
.support-narrow { width: min(900px, calc(100% - 48px)); }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 0 0 76px; }
.support-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 5px 16px rgba(13, 41, 69, .025);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.support-card:hover { transform: translateY(-2px); border-color: #c9dbe8; box-shadow: 0 10px 24px rgba(13, 41, 69, .055); }
.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 21px;
  font-weight: 800;
}
.icon-yellow { background: #fff2bd; color: #8b6500; }
.icon-coral { background: #ffebe5; color: #c4553e; }
.icon-green { background: #e2f1e8; color: #1f7d50; }
.support-card h2 { margin: 2px 0 6px; font-size: 17px; letter-spacing: -.02em; }
.support-card p { margin: 0; color: #687c8e; font-size: 13px; line-height: 1.55; }
.faq-heading { margin-bottom: 24px; }
.faq-heading .eyebrow { margin-bottom: 12px; }
.faq-heading h2 { margin: 0; font-size: 30px; }
.faq-item { margin: 0 0 12px; }
.faq-card details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 4px 14px rgba(13, 41, 69, .02);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.faq-card details:hover { border-color: rgba(14, 101, 181, .2); background: #fcfdfe; }
.faq-card details[open] { border-color: #c6dbe9; box-shadow: 0 8px 22px rgba(13, 41, 69, .05); }
.faq-card summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
  content: "+";
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 19px;
  line-height: 1;
  transition: transform .25s ease, background-color .2s ease;
}
.faq-card details[open] summary::after { content: "−"; transform: rotate(180deg); background: #dfeffc; }
.faq-card details p { margin: 0; padding: 0 22px 21px; color: #5b7185; font-size: 14px; line-height: 1.7; }
@supports selector(details::details-content) {
  .faq-card details::details-content {
    block-size: 0;
    opacity: 0;
    overflow: clip;
    transition: block-size .28s ease, content-visibility .28s allow-discrete, opacity .22s ease;
  }
  .faq-card details[open]::details-content { block-size: auto; opacity: 1; }
}
.support-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  margin-top: 64px;
  padding: 30px 32px;
  border: 1px solid #d6e7f3;
  border-radius: 24px;
  background: var(--soft-blue);
}
.support-contact .eyebrow { margin-bottom: 10px; }
.support-contact h2 { margin: 0 0 8px; font-size: 26px; }
.support-contact p:not(.eyebrow) { margin: 0; color: #5f7588; font-size: 14px; line-height: 1.6; }
.support-contact-details { display: flex; align-items: flex-end; flex-direction: column; gap: 8px; text-align: right; }
.support-contact-details a { color: var(--blue); font-size: 15px; font-weight: 800; text-decoration: none; }
.support-contact-details a:hover { color: var(--blue-dark); }
.support-contact-details span { color: #72869a; font-size: 11px; }
.error-page { min-height: calc(100vh - 72px); display: grid; place-items: center; padding: 55px 24px; background: var(--paper); text-align: center; }
.error-card img { width: 120px; margin: 0 auto 23px; border: 1px solid var(--line); border-radius: 12px; }
.error-card h1 { font-size: clamp(48px, 9vw, 82px); }
.error-card p { color: var(--muted); }

@keyframes hero-fade-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-enter {
  animation: hero-fade-rise 620ms cubic-bezier(.22, .8, .32, 1) both;
}
.hero-phone-enter {
  animation: hero-fade-rise 650ms cubic-bezier(.22, .8, .32, 1) 90ms both;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 580ms cubic-bezier(.22, .8, .32, 1), transform 580ms cubic-bezier(.22, .8, .32, 1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); will-change: auto; }
.feature-list article:nth-child(2).reveal { transition-delay: 60ms; }
.feature-list article:nth-child(3).reveal { transition-delay: 120ms; }
.feature-list article:nth-child(4).reveal { transition-delay: 180ms; }
.feature-list article:nth-child(5).reveal { transition-delay: 240ms; }
.screenshot-grid figure:nth-child(2).reveal { transition-delay: 80ms; }
.screenshot-grid figure:nth-child(3).reveal { transition-delay: 160ms; }
.contact-links.reveal { transition-delay: 90ms; }

@media (max-width: 1100px) {
  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 30px;
  }
}

@media (max-width: 980px) {
  .site-nav { gap: 17px; }
  .hero-grid { grid-template-columns: 1fr .75fr; gap: 55px; }
  .screenshots { padding-block: 72px; }
  .screenshot-grid {
    --phone-height: min(480px, 52vh);
    grid-template-columns: repeat(3, minmax(0, 240px));
    gap: 26px;
  }
  .contact-grid { gap: 60px; }
}

@media (max-width: 760px) {
  .container, .content-narrow { width: min(100% - 34px, 1120px); }
  .section { padding: 64px 0; }
  .site-header { height: 66px; }
  .brand img { width: 37px; height: 37px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 17px;
    right: 17px;
    top: 58px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .site-nav .nav-cta { margin-top: 4px; text-align: center; }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  h1 { font-size: clamp(40px, 12vw, 54px); }
  .hero-lede { font-size: 16px; }
  .hero-shot {
    width: min(76vw, 300px);
    height: min(540px, 68vh);
  }
  .hero-facts { gap: 17px; }
  .features { padding-bottom: 56px; }
  .feature-list { grid-template-columns: 1fr; gap: 26px; margin-top: 30px; }
  .screenshot-intro, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .screenshot-grid {
    --phone-height: min(500px, 65vh);
    width: min(100%, 360px);
    grid-template-columns: 1fr;
    gap: 56px;
    margin: 42px auto 0;
  }
  .contact-grid { gap: 30px; }
  .contact-links a { grid-template-columns: 65px 1fr auto; gap: 12px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { justify-content: flex-start; gap: 20px; }
  .footer-bottom { flex-direction: column; }
  .support-grid { grid-template-columns: 1fr; }
  .support-hero .container, .support-narrow { width: min(100% - 34px, 900px); }
  .support-hero { padding: 68px 0 52px; }
  .support-content { padding: 48px 0 78px; }
  .support-grid { gap: 12px; margin-bottom: 58px; }
  .support-contact { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
  .support-contact-details { align-items: flex-start; text-align: left; }
  .page-hero { padding: 65px 0 48px; }
}

@media (max-width: 420px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-facts { grid-template-columns: 1fr; }
  .contact-links a { grid-template-columns: 1fr auto; }
  .contact-links span { grid-column: 1 / -1; }
}

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