:root {
  --red: #f9143f;
  --red-hot: #ff0042;
  --pink: #ff5a78;
  --gold: #ffbc7d;
  --green: #61ce70;
  --black: #000;
  --ink: #0f0f0f;
  --card: rgba(20, 20, 20, 0.68);
  --line: rgba(255, 255, 255, 0.1);
  --muted: rgba(242, 242, 242, 0.74);
  --soft: #878585;
  --dot: #51504a;
  --title: "Bebas Neue", Impact, sans-serif;
  --body: "Manrope", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #000;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--body);
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 20, 63, 0.18), transparent 30%),
    linear-gradient(140deg, #000 0%, #101010 54%, #050505 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.quiz-shell,
.reading-page,
.checkout-page {
  position: relative;
  z-index: 1;
}

.glass-panel {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 108px 108px rgba(0, 0, 0, 0.26),
    0 27px 59px rgba(0, 0, 0, 0.29);
}

.corner-dots {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  display: block;
  width: min(210px, 58vw);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--red);
  font-size: 34px;
  line-height: 1;
}

.quiz-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}

.quiz-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.quiz-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: brightness(0.7) saturate(1.15);
}

.quiz-frame {
  width: min(980px, calc(100vw - 36px));
  min-height: min(680px, calc(100vh - 36px));
  overflow: hidden;
  padding: 26px clamp(18px, 3.2vw, 42px) 34px;
}

.quiz-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(230deg, transparent 3%, rgba(16, 16, 16, 0.78) 58%),
    radial-gradient(circle at 80% 10%, rgba(255, 188, 125, 0.10), transparent 28%);
}

.section-band::before,
.checkout-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(230deg, transparent 3%, rgba(16, 16, 16, 0.92) 58%),
    radial-gradient(circle at 80% 10%, rgba(255, 188, 125, 0.12), transparent 28%);
}

.quiz-top,
.top-nav,
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.secure-chip,
.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  animation: blink 1s infinite alternate;
}

.progress-track {
  height: 5px;
  margin: 22px 0 10px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-bar {
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-hot), var(--pink), var(--red-hot));
  background-size: 200% auto;
  transition: width 0.6s ease;
  animation: shine 2s linear infinite;
}

.quiz-stage {
  position: relative;
  min-height: 500px;
  padding-top: 18px;
}

.quiz-step {
  display: none;
  max-width: 790px;
  margin: 0 auto;
  animation: riseIn 0.48s ease both;
}

.quiz-step.active {
  display: block;
}

.back-btn {
  position: absolute;
  top: 22px;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.back-btn svg {
  width: 22px;
  fill: currentColor;
}

.back-btn[hidden] {
  display: none;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--title);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(42px, 5.7vw, 68px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.55;
}

.zodiac-grid,
.option-grid {
  display: grid;
  gap: 12px;
}

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

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

.month-grid,
.decade-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.option-card {
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: transform 0.28s ease, border 0.28s ease, background 0.28s ease;
}

.option-card:hover,
.option-card.selected {
  transform: translateY(-3px);
  border-color: rgba(249, 20, 63, 0.74);
  background: rgba(249, 20, 63, 0.16);
}

.zodiac-symbol {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 28px;
}

.zodiac-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px 14px;
  min-height: 140px;
}

.zodiac-img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 188, 125, 0.22);
  box-shadow:
    0 0 16px rgba(249, 20, 63, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.zodiac-card:hover .zodiac-img {
  transform: scale(1.08);
  border-color: rgba(249, 20, 63, 0.6);
  box-shadow:
    0 0 24px rgba(249, 20, 63, 0.25),
    0 6px 24px rgba(0, 0, 0, 0.5);
}

.zodiac-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.compact {
  width: min(220px, 46%);
  min-height: 76px;
  font-size: 19px;
  font-weight: 800;
}

.choice-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  max-width: 520px;
}

.time-row,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 600px;
}

.time-row {
  grid-template-columns: repeat(2, 160px);
  margin-bottom: 26px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
}

.location-grid {
  margin-bottom: 32px;
}

.location-cta {
  display: flex;
  width: min(440px, 100%);
  margin-top: 0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

select option {
  color: #111;
}

input:focus,
select:focus {
  border-color: rgba(249, 20, 63, 0.8);
  box-shadow: 0 0 0 4px rgba(249, 20, 63, 0.12);
}

.single-field {
  max-width: 700px;
  margin-bottom: 22px;
}

.privacy-note {
  max-width: 780px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  min-height: 58px;
  padding: 16px 22px;
  border: 0;
  border-radius: 514px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  animation: glow 1.25s ease-in-out infinite alternate;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cta-primary:hover {
  transform: scale(0.97);
  background: var(--red-hot);
}

.calc-step {
  min-height: 440px;
  place-items: center;
  text-align: center;
}

.calc-step.active {
  display: grid;
}

.moon-loader {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 24px;
}

.moon-loader span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
}

.moon-loader span:last-child {
  background: #0f0f0f;
  transform: translateX(-30px);
  animation: moonSweep 2s ease-in-out infinite alternate;
}

.reading-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media picture {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.52;
}

.hero-overlay {
  background:
    linear-gradient(221deg, transparent 0%, rgba(0,0,0,0.92) 68%),
    linear-gradient(180deg, transparent 30%, #000 92%);
}

.reading-content {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 58px;
}

.reading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.68fr);
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.reading-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.reading-facts div,
.insight-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.reading-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 12px;
  text-transform: uppercase;
}

.reading-facts strong {
  color: var(--gold);
  font-size: 19px;
}

.reading-note {
  max-width: 680px;
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--red);
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.65;
}

.vsl-card {
  display: grid;
  justify-items: center;
  padding: 28px 22px 24px;
  text-align: center;
}

.vturb-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

/* VTurb embed responsivo */
.vturb-container iframe,
.vturb-container video,
.vturb-container .smartplayer-wrapper,
.vturb-container div[id*="smartplayer"] {
  width: 100% !important;
  border-radius: 12px;
}


.microcopy {
  margin: 12px 0 0;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.5;
}

.section-band,
.offer-strip {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 24px;
}

.section-head p:not(.section-label) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.insight-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.hud-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border: 6px solid var(--red);
  outline: 1px solid var(--red);
  outline-offset: 6px;
}

.offer-strip {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px) minmax(210px, 270px);
  gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-strip img {
  width: 100%;
  filter: drop-shadow(0 22px 54px rgba(0, 0, 0, 0.5));
}

.offer-strip p {
  color: var(--muted);
  line-height: 1.7;
}

.reading-bridge-section {
  padding-top: 70px;
}

.pain-grid,
.reveal-list,
.bonus-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

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

.pain-grid article,
.reveal-list article,
.bonus-grid article,
.testimonial-grid article,
.price-card,
.offer-product {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(12, 12, 12, 0.7);
}

.pain-grid article {
  min-height: 210px;
  padding: 22px;
}

.pain-grid span,
.bonus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(249, 20, 63, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.pain-grid h3,
.bonus-grid h3 {
  font-size: 18px;
  line-height: 1.25;
}

.pain-grid p,
.reveal-list p,
.bonus-grid p,
.testimonial-grid p,
.reading-offer p,
.final-cta p {
  color: var(--muted);
  line-height: 1.7;
}

.reading-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 30px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.value-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.value-stack div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.value-stack strong {
  display: block;
  color: var(--gold);
  font-size: 21px;
}

.value-stack span {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-product {
  padding: 22px;
  text-align: center;
}

.offer-product img {
  width: min(280px, 100%);
  margin: 0 auto 18px;
  filter: drop-shadow(0 22px 54px rgba(0, 0, 0, 0.5));
}

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

.reveal-list article {
  padding: 18px;
}

.reveal-list strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.reveal-list strong::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(249, 20, 63, 0.7);
}

.bonus-section {
  padding-top: 36px;
}

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

.bonus-grid article {
  padding: 22px;
}

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

.testimonial-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 188, 125, 0.24);
}

.testimonial-grid p {
  min-height: auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-grid strong {
  color: var(--gold);
  font-size: 14px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 26px;
  align-items: center;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding: 34px;
  border: 1px solid rgba(249, 20, 63, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 20%, rgba(249, 20, 63, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.final-cta h2 {
  margin-bottom: 12px;
}

.price-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.price-card .old-price {
  margin: 0;
  color: var(--soft);
  text-decoration: line-through;
}

.price-card strong {
  color: #fff;
  font-family: var(--title);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.price-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-page {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0 58px;
}

.checkout-header {
  position: relative;
  padding: 18px 0 28px;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.trust-row span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.74fr);
  gap: 24px;
  align-items: start;
}

.payment-panel {
  display: grid;
  gap: 15px;
  padding: 30px;
}

.payment-panel h1 {
  font-size: clamp(40px, 4.8vw, 58px);
}

.cart-panel {
  display: grid;
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 15px;
  padding: 18px;
}

.product-card img {
  width: 98px;
  border-radius: 10px;
}

.product-card h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.product-card p,
.bump-card p,
.guarantee p {
  color: var(--muted);
  line-height: 1.55;
}

.bump-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
}

.bump-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fake-check {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
}

.bump-card input:checked + .fake-check {
  background: var(--red);
  box-shadow: inset 0 0 0 5px #171717;
}

.bump-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.bump-card b {
  color: var(--gold);
}

.summary {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.summary strong {
  color: #fff;
}

.summary .total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.guarantee {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
}

.guarantee img {
  width: 72px;
}

.guarantee-seal {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--title);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: radial-gradient(circle, rgba(255,188,125,0.08) 0%, transparent 70%);
  box-shadow: 0 0 18px rgba(255,188,125,0.12);
}

@keyframes shine {
  from { background-position: 0 50%; }
  to { background-position: 200% 50%; }
}

@keyframes blink {
  from { opacity: 1; }
  to { opacity: 0.32; }
}

@keyframes glow {
  from { box-shadow: 0 0 0 0 rgba(249, 20, 63, 0.45); }
  to { box-shadow: 0 0 22px 10px rgba(249, 20, 63, 0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes moonSweep {
  from { transform: translateX(-52px); }
  to { transform: translateX(64px); }
}

@media (max-width: 900px) {
  .quiz-frame {
    min-height: auto;
  }

  .quiz-bg img {
    object-position: 20% center;
  }

  .zodiac-grid,
  .month-grid,
  .decade-grid,
  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .reading-grid,
  .checkout-layout,
  .offer-strip,
  .insight-grid,
  .pain-grid,
  .reading-offer,
  .reveal-list,
  .bonus-grid,
  .testimonial-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .reading-grid {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-media img {
    object-position: center 20%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.88) 55%, #000 92%);
  }

  .moon-visual {
    width: min(240px, 64vw);
  }

  .offer-product img {
    width: min(260px, 80vw);
  }

  .reading-facts,
  .form-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .location-grid {
    margin-bottom: 26px;
  }
}

@media (max-width: 620px) {
  .quiz-shell,
  .checkout-page {
    padding: 10px;
  }

  .quiz-frame,
  .payment-panel {
    width: calc(100vw - 20px);
    padding: 18px 16px 24px;
  }

  .quiz-bg img {
    object-position: 15% center;
    opacity: 0.32;
  }

  .quiz-top,
  .top-nav,
  .checkout-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .brand img {
    width: min(190px, 76vw);
  }

  .secure-chip,
  .ghost-link {
    min-height: 30px;
    font-size: 10px;
  }

  .progress-track {
    margin: 16px 0 8px;
  }

  .quiz-stage {
    min-height: auto;
    padding-top: 14px;
  }

  .back-btn {
    position: static;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
  }

  .eyebrow,
  .section-label {
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  h1 {
    font-size: clamp(38px, 13vw, 48px);
  }

  h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 10.4vw, 38px);
  }

  .lead {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.45;
  }

  .zodiac-grid,
  .option-grid,
  .day-grid,
  .month-grid,
  .decade-grid {
    grid-template-columns: 1fr 1fr;
  }

  .option-card {
    min-height: 68px;
    padding: 10px;
    border-radius: 12px;
    font-size: 14px;
  }

  .zodiac-symbol {
    font-size: 23px;
  }

  .zodiac-img {
    width: 66px;
    height: 66px;
  }

  .zodiac-card {
    min-height: 120px;
    padding: 12px 8px 10px;
  }

  .zodiac-label {
    font-size: 13px;
  }

  label {
    font-size: 12px;
  }

  input,
  select {
    min-height: 48px;
    border-radius: 10px;
  }

  .time-row {
    grid-template-columns: 1fr 1fr;
  }

  .choice-row {
    justify-content: flex-start;
  }

  .compact {
    min-height: 66px;
  }

  .cta-primary {
    max-width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    font-size: 14px;
  }

  .location-grid {
    margin-bottom: 24px;
  }

  .reading-content,
  .section-band,
  .offer-strip,
  .final-cta,
  .checkout-page {
    width: min(100% - 24px, 1080px);
  }

  .reading-hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-media img {
    object-position: center top;
    opacity: 0.48;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.75) 50%, #000 78%);
  }

  .reading-content {
    padding: 14px 0 32px;
  }

  .top-nav {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }

  .ghost-link {
    min-height: 28px;
    padding: 0 10px;
    font-size: 9px;
  }

  .reading-copy .eyebrow {
    margin-bottom: 6px;
  }

  .reading-copy h1 {
    font-size: clamp(28px, 8.5vw, 38px);
    margin-bottom: 10px;
    line-height: 1;
  }

  .reading-copy .lead {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .reading-grid {
    gap: 20px;
    padding-top: 16px;
  }

  .reading-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .reading-facts div {
    padding: 10px;
    border-radius: 12px;
  }

  .reading-facts span {
    font-size: 10px;
    margin-bottom: 3px;
  }

  .reading-facts strong {
    font-size: 15px;
  }

  .reading-note {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
    padding-left: 10px;
  }

  .vturb-container {
    border-radius: 10px;
  }

  .vsl-card {
    padding: 18px 14px 16px;
  }

  .section-band,
  .offer-strip {
    padding: 36px 0;
  }

  .reading-bridge-section {
    padding-top: 36px;
  }

  .pain-grid article,
  .bonus-grid article,
  .testimonial-grid article {
    min-height: auto;
    padding: 18px;
  }

  .product-card,
  .guarantee {
    grid-template-columns: 1fr;
  }

  .offer-product {
    padding: 18px 16px;
  }

  .offer-product img {
    width: min(220px, 70vw);
  }

  .value-stack {
    grid-template-columns: 1fr;
  }

  .final-cta {
    margin-bottom: 42px;
    padding: 22px;
    border-radius: 18px;
  }

  .price-card strong {
    font-size: 54px;
  }

  .trust-row {
    justify-content: flex-start;
  }

  .guarantee {
    grid-template-columns: 62px 1fr;
  }

  .guarantee-seal {
    width: 58px;
    height: 58px;
    font-size: 15px;
  }

  .product-card {
    grid-template-columns: 80px 1fr;
  }

  .product-card img {
    width: 80px;
  }
}
