:root {
  --navy-950: #031530;
  --navy-900: #041c44;
  --navy-800: #082b62;
  --blue-700: #075dc9;
  --blue-600: #0b72e7;
  --blue-500: #2191f5;
  --sky-100: #eaf7ff;
  --sky-200: #d8efff;
  --yellow-500: #ffc319;
  --yellow-600: #f2b300;
  --green-500: #24b56a;
  --white: #ffffff;
  --ink: #081a3a;
  --text: #193055;
  --muted: #6880a0;
  --line: rgba(5, 37, 82, .12);
  --shadow: 0 24px 70px rgba(3, 28, 68, .16);
  --shadow-soft: 0 14px 40px rgba(3, 28, 68, .10);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.page-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 4px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow-500), #ffdf63);
  box-shadow: 0 0 16px rgba(255,195,25,.6);
}

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 880px; }
.center { text-align: center; }
.max-760 { max-width: 760px; margin-inline: auto; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-white { background: var(--white); }
.section-sky { background: var(--sky-100); }
.section-blue { background: linear-gradient(135deg, var(--navy-800), var(--blue-700)); color: var(--white); }

.top-strip {
  position: relative;
  z-index: 20;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
}
.top-strip-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.dot { opacity: .45; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  letter-spacing: -.045em;
  line-height: 1.02;
}
.section-dark h1, .section-dark h2, .section-dark h3,
.section-blue h1, .section-blue h2, .section-blue h3 { color: var(--white); }
h1 { font-size: clamp(48px, 6.3vw, 84px); margin-bottom: 26px; }
h2 { font-size: clamp(38px, 4.4vw, 60px); margin-bottom: 24px; }
h3 { font-size: 28px; margin-bottom: 14px; }
p { line-height: 1.7; }
.lead { font-size: 19px; color: #4d678a; }
.light { color: #bed0e7; }
.text-blue { color: var(--blue-700); }
.text-blue-light { color: #65b8ff; }
.text-yellow { color: var(--yellow-500); }

.section-kicker, .eyebrow, .mini-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-kicker, .mini-kicker { color: var(--blue-700); }
.eyebrow-yellow { color: var(--yellow-500); }
.eyebrow-blue { color: #67b9ff; }

.hero {
  padding: 86px 0 105px;
  background:
    radial-gradient(circle at 12% 18%, rgba(10,114,231,.28), transparent 31%),
    radial-gradient(circle at 88% 24%, rgba(33,145,245,.16), transparent 29%),
    linear-gradient(180deg, #031530 0%, #041c44 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -320px;
  bottom: -280px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero-lead {
  max-width: 660px;
  color: #c7d6ea;
  font-size: 20px;
  line-height: 1.62;
}
.hero-bullets { display: grid; gap: 10px; margin: 28px 0 34px; }
.hero-bullets div { color: #e8f1fb; font-size: 15px; }
.hero-bullets span { color: var(--yellow-500); margin-right: 8px; font-weight: 900; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.button-note { color: #869ebb; font-size: 12px; }

.hero-media { position: relative; }
.hero-image-card {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  box-shadow: 0 32px 100px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.1);
}
.hero-image-card::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: radial-gradient(circle, rgba(11,114,231,.42), transparent 70%);
  filter: blur(28px);
}
.hero-image-card img { width: 100%; border-radius: 20px; }
.floating-pill {
  position: absolute;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(4,28,68,.88);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  box-shadow: 0 15px 35px rgba(0,0,0,.22);
}
.floating-pill-left { left: -24px; bottom: 24px; }
.floating-pill-right { right: -16px; top: -20px; color: var(--navy-950); background: var(--yellow-500); border-color: transparent; }

.btn {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .035em;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-yellow {
  color: var(--navy-950);
  background: linear-gradient(180deg, #ffd94d, var(--yellow-500));
  box-shadow: 0 14px 34px rgba(255,195,25,.24);
}
.btn-full { width: 100%; }

.stats-band { background: var(--white); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 28px 22px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--blue-700); font-size: 34px; letter-spacing: -.04em; }
.stat span { color: var(--muted); font-size: 13px; }

.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.pain-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfdff;
  box-shadow: var(--shadow-soft);
}
.pain-number { color: var(--blue-700); font-size: 12px; font-weight: 950; letter-spacing: .12em; }
.pain-card h3 { margin-top: 22px; }
.pain-card p { margin: 0; color: #607798; }

.mechanism-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -280px;
  top: 140px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.align-center { align-items: center; }
.text-link { color: var(--yellow-500); font-weight: 850; text-decoration: none; }
.flow { display: grid; gap: 8px; }
.flow-item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}
.flow-item b {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--yellow-500);
  color: var(--navy-950);
}
.flow-item strong, .flow-item span { display: block; }
.flow-item span { margin-top: 3px; color: #a9bfd9; font-size: 13px; }
.flow-arrow { color: #5baef5; text-align: center; font-weight: 900; }

.product-list { display: grid; gap: 34px; margin-top: 58px; }
.product-row {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 58px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(5,37,82,.10);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}
.product-row.reverse { grid-template-columns: 1.22fr .78fr; }
.product-row.reverse .product-cover-wrap { order: 2; }
.product-row.reverse .product-copy { order: 1; }
.product-cover-wrap { position: relative; max-width: 410px; margin-inline: auto; }
.product-cover {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 28px 58px rgba(3,28,68,.19);
  transform: perspective(1100px) rotateY(-4deg);
}
.reverse .product-cover { transform: perspective(1100px) rotateY(4deg); }
.product-label {
  position: absolute;
  z-index: 2;
  top: -14px;
  left: -12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 10px 25px rgba(3,28,68,.14);
}
.product-copy h3 { font-size: 38px; }
.product-copy p { color: #536d90; font-size: 17px; }
.feature-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 11px; }
.feature-list li { position: relative; padding-left: 28px; color: #324d73; line-height: 1.45; }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff8e9;
  color: #16884b;
  font-size: 12px;
  font-weight: 900;
}

.preview-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.preview-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.preview-tags span { padding: 9px 12px; border-radius: 999px; background: var(--sky-100); color: var(--blue-700); font-size: 12px; font-weight: 850; }
.preview-visual img { border-radius: 26px; box-shadow: var(--shadow); }

.showcase-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 68px; align-items: center; }
.showcase-image img { width: min(100%, 520px); margin-inline: auto; border-radius: 22px; box-shadow: 0 30px 75px rgba(0,0,0,.34); }
.chip-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.chip-list span { padding: 9px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.05); color: #d8e7f8; font-size: 12px; }

.screenshot-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.screenshot-card { margin: 0; padding: 10px 10px 18px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-soft); }
.screenshot-card img { border-radius: 15px; width: 100%; }
.screenshot-card figcaption { padding: 14px 10px 0; color: #516c90; font-size: 13px; line-height: 1.45; }

.practice-images { position: relative; min-height: 690px; }
.practice-main { position: absolute; width: 56%; left: 3%; top: 30px; border-radius: 18px; box-shadow: 0 30px 70px rgba(0,0,0,.32); transform: rotate(-4deg); }
.practice-floating { position: absolute; width: 56%; right: 2%; bottom: 18px; border-radius: 18px; box-shadow: 0 30px 70px rgba(0,0,0,.32); transform: rotate(5deg); }
.light-list li { color: #e5f0fb; }
.light-list li::before { background: rgba(255,255,255,.18); color: var(--yellow-500); }

.use-steps { margin-top: 50px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 20px; align-items: center; }
.use-steps article { height: 100%; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-soft); }
.step-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--navy-900); color: var(--white); font-size: 18px; font-weight: 950; }
.step-tag { display: inline-block; margin-top: 22px; color: var(--blue-700); font-size: 11px; font-weight: 950; letter-spacing: .12em; }
.use-steps h3 { margin-top: 8px; }
.use-steps p { margin-bottom: 0; color: #607798; }
.use-arrow { color: var(--blue-700); font-size: 36px; font-weight: 900; }

.offer-section {
  background:
    radial-gradient(circle at 18% 40%, rgba(11,114,231,.22), transparent 33%),
    linear-gradient(180deg, #031530 0%, #041c44 100%);
}
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.offer-visual img { width: 100%; max-width: 700px; margin-inline: auto; }
.offer-card {
  padding: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.offer-badge { display: inline-block; margin-bottom: 18px; padding: 9px 12px; border-radius: 999px; background: rgba(255,195,25,.12); color: var(--yellow-500); font-size: 11px; font-weight: 950; letter-spacing: .08em; }
.offer-card h2 { font-size: 48px; }
.offer-subtitle { color: #a9bfd9; font-size: 16px; }
.offer-items { display: grid; gap: 10px; margin: 26px 0; padding: 22px 0; border-block: 1px solid rgba(255,255,255,.1); }
.offer-items div { display: flex; gap: 10px; color: #e4effa; font-size: 14px; }
.offer-items span { color: var(--yellow-500); }
.price-area { margin: 26px 0; }
.price-overline { color: #8fa7c3; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.price-line { display: flex; align-items: center; line-height: 1; margin-top: 7px; color: var(--white); }
.price-line strong { font-size: 82px; letter-spacing: -.07em; }
.price-line small { font-size: 22px; font-weight: 900; }
.secure-note { margin-top: 12px; color: #7f99b8; text-align: center; font-size: 11px; }

.guarantee-box { display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; max-width: 900px; }
.guarantee-seal { width: 132px; height: 132px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--yellow-500); color: var(--navy-950); box-shadow: 0 20px 45px rgba(255,195,25,.2); }
.guarantee-seal strong { font-size: 48px; line-height: .9; }
.guarantee-seal span { font-size: 14px; font-weight: 950; }
code { padding: 2px 6px; border-radius: 6px; background: #eef4fb; color: var(--blue-700); font-size: .9em; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.faq-heading { position: sticky; top: 36px; }
.faq-heading p { color: #607798; }
.faq-list { border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
}
.faq-question span { color: var(--blue-700); font-size: 26px; transition: transform .2s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0 0 22px; color: #607798; }
.faq.open .faq-answer { grid-template-rows: 1fr; }
.faq.open .faq-question span { transform: rotate(45deg); }

.final-cta { padding-block: 90px; }
.final-cta p { margin-inline: auto; max-width: 620px; }
.final-cta .btn { margin-top: 10px; }

footer { padding: 34px 0 90px; background: #021126; color: #7790ad; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; font-size: 11px; }
.footer-grid div { display: grid; gap: 5px; }
.footer-grid strong { color: #aac0da; }
.footer-grid div:last-child { text-align: right; }

.mobile-buy-bar { display: none; }

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

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

@media (max-width: 980px) {
  .section { padding: 82px 0; }
  .hero-grid, .split, .preview-grid, .showcase-grid, .offer-grid, .faq-layout { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-bullets { text-align: left; max-width: 650px; margin-inline: auto; }
  .hero-actions { align-items: center; }
  .hero-media { max-width: 780px; margin-inline: auto; }
  .pain-grid { grid-template-columns: 1fr; }
  .product-row, .product-row.reverse { grid-template-columns: .72fr 1.28fr; gap: 36px; }
  .product-row.reverse .product-cover-wrap { order: initial; }
  .product-row.reverse .product-copy { order: initial; }
  .screenshot-cards { grid-template-columns: repeat(3, minmax(240px, 1fr)); overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
  .screenshot-card { scroll-snap-align: start; }
  .practice-images { min-height: 620px; max-width: 720px; width: 100%; margin-inline: auto; }
  .use-steps { grid-template-columns: 1fr; }
  .use-arrow { transform: rotate(90deg); text-align: center; }
  .faq-heading { position: static; }
  .offer-visual img { max-width: 650px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .top-strip-inner { min-height: 38px; gap: 7px; flex-wrap: wrap; padding-block: 6px; font-size: 9px; }
  .top-strip .dot:nth-of-type(n+2) { display: none; }
  .section { padding: 66px 0; }
  .hero { padding-top: 56px; }
  h1 { font-size: clamp(42px, 12vw, 58px); }
  h2 { font-size: clamp(34px, 9.4vw, 46px); }
  .hero-lead, .lead { font-size: 17px; }
  .hero-image-card { padding: 6px; border-radius: 18px; }
  .hero-image-card img { border-radius: 13px; }
  .floating-pill { font-size: 9px; padding: 8px 10px; }
  .floating-pill-left { left: 8px; bottom: -16px; }
  .floating-pill-right { right: 8px; top: -14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-row, .product-row.reverse { grid-template-columns: 1fr; padding: 26px; }
  .product-cover-wrap { max-width: 330px; }
  .product-cover, .reverse .product-cover { transform: none; }
  .product-copy h3 { font-size: 31px; }
  .preview-copy { text-align: center; }
  .preview-tags { justify-content: center; }
  .practice-images { min-height: 520px; }
  .practice-main, .practice-floating { width: 64%; }
  .offer-card { padding: 30px 22px; }
  .offer-card h2 { font-size: 38px; }
  .price-line strong { font-size: 70px; }
  .guarantee-box { grid-template-columns: 1fr; text-align: center; }
  .guarantee-seal { margin-inline: auto; }
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-grid div:last-child { text-align: center; }
  footer { padding-bottom: 110px; }
  .mobile-buy-bar {
    position: fixed;
    z-index: 900;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(3,21,48,.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0,0,0,.28);
    transform: translateY(140%);
    transition: transform .25s ease;
  }
  .mobile-buy-bar.visible { transform: none; }
  .mobile-buy-bar div { display: grid; }
  .mobile-buy-bar span { color: #89a3c0; font-size: 9px; }
  .mobile-buy-bar strong { color: var(--white); font-size: 19px; }
  .mobile-buy-bar a { padding: 13px 14px; border-radius: 11px; background: var(--yellow-500); color: var(--navy-950); text-decoration: none; font-size: 11px; font-weight: 950; }
}

@media (max-width: 480px) {
  .btn { width: 100%; min-height: 58px; padding-inline: 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 12px; }
  .stat strong { font-size: 30px; }
  .product-row { padding: 22px 18px; }
  .practice-images { min-height: 430px; }
  .offer-card h2 { font-size: 34px; }
}

/* ============================================================
   RESPONSIVIDADE REFORÇADA — MOBILE / TABLET / TELAS PEQUENAS
   ============================================================ */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, picture, svg, video, canvas {
  max-width: 100%;
}

img {
  height: auto;
}

.hero-grid > *, .split > *, .preview-grid > *, .showcase-grid > *,
.offer-grid > *, .faq-layout > *, .product-row > * {
  min-width: 0;
}

.btn, .faq-question, .mobile-buy-bar a {
  touch-action: manipulation;
}

.old-price {
  display: block;
  margin-bottom: 8px;
  color: #a9bfd9;
  font-size: 18px;
  font-weight: 700;
}
.old-price span {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 23px;
  font-weight: 900;
}
.old-price span::after {
  content: "";
  position: absolute;
  left: -4%;
  top: 50%;
  width: 108%;
  height: 3px;
  border-radius: 999px;
  background: #ff4a4a;
  transform: rotate(-5deg);
  transform-origin: center;
}

@media (max-width: 980px) {
  .hero-grid, .split, .preview-grid, .showcase-grid, .offer-grid, .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media, .offer-visual, .preview-visual, .showcase-image {
    width: 100%;
  }
}

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

  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 48px 0 68px;
  }

  .hero-grid {
    gap: 38px;
  }

  h1 {
    font-size: clamp(39px, 11.2vw, 54px);
    line-height: .98;
    letter-spacing: -.05em;
  }

  h2 {
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1;
  }

  h3 {
    line-height: 1.05;
  }

  .hero-lead, .lead {
    font-size: 16.5px;
    line-height: 1.6;
  }

  .hero-bullets div,
  .offer-items div,
  .feature-list li {
    line-height: 1.45;
  }

  .product-row,
  .product-row.reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 24px 20px;
  }

  .product-cover-wrap {
    width: min(100%, 330px);
  }

  .product-copy h3 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .screenshot-cards {
    grid-template-columns: repeat(3, minmax(78vw, 1fr));
    gap: 14px;
    margin-inline: -14px;
    padding-inline: 14px;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .screenshot-cards::-webkit-scrollbar { display: none; }

  .practice-images {
    min-height: 500px;
  }

  .offer-card {
    width: 100%;
    padding: 28px 20px;
  }

  .price-line {
    flex-wrap: nowrap;
  }

  .faq-question {
    min-height: 68px;
    font-size: 15px;
  }

  .mobile-buy-bar {
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    -webkit-backdrop-filter: blur(14px);
  }

  footer {
    padding-bottom: calc(118px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 22px);
  }

  .top-strip-inner {
    padding-inline: 2px;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(37px, 11vw, 48px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .eyebrow, .section-kicker, .mini-kicker {
    letter-spacing: .09em;
  }

  .hero-bullets {
    margin-top: 24px;
    margin-bottom: 28px;
  }

  .floating-pill {
    max-width: calc(100% - 16px);
    white-space: normal;
    text-align: center;
  }

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

  .stat {
    min-width: 0;
  }

  .practice-images {
    min-height: 410px;
  }

  .practice-main, .practice-floating {
    width: 68%;
  }

  .offer-card h2 {
    font-size: clamp(31px, 9vw, 36px);
  }

  .old-price {
    font-size: 16px;
  }

  .old-price span {
    font-size: 21px;
  }

  .price-line strong {
    font-size: clamp(62px, 19vw, 72px);
  }

  .price-line small {
    font-size: 19px;
  }

  .mobile-buy-bar {
    gap: 8px;
    padding: 9px;
  }

  .mobile-buy-bar strong {
    font-size: 17px;
  }

  .mobile-buy-bar a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 12px;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 18px);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-lead, .lead {
    font-size: 16px;
  }

  .product-row {
    padding: 20px 16px;
  }

  .offer-card {
    padding: 24px 16px;
  }

  .mobile-buy-bar span {
    display: none;
  }
}
