:root {
  --bg: #fffaf0;
  --surface: #ffffff;
  --surface-soft: #fff3bf;
  --yellow: #ffd84d;
  --yellow-strong: #ffb703;
  --gold: #ff8f00;
  --ink: #111111;
  --muted: #64645f;
  --line: #f1dfad;
  --green: #1f8a5b;
  --glass: rgba(255, 255, 255, .72);
  --shadow: 0 28px 90px rgba(75, 50, 0, .18);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 216, 77, .34), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 143, 0, .16), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 46%, #fff8df 100%);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, .78);
  border-bottom: 1px solid rgba(238, 228, 198, .6);
  backdrop-filter: blur(22px) saturate(150%);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 35px rgba(42, 32, 0, .08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(255, 183, 3, .34), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #33312a;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:not(.nav-cta):hover,
.text-link:hover {
  color: #a76d00;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  font-weight: 850;
}

.nav-cta {
  padding: 11px 16px;
  background: linear-gradient(135deg, #111 0%, #2a2415 48%, #000 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(17, 17, 17, .22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 216, 77, .42), transparent 28%),
    radial-gradient(circle at 20% 88%, rgba(255, 143, 0, .18), transparent 30%),
    linear-gradient(135deg, #fffefa 0%, #fff0ae 48%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 510px);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #9b6800;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 88px;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 650px;
  color: #4e4b42;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  padding: 13px 18px;
  border: 1px solid transparent;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button.primary {
  color: #181200;
  background: linear-gradient(135deg, #fff176 0%, var(--yellow) 42%, var(--yellow-strong) 100%);
  box-shadow: 0 16px 36px rgba(255, 183, 3, .36), inset 0 1px 0 rgba(255, 255, 255, .65);
}

.button.primary:hover {
  background: var(--yellow-strong);
}

.button.secondary {
  color: #1f1f1c;
  background: rgba(255, 255, 255, .78);
  border-color: rgba(255, 183, 3, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 12px 30px rgba(75, 50, 0, .08);
  backdrop-filter: blur(16px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 248, 220, .72));
  border: 1px solid rgba(255, 183, 3, .23);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 14px 32px rgba(93, 61, 0, .07);
}

.hero-stats dt {
  font-size: 24px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 735px;
}

.phone-frame {
  position: absolute;
  overflow: hidden;
  width: min(74%, 330px);
  border: 9px solid #171717;
  border-radius: 34px;
  background: #171717;
  box-shadow: 0 32px 90px rgba(15, 15, 15, .2), 0 0 0 1px rgba(255, 216, 77, .28);
}

.phone-frame img {
  width: 100%;
  border-radius: 24px;
}

.phone-main {
  right: 135px;
  top: 30px;
  z-index: 2;
}

.phone-back {
  right: -50px;
  top: 0px;
  z-index: 1;
  transform: rotate(5deg);
  opacity: .86;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 220px;
  padding: 16px;
  border: 1px solid rgba(238, 228, 198, .85);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 246, 202, .74));
  box-shadow: 0 22px 55px rgba(60, 40, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px) saturate(145%);
}

.floating-card span,
.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.floating-card strong {
  display: block;
  margin: 5px 0;
  font-size: 22px;
}

.balance-card {
  left: -60px;
  top: 195px;
}

.snap-card {
  right: -100px;
  bottom: 220px;
}

.trust-strip {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  background: linear-gradient(90deg, #090909 0%, #2a2108 50%, #090909 100%);
  color: #fff;
}

.trust-strip::before,
.trust-strip::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(12vw, 130px);
  height: 100%;
  pointer-events: none;
}

.trust-strip::before {
  left: 0;
  background: linear-gradient(90deg, #090909 0%, rgba(9, 9, 9, 0) 100%);
}

.trust-strip::after {
  right: 0;
  background: linear-gradient(270deg, #090909 0%, rgba(9, 9, 9, 0) 100%);
}

.trust-grid {
  overflow: hidden;
}

.trust-track {
  display: flex;
  width: max-content;
  gap: clamp(34px, 8vw, 128px);
  font-size: 16px;
  font-weight: 850;
  white-space: nowrap;
  will-change: transform;
  animation: trustMarqueeRight 26s linear infinite;
}

.trust-track span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  white-space: nowrap;
  align-items: center;
  gap: 100px;
}

.trust-track span::after {
  content: "✦";
  color: var(--yellow);
  font-size: 16px;
}


@keyframes trustMarqueeRight {
  from {
    transform: translateX(calc(-50% - clamp(17px, 4vw, 64px)));
  }

  to {
    transform: translateX(0);
  }
}

.section {
  padding: 96px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 216, 77, .28), transparent 30%),
    linear-gradient(180deg, #fff8e3 0%, #fffdf7 100%);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.copy-block p,
.cta-box p {
  color: var(--muted);
  font-size: 18px;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 235px;
  padding: 24px;
  border: 1px solid rgba(255, 183, 3, .24);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255, 255, 255, .96), rgba(255, 247, 214, .74));
  box-shadow: 0 18px 50px rgba(49, 38, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .92);
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(49, 38, 0, .13), inset 0 1px 0 rgba(255, 255, 255, .92);
}

.feature-card .icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff7c2, #ffd84d);
  font-size: 23px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 10px 22px rgba(255, 183, 3, .22);
}

.social-proof {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 216, 77, .12), transparent 34%),
    linear-gradient(180deg, #050507 0%, #07070b 55%, #050507 100%);
  color: #fff;
}

.reviews-heading {
  max-width: 850px;
  margin-bottom: 48px;
  text-align: center;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0 0 24px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 216, 77, .38);
  border-radius: 999px;
  background: rgba(255, 216, 77, .08);
  color: #ffd84d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 0 32px rgba(255, 216, 77, .12);
}

.reviews-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
}

.reviews-heading h2 span {
  color: #ffd84d;
  text-shadow: 0 0 32px rgba(255, 216, 77, .28);
}

.reviews-heading p {
  max-width: 650px;
  margin-inline: auto;
  color: #ffd84d;
  font-size: 16px;
}

.reviews-heading .text {
  max-width: 650px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .56);
  font-size: 16px;
}

.review-marquee {
  position: relative;
  display: grid;
  gap: 16px;
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(16vw, 190px);
  height: 100%;
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #050507 0%, rgba(5, 5, 7, 0) 100%);
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #050507 0%, rgba(5, 5, 7, 0) 100%);
}

.marquee-row {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
}

.marquee-left .marquee-track {
  animation: reviewMarqueeLeft 44s linear infinite;
}

.marquee-right .marquee-track {
  animation: reviewMarqueeRight 48s linear infinite;
}

.review-card {
  flex: 0 0 360px;
  min-height: 162px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 24px 60px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd84d, #ff8f00);
  color: #111;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 183, 3, .22);
}

.review-top strong,
.review-top small {
  display: block;
}

.review-top small {
  color: rgba(255, 255, 255, .38);
  font-size: 13px;
}

.review-top small span {
  color: #ffd400;
  letter-spacing: 1px;
}

.feature-card p,
.timeline p,
.privacy-list p,
.footer-grid p,
.faq-list p {
  color: var(--muted);
}

.review-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

@keyframes reviewMarqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes reviewMarqueeRight {
  from {
    transform: translateX(calc(-50% - 8px));
  }

  to {
    transform: translateX(0);
  }
}

.screens-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #fff4c8);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.screen-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 260px);
  gap: 18px;
  overflow-x: auto;
  -ms-overflow-style: none;
  padding: 8px 8px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.screen-carousel::-webkit-scrollbar {
  display: none;
}

.screen-carousel img {
  width: 100%;
  border: 8px solid #191919;
  border-radius: 30px;
  background: #191919;
  box-shadow: 0 18px 45px rgba(49, 38, 0, .16);
  scroll-snap-align: start;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .7fr);
  gap: 56px;
  align-items: center;
}

.copy-block {
  max-width: 700px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: #8c5a00;
  font-weight: 850;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 16px;
  padding: 18px;
  border: 1px solid rgba(255, 183, 3, .22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #fff8df);
  box-shadow: 0 16px 40px rgba(60, 40, 0, .07);
}

.timeline span {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--yellow);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 216, 77, .18), transparent 32%),
    linear-gradient(135deg, #0b0b0b 0%, #1e1808 54%, #070707 100%);
}

.section-dark .eyebrow {
  color: #ffd866;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 42px;
}

.privacy-list {
  display: grid;
  gap: 16px;
}

.privacy-list article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 216, 77, .06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.privacy-list p {
  color: rgba(255, 255, 255, .72);
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(255, 183, 3, .22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #fffaf0);
  box-shadow: 0 12px 30px rgba(60, 40, 0, .05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.cta-section {
  padding: 20px 0 96px;
}

.cta-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 183, 3, .28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 216, 77, .38), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fff6cf 52%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.cta-box img {
  border-radius: 8px;
}

.cta-box h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.cta-box p {
  margin-bottom: 0;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #fff7df 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: #4e4b42;
  font-weight: 750;
}

.legal-page {
  min-height: 100vh;
  padding: 56px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 216, 77, .34), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.legal-document {
  max-width: 840px;
  padding: 34px;
  border: 1px solid rgba(255, 183, 3, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 70px rgba(75, 50, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .94);
}

.legal-brand {
  margin-bottom: 38px;
}

.legal-document h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 64px);
}

.legal-document h2 {
  margin-top: 34px;
  font-size: clamp(24px, 4vw, 34px);
}

.legal-document p {
  color: #4e4b42;
  font-size: 18px;
}

.legal-document ul {
  margin: 12px 0 22px;
  padding-left: 22px;
  color: #4e4b42;
  font-size: 18px;
}

.legal-document li {
  margin: 7px 0;
}

.legal-document a:not(.brand) {
  color: #9b6800;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.box,
.notice-card {
  margin: 20px 0;
  border: 1px solid rgba(255, 183, 3, .22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #fff8df);
  box-shadow: 0 14px 38px rgba(60, 40, 0, .07), inset 0 1px 0 rgba(255, 255, 255, .94);
}

.box {
  padding: 20px;
}

.intro {
  color: #4e4b42;
  margin-bottom: 26px;
}

.notice-card {
  overflow: hidden;
}

.notice-card summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 850;
  list-style: none;
}

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

.summary-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.version {
  color: var(--ink);
  font-size: 19px;
}

.date {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.arrow {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff176, #ffb703);
  color: #17110a;
  font-size: 24px;
  line-height: 1;
  transition: transform .2s ease;
}

details[open] .arrow {
  transform: rotate(90deg);
}

.content {
  padding: 22px;
  border-top: 1px solid rgba(255, 183, 3, .2);
  background: rgba(255, 255, 255, .58);
}

.content h2 {
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 183, 3, .18);
  color: #8c5a00;
  font-size: 13px;
  font-weight: 850;
}

.legal-document footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 183, 3, .22);
}

.legal-document footer p {
  font-size: 15px;
}

@media (max-width: 980px) {

  .hero-grid,
  .screens-layout,
  .split,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 700px;
  }

  .phone-main {
    left: 40%;
    right: auto;
    transform: translateX(-58%);
  }

  .phone-back {
    left: 40%;
    right: auto;
    transform: translateX(-8%) rotate(5deg);
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 60px;

  }

  h2 {
    line-height: 40px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-stats,
  .feature-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-frame {
    width: min(68%, 220px);
  }

  .floating-card {
    width: 190px;
  }

  .balance-card {
    left: 0;
    top: 70px;
  }

  .snap-card {
    right: 0;
    bottom: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .social-proof {
    padding: 72px 0;
  }

  .review-card {
    flex-basis: 310px;
    min-height: 176px;
  }

  .cta-section {
    padding-bottom: 72px;
  }

  .cta-box {
    text-align: center;
  }

  .cta-box img,
  .cta-box .button {
    margin-inline: auto;
  }
}

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

  .marquee-left .marquee-track,
  .marquee-right .marquee-track,
  .trust-track {
    animation-play-state: paused;
  }
}