:root {
  --ink: #ffffff;
  --muted: #a78bfa;
  --paper: #1a0b2e;
  --panel: #3d2066;
  --gold: #f59e0b;
  --gold-dark: #f59e0b;
  --danger: #ef4444;
  --whatsapp: #005e54;
  --bubble: #ffffff;
  --guest: #e1ffc7;
  --line: rgba(147, 51, 234, 0.25);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(to bottom, #2d1b4e, #1a0b2e);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.app {
  min-height: 100vh;
}

.landing-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 40px 20px;
  color: #fff;
  background: linear-gradient(135deg, #1a0d2e 0%, #4a1942 40%, #2d1b4e 70%, #0f0a1e 100%);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
}

.landing-mandala {
  position: fixed;
  inset: 50% auto auto 50%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent 70%);
  opacity: 0.05;
  transform: translate(-50%, -50%);
  animation: landingPulse 8s infinite ease-in-out;
  pointer-events: none;
}

.landing-particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.landing-particles i {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #d4af37;
  opacity: 0;
  animation: landingFloat linear infinite;
}

.landing-container {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  text-align: center;
}

.landing-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 7vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.landing-title span {
  color: #ff6f00;
}

.landing-divider {
  width: 70%;
  height: 1px;
  margin: 22px auto;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.landing-copy {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.landing-copy.muted {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.landing-testimonial {
  margin: 24px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.landing-stars {
  margin-bottom: 10px;
  color: #ffd700;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.landing-testimonial p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.landing-testimonial b {
  color: #4caf50;
  font-style: normal;
}

.landing-testimonial strong {
  color: #d4af37;
  font-size: 0.8rem;
  font-weight: 500;
}

.landing-cta {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 16px;
  border: 0;
  border-radius: 50px;
  padding: 18px 24px;
  color: #000;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  box-shadow: 0 8px 30px rgba(255, 165, 0, 0.45);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: btnPulse 2.5s ease 1.2s infinite;
}

.landing-social {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.landing-social b {
  color: rgba(255, 255, 255, 0.88);
}

@keyframes landingPulse {
  0%,
  100% {
    opacity: 0.05;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes landingFloat {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-80px);
  }
}

@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.45), 0 0 0 0 rgba(255, 165, 0, 0.35);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.45), 0 0 0 12px rgba(255, 165, 0, 0);
  }
}

.funnel-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
  color: #f0e6ff;
  background:
    radial-gradient(circle at 50% 18%, rgba(147, 51, 234, 0.18), transparent 28rem),
    linear-gradient(to bottom, #2d1b4e, #1a0b2e);
}

.funnel-card {
  width: min(100%, 560px);
  min-height: min(760px, calc(100vh - 44px));
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid rgba(147, 51, 234, 0.22);
  border-radius: 14px;
  background: rgba(26, 11, 46, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.progress {
  min-height: 12px;
  display: flex;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
}

.dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.dot.done {
  background: var(--gold);
}

.funnel-card > .step {
  display: grid;
  gap: 22px;
  align-content: start;
  margin-top: clamp(58px, 12vh, 108px);
  animation: rise 260ms ease both;
}

.funnel-card > .step:has(.input),
.funnel-card > .step:has(.choice),
.funnel-card > .step:has(.promise-block),
.funnel-card > .step:has(.numbers-row) {
  margin-top: clamp(46px, 10vh, 92px);
}

.funnel-card > .step:has(.grid .choice) {
  gap: 28px;
}

.title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 4.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.55;
  color: #e9d5ff;
  text-align: center;
}

.lead.muted {
  color: #a78bfa;
  font-weight: 700;
}

.highlight {
  color: var(--gold-dark);
  font-weight: 800;
}

.warning {
  color: var(--danger);
  font-weight: 800;
}

.hidden {
  display: none !important;
}

.promise-block {
  display: grid;
  gap: 14px;
  padding: 22px 18px;
  border: 1px solid rgba(147, 51, 234, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.promise-block p {
  margin: 0;
  line-height: 1.55;
}

.promise-title {
  font-size: clamp(1.48rem, 4.4vw, 1.82rem);
  font-weight: 800;
}

.promise-title span:not(.promise-icon) {
  color: #f59e0b;
}

.promise-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 4px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.3);
  font-size: 1.2rem;
  line-height: 1;
  vertical-align: 0.08em;
}

.promise-block .lead {
  color: #d8c7ee;
  font-weight: 500;
}

.promise-block .lead b,
.promise-block .lead strong {
  color: #fff;
  font-weight: 800;
}

.promise-block .promise-confirm {
  color: #a78bfa;
  font-weight: 800;
}

.btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  background: linear-gradient(135deg, #9333ea, #f59e0b);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 12px 30px rgba(147, 51, 234, 0.32);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(147, 51, 234, 0.38);
}

.btn.secondary {
  color: #a78bce;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-transform: none;
}

.input {
  width: 100%;
  min-height: 58px;
  border: 1px solid #4c2d80;
  border-radius: 12px;
  padding: 0 16px;
  background: #3d2066;
  color: #fff;
  text-align: center;
  outline: none;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.input:focus {
  border-color: #9333ea;
  box-shadow: 0 0 0 2px #9333ea;
}

.error {
  min-height: 20px;
  margin: -10px 0 0;
  color: #ff7777;
  font-size: 0.9rem;
  text-align: center;
}

.grid {
  display: grid;
  gap: 10px;
}

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

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

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

.choice {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #1f2937;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.choice:hover {
  box-shadow: 0 0 16px rgba(147, 51, 234, 0.35);
  transform: scale(1.04);
}

.numbers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.number-box {
  padding: 16px 10px;
  border: 2px solid rgba(147, 51, 234, 0.4);
  border-radius: 12px;
  background: #3d2066;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  color: #e9d5ff;
}

.number-box.show {
  opacity: 1;
  transform: translateY(0);
  transition: 300ms ease;
}

.number-box strong {
  display: block;
  font-size: 2rem;
  color: #f59e0b;
}

.karma-body {
  display: grid;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
}

.karma-body.show {
  opacity: 1;
  transform: translateY(0);
  transition: 300ms ease;
}

.karma-warn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-inline: auto;
  padding: 10px 14px;
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 8px;
  color: #ef4444;
  background: rgba(69, 10, 10, 0.6);
  font-weight: 800;
}

.loading {
  display: grid;
  place-items: center;
  gap: 28px;
  min-height: 420px;
  text-align: center;
}

.mystic-loader {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px dashed rgba(147, 51, 234, 0.72);
  animation: spin 8s linear infinite;
}

.orbit-two {
  inset: 18px;
  border-color: rgba(245, 158, 11, 0.88);
  border-width: 2px;
  animation-duration: 5.8s;
  animation-direction: reverse;
}

.orbit-three {
  inset: 36px;
  border-color: rgba(147, 51, 234, 0.52);
  border-width: 2px;
  animation-duration: 4.4s;
}

.mystic-symbol {
  position: relative;
  z-index: 1;
  color: #f59e0b;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 18px rgba(245, 158, 11, 0.44);
}

.mystic-progress {
  width: min(72vw, 360px);
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mystic-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9d39f4, #c75fb2 48%, #f59e0b);
  transform-origin: left center;
  animation: mysticLoad 4s ease-in-out infinite;
}

.tarot-area {
  display: grid;
  gap: 16px;
}

.tarot-shell {
  background: #2b174d;
  padding: 36px 20px;
}

.tarot-shell .funnel-card {
  position: relative;
  width: min(100%, 680px);
  min-height: min(750px, calc(100vh - 72px));
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.06);
  background: #0e0718;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.tarot-shell .funnel-card > .step {
  justify-items: center;
  gap: 18px;
  margin-top: 0;
}

.tarot-title {
  max-width: 560px;
  color: #fff;
  font-size: clamp(1.55rem, 4vw, 1.86rem);
  line-height: 1.28;
  font-weight: 800;
}

.tarot-title .highlight {
  color: #d99300;
}

.tarot-title .warning {
  color: #b33835;
}

.tarot-shell.is-revealed .tarot-title,
.tarot-shell.is-revealed .tarot-area {
  opacity: 0.32;
  filter: saturate(0.6);
  transition: opacity 260ms ease, filter 260ms ease;
}

.tarot-row {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 3vw, 16px);
}

.tarot-card,
.stone-card {
  border: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 10px 24px rgba(34, 24, 8, 0.18);
}

.tarot-card {
  width: clamp(86px, 24vw, 130px);
  aspect-ratio: 2.5 / 4.25;
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease;
}

.tarot-card.faded {
  opacity: 0;
  transform: scale(0.72);
  pointer-events: none;
}

.tarot-card.selected {
  transform: scale(1.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.4);
  animation: tarotPick 640ms ease both;
}

.tarot-card img,
.stone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tarot-focus {
  position: absolute;
  inset: 94px 16px auto;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 16px;
  animation: tarotFocusIn 420ms ease both;
}

.tarot-focus-card {
  position: relative;
  width: clamp(120px, 27vw, 140px);
  aspect-ratio: 2.5 / 4.25;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
  animation: tarotFlipIn 620ms ease both;
}

.tarot-focus-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tarot-card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px 4px 4px;
  background: rgba(248, 246, 238, 0.92);
  color: #19130b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.tarot-focus-copy {
  display: grid;
  gap: 10px;
  width: min(100%, 460px);
  color: #fff;
  text-align: center;
  font-size: clamp(1.02rem, 2.5vw, 1.28rem);
  font-weight: 800;
  line-height: 1.42;
}

.tarot-focus-copy p {
  margin: 0;
}

.tarot-focus-copy b {
  color: #ffb000;
}

.tarot-focus-copy strong {
  color: #20d475;
  text-decoration: underline;
}

.tarot-continue {
  width: min(100%, 440px);
  min-height: 74px;
  margin-top: 8px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: #1f2937;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease;
}

.tarot-continue:hover {
  transform: scale(1.02);
}

.stone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stone-card {
  background: #fff;
}

.stone-card img {
  aspect-ratio: 1;
}

.stone-card span {
  display: block;
  padding: 10px;
  font-weight: 800;
}

.chat-shell {
  min-height: 100vh;
  color: #303235;
  background-color: #efe6dd;
  background-image: url("https://s3.fr-par.scw.cloud/typebot/public/typebots/cli88mae30010mh0f0yzjqn48/background?v=1685470080750");
  background-size: auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.chat-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.14);
}

.back {
  width: 23px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
}

.back svg,
.chat-actions svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.back svg {
  width: 31px;
  height: 31px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-name {
  flex: 1;
  min-width: 0;
  padding-left: 5px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.chat-name span {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
}

.chat-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  padding-right: 5px;
  color: #fff;
}

.chat-actions svg {
  width: 25px;
  height: 25px;
}

.chat-actions svg:last-child {
  width: 24px;
  height: 24px;
  stroke-width: 4.5;
}

.chat-view {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 18px 10px calc(110px + var(--reply-panel-height, 0px));
}

.bubble-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0;
}

.bubble-row.guest {
  justify-content: flex-end;
}

.bubble-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.bubble {
  position: relative;
  max-width: min(82%, 540px);
  padding: 9px 11px;
  border-radius: 0 8px 8px;
  background: var(--bubble);
  color: #303235;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
  line-height: 1.38;
  white-space: pre-wrap;
  font-size: 15px;
  font-weight: 400;
}

.bubble.audio-message {
  max-width: min(88vw, 430px);
  width: min(88vw, 430px);
  height: 84px;
  padding: 7px 8px 7px 12px;
  border-radius: 8px;
  line-height: normal;
  white-space: normal;
  overflow: hidden;
}

.guest .bubble {
  border-radius: 8px 0 8px 8px;
  background: var(--guest);
  color: #303235;
}

.bubble.image {
  padding: 4px;
}

.bubble.image img {
  display: block;
  width: min(100%, 310px);
  border-radius: 6px;
}

.audio-bubble {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  height: 70px;
  min-width: 0;
  padding: 0;
  color: #303235;
  white-space: normal;
}

.audio-bubble audio {
  display: none;
}

.audio-play {
  width: 30px;
  height: 56px;
  flex: 0 0 auto;
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
}

.audio-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #111827;
  transform: translateY(-50%);
}

.audio-bubble.is-playing .audio-play::before {
  left: 6px;
  width: 4px;
  height: 17px;
  border: 0;
  border-left: 5px solid #111827;
  border-right: 5px solid #111827;
  transform: translateY(-50%);
}

.wa-track {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.wa-line {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.wa-dot {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4ab6f2;
  box-shadow: 0 0 0 1px rgba(74, 182, 242, 0.1);
}

.audio-wave {
  flex: 1;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
  min-width: 0;
}

.audio-wave i {
  width: 3px;
  min-height: 6px;
  border-radius: 999px;
  background: #c7cbd1;
  transform-origin: center;
}

.audio-bubble.is-playing .audio-wave i {
  animation: audioPulse 900ms ease-in-out infinite;
}

.audio-bubble.is-playing .audio-wave i:nth-child(3n) {
  animation-delay: 120ms;
}

.audio-bubble.is-playing .audio-wave i:nth-child(4n) {
  animation-delay: 220ms;
}

.wa-times {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
}

.wa-caret {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 11px;
  border-right: 3px solid #6b7280;
  border-bottom: 3px solid #6b7280;
  transform: rotate(45deg);
}

.wa-avatar {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  align-self: center;
  border-radius: 50%;
}

.wa-avatar img {
  width: 54px;
  height: 54px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.wa-mic {
  position: absolute;
  left: -6px;
  bottom: -2px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #0aa7e8;
  color: #fff;
  line-height: 1;
}

.wa-mic svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.typing {
  width: 74px;
  display: flex;
  gap: 5px;
}

.typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9a9a9;
  animation: blink 900ms infinite ease-in-out;
}

.typing i:nth-child(2) {
  animation-delay: 120ms;
}

.typing i:nth-child(3) {
  animation-delay: 240ms;
}

.reply-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  display: grid;
  gap: 8px;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(transparent, rgba(239, 230, 221, 0.96) 18%);
}

.reply-panel:empty {
  display: none;
}

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

.reply-panel .stone-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.reply-panel .stone-card img {
  width: 100%;
  height: auto;
  max-height: 108px;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.reply-panel .stone-card span {
  min-width: 0;
  padding: 7px 4px 8px;
  color: #24313b;
  font-size: 0.78rem;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stone-choice-row {
  align-items: flex-start;
  margin-top: 6px;
}

.stone-choice-spacer {
  visibility: hidden;
}

.inline-stone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 296px));
  gap: 10px;
  width: min(100%, 602px);
}

.inline-stone-card {
  display: grid;
  grid-template-rows: minmax(190px, 250px) 55px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  padding: 0;
  background: #128c7e;
  box-shadow: none;
  cursor: pointer;
}

.inline-stone-card:nth-child(3):last-child {
  grid-column: 2;
}

.inline-stone-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  background: #ddd;
}

.inline-stone-card span {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 0 12px;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.reply-options {
  display: grid;
  gap: 8px;
}

.reply-btn {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  background: #128c7e;
  color: #fff;
  font-weight: 800;
}

.offer {
  display: grid;
  gap: 10px;
  min-width: 250px;
}

.offer strong {
  font-size: 1.4rem;
  color: #0f766e;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mysticLoad {
  0% {
    transform: scaleX(0.08);
  }
  55% {
    transform: scaleX(0.78);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes blink {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes audioPulse {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1.18);
    opacity: 0.95;
  }
}

@keyframes tarotPick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.16) rotateY(8deg);
  }
  100% {
    transform: scale(1.08) rotateY(0);
  }
}

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

@keyframes tarotFlipIn {
  0% {
    opacity: 0;
    transform: perspective(800px) rotateY(90deg) scale(0.84);
  }
  70% {
    opacity: 1;
    transform: perspective(800px) rotateY(-6deg) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: perspective(800px) rotateY(0) scale(1);
  }
}

@media (max-width: 560px) {
  .funnel-shell {
    padding: 0;
  }

  .funnel-card {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .funnel-card > .step {
    margin-top: clamp(38px, 8vh, 70px);
  }

  .funnel-card > .step:has(.input),
  .funnel-card > .step:has(.choice),
  .funnel-card > .step:has(.promise-block),
  .funnel-card > .step:has(.numbers-row) {
    margin-top: clamp(34px, 7vh, 62px);
  }

  .tarot-shell {
    padding: 0;
  }

  .tarot-shell .funnel-card {
    min-height: 100vh;
    width: 100%;
  }

  .tarot-focus {
    inset: 120px 18px auto;
  }

  .tarot-focus-card {
    width: min(38vw, 136px);
  }

  .tarot-focus-copy {
    font-size: 1rem;
  }

  .tarot-continue {
    min-height: 64px;
  }

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

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

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

  .stone-choice-row {
    gap: 6px;
  }

  .inline-stone-grid {
    grid-template-columns: 1fr;
    width: min(100%, calc(100vw - 58px));
  }

  .inline-stone-card,
  .inline-stone-grid.is-pair .inline-stone-card {
    grid-template-rows: minmax(180px, 58vw) 50px;
  }

  .inline-stone-card:nth-child(3):last-child {
    grid-column: auto;
  }
}

.product-shell,
.product-report-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 12%, rgba(159, 144, 255, 0.24), transparent 22rem),
    radial-gradient(circle at 25% 88%, rgba(128, 34, 196, 0.45), transparent 28rem),
    linear-gradient(180deg, #2d258a 0%, #1c2379 44%, #401186 100%);
}

.product-shell {
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 36px);
}

.product-stars,
.product-report-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.product-stars i,
.product-report-stars i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 12px rgba(255, 236, 172, 0.65);
  animation: starTwinkle 4.8s ease-in-out infinite;
}

.product-card {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  min-height: min(82vh, 960px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vh, 32px);
  padding: clamp(28px, 6vw, 58px);
  border: 2px solid rgba(188, 159, 91, 0.68);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(31, 44, 142, 0.92), rgba(35, 28, 128, 0.9)),
    radial-gradient(circle at 50% 18%, rgba(255, 211, 65, 0.14), transparent 18rem);
  box-shadow: 0 28px 80px rgba(3, 4, 31, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  text-align: center;
}

.product-orb {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: -8px;
  filter: drop-shadow(0 0 28px rgba(255, 236, 156, 0.26));
}

.product-orb span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, #d9b9ff 0 10%, transparent 11%),
    radial-gradient(circle at 64% 46%, #8c55d9 0 12%, transparent 13%),
    radial-gradient(circle at 42% 68%, #a16fe0 0 13%, transparent 14%),
    #bb8bef;
  box-shadow: 0 12px 0 -7px #eb8c44;
}

.product-brand {
  margin: 0;
  color: #ffe029;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.08em;
}

.product-subtitle {
  margin: -10px 0 clamp(18px, 3vh, 34px);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 3.8vw, 1.42rem);
  font-style: italic;
  font-weight: 400;
}

.product-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffe15a;
}

.product-question h1,
.product-confirm-title,
.product-loading-title {
  margin: 0;
  color: #ffe029;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.58rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
}

.product-icon {
  color: #ffd66f;
  font-size: clamp(1.8rem, 5.5vw, 2.7rem);
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 218, 93, 0.42);
}

.product-icon.moon {
  transform: translateY(-0.03em);
}

.product-serif {
  font-family: Georgia, "Times New Roman", serif;
}

.product-input {
  width: 100%;
  min-height: 68px;
  border: 2px solid rgba(196, 167, 96, 0.72);
  border-radius: 18px;
  padding: 0 22px;
  background: rgba(84, 76, 166, 0.54);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  outline: none;
  text-align: center;
  font-size: clamp(1.18rem, 4.2vw, 1.75rem);
  font-weight: 700;
}

.product-input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.product-input:focus {
  border-color: #ffe15a;
  box-shadow: 0 0 0 4px rgba(255, 225, 90, 0.12), 0 0 28px rgba(255, 190, 33, 0.18);
}

.product-hint,
.product-confirm-subtitle,
.product-loading-copy {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.98rem, 3vw, 1.24rem);
  font-style: italic;
}

.product-error {
  min-height: 20px;
  margin: -12px 0 0;
  color: #ffd7d7;
  font-size: 0.96rem;
  font-weight: 700;
}

.product-btn,
.report-btn {
  width: 100%;
  min-height: 72px;
  border: 0;
  border-radius: 20px;
  padding: 18px 24px;
  color: #22135e;
  background: linear-gradient(180deg, #ffe229 0%, #ffb300 100%);
  box-shadow: 0 18px 38px rgba(251, 184, 10, 0.28), inset 0 1px rgba(255, 255, 255, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 3.8vw, 1.52rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-btn:hover,
.report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(251, 184, 10, 0.34), inset 0 1px rgba(255, 255, 255, 0.48);
}

.product-back {
  width: 100%;
  min-height: 60px;
  border: 2px solid rgba(196, 167, 96, 0.72);
  border-radius: 18px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(84, 76, 166, 0.28);
  box-shadow: 0 0 28px rgba(255, 218, 75, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 3.4vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-check {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: -4px auto 2px;
  color: rgba(196, 167, 96, 0.66);
  font-size: 4.4rem;
  line-height: 1;
}

.product-confirm-shell .product-card {
  gap: clamp(12px, 2.2vh, 22px);
}

.product-confirm-shell .product-check {
  width: 54px;
  height: 54px;
  font-size: 3.35rem;
}

.product-confirm-shell .product-data-card {
  gap: 14px;
  padding: clamp(20px, 4.2vw, 32px);
}

.product-confirm-shell .product-btn {
  min-height: 64px;
}

.product-confirm-title {
  letter-spacing: 0.08em;
  text-transform: none;
}

.product-data-card {
  width: 100%;
  display: grid;
  gap: 20px;
  margin-top: 6px;
  padding: clamp(24px, 5vw, 40px);
  border: 2px solid rgba(196, 167, 96, 0.7);
  border-radius: 24px;
  background: rgba(74, 42, 143, 0.38);
}

.product-data-card span {
  color: rgba(255, 221, 102, 0.78);
  font-size: clamp(0.9rem, 3vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-data-card strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 5vw, 2.14rem);
  line-height: 1.2;
}

.product-data-card hr {
  width: 100%;
  height: 1px;
  border: 0;
  background: rgba(196, 167, 96, 0.25);
}

.product-cubes {
  position: relative;
  width: 124px;
  height: 124px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 28px rgba(255, 226, 41, 0.44));
}

.product-cubes span {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(145deg, #fff33b, #e2b800);
  animation: cubeFloat 1.8s ease-in-out infinite;
}

.product-cubes span:nth-child(1) {
  left: 8px;
  bottom: 18px;
}

.product-cubes span:nth-child(2) {
  left: 48px;
  top: 10px;
  animation-delay: 0.18s;
}

.product-cubes span:nth-child(3) {
  right: 8px;
  bottom: 16px;
  transform: rotate(45deg);
  animation-delay: 0.36s;
}

.product-loading-title {
  max-width: 560px;
  color: #fff;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.45rem, 4.8vw, 2rem);
  line-height: 1.45;
}

.product-progress {
  width: min(100%, 560px);
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.product-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffe229, #ffb300);
  transform-origin: left center;
  animation: productLoad 4.3s ease-in-out forwards;
}

.product-report-shell {
  min-height: 100vh;
  overflow: visible;
  padding: clamp(14px, 3vw, 30px);
}

.product-report {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
  padding-bottom: 34px;
}

.report-hero,
.report-section,
.report-number-card,
.report-final {
  border: 1px solid rgba(196, 167, 96, 0.5);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(27, 35, 125, 0.9), rgba(23, 22, 87, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(255, 218, 70, 0.1), transparent 16rem);
  box-shadow: 0 18px 48px rgba(3, 4, 31, 0.28);
}

.report-hero {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: clamp(24px, 6vw, 44px) clamp(20px, 5vw, 40px);
  text-align: center;
}

.report-sun {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffe45c 0 28%, #ffa620 29% 44%, transparent 45%),
    repeating-conic-gradient(from 0deg, #f9cf45 0 8deg, transparent 8deg 16deg);
  filter: drop-shadow(0 0 28px rgba(255, 206, 62, 0.5));
}

.report-kicker,
.report-overline {
  margin: 0;
  color: #e7c46c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.report-hero h1,
.report-section h2,
.report-final h2 {
  margin: 0;
  color: #ffe15a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 5vw, 2.6rem);
  line-height: 1.14;
}

.report-hero p,
.report-section p,
.report-final p,
.report-plan {
  margin: 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1rem, 2.7vw, 1.12rem);
  line-height: 1.72;
}

.report-hero strong,
.report-section strong,
.report-final strong {
  color: #fff;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.report-meta span {
  border: 1px solid rgba(255, 225, 90, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff3b0;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.report-number-card {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 18px 12px;
  text-align: center;
}

.report-number-card span {
  color: #e7c46c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-number-card strong {
  color: #ffe15a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.report-number-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.35;
}

.report-number-card.is-gold {
  background:
    linear-gradient(180deg, rgba(79, 56, 150, 0.86), rgba(33, 28, 104, 0.92)),
    radial-gradient(circle at 50% 10%, rgba(255, 226, 41, 0.15), transparent 8rem);
}

.report-section,
.report-final {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: clamp(22px, 5vw, 34px);
}

.report-intro {
  border-color: rgba(255, 225, 90, 0.62);
}

.report-section blockquote {
  margin: 4px 0 0;
  border-left: 4px solid #ffe15a;
  padding: 12px 0 12px 16px;
  color: #fff8c7;
  background: rgba(255, 225, 90, 0.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 3vw, 1.32rem);
  font-weight: 700;
}

.karma-section {
  border-color: rgba(255, 108, 108, 0.54);
  background:
    linear-gradient(180deg, rgba(54, 28, 119, 0.92), rgba(26, 20, 89, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(255, 91, 91, 0.16), transparent 14rem);
}

.report-module-menu {
  border-color: rgba(255, 225, 90, 0.68);
}

.report-mandala-gateway {
  width: min(calc(100vw - 40px), 1110px);
  margin-left: 50%;
  transform: translateX(-50%);
  gap: 0;
  padding: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 145, 36, 0.14), transparent 30rem),
    linear-gradient(90deg, rgba(18, 45, 82, 0.22), rgba(80, 67, 61, 0.26), rgba(13, 43, 82, 0.22));
  box-shadow: none;
}

.mandala-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.mandala-card {
  min-height: clamp(240px, 22vw, 290px);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(18px, 2vw, 28px);
  border: 2px solid #f39125;
  border-radius: 12px;
  padding: clamp(22px, 2.8vw, 36px) 18px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 152, 25, 0.16), transparent 8rem),
    linear-gradient(180deg, rgba(19, 18, 72, 0.95), rgba(16, 15, 58, 0.96));
  box-shadow: inset 0 0 44px rgba(75, 61, 158, 0.26), 0 16px 38px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.mandala-card:hover {
  border-color: #ffb04a;
  box-shadow: inset 0 0 48px rgba(88, 69, 174, 0.32), 0 18px 42px rgba(0, 0, 0, 0.27), 0 0 18px rgba(255, 137, 23, 0.28);
  transform: translateY(-2px);
}

.mandala-art {
  --m1: #ffb02e;
  --m2: #ffef65;
  --m3: #8b3dff;
  position: relative;
  width: clamp(116px, 11vw, 148px);
  height: clamp(116px, 11vw, 148px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--m2) 0 7%, transparent 8% 14%, var(--m1) 15% 19%, transparent 20% 28%, var(--m3) 29% 32%, transparent 33%),
    repeating-conic-gradient(from 0deg, var(--m1) 0 6deg, transparent 6deg 12deg, var(--m2) 12deg 15deg, transparent 15deg 24deg);
  filter: drop-shadow(0 0 18px rgba(255, 179, 40, 0.24));
}

.mandala-art::before,
.mandala-art::after,
.mandala-art i {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
}

.mandala-art::before {
  border: 3px double var(--m2);
  background:
    repeating-conic-gradient(from 8deg, transparent 0 8deg, color-mix(in srgb, var(--m1) 75%, transparent) 8deg 12deg, transparent 12deg 20deg);
}

.mandala-art::after {
  inset: 28%;
  border: 2px solid var(--m1);
  background: radial-gradient(circle, var(--m3) 0 18%, transparent 20% 36%, var(--m2) 37% 45%, transparent 46%);
}

.mandala-art i {
  inset: 2%;
  border: 2px dotted color-mix(in srgb, var(--m2) 80%, transparent);
  transform: rotate(15deg);
}

.mandala-world .mandala-art {
  --m1: #ff7c2f;
  --m2: #84f0ff;
  --m3: #ef346e;
}

.mandala-path .mandala-art {
  --m1: #b8e93a;
  --m2: #ffe646;
  --m3: #2c8f32;
}

.mandala-karma .mandala-art {
  --m1: #ff9d00;
  --m2: #ffc53d;
  --m3: #522bff;
}

.mandala-today .mandala-art {
  --m1: #76f7ff;
  --m2: #ff8f6b;
  --m3: #ff2f8f;
}

.mandala-future .mandala-art {
  --m1: #72f7ee;
  --m2: #fff86a;
  --m3: #ff455f;
}

.mandala-label {
  min-width: min(100%, 174px);
  border: 1px solid #f39125;
  border-radius: 9px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(10, 10, 48, 0.8);
  box-shadow: 0 0 26px rgba(255, 139, 22, 0.42);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.report-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.report-option {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 225, 90, 0.44);
  border-radius: 12px;
  padding: 13px 12px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(69, 49, 151, 0.9), rgba(32, 32, 117, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(255, 225, 90, 0.12), transparent 7rem);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  text-align: left;
}

.report-option:hover {
  border-color: rgba(255, 225, 90, 0.86);
  transform: translateY(-1px);
}

.report-option strong {
  color: #ffe15a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.12;
}

.report-option span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.report-module {
  padding: 0;
  overflow: hidden;
}

.report-module summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  padding: clamp(20px, 5vw, 30px);
  cursor: pointer;
  list-style: none;
}

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

.report-module summary::after {
  content: "+";
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  grid-column: 2;
  border: 1px solid rgba(255, 225, 90, 0.5);
  border-radius: 50%;
  color: #22135e;
  background: linear-gradient(180deg, #ffe229, #ffb300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease;
}

.report-module[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.module-title {
  color: #ffe15a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.14;
}

.module-subtitle {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.module-action {
  width: max-content;
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 225, 90, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff4bd;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-module[open] .module-action {
  color: #22135e;
  background: #ffe15a;
}

.module-content {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(196, 167, 96, 0.2);
  padding: 0 clamp(20px, 5vw, 30px) clamp(22px, 5vw, 34px);
}

.report-reading-list {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 225, 90, 0.22);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.report-reading-list p {
  margin: 0;
}

.report-card-visual {
  width: min(100%, 220px);
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 6px auto 0;
}

.report-card-visual img {
  width: 138px;
  max-width: 60vw;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.report-card-visual span {
  color: #fff1a2;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.report-stones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.report-stones span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  font-weight: 800;
}

.stone-dorada {
  background: linear-gradient(135deg, #a66d00, #f4c430);
}

.stone-morada {
  background: linear-gradient(135deg, #5b21b6, #c084fc);
}

.stone-azul {
  background: linear-gradient(135deg, #075985, #38bdf8);
}

.report-plan {
  display: grid;
  gap: 10px;
  padding-left: 1.25rem;
}

.report-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.report-btn.secondary {
  border: 1px solid rgba(196, 167, 96, 0.58);
  color: #fff4bd;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.premium-report-shell {
  --ink: #f9f3de;
  --muted: rgba(249, 243, 222, 0.74);
  --gold: #f6c85f;
  --gold-strong: #ffb52e;
  --line: rgba(246, 200, 95, 0.32);
  --panel: rgba(9, 17, 49, 0.86);
  --panel-strong: rgba(13, 20, 63, 0.94);
  --aura: rgba(31, 202, 194, 0.16);
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 4%, rgba(29, 202, 194, 0.28), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(246, 200, 95, 0.18), transparent 24rem),
    radial-gradient(circle at 50% 86%, rgba(99, 55, 174, 0.26), transparent 34rem),
    linear-gradient(180deg, #07112d 0%, #09163a 46%, #05091c 100%);
  font-family: Manrope, Poppins, ui-sans-serif, system-ui, sans-serif;
}

.premium-report-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 80%);
}

.premium-report {
  width: min(100%, 980px);
}

.premium-report-hero,
.premium-report .report-section,
.premium-report .report-final,
.premium-report .report-fact-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(14, 24, 70, 0.9), rgba(7, 13, 40, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(246, 200, 95, 0.12), transparent 18rem);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.premium-report-hero {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(34px, 8vw, 76px) clamp(20px, 6vw, 72px);
}

.premium-report-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(246, 200, 95, 0.22);
  border-radius: 22px;
  pointer-events: none;
}

.premium-report-hero::after {
  content: "";
  position: absolute;
  width: min(82vw, 620px);
  height: min(82vw, 620px);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 4deg, rgba(246, 200, 95, 0.11) 0 2deg, transparent 2deg 7deg),
    radial-gradient(circle, transparent 0 34%, rgba(29, 202, 194, 0.1) 35% 36%, transparent 37% 100%);
  opacity: 0.42;
  transform: translateY(8%);
  pointer-events: none;
}

.report-mandala-sun {
  width: clamp(112px, 18vw, 176px);
  height: clamp(112px, 18vw, 176px);
  background:
    radial-gradient(circle, #fff4a9 0 11%, #f6c85f 12% 20%, transparent 21% 28%, #ffb52e 29% 31%, transparent 32%),
    repeating-conic-gradient(from 0deg, #f6c85f 0 5deg, transparent 5deg 10deg, #1dcac2 10deg 12deg, transparent 12deg 18deg);
  filter: drop-shadow(0 0 34px rgba(246, 200, 95, 0.45));
}

.premium-report .report-kicker,
.premium-report .report-overline {
  color: #8ee8df;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
}

.premium-report h1,
.premium-report .report-section h2,
.premium-report .report-final h2,
.premium-report .module-title {
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
}

.premium-report-hero h1 {
  max-width: 780px;
  color: #f8d875;
  font-size: clamp(2.35rem, 8vw, 5.15rem);
  text-shadow: 0 0 34px rgba(246, 200, 95, 0.24);
}

.premium-report-hero p {
  max-width: 690px;
  color: var(--muted);
}

.premium-report .report-section h2,
.premium-report .report-final h2 {
  color: #f8d875;
  font-size: clamp(1.55rem, 4.2vw, 2.65rem);
}

.premium-report .report-section p,
.premium-report .report-final p,
.premium-report .report-plan {
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.1rem);
}

.premium-report .report-meta span {
  border-color: rgba(142, 232, 223, 0.28);
  color: #fff6cc;
  background: rgba(142, 232, 223, 0.07);
}

.report-opening {
  border-color: rgba(142, 232, 223, 0.3);
}

.report-welcome-letter {
  position: relative;
  overflow: hidden;
}

.report-welcome-letter::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(246, 200, 95, 0.16);
  border-radius: 18px;
  pointer-events: none;
}

.report-welcome-letter p,
.report-welcome-letter h2,
.report-welcome-letter .report-signature {
  position: relative;
  z-index: 1;
}

.premium-report .report-welcome-letter p strong {
  color: #fff6cc;
}

.report-signature {
  width: fit-content;
  display: grid;
  gap: 3px;
  margin-top: 6px;
  border-left: 3px solid #8ee8df;
  padding: 8px 0 8px 14px;
}

.report-signature span {
  color: rgba(249, 243, 222, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-signature strong {
  color: #f8d875;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.report-guidance-box {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(142, 232, 223, 0.26);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(29, 202, 194, 0.08);
}

.report-guidance-box strong {
  color: #8ee8df;
  font-weight: 900;
}

.report-guidance-box span {
  color: rgba(249, 243, 222, 0.78);
  line-height: 1.55;
}

.report-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.report-fact-card {
  min-height: 164px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
}

.report-fact-card span {
  color: #8ee8df;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-fact-card strong {
  color: #f8d875;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
}

.report-fact-card p {
  margin: 0;
  color: rgba(249, 243, 222, 0.68);
  font-size: 0.9rem;
  line-height: 1.35;
}

.report-fact-card.is-gold {
  border-color: rgba(246, 200, 95, 0.54);
  background:
    radial-gradient(circle at 50% 20%, rgba(246, 200, 95, 0.22), transparent 9rem),
    linear-gradient(180deg, rgba(36, 31, 79, 0.94), rgba(12, 18, 54, 0.96));
}

.report-reader-guide {
  margin-bottom: 12px;
}

.report-structure-grid {
  margin-top: 12px;
  margin-bottom: 10px;
}

.premium-report .report-structure-grid .report-option {
  border-color: rgba(142, 232, 223, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(142, 232, 223, 0.11), transparent 7rem),
    linear-gradient(180deg, rgba(19, 30, 82, 0.84), rgba(8, 14, 42, 0.94));
}

.premium-report .report-structure-grid .report-option strong {
  color: #f8d875;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
}

.premium-report .report-structure-grid .report-option span {
  color: rgba(249, 243, 222, 0.72);
  font-size: 0.86rem;
}

.premium-report .report-mandala-gateway {
  position: relative;
  width: min(calc(100vw - 32px), 1180px);
  margin-bottom: 22px;
  border-radius: 24px;
  padding: clamp(16px, 2.8vw, 26px);
  background:
    radial-gradient(circle at 50% 10%, rgba(246, 200, 95, 0.12), transparent 28rem),
    linear-gradient(90deg, rgba(7, 36, 66, 0.42), rgba(80, 58, 38, 0.38), rgba(7, 36, 66, 0.42));
}

.premium-report .mandala-card {
  border-color: rgba(255, 181, 46, 0.88);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 181, 46, 0.14), transparent 9rem),
    linear-gradient(180deg, rgba(11, 17, 55, 0.96), rgba(7, 11, 36, 0.98));
  box-shadow:
    inset 0 0 54px rgba(29, 202, 194, 0.08),
    0 20px 46px rgba(0, 0, 0, 0.3);
}

.premium-report .mandala-label {
  min-width: 190px;
  border-color: rgba(255, 181, 46, 0.78);
  border-radius: 999px;
  background: rgba(6, 10, 34, 0.86);
  font-family: Manrope, Poppins, sans-serif;
}

.sacred-atlas {
  border-color: rgba(142, 232, 223, 0.32);
}

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

.sacred-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(246, 200, 95, 0.34);
  border-radius: 18px;
  padding: 18px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(142, 232, 223, 0.14), transparent 7rem),
    linear-gradient(180deg, rgba(19, 30, 82, 0.88), rgba(8, 14, 42, 0.94));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.sacred-card:hover {
  border-color: rgba(246, 200, 95, 0.78);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), 0 0 20px rgba(142, 232, 223, 0.12);
  transform: translateY(-2px);
}

.sacred-order {
  color: #8ee8df;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sacred-card strong {
  color: #f8d875;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  line-height: 0.95;
}

.sacred-title {
  color: #fff;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.sacred-card small {
  color: rgba(249, 243, 222, 0.66);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.premium-report .report-module {
  border-radius: 20px;
}

.premium-report .report-module summary {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(22px, 5vw, 34px);
}

.premium-report .report-module summary::after {
  border-color: rgba(246, 200, 95, 0.7);
  color: #07112d;
  background: linear-gradient(180deg, #ffeaa4 0%, #f3b736 100%);
}

.premium-report .module-title {
  color: #f8d875;
  font-size: clamp(1.24rem, 3.4vw, 2.05rem);
}

.premium-report .module-subtitle {
  color: rgba(249, 243, 222, 0.7);
}

.premium-report .module-action {
  border-color: rgba(142, 232, 223, 0.26);
  color: #bbfff8;
  background: rgba(142, 232, 223, 0.08);
}

.premium-report .report-module[open] .module-action {
  color: #07112d;
  background: #8ee8df;
}

.premium-report .module-content {
  gap: 16px;
  border-top-color: rgba(246, 200, 95, 0.18);
}

.premium-report .report-reading-list {
  border-color: rgba(142, 232, 223, 0.24);
  border-radius: 16px;
  background: rgba(142, 232, 223, 0.07);
}

.premium-report blockquote {
  border-left-color: #8ee8df;
  color: #fff6cc;
  background: rgba(246, 200, 95, 0.07);
}

.future-section {
  border-color: rgba(142, 232, 223, 0.42);
  background:
    linear-gradient(180deg, rgba(9, 32, 70, 0.94), rgba(7, 12, 38, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(142, 232, 223, 0.14), transparent 18rem);
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.26;
    transform: scale(0.78);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.08);
  }
}

@keyframes cubeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(8deg);
  }
}

@keyframes productLoad {
  0% {
    transform: scaleX(0.06);
  }
  48% {
    transform: scaleX(0.44);
  }
  78% {
    transform: scaleX(0.82);
  }
  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 620px) {
  .product-shell {
    min-height: 100svh;
    padding: 0;
  }

  .product-card {
    width: 100%;
    min-height: 100svh;
    border-width: 0 0 0;
    border-radius: 0;
    padding: max(28px, env(safe-area-inset-top)) 20px max(28px, env(safe-area-inset-bottom));
  }

  .product-brand {
    letter-spacing: 0.05em;
  }

  .product-question {
    align-items: flex-start;
  }

  .product-data-card {
    gap: 16px;
  }

  .product-report-shell {
    padding: 12px;
  }

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

  .report-option-grid {
    grid-template-columns: 1fr;
  }

  .mandala-card-grid {
    grid-template-columns: 1fr;
  }

  .mandala-card {
    min-height: 205px;
  }

  .report-meta {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .report-actions {
    position: static;
  }
}

@media (max-width: 860px) {
  .premium-report {
    width: 100%;
  }

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

@media (max-width: 620px) {
  .premium-report-shell {
    padding: 10px;
  }

  .premium-report-hero {
    min-height: 480px;
    border-radius: 22px;
  }

  .premium-report-hero::before {
    inset: 10px;
    border-radius: 17px;
  }

  .report-summary-grid,
  .sacred-grid {
    grid-template-columns: 1fr;
  }

  .report-fact-card {
    min-height: 132px;
  }

  .sacred-card {
    min-height: 178px;
  }

  .premium-report .report-mandala-gateway {
    width: 100%;
    margin-left: 0;
    transform: none;
    padding: 10px;
  }

  .premium-report .mandala-card {
    min-height: 230px;
  }
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body {
    background: #fff;
  }

  .product-report-shell {
    padding: 0;
    color: #1a1740;
    background: #fff;
  }

  .product-report-stars,
  .report-module-menu,
  .report-actions {
    display: none;
  }

  .product-report {
    width: 100%;
    margin: 0;
  }

  .report-hero,
  .report-section,
  .report-number-card,
  .report-final {
    break-inside: avoid;
    border-color: #c8a44c;
    box-shadow: none;
  }
}
