:root {
  --ink: #1d2230;
  --ink-soft: #454957;
  --yellow: #f7cf61;
  --yellow-deep: #efbb2c;
  --yellow-pale: #fff3c8;
  --paper: #ffffff;
  --mist: #f5f6f8;
  --line: #e2e3e7;
  --orange: #efad1f;
  --shell: 1240px;
  --shadow: 0 20px 55px rgba(25, 29, 40, 0.12);
  --radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
ul,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.07;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 6.1vw, 6.4rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(2.15rem, 3vw, 3.5rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  font-weight: 780;
  letter-spacing: -0.015em;
}

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

.section {
  padding-block: 82px;
}

.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;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  transition: transform 180ms ease;
}

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

.announcement {
  position: relative;
  z-index: 70;
  color: #fff;
  background: #171b27;
  font-size: 0.82rem;
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
}

.announcement a:hover,
.announcement a:focus-visible {
  color: var(--yellow);
}

.announcement__social {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  background: rgba(247, 207, 97, 0.95);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(31, 35, 47, 0.11);
  background: rgba(255, 230, 154, 0.96);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 205px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
  font-size: 0.94rem;
  font-weight: 580;
}

.main-nav a,
.footer-column a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 7px;
  font-weight: 750;
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 9px 24px rgba(20, 24, 35, 0.16);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #090d18;
  box-shadow: 0 13px 30px rgba(20, 24, 35, 0.22);
}

.header-cta {
  min-width: 132px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: 62px 0 128px;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 250, 216, 0.7), transparent 28%),
    linear-gradient(125deg, #f9db7e 0%, var(--yellow) 48%, #ffd96c 100%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 40px;
}

.hero__content {
  max-width: 650px;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__glow--one {
  top: 90px;
  left: -170px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255, 244, 196, 0.32);
}

.hero__glow--two {
  right: -120px;
  bottom: 40px;
  width: 360px;
  height: 360px;
  background: rgba(255, 241, 187, 0.22);
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 27px;
  padding: 10px 16px;
  border: 1px solid rgba(204, 150, 12, 0.22);
  border-radius: 999px;
  background: rgba(255, 235, 154, 0.86);
  box-shadow: 0 7px 15px rgba(148, 102, 0, 0.15);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.rating-pill__mark,
.rating-pill__stars {
  color: var(--ink);
}

.rating-pill__stars {
  letter-spacing: 0.16em;
}

.hero__lead {
  margin-bottom: 25px;
  font-size: clamp(1.18rem, 1.55vw, 1.45rem);
  line-height: 1.45;
}

.hero__bullets {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-size: 1rem;
}

.hero__bullets li {
  position: relative;
  padding-left: 28px;
}

.hero__bullets li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  content: "✓";
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
}

.download-block {
  scroll-margin-top: 120px;
}

.download-block__cta {
  max-width: 600px;
  margin-bottom: 17px;
  font-size: 1.03rem;
  line-height: 1.5;
}

.store-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.store-buttons a {
  display: inline-flex;
  border-radius: 11px;
  box-shadow: 0 10px 22px rgba(18, 20, 28, 0.14);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.store-buttons a:hover,
.store-buttons a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 15px 26px rgba(18, 20, 28, 0.2);
}

.store-buttons img {
  width: auto;
  height: 58px;
}

.pricing-note {
  margin: 13px 0 0;
  font-size: 0.86rem;
  font-weight: 610;
}

.hero__visual {
  position: relative;
  align-self: end;
  min-height: 600px;
}

.hero__visual > img {
  position: absolute;
  z-index: 1;
  right: -65px;
  bottom: -104px;
  width: min(640px, 116%);
  max-width: none;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 24px rgba(47, 38, 16, 0.13));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}

.aarp-badge {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: -12px;
  display: flex;
  width: 132px;
  height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fffdf5;
  box-shadow: 0 14px 35px rgba(31, 34, 41, 0.17);
  text-align: center;
  line-height: 1.12;
}

.aarp-badge strong {
  color: #d5292c;
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.aarp-badge span {
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 760;
}

.aarp-badge small {
  margin-top: 4px;
  font-size: 0.6rem;
}

.hero__curve {
  position: absolute;
  z-index: 3;
  right: -5%;
  bottom: -80px;
  left: -5%;
  height: 165px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #fff;
}

.press {
  position: relative;
  z-index: 4;
  padding: 22px 0 54px;
  background: #fff;
}

.eyebrow,
.section-kicker {
  margin-bottom: 20px;
  color: #737681;
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  text-align: center;
}

.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 70px);
  margin: 0;
  padding: 0;
  color: #97999f;
  list-style: none;
}

.press-logo {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.press-logo--aarp {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.press-logo--serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 720;
}

.press-logo--light {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 500;
}

.experience {
  padding-top: 70px;
}

.experience__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.28fr;
  gap: clamp(54px, 7vw, 110px);
}

.how-column {
  position: relative;
}

.how-column::before {
  position: absolute;
  top: 42px;
  bottom: 0;
  left: calc(clamp(54px, 7vw, 110px) / -2);
  width: 1px;
  content: "";
  background: var(--line);
}

.benefit-list {
  display: grid;
  gap: 28px;
}

.benefit {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: start;
  gap: 18px;
}

.benefit p,
.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.benefit__icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow-pale);
}

.benefit__icon::before,
.benefit__icon::after {
  position: absolute;
  content: "";
}

.icon-shield::before {
  width: 22px;
  height: 25px;
  clip-path: polygon(50% 0, 100% 20%, 88% 74%, 50% 100%, 12% 74%, 0 20%);
  background: var(--ink);
}

.icon-shield::after {
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(-1px) rotate(-45deg);
}

.icon-search::before {
  width: 20px;
  height: 20px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: translate(-3px, -3px);
}

.icon-search::after {
  width: 14px;
  height: 3px;
  transform: translate(8px, 8px) rotate(45deg);
  border-radius: 3px;
  background: var(--ink);
}

.icon-phone::before {
  width: 17px;
  height: 29px;
  border: 3px solid var(--ink);
  border-radius: 4px;
}

.icon-phone::after {
  bottom: 17px;
  width: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.icon-check::before {
  width: 23px;
  height: 11px;
  border-bottom: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  transform: translateY(-4px) rotate(-45deg);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 10px;
}

.step {
  position: relative;
  text-align: center;
}

.step__number {
  display: grid;
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
}

.step__icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 17px;
  place-items: center;
  border: 2px solid #d5d7dc;
  border-radius: 18px;
  box-shadow: 0 7px 18px rgba(32, 36, 51, 0.08);
  font-size: 2.55rem;
  font-weight: 800;
  line-height: 1;
}

.step-arrow {
  margin-top: 69px;
  color: #626670;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.testimonial {
  position: relative;
  max-width: 570px;
  margin: 46px auto 0;
  padding: 32px 34px 29px 74px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff7d7, #fff1bd);
  box-shadow: inset 0 0 0 1px rgba(218, 172, 54, 0.12);
}

.testimonial__quote {
  position: absolute;
  top: 20px;
  left: 31px;
  color: var(--yellow-deep);
  font-family: Georgia, serif;
  font-size: 3.8rem;
  line-height: 1;
}

.testimonial p {
  margin-bottom: 18px;
  font-size: 1.17rem;
  font-weight: 620;
  line-height: 1.45;
}

.testimonial footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.testimonial footer span:last-child::before {
  margin-right: 9px;
  content: "—";
}

.testimonial__stars {
  color: #f7b500;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.trust {
  padding-top: 35px;
  padding-bottom: 42px;
}

.trust__panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(25, 29, 40, 0.07);
}

.stat {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat__icon {
  color: var(--yellow-deep);
  font-size: 2.3rem;
  line-height: 1;
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  margin-bottom: 2px;
  font-size: 1.85rem;
  line-height: 1.1;
}

.stat div > span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.final-cta {
  padding-top: 34px;
}

.final-cta__panel {
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 54px 70px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 10%, rgba(255, 249, 209, 0.76), transparent 24%),
    linear-gradient(110deg, #f6c842, #ffdf7a);
  box-shadow: var(--shadow);
}

.final-cta__panel::after {
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 350px;
  height: 350px;
  border: 55px solid rgba(255, 246, 199, 0.22);
  border-radius: 50%;
  content: "";
}

.final-cta__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.final-cta__content h2 {
  margin-bottom: 16px;
}

.final-cta__content > p:not(.section-kicker):not(.pricing-note) {
  max-width: 650px;
  margin: 0 auto 23px;
  font-size: 1.08rem;
}

.final-cta__content .store-buttons {
  justify-content: center;
}

.final-cta__content .pricing-note {
  text-align: center;
}

.exit-modal[hidden] {
  display: none;
}

.exit-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  background: rgba(12, 17, 31, 0.8);
  backdrop-filter: blur(7px);
  transition: opacity 200ms ease, visibility 200ms ease;
}

.exit-modal.is-visible {
  visibility: visible;
  opacity: 1;
}

.exit-modal__dialog {
  position: relative;
  display: grid;
  width: min(940px, 100%);
  min-height: 540px;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.92fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  background:
    radial-gradient(circle at 83% 12%, rgba(255, 250, 220, 0.82), transparent 28%),
    linear-gradient(130deg, #fff4c8 0%, #f8d66f 55%, #f0bf38 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  transform: translateY(18px) scale(0.98);
  transition: transform 200ms ease;
}

.exit-modal.is-visible .exit-modal__dialog {
  transform: translateY(0) scale(1);
}

.exit-modal__dialog::after {
  position: absolute;
  z-index: 0;
  top: -170px;
  right: -120px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.exit-modal__close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 170ms ease, background-color 170ms ease;
}

.exit-modal__close:hover,
.exit-modal__close:focus-visible {
  transform: rotate(5deg) scale(1.05);
  background: #fff;
}

.exit-modal__close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.exit-modal__close span:first-child {
  transform: rotate(45deg);
}

.exit-modal__close span:last-child {
  transform: rotate(-45deg);
}

.exit-modal__content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 58px 12px 58px 64px;
}

.exit-modal__eyebrow {
  margin-bottom: 10px;
  color: #5b542d;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.exit-modal__content h2 {
  margin-bottom: 12px;
  font-size: clamp(2.45rem, 4vw, 4rem);
}

.exit-modal__content > p:not(.exit-modal__eyebrow):not(.exit-modal__price) {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.exit-modal__benefits {
  display: grid;
  gap: 12px;
  padding: 0;
  margin-bottom: 30px;
  list-style: none;
  font-weight: 720;
}

.exit-modal__benefits li {
  position: relative;
  padding-left: 28px;
}

.exit-modal__benefits li::before {
  position: absolute;
  top: 0.09em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #fff;
  background: var(--ink);
  font-size: 0.72rem;
  line-height: 1;
}

.exit-modal__stores {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.exit-modal__store {
  display: inline-flex;
  border-radius: 11px;
  box-shadow: 0 12px 26px rgba(20, 24, 35, 0.18);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.exit-modal__store:hover,
.exit-modal__store:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(20, 24, 35, 0.24);
}

.exit-modal__store img {
  width: auto;
  height: 51px;
}

.exit-modal.is-ios .exit-modal__store--android,
.exit-modal.is-android .exit-modal__store--ios {
  display: none;
}

.exit-modal__price {
  margin: 13px 0 0;
  color: #4d4729;
  font-size: 0.79rem;
  font-weight: 680;
}

.exit-modal__visual {
  position: relative;
  z-index: 1;
  align-self: end;
  height: 500px;
  overflow: hidden;
}

.exit-modal__visual img {
  position: absolute;
  right: -56px;
  bottom: -55px;
  width: 470px;
  max-width: none;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 25px 25px rgba(28, 24, 10, 0.14));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
}

.site-footer {
  margin-top: 28px;
  padding: 75px 0 72px;
  border-top: 1px solid var(--line);
  background: #f8f8f9;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 55px;
}

.site-footer__brand img {
  width: 205px;
  margin-bottom: 22px;
}

.site-footer__brand > p {
  max-width: 310px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer__legal {
  margin-top: 28px;
  font-size: 0.82rem !important;
}

.footer-column h2 {
  margin-bottom: 22px;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.footer-column ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #a46f00;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: 175px 1fr auto;
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
    font-size: 0.85rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  }

  .hero__visual > img {
    right: -90px;
    width: 600px;
  }

  .aarp-badge {
    right: 0;
    width: 112px;
    height: 112px;
  }

  .stat {
    gap: 12px;
    padding: 19px;
  }

  .stat strong {
    font-size: 1.55rem;
  }
}

@media (max-width: 940px) {
  .site-header {
    overflow: visible;
  }

  .site-header__inner {
    position: relative;
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    order: 2;
  }

  .main-nav {
    position: absolute;
    z-index: 70;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    width: 100%;
    max-height: calc(100svh - 124px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    padding: 10px 24px 22px;
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    box-shadow: 0 22px 38px rgba(22, 25, 35, 0.16);
    font-size: 1.05rem;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 16px 10px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 50px 0 88px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__content {
    position: relative;
    z-index: 3;
    max-width: 700px;
  }

  .hero__visual {
    position: relative;
    display: flex;
    min-height: 0;
    align-items: flex-start;
    justify-content: center;
    margin-top: 30px;
    padding-inline: 12px;
  }

  .hero__visual > img {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 650px);
    max-width: 650px;
    height: auto;
    margin: 0 auto;
    transform: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 94%, transparent 100%);
  }

  .aarp-badge {
    top: 4%;
    right: 4%;
  }

  .experience__grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .how-column::before {
    top: -40px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

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

  .stat:nth-child(3) {
    border-left: 0;
  }

  .stat:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .final-cta__panel {
    padding-inline: 48px;
  }

  .exit-modal__dialog {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .exit-modal__content {
    padding-left: 42px;
  }

  .exit-modal__visual img {
    right: -82px;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .section {
    padding-block: 60px;
  }

  .announcement__inner {
    justify-content: center;
    min-height: 38px;
    text-align: center;
  }

  .announcement__social {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 70px;
  }

  .brand {
    width: 164px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    order: initial;
  }

  .main-nav {
    top: 100%;
    max-height: calc(100svh - 108px);
    padding: 8px 16px 20px;
  }

  .hero {
    padding: 35px 0 72px;
  }

  .hero__grid {
    gap: 0;
  }

  .rating-pill {
    gap: 7px;
    margin-bottom: 22px;
    padding: 9px 12px;
    font-size: 0.68rem;
  }

  .rating-pill__stars {
    display: none;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(3.3rem, 15vw, 4.7rem);
  }

  .hero__lead br {
    display: none;
  }

  .download-block__cta {
    font-size: 0.98rem;
  }

  .store-buttons {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
  }

  .store-buttons a {
    width: 100%;
    flex: none;
    justify-content: center;
  }

  .store-buttons img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .hero__visual {
    min-height: 0;
    margin-top: 24px;
    padding-inline: 0;
  }

  .hero__visual > img {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 440px);
    max-width: 100%;
    transform: none;
  }

  .aarp-badge {
    top: 8px;
    right: 0;
    width: 94px;
    height: 94px;
  }

  .aarp-badge strong {
    font-size: 1rem;
  }

  .aarp-badge span {
    font-size: 0.65rem;
  }

  .aarp-badge small {
    display: none;
  }

  .hero__curve {
    bottom: -60px;
    height: 110px;
  }

  .press {
    padding-top: 20px;
  }

  .press__logos {
    gap: 22px 30px;
  }

  .benefit {
    grid-template-columns: 52px 1fr;
    gap: 15px;
  }

  .benefit__icon {
    width: 50px;
    height: 50px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .step {
    display: grid;
    grid-template-columns: 30px 62px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 14px;
    text-align: left;
  }

  .step__number {
    grid-row: 1 / 3;
    margin: 0;
  }

  .step__icon {
    grid-row: 1 / 3;
    width: 62px;
    height: 62px;
    margin: 0;
    border-radius: 14px;
    font-size: 2rem;
  }

  .step h3 {
    align-self: end;
    margin-bottom: 4px;
  }

  .step p {
    align-self: start;
  }

  .step-arrow {
    display: none;
  }

  .testimonial {
    padding: 28px 22px 26px 56px;
  }

  .testimonial__quote {
    left: 20px;
  }

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

  .stat {
    min-height: 95px;
    justify-content: flex-start;
    padding-inline: 30px;
  }

  .stat + .stat,
  .stat:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .final-cta {
    padding-top: 20px;
  }

  .final-cta__panel {
    padding: 42px 24px 32px;
    text-align: center;
  }

  .final-cta__content .store-buttons {
    margin-inline: auto;
    justify-content: center;
  }

  .final-cta__content .section-kicker {
    color: #5d542f;
  }

  .exit-modal {
    align-items: center;
    padding: 12px;
  }

  .exit-modal__dialog {
    width: min(100%, 430px);
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .exit-modal__content {
    padding: 46px 24px 28px;
    text-align: center;
  }

  .exit-modal__content h2 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .exit-modal__content > p:not(.exit-modal__eyebrow):not(.exit-modal__price) {
    font-size: 0.98rem;
  }

  .exit-modal__benefits {
    width: min(100%, 320px);
    margin: 0 auto 25px;
    text-align: left;
  }

  .exit-modal__stores {
    justify-content: center;
  }

  .exit-modal__store img {
    height: 50px;
  }

  .exit-modal.is-desktop .exit-modal__stores {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exit-modal.is-desktop .exit-modal__store img {
    width: 100%;
    height: auto;
  }

  .exit-modal__visual {
    display: none;
  }

  .site-footer {
    padding-block: 58px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
