:root {
  --blue: #2660a4;
  --blue-dark: #143d6d;
  --blue-deep: #0b2847;
  --mist: #edf7f6;
  --paper: #fbfcfd;
  --white: #ffffff;
  --ink: #101820;
  --muted: #586573;
  --line: #dce3e8;
  --soft-blue: #dbeafa;
  --yellow: #f4cf72;
  --coral: #e69a8d;
  --header-height: 68px;
  --shadow-phone: 0 30px 80px rgba(8, 30, 51, 0.26), 0 6px 18px rgba(8, 30, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid #f0b94e;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.shell {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.narrow-shell {
  width: min(100% - 48px, 760px);
}

.section {
  padding-block: 112px;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(251, 252, 253, 0.92);
  border-bottom: 1px solid rgba(20, 61, 109, 0.1);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--blue);
  border-radius: 7px;
}

.brand-mark svg {
  width: 18px;
  height: 18px;
  fill: var(--mist);
}

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

.site-nav a {
  color: #3d4b59;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--blue);
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 17px;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white) !important;
  font-size: 13px !important;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.menu-button .icon {
  width: 25px;
  height: 25px;
}

.menu-close-icon,
.menu-button[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.hero {
  position: relative;
  height: min(720px, calc(100svh - 110px));
  min-height: 610px;
  overflow: hidden;
  background: var(--mist);
  border-bottom: 1px solid rgba(38, 96, 164, 0.1);
}

.hero-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: 50px;
}

.hero-copy {
  max-width: 680px;
  padding-bottom: 22px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 66px;
  font-weight: 740;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-summary {
  max-width: 625px;
  margin: 26px 0 0;
  color: #455564;
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.store-button {
  width: 176px;
  min-height: 58px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  line-height: 1.05;
  text-decoration: none;
}

.store-kicker {
  font-size: 11px;
  font-weight: 550;
}

.store-button strong {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 620;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.text-link:hover .icon,
.button:hover .icon {
  transform: translateX(3px);
}

.hero-mark-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  width: 640px;
  height: 640px;
  right: -130px;
  top: 40px;
  opacity: 0.08;
}

.hero-watermark svg {
  width: 100%;
  height: 100%;
  fill: var(--blue);
}

.hero-product {
  position: relative;
  align-self: end;
  height: calc(100% - 36px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 326px;
  aspect-ratio: 660 / 1434;
  flex: 0 0 auto;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 52px;
  background: #050708;
  box-shadow: var(--shadow-phone);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 44px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 31%;
  height: 25px;
  border-radius: 16px;
  background: #050505;
  transform: translateX(-50%);
}

.privacy-note {
  position: absolute;
  left: -34px;
  bottom: 72px;
  z-index: 4;
  min-width: 206px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(20, 61, 109, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(20, 61, 109, 0.16);
  color: var(--blue-dark);
}

.privacy-note .icon {
  width: 25px;
  height: 25px;
}

.privacy-note span {
  display: grid;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.privacy-note strong {
  color: var(--ink);
  font-size: 13px;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.showcase-heading h2,
.privacy-lead h2,
.requirements h2,
.faq h2,
.support-band h2,
.page-hero h1,
.support-section h2,
.contact-inner h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro h2 {
  max-width: 820px;
}

.intro-grid > div > p {
  max-width: 730px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.benefits {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  min-width: 0;
  padding: 36px 28px 42px;
  border-right: 1px solid var(--line);
}

.benefit.reveal-pending {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.benefit.reveal-pending .benefit-icon {
  transform: scale(0.86);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.benefit.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit.reveal-pending.is-visible .benefit-icon {
  transform: scale(1);
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.benefit-icon.blue {
  background: var(--blue);
  color: var(--white);
}

.benefit-icon.mint {
  background: #cdebe8;
  color: #174d4a;
}

.benefit-icon.yellow {
  background: var(--yellow);
  color: #513c0c;
}

.benefit-icon.coral {
  background: var(--coral);
  color: #5c211a;
}

.benefit h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.product-showcase {
  padding-bottom: 0;
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--white);
}

.showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
  align-items: end;
  gap: 80px;
}

.section-label-light {
  color: #9bc3ed;
}

.showcase-heading > p {
  max-width: 540px;
  margin: 0 0 4px;
  color: #c4d2df;
  font-size: 18px;
}

.screenshot-stage {
  position: relative;
  height: 700px;
  width: min(100% - 48px, 1080px);
  margin: 76px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 54px;
}

.carousel-controls {
  display: none;
}

.screenshot-stage .phone-frame {
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
}

.phone-primary {
  width: 340px;
  z-index: 3;
}

.phone-side {
  width: 292px;
  margin-top: 78px;
  opacity: 0.86;
}

.phone-left {
  transform: rotate(-4deg);
}

.phone-right {
  transform: rotate(4deg);
}

.privacy-section {
  background: var(--mist);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1fr);
  gap: 110px;
  align-items: start;
}

.large-lock {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
}

.large-lock .icon {
  width: 30px;
  height: 30px;
}

.privacy-lead > p:not(.section-label) {
  margin: 26px 0 0;
  color: #445866;
  font-size: 18px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.button .icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-secondary {
  margin-top: 32px;
  border-color: rgba(38, 96, 164, 0.28);
  background: var(--white);
  color: var(--blue-dark);
}

.button-light {
  background: var(--white);
  color: var(--blue-deep);
}

.privacy-points {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(38, 96, 164, 0.2);
}

.privacy-points li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(38, 96, 164, 0.2);
}

.privacy-points li > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.privacy-points strong {
  display: block;
  font-size: 18px;
}

.privacy-points p {
  margin: 4px 0 0;
  color: #536672;
  font-size: 15px;
}

.requirements {
  background: var(--white);
}

.requirements-grid,
.support-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1fr);
  gap: 100px;
  align-items: start;
}

.requirements-grid > div > p:not(.section-label),
.support-layout > div:first-child > p:not(.section-label) {
  max-width: 480px;
  margin: 26px 0 0;
  color: var(--muted);
}

.requirement-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.requirement-list li {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--blue);
}

.requirement-list span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 13px;
}

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

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(500px, 1fr);
  gap: 100px;
  align-items: start;
}

.faq-grid > div:first-child .text-link {
  margin-top: 28px;
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.accordion summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  color: var(--blue);
  font-size: 26px;
  font-weight: 400;
  transform: translateY(-50%);
}

.accordion details[open] summary::after {
  content: "\2212";
}

.accordion details p {
  max-width: 680px;
  margin: -6px 48px 24px 0;
  color: var(--muted);
}

.support-callout {
  padding-top: 0;
  background: var(--paper);
}

.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 58px 64px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
}

.support-band h2 {
  font-size: 40px;
}

.support-band p:not(.section-label) {
  max-width: 550px;
  margin: 14px 0 0;
  color: #d5e4f3;
}

.support-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.support-email {
  color: #d5e4f3;
  font-size: 12px;
}

.site-footer {
  padding-block: 56px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 80px;
}

.footer-brand p,
.footer-meta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #40505e;
  font-size: 13px;
  font-weight: 650;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 2px 0;
}

/* Supporting pages */
.page-hero {
  padding-top: 112px;
  padding-bottom: 72px;
}

.page-hero h1 {
  font-size: 64px;
}

.page-summary {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
}

.updated {
  margin: 30px 0 0;
  color: #74808c;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.legal-main {
  padding-bottom: 120px;
  background: var(--white);
}

.legal-content {
  font-size: 17px;
}

.policy-summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 66px;
  padding: 24px;
  border: 1px solid #c9e0de;
  border-radius: 8px;
  background: var(--mist);
  color: var(--blue-dark);
}

.policy-summary .icon {
  width: 30px;
  height: 30px;
}

.policy-summary p {
  margin: 0;
}

.policy-summary strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.legal-content h2 {
  margin: 46px 0 12px;
  font-size: 25px;
  line-height: 1.2;
}

.legal-content p {
  margin: 0 0 18px;
  color: #41505d;
}

.legal-content a {
  color: var(--blue);
  font-weight: 650;
  text-underline-offset: 4px;
}

.support-main {
  background: var(--white);
}

.support-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.support-hero .button {
  flex: 0 0 auto;
}

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

.tinted-section {
  background: var(--paper);
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.steps-list strong,
.data-controls h3 {
  font-size: 17px;
}

.steps-list p,
.data-controls p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.data-controls {
  border-top: 1px solid var(--line);
}

.data-controls article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
}

.data-controls h3 {
  margin: 0;
  color: var(--ink);
}

.contact-section {
  background: var(--blue-deep);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #b9d7f3;
}

.contact-icon .icon {
  width: 30px;
  height: 30px;
}

.contact-inner h2 {
  font-size: 40px;
}

.contact-inner p:not(.section-label) {
  max-width: 650px;
  margin: 12px 0 0;
  color: #c4d2df;
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.1fr) 340px;
    gap: 26px;
  }

  .hero-product .phone-frame {
    width: 296px;
  }

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

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .benefit:nth-child(3) {
    padding-left: 0;
  }

  .privacy-grid,
  .requirements-grid,
  .support-layout,
  .faq-grid {
    gap: 60px;
  }

  .screenshot-stage {
    gap: 25px;
  }

  .phone-side {
    width: 250px;
  }

  .phone-primary {
    width: 310px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 60px;
  }

  .shell,
  .narrow-shell {
    width: min(100% - 36px, 720px);
  }

  .section {
    padding-block: 84px;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 28px rgba(8, 30, 51, 0.08);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding-inline: 10px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .site-nav .nav-cta {
    min-height: 48px;
    margin-top: 14px;
    border-bottom: 0;
    font-size: 15px !important;
  }

  .hero {
    height: calc(100svh - 82px);
    min-height: 0;
    max-height: 760px;
  }

  .hero-shell {
    display: block;
    padding-top: 58px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
    max-width: 590px;
    padding: 0;
  }

  .hero h1 {
    max-width: 570px;
    font-size: 50px;
  }

  .hero-summary {
    max-width: 520px;
    font-size: 18px;
  }

  .hero-product {
    position: absolute;
    right: 8px;
    bottom: -292px;
    height: auto;
  }

  .hero-product .phone-frame {
    width: 250px;
  }

  .hero-watermark {
    width: 500px;
    height: 500px;
    right: -190px;
    top: 150px;
  }

  .privacy-note {
    display: none;
  }

  .intro-grid,
  .showcase-heading,
  .privacy-grid,
  .requirements-grid,
  .support-layout,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro h2,
  .section-heading h2,
  .showcase-heading h2,
  .privacy-lead h2,
  .requirements h2,
  .faq h2,
  .page-hero h1,
  .support-section h2 {
    font-size: 42px;
  }

  .showcase-heading > p {
    max-width: 620px;
  }

  .carousel-controls {
    width: min(100% - 36px, 720px);
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px auto 0;
    color: var(--white);
  }

  .carousel-controls > button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
  }

  .carousel-controls > button:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .carousel-controls .icon {
    width: 20px;
    height: 20px;
  }

  .carousel-dots {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
  }

  .carousel-dots button[aria-current="true"] {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
  }

  .screenshot-stage {
    height: 620px;
    width: 100%;
    justify-content: flex-start;
    gap: 28px;
    margin-top: 28px;
    padding-inline: calc((100vw - 310px) / 2);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screenshot-stage::-webkit-scrollbar {
    display: none;
  }

  .screenshot-stage .phone-frame {
    width: 310px;
    margin-top: 0;
    scroll-snap-align: center;
    transform: none;
    opacity: 1;
  }

  .screenshot-stage .phone-primary {
    order: -1;
  }

  .privacy-grid {
    gap: 64px;
  }

  .requirement-list {
    max-width: 680px;
  }

  .support-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 48px;
  }

  .support-actions {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    gap: 40px;
  }

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }

  .page-hero {
    padding-top: 84px;
  }

  .support-hero {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .contact-inner {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .contact-inner .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .shell,
  .narrow-shell {
    width: min(100% - 32px, 520px);
  }

  .section {
    padding-block: 70px;
  }

  .hero {
    height: calc(100svh - 76px);
    min-height: 555px;
  }

  .hero-shell {
    display: flex;
    flex-direction: column;
    padding-top: 34px;
  }

  .hero h1 {
    max-width: 470px;
    font-size: 40px;
    line-height: 1.05;
  }

  .hero-summary {
    max-width: 440px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    margin-top: 22px;
  }

  .store-button {
    width: 156px;
    min-height: 54px;
    padding-inline: 14px;
  }

  .store-button strong {
    font-size: 18px;
  }

  .hero-actions .text-link {
    font-size: 13px;
  }

  .hero-product {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
    align-items: flex-start;
    margin-top: 28px;
  }

  .hero-product .phone-frame {
    width: 246px;
    border-radius: 42px;
  }

  .hero-product .phone-frame img {
    border-radius: 35px;
  }

  .hero-product .phone-speaker {
    top: 11px;
    height: 18px;
  }

  .hero-watermark {
    width: 360px;
    height: 360px;
    right: -150px;
    top: 300px;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .intro-grid > div > p {
    font-size: 17px;
  }

  .intro h2,
  .section-heading h2,
  .showcase-heading h2,
  .privacy-lead h2,
  .requirements h2,
  .faq h2,
  .page-hero h1,
  .support-section h2,
  .contact-inner h2 {
    font-size: 34px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .benefit,
  .benefit:first-child,
  .benefit:nth-child(3),
  .benefit:last-child {
    padding: 28px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .screenshot-stage {
    height: 550px;
    gap: 18px;
    padding-inline: calc((100vw - 276px) / 2);
  }

  .screenshot-stage .phone-frame {
    width: 276px;
    border-radius: 46px;
  }

  .screenshot-stage .phone-frame img {
    border-radius: 38px;
  }

  .privacy-lead > p:not(.section-label) {
    font-size: 16px;
  }

  .large-lock {
    margin-bottom: 28px;
  }

  .requirement-list {
    grid-template-columns: 1fr;
  }

  .requirement-list li {
    min-height: 120px;
  }

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

  .support-callout {
    padding-top: 0;
  }

  .support-band {
    width: 100%;
    padding: 42px 24px;
    border-radius: 0;
  }

  .support-band h2 {
    font-size: 34px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-meta {
    grid-column: auto;
  }

  .page-hero {
    padding-top: 68px;
    padding-bottom: 52px;
  }

  .page-summary {
    font-size: 18px;
  }

  .policy-summary {
    grid-template-columns: 1fr;
    margin-bottom: 52px;
  }

  .legal-main {
    padding-bottom: 84px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner .button {
    grid-column: auto;
  }

  .contact-inner .button {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 35px;
  }

  .hero-summary {
    font-size: 15px;
  }

  .hero-product {
    margin-top: 20px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

@media (forced-colors: active) {
  .brand-mark,
  .benefit-icon,
  .large-lock,
  .contact-icon {
    border: 1px solid currentColor;
  }
}
