:root {
    --bg: #10091d;
    --bg-deep: #090612;
    --panel: #1b102d;
    --purple: #7c3aed;
    --purple-dark: #5b21b6;
    --gold: #d4af37;
    --lavender: #d8ccff;
    --cream: #fffaf0;
    --text: #f8f5ff;
    --muted: #c9bfd5;
    --ink: #2c2136;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; color: var(--text); background: var(--bg-deep); font-family: var(--sans); font-size: 17px; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.page-glow { position: fixed; z-index: -1; width: 360px; height: 360px; border-radius: 50%; opacity: .22; filter: blur(120px); pointer-events: none; }
.page-glow-one { top: -100px; right: -120px; background: #7c3aed; }
.page-glow-two { bottom: 8%; left: -180px; background: #5b21b6; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-family: var(--serif); font-size: 28px; font-weight: 700; }
.brand span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(212, 175, 55, .65); border-radius: 50%; color: var(--gold); font-family: var(--sans); font-size: 14px; }
.simple-header { display: flex; min-height: 78px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(216, 204, 255, .12); }
.header-link, .text-link { color: var(--gold); font-size: 15px; font-weight: 700; }
.hero { display: grid; min-height: 610px; align-items: center; gap: 28px; padding: 38px 0 48px; }
.eyebrow, .section-kicker { margin: 0 0 9px; color: #b58a21; font-size: 13px; font-weight: 700; letter-spacing: 1.7px; text-transform: uppercase; }
.hero h1, h1, h2, h3 { font-family: var(--serif); line-height: 1; }
.hero h1 { max-width: 680px; margin: 0; color: #fff; font-size: clamp(55px, 7vw, 78px); }
.hero h1 em { display: block; margin-top: 6px; color: var(--gold); font-style: normal; white-space: nowrap; }
.hero-subtitle { max-width: 660px; margin: 17px 0; color: var(--lavender); font-size: 19px; line-height: 1.58; }
.hero-price { display: flex; width: fit-content; align-items: center; flex-wrap: wrap; gap: 7px 14px; margin-bottom: 15px; }
.hero-price small, .hero-price span { color: var(--muted); font-size: 14px; }
.hero-price strong { color: var(--gold); font-family: var(--serif); font-size: 49px; line-height: 1; }
.cta-button { display: inline-flex; min-height: 60px; align-items: center; justify-content: center; gap: 12px; padding: 0 25px; border: 1px solid transparent; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); box-shadow: 0 15px 38px rgba(91, 33, 182, .34); font-size: 17px; font-weight: 700; text-align: center; transition: transform .2s ease, box-shadow .2s ease; }
.cta-button:hover { box-shadow: 0 18px 48px rgba(124, 58, 237, .48); transform: translateY(-2px); }
.glow-button { animation: gentle-glow 2.8s ease-in-out infinite; }
@keyframes gentle-glow { 50% { box-shadow: 0 16px 48px rgba(124, 58, 237, .56); } }
.safe-note { color: #cfc5d9; font-size: 13px; }
.hero-secondary-link { display: block; width: fit-content; margin: 13px 0 0; color: var(--gold); font-size: 15px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.hero-bullets { display: grid; gap: 5px; margin: 16px 0 0; padding: 0; color: #ede7f6; font-size: 16px; list-style: none; }
.hero-bullets li::first-letter { color: var(--gold); }
.hero-cards { position: relative; min-height: 360px; }
.floating-card { position: absolute; top: 50%; left: 50%; display: flex; width: 160px; aspect-ratio: 2 / 3; align-items: center; justify-content: center; flex-direction: column; gap: 23px; border: 2px solid rgba(212, 175, 55, .62); border-radius: 14px; background: radial-gradient(circle at 50% 38%, rgba(124, 58, 237, .76), transparent 36%), linear-gradient(145deg, #311854, #11091e); box-shadow: 0 25px 48px rgba(0, 0, 0, .38), inset 0 0 0 8px rgba(212, 175, 55, .06); }
.floating-card::after { position: absolute; inset: 11px; border: 1px solid rgba(212, 175, 55, .32); border-radius: 8px; content: ""; }
.floating-card span, .floating-card strong { z-index: 1; }
.floating-card span { color: var(--gold); font-size: 49px; filter: drop-shadow(0 0 16px rgba(212, 175, 55, .55)); }
.floating-card strong { font-family: var(--serif); font-size: 23px; }
.floating-left { transform: translate(-116%, -46%) rotate(-12deg); animation: float-left 5.4s ease-in-out infinite; }
.floating-main { z-index: 2; transform: translate(-50%, -55%); animation: float-main 4.9s ease-in-out infinite; }
.floating-right { transform: translate(16%, -45%) rotate(12deg); animation: float-right 5.8s ease-in-out infinite; }
@keyframes float-left { 50% { transform: translate(-116%, -51%) rotate(-10deg); } }
@keyframes float-main { 50% { transform: translate(-50%, -61%); } }
@keyframes float-right { 50% { transform: translate(16%, -50%) rotate(10deg); } }
.light-section { color: var(--ink); background: var(--cream); }
.light-section .section-kicker { color: #795b13; }
.light-section h2, .theme-section h2, .testimonials h2, .message-card h2, .offer-card h2, .faq h2 { margin: 0; font-size: clamp(42px, 7vw, 62px); }
.light-section > .shell, .theme-section, .testimonials { padding-block: 80px; }
.steps-grid { display: grid; gap: 16px; margin-top: 30px; }
.steps-grid article { padding: 23px; border: 1px solid #e7dbc8; border-radius: 16px; background: #fff; box-shadow: 0 10px 25px rgba(67, 43, 20, .06); }
.steps-grid span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: #fff; background: var(--purple); font-size: 20px; font-weight: 700; }
.steps-grid h3 { margin: 17px 0 8px; color: #3a2746; font-size: 29px; }
.steps-grid p { margin: 0; color: #6e6075; font-size: 17px; }
.theme-section { text-align: center; }
.theme-section .section-kicker, .theme-section h2 { color: #fff; }
.section-intro { max-width: 670px; margin: 17px auto 30px; color: var(--muted); font-size: 19px; }
.theme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.theme-grid article { display: flex; min-height: 115px; align-items: center; justify-content: center; flex-direction: column; gap: 7px; border: 1px solid rgba(216, 204, 255, .2); border-radius: 16px; background: rgba(255, 255, 255, .045); }
.theme-grid span { color: var(--gold); font-size: 28px; }
.theme-grid strong { font-size: 17px; }
.message-section { padding-block: 20px 80px; }
.free-invite-section { padding: 22px 0 80px; }
.free-invite-card { display: grid; gap: 17px; padding: 28px; border: 1px solid rgba(212, 175, 55, .3); border-radius: 19px; background: linear-gradient(145deg, rgba(47, 23, 78, .86), rgba(26, 14, 43, .94)); }
.free-invite-symbol { color: var(--gold); font-size: 52px; }
.free-invite-card h2 { margin: 0; font-size: clamp(39px, 6vw, 56px); }
.free-invite-card p:not(.section-kicker) { color: var(--muted); font-size: 18px; }
.message-card { display: grid; gap: 15px; padding: 29px; border: 1px solid rgba(212, 175, 55, .26); border-radius: 20px; background: linear-gradient(145deg, rgba(47, 23, 78, .83), rgba(26, 14, 43, .92)); }
.message-symbol { color: var(--gold); font-size: 48px; }
.message-card h2 { font-size: clamp(37px, 6vw, 54px); }
.message-card p:not(.section-kicker) { margin-bottom: 0; color: var(--muted); font-size: 18px; }
.testimonials { text-align: center; }
.testimonial-grid { display: grid; gap: 14px; margin-top: 28px; text-align: left; }
.testimonial-grid article { padding: 22px; border: 1px solid rgba(216, 204, 255, .15); border-radius: 16px; background: rgba(255, 255, 255, .045); }
.testimonial-grid p { margin-top: 0; color: #f4edfa; font-family: var(--serif); font-size: 25px; line-height: 1.2; }
.testimonial-grid strong, .testimonial-grid small { display: block; }
.testimonial-grid strong { color: var(--gold); font-size: 16px; }
.testimonial-grid small { color: #ad9db9; font-size: 12px; }
.offer-section { padding-block: 10px 85px; }
.offer-card { max-width: 690px; margin: 0 auto; padding: 30px 23px; border: 2px solid rgba(212, 175, 55, .52); border-radius: 20px; color: var(--ink); background: #fffaf0; box-shadow: 0 24px 70px rgba(0, 0, 0, .28); }
.offer-card .section-kicker { color: #795b13; }
.old-price { margin: 24px 0 0; color: #75667d; font-size: 17px; text-decoration: line-through; }
.offer-price { color: #5b21b6; font-family: var(--serif); font-size: 36px; }
.offer-price strong { font-size: 82px; line-height: .9; }
.offer-card ul { display: grid; gap: 8px; margin: 20px 0; padding: 17px 0; border-block: 1px solid #e7dbc8; color: #493952; font-size: 17px; list-style: none; }
.offer-card li::first-letter { color: #5b21b6; }
.offer-card .safe-note { color: #75667d; text-align: center; }
.faq-shell { max-width: 820px; }
.faq details { border-top: 1px solid #ded3c1; }
.faq details:last-child { border-bottom: 1px solid #ded3c1; }
.faq summary { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 15px; color: #3d2a47; font-size: 18px; font-weight: 700; cursor: pointer; }
.faq summary span { color: #795b13; font-size: 25px; }
.faq details p { margin: -4px 0 20px; color: #66586d; font-size: 17px; }
.simple-footer { display: grid; gap: 14px; padding-block: 30px; }
.simple-footer nav { display: flex; flex-wrap: wrap; gap: 17px; }
.simple-footer nav a, .compact-footer a { color: var(--gold); font-size: 14px; font-weight: 700; }
.simple-footer p { max-width: 940px; margin: 0; color: #b8adbf; font-size: 13px; line-height: 1.55; }
.simple-footer small { color: #95889e; }
.inner-page { background: radial-gradient(circle at 50% -10%, rgba(124, 58, 237, .25), transparent 35%), var(--bg-deep); }
.centered-page { display: grid; min-height: calc(100vh - 140px); place-items: center; padding-block: 45px; }
.access-card { width: min(620px, 100%); padding: 25px; border: 1px solid rgba(216, 204, 255, .19); border-radius: 19px; background: rgba(27, 16, 45, .9); box-shadow: 0 24px 70px rgba(0, 0, 0, .28); }
.access-card h1 { margin: 6px 0 14px; font-size: clamp(44px, 8vw, 61px); }
.access-card > p:not(.section-kicker):not(.form-help) { color: var(--muted); font-size: 18px; }
.large-symbol { color: var(--gold); font-size: 55px; }
.simple-form { display: grid; gap: 15px; margin-top: 24px; }
label { color: #f4edfa; font-size: 16px; font-weight: 700; }
label small { color: #b9adbf; font-weight: 400; }
input, textarea { width: 100%; margin-top: 7px; border: 1px solid rgba(216, 204, 255, .25); border-radius: 11px; outline: none; color: #fff; background: rgba(255, 255, 255, .06); font-size: 17px; }
input { min-height: 54px; padding: 0 14px; }
textarea { padding: 14px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--gold); }
.form-help { color: #b7abc0; font-size: 13px; }
.compact-footer { display: flex; justify-content: center; gap: 20px; padding: 20px; }
.legal-page { max-width: 820px; padding-block: 65px; }
.legal-page h1 { margin: 0 0 25px; font-size: 64px; }
.legal-page h2 { margin: 35px 0 8px; color: var(--gold); font-size: 34px; }
.legal-page p { color: var(--muted); font-size: 18px; }
.legal-page .text-link { display: inline-block; margin-top: 25px; }
.preview-shell { min-height: calc(100vh - 140px); padding-block: 48px; }
.preview-intro, .preview-result { max-width: 850px; margin-inline: auto; }
.preview-intro { text-align: center; }
.preview-intro h1, .preview-result h1 { margin: 5px 0 15px; font-size: clamp(48px, 8vw, 70px); }
.preview-intro > p:not(.section-kicker) { max-width: 690px; margin-inline: auto; color: var(--muted); font-size: 19px; }
.preview-theme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.preview-theme-grid button { display: flex; min-height: 92px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid rgba(216, 204, 255, .2); border-radius: 14px; color: #fff; background: rgba(255, 255, 255, .055); font-size: 17px; transition: border-color .2s ease, transform .2s ease; }
.preview-theme-grid button:hover { border-color: var(--gold); transform: translateY(-2px); }
.preview-theme-grid span { color: var(--gold); }
.preview-result { text-align: center; }
.preview-card-layout { display: grid; align-items: center; gap: 24px; margin: 24px 0; padding: 20px; border: 1px solid rgba(216, 204, 255, .17); border-radius: 17px; background: rgba(255, 255, 255, .045); text-align: left; }
.preview-card-layout .tarot-card { width: 180px; margin-inline: auto; }
.preview-card-layout p { color: #e9e1ee; font-size: 18px; }
.preview-card-layout .preview-theme { color: var(--gold); }
.preview-card-layout .preview-note { padding-top: 15px; border-top: 1px solid rgba(216, 204, 255, .13); color: var(--muted); font-size: 16px; }
.preview-actions { display: grid; justify-items: center; gap: 15px; }
.flash-stack { position: fixed; z-index: 100; right: 15px; bottom: 15px; display: grid; width: min(390px, calc(100% - 30px)); gap: 8px; }
.flash { padding: 15px; border: 1px solid rgba(216, 204, 255, .25); border-radius: 10px; color: #fff; background: rgba(27, 16, 45, .98); box-shadow: 0 15px 38px rgba(0, 0, 0, .3); font-size: 15px; }
.flash-success { border-color: rgba(74, 222, 128, .42); }
.flash-error { border-color: rgba(248, 113, 113, .45); }
.flash-info { border-color: rgba(212, 175, 55, .48); }
.tarot-card { position: relative; display: flex; aspect-ratio: 2 / 3; align-items: center; justify-content: center; flex-direction: column; overflow: hidden; border: 2px solid rgba(212, 175, 55, .67); border-radius: 13px; box-shadow: inset 0 0 0 8px rgba(212, 175, 55, .06); text-align: center; }
.tarot-card::before { position: absolute; inset: 10px; border: 1px solid rgba(212, 175, 55, .29); border-radius: 8px; content: ""; }
.tarot-theme-violet { background: radial-gradient(circle at 50% 38%, #7138c9, transparent 40%), #26113e; }
.tarot-theme-indigo { background: radial-gradient(circle at 50% 38%, #4f46a8, transparent 40%), #171443; }
.tarot-theme-wine { background: radial-gradient(circle at 50% 38%, #8b325f, transparent 40%), #42132b; }
.tarot-theme-midnight { background: radial-gradient(circle at 50% 38%, #2d5795, transparent 40%), #101b3f; }
.tarot-theme-amethyst { background: radial-gradient(circle at 50% 38%, #9135bb, transparent 40%), #351044; }
.tarot-number, .tarot-star, .tarot-card strong, .tarot-card small { z-index: 1; }
.tarot-number { position: absolute; top: 18px; color: var(--gold); font-family: var(--serif); }
.tarot-star { color: var(--gold); font-size: 48px; filter: drop-shadow(0 0 16px rgba(212, 175, 55, .6)); }
.tarot-card strong { position: absolute; right: 13px; bottom: 31px; left: 13px; font-family: var(--serif); font-size: 24px; line-height: .95; }
.tarot-card small { position: absolute; right: 10px; bottom: 15px; left: 10px; color: var(--lavender); font-size: 10px; text-transform: uppercase; }

@media (min-width: 760px) {
    .hero { grid-template-columns: 1.05fr .95fr; }
    .steps-grid, .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
    .theme-grid { grid-template-columns: repeat(3, 1fr); }
    .message-card { grid-template-columns: 80px 1fr; align-items: center; padding: 42px; }
    .free-invite-card { grid-template-columns: 80px 1fr; align-items: center; padding: 42px; }
    .preview-theme-grid { grid-template-columns: repeat(3, 1fr); }
    .preview-card-layout { grid-template-columns: 210px 1fr; padding: 25px; }
    .offer-card { padding: 42px; }
}
@media (max-width: 759px) {
    body { font-size: 16px; }
    .brand { font-size: 24px; }
    .hero { padding-top: 46px; text-align: center; }
    .hero-price, .hero .cta-button { margin-inline: auto; }
    .hero-secondary-link { margin-inline: auto; }
    .safe-note { text-align: center; }
    .hero-bullets { width: fit-content; margin-inline: auto; text-align: left; }
    .hero-cards { min-height: 300px; margin-top: 10px; }
    .floating-card { width: 130px; }
    .floating-card span { font-size: 41px; }
    .floating-card strong { font-size: 20px; }
    .light-section > .shell, .theme-section, .testimonials { padding-block: 65px; }
    .message-section { padding-bottom: 65px; }
    .cta-button { width: 100%; }
}
