/* ─── LIGHT MODE (default) ─────────────────────────────── */
:root {
--bg:            #FDF8F2;
--surface:       #FFFFFF;
--surface2:      #F9F3E9;
--gold:          #D4AF37;
--gold-dim:      #b8942e;
--purple:        #6B21A8;
--purple-lt:     #9333ea;
--text:          #2C2416;
--muted:         #655A4A;
--divider:       rgba(212,175,55,0.25);
--ff-display:    'Cormorant Garamond', Georgia, serif;
--ff-body:       'Lato', system-ui, sans-serif;
--radius:        18px;
--nav-bg:        rgba(253, 248, 242, 0.88);
--nav-border:    rgba(212, 175, 55, 0.12);
--logo-bg:       transparent;
--logo-text:     #2C2416;
--logo-gold:     #b8942e;
}
/* ─── SYSTEM DARK MODE ── */
@media (prefers-color-scheme: dark) {
:root:not([data-theme="light"]) {
--bg:            #1E1626;
--surface:       #2A1F35;
--surface2:      #231B2E;
--gold:          #D4AF37;
--gold-dim:      #a8892a;
--text:          #F5F0E7;
--muted:         #B3A393;
--divider:       rgba(212,175,55,0.15);
--nav-bg:        rgba(30, 22, 38, 0.88);
--nav-border:    rgba(212, 175, 55, 0.18);
--logo-bg:       transparent;
--logo-text:     #FFFFFF;
--logo-gold:     #D4AF37;
}
}
/* ─── MANUAL DARK MODE ────────────── */
:root[data-theme="dark"] {
--bg:            #1E1626;
--surface:       #2A1F35;
--surface2:      #231B2E;
--gold:          #D4AF37;
--gold-dim:      #a8892a;
--text:          #F5F0E7;
--muted:         #B3A393;
--divider:       rgba(212,175,55,0.15);
--nav-bg:        rgba(30, 22, 38, 0.88);
--nav-border:    rgba(212, 175, 55, 0.18);
--logo-bg:       transparent;
--logo-text:     #FFFFFF;
--logo-gold:     #D4AF37;
}
/* ─── MANUAL LIGHT MODE ────────────── */
:root[data-theme="light"] {
--bg:            #FDF8F2;
--surface:       #FFFFFF;
--surface2:      #F9F3E9;
--gold:          #D4AF37;
--gold-dim:      #b8942e;
--text:          #2C2416;
--muted:         #7A6E5D;
--divider:       rgba(212,175,55,0.25);
--nav-bg:        rgba(253, 248, 242, 0.88);
--nav-border:    rgba(212, 175, 55, 0.12);
--logo-bg:       transparent;
--logo-text:     #2C2416;
--logo-gold:     #b8942e;
}
/* ─── Theme Toggle ─────────────────────────────────── */
.theme-toggle-btn {
background: none;
border: 1px solid var(--divider);
border-radius: 50%;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 1rem;
transition: background 0.2s, border-color 0.2s;
margin-left: 0.25rem;
}
.theme-toggle-btn:hover { border-color: var(--gold); }
.theme-toggle-icon { line-height: 1; }
/* ─── ARABIC SUPPORT ─────────────────────────────────────── */
[lang="ar"] {
--ff-display: 'Noto Naskh Arabic', serif;
--ff-body: 'Noto Naskh Arabic', sans-serif;
}
[lang="ar"] .section-label, [lang="ar"] .hero-eyebrow, [lang="ar"] .lang-btn, [lang="ar"] .lang-opt, [lang="ar"] .nav-cta, [lang="ar"] .gk-badge, [lang="ar"] .gk-col-label { letter-spacing: 0; }
/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
/* ─── LAYOUT ─────────────────────────────────────────────── */
.wrap        { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow{ max-width: 760px;  margin: 0 auto; padding: 0 1.5rem; }
section      { padding: 5rem 0; position: relative; }
/* ─── SECTION LABEL ──────────────────────────────────────── */
.section-bg { background: var(--bg); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.section-label { display: inline-block; font-family: var(--ff-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; line-height: 1.2; color: var(--text); margin-bottom: 1.25rem; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 560px; }
.text-center { text-align: center; }
.text-center.section-sub, .text-center .section-sub { margin: 0 auto; }
/* ─── GOLD LINE ──────────────────────────────────────────── */
.gold-line { width: 48px; height: 1px; background: var(--gold); margin: 1.75rem auto; }
.gold-line--left { margin-left: 0; }
/* ─── NAV ────────────────────────────────────────────── */
.nav-spacer { display: block; width: 50px; flex-shrink: 0; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0.5rem 1.5rem; display: flex; align-items: center; justify-content: space-between; background: var(--nav-bg); backdrop-filter: blur(12px); border-bottom: 1px solid var(--nav-border); transition: background 0.3s; overflow: visible; min-height: 56px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo .nav-logo-svg { height: 44px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-pill { display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; padding: 0.45rem 1.1rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; line-height: 1.2; white-space: nowrap; border-radius: 50px; border: 1px solid transparent; background: transparent; color: var(--muted); cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; font-family: var(--ff-body); text-transform: none; }
.nav-pill--blog { border-color: var(--gold-dim); }
.nav-pill--compact { padding-left: 0.75rem; padding-right: 0.75rem; }
.nav-pill--blog:hover { border-color: var(--gold); }
.nav-pill:hover { border-color: var(--gold); color: var(--gold); }
.nav-pill--cta { border-color: var(--gold); color: var(--gold); }
.nav-pill--cta:hover { background: var(--gold); color: #2C2416; }
.nav-pill--theme { width: 32px; height: 32px; padding: 0; border-radius: 50%; font-size: 1rem; }
.nav-cta-short { display: none; }
#chartActions .btn-ghost, #chartActions .btn-primary { padding: 0.75rem 1.4rem; font-size: 0.85rem; }
@media (min-width: 1025px) and (pointer: fine) { #shareChartBtn { display: none; } }
@media (max-width: 768px) {
nav { padding-left: 0.75rem; padding-right: 0.75rem; }
.nav-logo .nav-logo-svg { height: 32px; }
.nav-pill { padding: 0.25rem 0.6rem; font-size: 0.68rem; }
.nav-cta-short { display: inline; }
.nav-cta-full { display: none; }
.nav-right { gap: 0.15rem; }
.lang-btn { padding-right: 0.4rem; }
.lang-btn svg { width: 10px; height: 10px; margin-left: 0.1rem; }
.nav-pill--theme { width: 28px; height: 28px; font-size: 0.8rem; margin-left: 0.15rem; }
}
@media (max-width: 600px) { .nav-pill { padding: 0.2rem 0.45rem; font-size: 0.6rem; } }
/* ─── HERO ───────────────────────────────────────────────── */
#hero { min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; position: relative; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(107,33,168,0.45) 0%, transparent 70%); top: -100px; right: -150px; filter: blur(60px); }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, transparent 70%); bottom: 0; left: -100px; filter: blur(60px); }
.hero-ring { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 640px; height: 640px; border-radius: 50%; border: 2px solid rgba(212,175,55,0.2); pointer-events: none; }
.hero-ring::before { content: ''; position: absolute; inset: 40px; border-radius: 50%; border: 2px solid rgba(212,175,55,0.12); }
.hero-ring::after { content: ''; position: absolute; inset: 80px; border-radius: 50%; border: 2px solid rgba(212,175,55,0.08); }
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 1.1rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-title { font-family: var(--ff-display); font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 400; line-height: 1.15; margin-bottom: 1.5rem; max-width: 700px; }
.hero-title em { font-style: italic; color: var(--gold); white-space: nowrap; }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin-bottom: 2.5rem; }
.hero-description { font-size: 0.92rem; color: var(--muted); max-width: 580px; opacity: 0.7; line-height: 1.8; margin-bottom: 2rem; }
.hero-title span { white-space: nowrap; }
.hero-animated-subtitle { font-family: var(--ff-display); font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 400; line-height: 1.15; margin-bottom: 1.5rem; max-width: 700px; color: var(--text); }
.hero-animated-subtitle span { white-space: nowrap; display: inline-block; transition: transform 0.6s ease, opacity 0.6s ease; }
.hero-animated-subtitle em { font-style: italic; color: var(--gold); white-space: nowrap; }
@media (max-width: 600px) {
.hero-animated-subtitle { font-size: clamp(1.5rem, 5vw, 2.2rem); line-height: 1.25; }
.hero-animated-subtitle span { white-space: normal; display: inline; }
.hero-description { font-size: 0.78rem; max-width: 100%; white-space: normal; }
.hero-sub { font-size: 0.88rem; }
}
.hero-problem { font-size: 1.1rem; color: var(--text); max-width: 520px; margin: 0 0 1.5rem 0; font-style: italic; font-family: var(--ff-display); line-height: 1.5; }
.hero-problem::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); margin-bottom: 0.75rem; }
@media (max-width: 600px) { .hero-problem br { display: block; content: ""; margin-bottom: 0.25rem; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.btn-primary { display: inline-block; padding: 0.9rem 2.2rem; background: rgba(212, 175, 55, 0.85); color: #2C2416; border-radius: 50px; font-size: 0.92rem; font-weight: 500; letter-spacing: 0.04em; transition: opacity 0.2s, transform 0.2s, background 0.2s; white-space: nowrap; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); background: rgba(212, 175, 55, 0.95); }
.btn-ghost { display: inline-block; padding: 0.9rem 2.2rem; background: transparent; border: 1px solid var(--gold); color: var(--text); border-radius: 50px; font-size: 0.92rem; letter-spacing: 0.04em; transition: background 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap; }
.btn-ghost:hover { background: var(--gold); color: #2C2416; border-color: var(--gold); }
.hero-trust { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.8rem; color: var(--muted); }
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; }
.hero-trust-item svg { color: var(--gold); }
.hero-title-static { font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 400; line-height: 1.2; color: var(--text); margin-bottom: 1.5rem; max-width: 700px; }
.hero-title-static em { font-style: italic; color: var(--gold); white-space: nowrap; }
/* ─── HOW IT WORKS ───────────────────────────────────────── */
#how { background: var(--surface2); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); padding-top: 3.5rem; padding-bottom: 4.5rem; }
.how-mandala-wrap { display: flex; justify-content: center; margin-bottom: 1rem; opacity: 0.45; pointer-events: none; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3.5rem; }
.step-card { position: relative; padding: 1.25rem 1.75rem; background: var(--surface); border: 1px solid rgba(212,175,55,0.1); border-radius: var(--radius); }
.step-image { margin-bottom: 1rem; border-radius: 12px; overflow: hidden; }
.step-image img { width: 100%; height: auto; display: block; border: 1px solid rgba(212,175,55,0.2); }
.step-num { font-family: var(--ff-display); font-size: 3.5rem; font-weight: 300; color: rgba(212,175,55,0.35); line-height: 1; margin-bottom: 1rem; }
.step-title { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 500; color: var(--gold); margin-bottom: 0.6rem; }
.step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 600px) {
.step-card { padding: 1.1rem 1.1rem; }
.step-num { font-size: 2.2rem; margin-bottom: 0.4rem; }
.step-title { font-size: 1.05rem; margin-bottom: 0.35rem; }
.step-desc { font-size: 0.82rem; line-height: 1.55; }
.steps-grid { gap: 0.75rem; margin-top: 2rem; }
}
/* ─── TESTIMONIALS ───────────────────────────────────────── */
#testimonials { overflow: hidden; padding-top: 2.5rem; }
.carousel-outer { position: relative; margin-top: 3rem; }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.testimonial-card { flex: 0 0 100%; max-width: 680px; margin: 0 auto; background: var(--surface); border: 1px solid rgba(212,175,55,0.12); border-radius: 20px; padding: 2.5rem 2.75rem; position: relative; }
.t-quote { font-family: var(--ff-display); font-size: 5rem; line-height: 0.5; color: var(--gold); opacity: 0.3; margin-bottom: 1.25rem; display: block; }
.t-text { font-size: 1.05rem; color: var(--text); line-height: 1.75; margin-bottom: 1.75rem; font-style: italic; font-family: var(--ff-display); font-weight: 300; }
@media (max-width: 400px) { .t-text { font-size: 1.1rem; } }
.t-author { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-style: normal; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel-btn { width: 40px; height: 40px; border-radius: 50%; background: transparent; border: 1px solid rgba(212,175,55,0.3); color: var(--gold); display: flex; align-items: center; justify-content: center; transition: background 0.2s; font-size: 1rem; }
.carousel-btn:hover { background: rgba(212,175,55,0.1); }
.carousel-dots { display: flex; gap: 0.5rem; }
.dot, button.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(212,175,55,0.2); border: 1px solid rgba(212,175,55,0.35); cursor: pointer; transition: background 0.25s, transform 0.25s, border-color 0.25s; padding: 0; }
.dot:hover { background: rgba(212,175,55,0.4); border-color: rgba(212,175,55,0.7); transform: scale(1.15); }
.dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }
.t-author-row { display: flex; align-items: center; gap: 0.65rem; }
.t-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(212, 175, 55, 0.15); border: 1px solid rgba(212, 175, 55, 0.35); display: flex; align-items: center; justify-content: center; font-family: var(--ff-body); font-size: 0.85rem; font-weight: 500; color: var(--gold); flex-shrink: 0; }
@media (max-width: 480px) { .t-avatar { width: 30px; height: 30px; font-size: 0.75rem; } }
/* ─── ABOUT ──────────────────────────────────────────────── */
#about { background: var(--surface2); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider);  padding: 2.5rem 0 2rem;}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.how-mandala-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.about-circle-outer { width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.2); display: flex; align-items: center; justify-content: center; position: relative; }
.about-circle-inner { width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(107,33,168,0.25) 0%, rgba(26,16,56,0.8) 70%); border: 1px solid rgba(212,175,55,0.15); display: flex; align-items: center; justify-content: center; }
.about-icon { font-size: 4rem; }
.about-micro { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400; font-style: italic; color: var(--gold); margin-bottom: 1.25rem; }
.about-body { font-size: 0.97rem; color: var(--muted); line-height: 1.8; }
.about-stat { display: inline-flex; align-items: baseline; gap: 0.4rem; margin-top: 1.75rem; }
.about-stat-num { font-family: var(--ff-display); font-size: 2.2rem; color: var(--gold); font-weight: 400; }
.about-stat-label { font-size: 0.82rem; color: var(--muted); }
.about-quote { font-style: italic; color: var(--gold); margin-bottom: 0.25rem; }
/* ─── WHY EXPLORE CARDS ──────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.why-card { background: var(--surface); border: 1px solid rgba(212,175,55,0.12); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: border-color 0.2s; }
.why-card:hover { border-color: rgba(212,175,55,0.35); }
.why-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.why-icon img {
width: 100%;
height: auto;
border-radius: 12px;
border: 1px solid rgba(212,175,55,0.2);
transition: transform 0.3s ease, border-color 0.3s ease;
}
.why-card:hover .why-icon img { transform: scale(1.05); border-color: rgba(212,175,55,0.4); }
.why-card-title { font-family: var(--ff-display); font-size: 1.25rem; color: var(--gold); margin-bottom: 0.65rem; font-weight: 500; }
.why-card-text { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
/* ─── WHAT YOU GET ───────────────────────────────────────── */
.wyg-lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 2.5rem; max-width: 600px; }
.wyg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 3rem; margin-bottom: 1.5rem; }
@media (max-width: 600px) {
.wyg-grid { display: flex; flex-direction: column; }
.wyg-grid .wyg-item:nth-child(1)  { order: 1; } .wyg-grid .wyg-item:nth-child(3)  { order: 2; } .wyg-grid .wyg-item:nth-child(5)  { order: 3; } .wyg-grid .wyg-item:nth-child(7)  { order: 4; } .wyg-grid .wyg-item:nth-child(9)  { order: 5; } .wyg-grid .wyg-item:nth-child(11) { order: 6; } .wyg-grid .wyg-item:nth-child(13) { order: 7; } .wyg-grid .wyg-item:nth-child(15) { order: 8; } .wyg-grid .wyg-item:nth-child(17) { order: 9; } .wyg-grid .wyg-item:nth-child(19) { order: 10; } .wyg-grid .wyg-item:nth-child(21) { order: 11; }
.wyg-grid .wyg-item:nth-child(2)  { order: 12; } .wyg-grid .wyg-item:nth-child(4)  { order: 13; } .wyg-grid .wyg-item:nth-child(6)  { order: 14; } .wyg-grid .wyg-item:nth-child(8)  { order: 15; } .wyg-grid .wyg-item:nth-child(10) { order: 16; } .wyg-grid .wyg-item:nth-child(12) { order: 17; } .wyg-grid .wyg-item:nth-child(14) { order: 18; } .wyg-grid .wyg-item:nth-child(16) { order: 19; } .wyg-grid .wyg-item:nth-child(18) { order: 20; } .wyg-grid .wyg-item:nth-child(20) { order: 21; }
}
.wyg-item { display: flex; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(212,175,55,0.06); align-items: flex-start; }
.wyg-num { font-family: var(--ff-display); font-size: 0.8rem; color: var(--gold); opacity: 0.7; min-width: 22px; padding-top: 2px; }
.wyg-label { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.wyg-label strong { color: var(--text); font-weight: 500; }
.wyg-glossary { margin-top: 2rem; margin-bottom: 3.5rem; font-size: 0.82rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; }
.wyg-glossary::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
#whatyouget { padding-bottom: 0; }
.gk-summary { font-family: var(--ff-display); font-size: 1.2rem; font-style: italic; color: var(--gold); text-align: center; margin-bottom: 2rem; }
.gk-freq-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-bottom: 2.5rem; }
.gk-freq-card { background: var(--surface); border: 1px solid rgba(212,175,55,0.1); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.gk-freq-card--shadow { border-left: 4px solid rgba(107,33,168,0.5); }
.gk-freq-card--gift { border-left: 4px solid rgba(212,175,55,0.5); }
.gk-freq-card--siddhi { border-left: 4px solid rgba(248,243,232,0.3); }
.gk-freq-text { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.gk-seq-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.gk-seq-card { background: var(--surface); border: 1px solid rgba(212,175,55,0.08); border-radius: var(--radius); padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.gk-seq-card .gk-seq-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-family: var(--ff-display); color: var(--gold); margin-top: 2px; }
.gk-seq-card strong { display: block; font-size: 0.92rem; color: var(--text); margin-bottom: 0.25rem; }
.gk-seq-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
/* ─── PRICING ────────────────────────────────────────────── */
#pricing { background: var(--bg); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); padding-top: 3.5rem; padding-bottom: 5rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 1.25rem; margin-top: 3rem; align-items: stretch; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card { padding: 2rem 1.75rem; border: 1px solid rgba(212,175,55,0.14); border-radius: var(--radius); background: var(--surface); display: flex; flex-direction: column; }
.pricing-card--featured { border-color: var(--gold); background: linear-gradient(145deg, rgba(212,175,55,0.06) 0%, rgba(107,33,168,0.08) 100%); position: relative; }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--bg); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 50px; white-space: nowrap; }
.pricing-title { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--text); }
.pricing-pages { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.25rem; }
.pricing-price-wrap { margin-bottom: 1.5rem; }
.pricing-now { font-family: var(--ff-display); font-size: 2.6rem; font-weight: 400; color: var(--gold); line-height: 1; }
.pricing-was { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; margin-top: 0.25rem; }
.pricing-combo-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5; }
.pricing-cta { margin-top: auto; display: block; text-align: center; padding: 0.8rem 1.5rem; border-radius: 50px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; transition: all 0.2s; border: 1px solid rgba(212,175,55,0.5); color: #2C2416; background: rgba(212, 175, 55, 0.85); cursor: pointer; user-select: none; -webkit-tap-highlight-color: transparent; }
.pricing-cta:active { transform: scale(0.98); opacity: 0.9; }
.pricing-cta:hover { background: rgba(212, 175, 55, 0.95); }
.pricing-cta--featured { background: rgba(212, 175, 55, 0.92); color: #2C2416; border-color: var(--gold); }
.pricing-cta--featured:hover { opacity: 0.9; background: rgba(212, 175, 55, 1); }
.pricing-intro-label { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.pricing-guarantee-strip { font-family: var(--ff-display); font-size: 1.2rem; font-style: italic; color: var(--muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.post-offer-full-price { font-size: 0.72rem; color: var(--muted); margin: -0.3rem 0 0.4rem 0; text-decoration: line-through; opacity: 0.7; }
.pricing-currency { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; margin-right: 0.15rem; opacity: 0.8; vertical-align: top; margin-top: 0.65rem; display: inline-block; }
/* ─── RELATIONSHIP BANNER ──────────────────────────────── */
.relationship-banner { margin-top: 2.5rem; padding: 2.5rem 2rem; background: linear-gradient(135deg, rgba(107,33,168,0.05) 0%, rgba(212,175,55,0.06) 100%); border: 1px solid var(--gold); border-radius: var(--radius); display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; position: relative; overflow: hidden; }
@media (max-width: 768px) { .relationship-banner { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; } }
.relationship-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.rel-content { position: relative; z-index: 1; }
.rel-title { font-family: var(--ff-display); font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 500; color: var(--text); margin-bottom: 0.3rem; line-height: 1.2; }
.rel-subtitle { font-family: var(--ff-display); font-style: italic; font-size: 1.1rem; color: var(--gold); margin-bottom: 1.25rem; }
.rel-docs { font-size: 0.9rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.5rem; }
.rel-docs strong { color: var(--text); font-weight: 600; }
.rel-price-wrap { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0; }
@media (max-width: 768px) { .rel-price-wrap { justify-content: center; flex-direction: column; gap: 0.5rem; } }
.rel-price { font-family: var(--ff-display); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.rel-pitch { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.rel-cta { display: inline-block; padding: 0.9rem 2.2rem; background: rgba(212, 175, 55, 0.9); color: #2C2416; border-radius: 50px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; transition: all 0.2s; border: none; cursor: pointer; font-family: var(--ff-body); }
.rel-cta:hover { background: rgba(212, 175, 55, 1); transform: translateY(-1px); }
.rel-right { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
@media (max-width: 768px) { .rel-right { align-items: center; } }
/* ─── FORM SECTION ───────────────────────────────────────── */
#free-bodygraph {padding: 3.5rem 0 1rem; position: relative; background: var(--bg); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.form-intro { text-align: center; margin-bottom: 2.5rem; }
.form-card { background: var(--surface2); border: 1px solid rgba(212,175,55,0.15); border-radius: 20px; padding: 2.5rem 2rem; max-width: 680px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); opacity: 0.8; }
.form-group input { padding: 0.85rem 1rem; border: 1px solid var(--divider); border-radius: 10px; font-size: 0.95rem; background: var(--bg); color: var(--text); font-family: var(--ff-body); transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input::placeholder { color: var(--muted); opacity: 0.6; }
.form-group input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
.form-group input[type="date"], .form-group input[type="time"] { color-scheme: light dark; }
.city-wrap { position: relative; }
.suggestions-list { position: absolute; z-index: 120; left: 0; right: 0; top: calc(100% + 6px); background: var(--bg); border: 1px solid var(--divider); border-radius: 10px; max-height: 240px; overflow-y: auto; display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.suggestion { padding: 11px 14px; cursor: pointer; border-bottom: 1px solid rgba(212,175,55,0.06); font-size: 0.88rem; color: var(--text); transition: background 0.15s; }
.suggestion:last-child { border-bottom: none; }
.suggestion:hover { background: rgba(212,175,55,0.07); }
.generate-btn { width: 100%; padding: 1rem; margin-top: 1.25rem; background: rgba(212, 175, 55, 0.85); color: #2C2416; border-radius: 50px; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.03em; transition: opacity 0.2s, transform 0.2s, background 0.2s; }
.generate-btn:hover { opacity: 0.9; transform: translateY(-1px); background: rgba(212, 175, 55, 0.95); }
.generate-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.legal-note { text-align: center; font-size: 0.7rem; color: var(--muted); opacity: 0.7; margin-top: 1rem; padding: 0 1.5rem; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(13,5,35,0.25); border-radius: 50%; border-top-color: #0D0523; animation: spin 0.7s linear infinite; margin-right: 8px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.error-message { background: rgba(180,60,50,0.12); border-left: 3px solid #c97a6e; padding: 0.9rem 1.1rem; border-radius: 8px; margin-top: 1rem; color: #f0a090; font-size: 0.85rem; }
/* ─── FREE RESULT ────────────────────────────────────────── */
#resultContainer { max-width: 680px; margin: 2rem auto 0; }
.result-card { background: var(--bg); border: 1px solid rgba(212,175,55,0.2); border-radius: 20px; padding: 1.75rem 2rem 2.5rem 2rem; text-align: left; }
.result-name { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 400; color: var(--text); margin-bottom: 1.25rem; }
.result-line { margin-bottom: 1rem; font-size: 1rem; color: var(--muted); line-height: 1.6; }
.result-emphasis { font-weight: 500; color: var(--text); }
.result-highlight { font-weight: 500; color: var(--gold); background: rgba(212,175,55,0.08); padding: 0.1rem 0.45rem; border-radius: 6px; display: inline-block; }
.result-footer { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--divider); font-size: 0.88rem; color: var(--muted); line-height: 1.6; text-align: center; }
.result-card .result-name { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; }
.result-card .gold-line { width: 48px; height: 1px; background: var(--gold); margin: 0.75rem 0 1.25rem 0; }
.result-block-label { font-family: var(--ff-display); font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; text-align: left; white-space: normal; overflow: visible; line-height: 1.3; word-break: break-word; }
.result-block { display: grid; grid-template-columns: 100px 1fr; gap: 0.5rem; align-items: start; margin-bottom: 0.7rem; padding: 0 0.5rem; }
.result-block-value { font-family: var(--ff-body); font-size: 0.92rem; color: var(--text); text-align: left; font-weight: 400; line-height: 1.4; word-break: break-word; }
@media (max-width: 600px) { .result-block-value { text-align: right; } }
/* ─── AI DESCRIPTION ─────────────────────────────────────── */
.ai-description-card { background: var(--bg); border: 1px solid rgba(212,175,55,0.15); border-radius: 16px; padding: 2rem; margin-top: 1.25rem; }
.ai-description-text { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 300; font-style: italic; color: var(--text); line-height: 1.85; }
.ai-description-loading { display: flex; align-items: center; gap: 0.75rem; color: var(--muted); font-size: 0.85rem; justify-content: center; padding: 0.5rem 0; }
.post-result-offers { max-width: 680px; margin: 2rem auto 2.5rem; padding: 2rem; background: var(--bg); border: 1px solid var(--gold); border-radius: 20px; text-align: center; }
.post-result-title { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; }
.post-result-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.75rem; }
.post-result-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .post-result-grid { grid-template-columns: 1fr; } }
.post-offer { padding: 1.25rem; border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; font-size: 0.85rem; color: var(--muted); }
.post-offer--featured { border-color: var(--gold); background: rgba(212,175,55,0.04); }
.post-offer-title { font-family: var(--ff-display); font-size: 1rem; color: var(--text); margin-bottom: 0.35rem; }
.post-offer-price { font-size: 1.5rem; font-family: var(--ff-display); color: var(--gold); margin-bottom: 0.75rem; }
.post-offer-cta { display: block; width: 100%; padding: 0.65rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 500; border: 1px solid rgba(212,175,55,0.5); background: rgba(212, 175, 55, 0.85); color: #2C2416; transition: all 0.2s; cursor: pointer; }
.post-offer--featured .post-offer-cta { background: rgba(212, 175, 55, 0.92); color: #2C2416; border-color: var(--gold); }
.post-offer-cta:hover { background: rgba(212, 175, 55, 0.95); }
.hidden { display: none !important; }
/* ─── FAQ ────────────────────────────────────────────────── */
#faq {
padding-top: 2.5rem;
background: var(--surface2);
border-top: 1px solid var(--divider);
}
.faq-list { margin-top: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0; font-family: var(--ff-body); font-size: 0.97rem; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 0.9rem; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }
/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--bg); border-top: 1px solid var(--divider); padding: 3rem 1.5rem 2rem; text-align: center; }
.footer-logo { margin-bottom: 0.5rem; display: flex; justify-content: center; }
.footer-logo .footer-logo-svg { height: 70px; width: auto; transform: translateX(27px); }
@media (max-width: 480px) { .footer-logo .footer-logo-svg { height: 50px; transform: translateX(19px); } }
.footer-tagline { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: var(--muted); opacity: 0.7; }
/* ─── GENE KEYS BLOCK ────────────────────────────────────── */
.gk-block { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid var(--divider); }
.gk-header { margin-bottom: 1.5rem; }
.gk-title { font-family: var(--ff-display); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 400; color: var(--text); margin-bottom: 0.5rem; }
.gk-tagline { font-family: var(--ff-display); font-style: italic; font-size: 1.1rem; color: var(--gold); font-weight: 300; }
.gk-intro { font-size: 0.97rem; color: var(--muted); line-height: 1.8; max-width: 680px; margin-bottom: 2.25rem; }
.gk-intro strong { color: var(--text); }
.gk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 680px) { .gk-grid { grid-template-columns: 1fr; } }
.gk-col-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.gk-row { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.gk-badge { flex-shrink: 0; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 50px; margin-top: 0; line-height: 1.6; white-space: nowrap; align-self: flex-start; }
.gk-badge--shadow { background: rgba(107,33,168,0.25); color: #c084fc; border: 1px solid rgba(107,33,168,0.4); }
.gk-badge--gift   { background: rgba(212,175,55,0.15); color: var(--gold); border: 1px solid rgba(212,175,55,0.3); }
.gk-badge--siddhi { background: rgba(248,243,232,0.07); color: var(--text); border: 1px solid rgba(248,243,232,0.15); }
.gk-row-text { font-size: 0.86rem; color: var(--muted); line-height: 1.6; padding-top: 0.15rem; }
.gk-seq { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.1rem; }
.gk-seq-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-family: var(--ff-display); color: var(--gold); margin-top: 1px; }
.gk-seq strong { display: block; font-size: 0.88rem; color: var(--text); margin-bottom: 0.15rem; }
.gk-seq-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.gk-closing { font-size: 1rem; color: var(--muted); font-style: italic; font-family: var(--ff-display); font-weight: 300; border-left: 2px solid rgba(212,175,55,0.3); padding-left: 1.25rem; max-width: 640px; line-height: 1.7; }
/* ─── LANG SWITCH ────────────────────────────────────────── */
.lang-switch { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 0.35rem; background: transparent; border-radius: 50px; color: var(--muted); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; cursor: pointer; transition: border-color 0.2s, color 0.2s; font-family: var(--ff-body); }
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn svg { width: 12px; height: 12px; transition: transform 0.2s; }
.lang-switch.open .lang-btn svg { transform: rotate(180deg); }
.lang-dropdown { display: none; position: absolute; right: 0; top: calc(100% + 6px); background: var(--surface); border: 1px solid var(--gold-dim); border-radius: 10px; min-width: 280px; padding: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); z-index: 200; overflow: hidden; }
.lang-switch.open .lang-dropdown { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
@media (max-width: 600px) { .lang-switch.open .lang-dropdown { min-width: 160px; } }
.lang-opt { display: block; width: 100%; padding: 0.6rem 1rem; font-size: 0.82rem; color: var(--muted); text-align: left; background: none; border: none; cursor: pointer; font-family: var(--ff-body); border-bottom: 1px solid rgba(212,175,55,0.06); transition: background 0.15s, color 0.15s; }
.lang-opt:last-child { border-bottom: none; }
.lang-opt:hover, .lang-opt.active { background: rgba(212,175,55,0.07); color: var(--gold); }
/* ─── PAYMENT MODAL ──────────────────────────────────────── */
.payment-modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.payment-modal-overlay { position: absolute; inset: 0; background: rgba(7,3,18,0.88); backdrop-filter: blur(6px); }
.payment-modal-box { position: relative; z-index: 1; background: var(--surface); border: 1px solid rgba(212,175,55,0.3); border-radius: 20px; padding: 2.25rem 2rem; width: 100%; max-height: 90vh; overflow-y: auto; }
.payment-modal-box--bdm { max-width: 520px; }
.payment-modal-box--rel { max-width: 600px; }
.payment-modal-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; line-height: 1; padding: 0; }
.payment-modal-close:hover { color: var(--gold); }
.payment-modal-header { margin-bottom: 1.5rem; }
.payment-modal-product-name { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 400; color: var(--text); margin-bottom: 0.2rem; }
.payment-modal-product-price { font-family: var(--ff-display); font-size: 2.1rem; color: var(--gold); font-weight: 400; line-height: 1; }
.payment-modal-divider { height: 1px; background: var(--divider); margin: 1.25rem 0; }
.payment-modal-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.payment-modal-buttons { display: flex; flex-direction: column; gap: 0.6rem; }
.payment-modal-error { background: rgba(180,60,50,0.12); border-left: 3px solid #c97a6e; padding: 0.75rem 1rem; border-radius: 8px; color: #f0a090; font-size: 0.85rem; margin-top: 1rem; line-height: 1.5; }
.payment-modal-processing { display: flex; align-items: center; gap: 0.75rem; color: var(--muted); font-size: 0.88rem; justify-content: center; padding: 1.25rem 0; }
.payment-modal-success { text-align: center; padding: 0.5rem 0; }
.payment-success-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--gold); font-size: 1.4rem; }
.payment-success-title { font-family: var(--ff-display); font-size: 1.5rem; color: var(--text); margin-bottom: 0.5rem; font-weight: 400; }
.payment-success-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.payment-confirmed-banner { background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25); border-radius: 10px; padding: 0.9rem 1.1rem; font-size: 0.85rem; color: var(--gold); margin-bottom: 1rem; line-height: 1.5; text-align: center; }
/* ─── SOCIAL LINKS ───────────────────────────────────────── */
.footer-social { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid rgba(212,175,55,0.2); border-radius: 50%; color: var(--muted); transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 20px; height: 20px; }
/* ─── MANDALA ANIMATION ──────────────────────────────────── */
.mandala-anim { width: 100%; max-width: 480px; display: block; }
@keyframes mgCW  { to { transform: rotate(360deg);  } }
@keyframes mgCCW { to { transform: rotate(-360deg); } }
.mg-g1 { transform-origin: 150px 150px; animation: mgCCW 260s linear infinite; }
.mg-g2 { transform-origin: 150px 150px; animation: mgCW  160s linear infinite; }
.mg-g3 { transform-origin: 150px 150px; animation: mgCW  110s linear infinite; }
.mg-g4 { transform-origin: 150px 150px; animation: mgCW  200s linear infinite; }
.mg-g5 { transform-origin: 150px 150px; animation: mgCCW 140s linear infinite; }
@media (prefers-reduced-motion: reduce) { .mg-g1,.mg-g2,.mg-g3,.mg-g4,.mg-g5 { animation-play-state: paused; } }
/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 600px) {
section { padding: 3.5rem 0; }
.hero-actions { flex-direction: column; align-items: flex-start; }
.hero-ring { display: none; }
.pricing-card--featured { margin-top: 0.5rem; }
.hero-content { padding-top: 2rem; }
}
.toast { position: fixed; bottom: calc(2rem + env(safe-area-inset-bottom)); left: 50%; transform: translateX(-50%); background: var(--surface); border: 1px solid var(--gold); border-radius: 50px; padding: 0.75rem 1.5rem; color: var(--text); font-size: 0.85rem; z-index: 999; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.toast.show { opacity: 1; }
html:not(.js) .reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html.js .reveal { transition: none; } }
.skip-link { position: absolute; top: -100px; left: 0; background: var(--gold); color: #0D0523; padding: 0.5rem 1.5rem; z-index: 300; font-size: 0.9rem; font-weight: 600; border-radius: 0 0 8px 0; transition: top 0.2s; text-decoration: none; }
.skip-link:focus { top: 0; }
.pricing-limited-badge { display: inline-block; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(212,175,55,0.08); padding: 0.15rem 0.6rem; border-radius: 50px; margin-left: 0.5rem; vertical-align: middle; }
/* ─── Reading Preview Section ───────────────────────── */
#reading-preview { background: var(--bg); padding: 2.5rem 0 2.5rem; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.preview-grid { display: grid; gap: 1.5rem; margin-top: 2rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 600px) { .preview-grid { grid-template-columns: repeat(3, 1fr); } }
.preview-item { text-align: center; }
.preview-thumb-btn { background: none; border: none; cursor: pointer; padding: 0; border-radius: var(--radius); overflow: hidden; transition: transform 0.2s; width: 100%; }
.preview-thumb-btn:hover { transform: scale(1.03); }
.preview-thumb { width: 100%; height: auto; display: block; border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius); }
.preview-caption { margin-top: 0.5rem; font-size: 0.85rem; color: var(--muted); }
/* ─── Lightbox ──────────────────────────────────────── */
.lightbox-backdrop { display: none !important; }
.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(253, 248, 242, 0.75); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); overflow: auto; padding: 0; text-align: center; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .lightbox { background: rgba(30, 22, 38, 0.75); } }
:root[data-theme="dark"] .lightbox { background: rgba(30, 22, 38, 0.75); }
:root[data-theme="light"] .lightbox { background: rgba(253, 248, 242, 0.75); }
.lightbox.active { display: block; }
.lightbox img { display: block; margin: 0 auto; cursor: zoom-out; border: none !important; outline: none !important; box-shadow: none !important; }
.lightbox-close { position: fixed; top: 1rem; right: 1.5rem; font-size: 2.5rem; color: var(--gold); background: none; border: none; cursor: pointer; z-index: 1001; line-height: 1; }
#lightbox-caption { color: var(--muted); margin-top: 1rem; font-size: 1rem; font-family: var(--ff-display); }
/* ─── From the Blog ─────────────────────────── */
#from-blog { background: var(--surface2); padding: 3.5rem 0; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.chart-promo-text { font-size: 0.85rem; color: var(--gold); margin-top: 1rem; font-style: italic; text-align: center; line-height: 1.6; }
.chart-explore-prompt { background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 12px; padding: 1.25rem; margin-top: 1.5rem; text-align: center; }
.chart-explore-prompt p { font-size: 0.95rem; color: var(--text); margin: 0; line-height: 1.6; }
.chart-explore-prompt strong { color: var(--gold); font-weight: 600; }
.blog-teaser-card { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; background: var(--surface); border: 1px solid rgba(212,175,55,0.12); border-radius: 20px; padding: 2rem; margin-top: 2rem; }
.blog-teaser-icon { flex-shrink: 0; width: 80px; height: 80px; background: rgba(212,175,55,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-teaser-icon img { width: 100%; height: 100%; object-fit: cover; }
.blog-teaser-content { flex: 1; min-width: 250px; }
.blog-teaser-content .article-title { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; line-height: 1.3; }
.blog-teaser-content .article-excerpt { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.blog-teaser-content .btn-ghost { display: inline-flex; align-items: center; gap: 0.4rem; }
.sample-chart-wrap { max-width: 240px; margin: 0 auto 2rem auto; text-align: center; }
.sample-chart-wrap img { width: 100%; height: auto; border-radius: 16px; border: 1px solid rgba(212,175,55,0.15); }
.sample-chart-caption { font-size: 0.78rem; color: var(--muted); margin-top: 0.5rem; }
.form-intro .section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); }
@media (max-width: 600px) { #relationshipModal .form-grid { grid-template-columns: 1fr !important; } }
.lightbox img.zoomed { transform: scale(1.8); cursor: zoom-out; transition: transform 0.3s ease; }
/* ─── EXTRACTED INLINE STYLES ─── */
#why-explore { padding: 4rem 0; }
#example-charts { padding: 4rem 0; background: var(--surface2); border-top: 1px solid var(--divider); }
.mt-2rem { margin-top: 2rem; }
.mt-2-5rem { margin-top: 2.5rem; }
.form-error-container { margin-top: 12px; }
.chart-iframe-wrap { max-width: 700px; margin: 3rem auto 0 auto; padding: 0 1rem; }
.bodygraph-iframe { display: none; width: 100%; height: 400px; border: none; background: transparent; }
.chart-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; }
.post-offer-pages { font-size: 0.78rem; margin-bottom: 0.75rem; }
.pricing-card-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5; }
.pricing-cards-accepted { font-size: 0.72rem; color: var(--muted); margin-top: 0.5rem; margin-bottom: 0.5rem; }
.pricing-guarantee { font-size: 0.72rem; color: var(--gold); font-style: italic; margin-top: 0.75rem; margin-bottom: 0.25rem; }
.pricing-guarantee--rel { margin-top: 0.25rem; margin-bottom: 1.25rem; }
.pricing-intro-label--badge { margin: 0; padding: 0.25rem 0.75rem; border: 1px solid var(--gold); border-radius: 50px; font-size: 0.65rem; letter-spacing: 0.1em; white-space: nowrap; }
.pricing-intro-label--time { margin-bottom: 1rem; }
.gk-section-bg { background: var(--surface2); border-top: 1px solid var(--divider); padding: 3rem 0; margin-top: 2rem; }
.gk-block--reset { margin-top: 0; padding-top: 0; border-top: none; }
.section-label--compact { margin-bottom: 0.5rem; }
.example-types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.pricing-card--left { text-align: left; }
.example-type-title { color: var(--gold); font-family: var(--ff-display); }
.example-type-desc { color: var(--muted); font-size: 0.9rem; }
.example-gk-wrap { margin-top: 3rem; }
.gold-line--mb { margin-bottom: 2rem; }
.example-gk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.example-gk-desc { color: var(--muted); font-size: 0.85rem; }
.example-footer-text { text-align: center; margin-top: 2rem; font-size: 0.85rem; color: var(--muted); }
.section-label--sm { margin-bottom: 0.3rem; }
.modal-subtitle { font-size: 0.9rem; color: var(--muted); margin-top: 0.5rem; }
.modal-subtitle-rel { font-size: 0.9rem; color: var(--muted); margin-top: 0.5rem; }
.modal-date-time-row { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-end; }
.form-group--flex-1 { flex: 1; min-width: 0; }
.form-group--time { flex: 0 0 110px; }
.form-group--mb { margin-bottom: 1rem; }
.input-full { width: 100%; }
.modal-name-email-row { display: flex; gap: 0.85rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.form-group--name { flex: 1; min-width: 130px; margin-bottom: 0; }
.form-group--email { flex: 1; min-width: 160px; margin-bottom: 0; }
.form-group--mb-lg { margin-bottom: 1.25rem; }
.select-input { padding: 0.85rem 1rem; border: 1px solid var(--divider); border-radius: 10px; font-size: 0.95rem; background: var(--bg); color: var(--text); font-family: var(--ff-body); width: 100%; }
.btn-no-mt { margin-top: 0; }
.btn-mt-lg { margin-top: 1.5rem; }
.coupon-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.4rem; display: block; }
.coupon-row { display: flex; gap: 0.5rem; }
.coupon-input { flex: 1; padding: 0.6rem 0.8rem; border: 1px solid var(--divider); border-radius: 8px; background: var(--bg); color: var(--text); font-family: var(--ff-body); font-size: 0.85rem; text-transform: uppercase; }
.coupon-btn { padding: 0.6rem 1rem; background: var(--gold); color: #2C2416; border: none; border-radius: 8px; font-size: 0.8rem; font-weight: 600; cursor: pointer; }
.coupon-msg { font-size: 0.75rem; margin-top: 0.4rem; color: var(--gold); display: none; }
.coupon-container { margin-bottom: 1.25rem; }
.pm-cards-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: -0.25rem; margin-bottom: 0.75rem; }
.spinner-gold { border-color: rgba(212,175,55,0.25); border-top-color: var(--gold); width: 18px; height: 18px; display: inline-block; border-width: 2px; border-radius: 50%; animation: spin 0.7s linear infinite; margin-right: 0; }
.form-grid.form-grid--2col { grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-grid.form-grid--3col { grid-template-columns: 1fr 1fr 1.2fr; gap: 1rem; margin-bottom: 1.5rem; }
.form-grid.form-grid--2col-mb { grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.modal-section-title { color: var(--gold); font-family: var(--ff-display); margin-bottom: 0.75rem; font-size: 1.1rem; border-bottom: 1px solid var(--divider); padding-bottom: 0.5rem; }
.pm-ok-btn { padding: 0.75rem 2rem; background: var(--gold); color: #0D0523; border-radius: 50px; font-size: 0.9rem; font-weight: 500; cursor: pointer; border: none; font-family: var(--ff-body); }
.noscript-form { margin-top: 1.5rem; }
.noscript-grid { display: grid; gap: 0.75rem; max-width: 320px; margin: 0 auto; }
.noscript-input { padding: 0.65rem; border-radius: 8px; border: 1px solid rgba(212,175,55,0.3); background: rgba(255,255,255,0.05); color: var(--text); font-family: var(--ff-body); }
.noscript-btn { padding: 0.75rem; background: var(--gold); color: #0D0523; border: none; border-radius: 50px; font-weight: bold; font-family: var(--ff-body); cursor: pointer; }
.noscript-list { text-align: left; font-size: 0.9rem; color: var(--muted); line-height: 1.7; columns: 2; column-gap: 1.5rem; }
/* ─── VIRAL SHARE PROMPT ─────────────────────────── */
.viral-share-prompt {
    margin: 2rem auto 2.5rem;
    max-width: 680px;
    animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.viral-share-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(107,33,168,0.06) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.viral-share-card::before {
    content: '✨';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 1.5rem;
    opacity: 0.6;
}
.viral-share-card::after {
    content: '🎯';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.6;
}
.viral-share-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.viral-share-title {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.viral-share-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.viral-share-text strong {
    color: var(--gold);
}
.viral-share-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.viral-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}
.viral-share-btn--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}
.viral-share-btn--instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}
.viral-share-btn--pinterest {
    background: #E60023;
    color: white;
}
.viral-share-btn--pinterest:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 35, 0.4);
}
.viral-share-hashtag {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 1rem;
}
.viral-share-hashtag strong {
    color: var(--gold);
    font-weight: 600;
}
@media (max-width: 600px) {
    .viral-share-card {
        padding: 1.5rem 1.25rem;
    }
    .viral-share-title {
        font-size: 1.3rem;
    }
    .viral-share-text {
        font-size: 0.88rem;
    }
    .viral-share-actions {
        flex-direction: column;
    }
    .viral-share-btn {
        width: 100%;
        justify-content: center;
    }
}
