/* ═══════════════════════════════════════════════════════════════════════════
   My SoulOS — Landing Page
   Light + Dark mode · Scroll reveal · Cosmic animations
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset / base ─────────────────────────────────────────────────────────── */
.lp-hero, .lp-section { box-sizing: border-box; }

/* ── Scroll reveal ────────────────────────────────────────────────────────── */
.lp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(.22,.61,.36,1), transform 0.75s cubic-bezier(.22,.61,.36,1);
}
.lp-reveal--delay1 { transition-delay: 0.12s; }
.lp-reveal--delay2 { transition-delay: 0.24s; }
.lp-reveal--delay3 { transition-delay: 0.36s; }
.lp-reveal--delay4 { transition-delay: 0.48s; }
.lp-reveal.lp-visible { opacity: 1; transform: translateY(0); }

/* ── Keyframes ────────────────────────────────────────────────────────────── */
@keyframes lp-twinkle {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50%       { opacity: 0.9;  transform: scale(1.4); }
}
@keyframes lp-drift {
    0%   { transform: translateY(0px)   rotate(0deg);   opacity: 0.30; }
    50%  { transform: translateY(-20px) rotate(10deg);  opacity: 0.55; }
    100% { transform: translateY(5px)   rotate(-5deg);  opacity: 0.30; }
}
@keyframes lp-ring-spin {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes lp-ring-spin-r {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(-360deg); }
}
@keyframes lp-hero-glow {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 0.85; }
}
@keyframes lp-pulse-ring {
    0%   { box-shadow: 0 0 0 0   rgba(200,134,10,.55); }
    70%  { box-shadow: 0 0 0 14px rgba(200,134,10,.0); }
    100% { box-shadow: 0 0 0 0   rgba(200,134,10,.0); }
}
@keyframes lp-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}
@keyframes lp-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position:  400px 0; }
}
@keyframes lp-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
@keyframes lp-final-ring {
    0%   { transform: rotate(0deg)   scale(1);   opacity:.3; }
    50%  { transform: rotate(180deg) scale(1.08); opacity:.5; }
    100% { transform: rotate(360deg) scale(1);   opacity:.3; }
}

/* ── CSS variables ────────────────────────────────────────────────────────── */
:root {
    --lp-hero-deep:  #07071a;
    --lp-hero-mid:   #0f0f2a;
    --lp-hero-glow1: rgba(100, 60, 180, 0.35);
    --lp-hero-glow2: rgba(200, 134, 10, 0.12);
    --lp-star-col:   rgba(255,255,255,0.85);
    --lp-gold:       #c8860a;
    --lp-text:       #e8e0d0;
    --lp-text2:      #9aabbc;
    --lp-bg:         #0c1220;
    --lp-bg2:        #111827;
    --lp-bg3:        #1a2238;
    --lp-border:     #1e2840;
    --lp-card-bg:    rgba(20,28,50,.72);
    --lp-pain-bg:    #09101f;
    --lp-auth-bg:    #080e1c;
}

/* ── Light mode overrides ─────────────────────────────────────────────────── */
[data-theme="light"] .lp-page {
    --lp-bg:         #f0eaff;
    --lp-bg2:        #e8dfff;
    --lp-bg3:        #ddd3f8;
    --lp-border:     #c2b3e0;
    --lp-text:       #18103a;
    --lp-text2:      #5a4880;
    --lp-card-bg:    rgba(255,253,255,.88);
    --lp-pain-bg:    #ede5ff;
    --lp-auth-bg:    #f4efff;
}
/* Hero always stays dark/cosmic in both modes */
.lp-hero {
    --lp-text:  #e8e0d0;
    --lp-text2: rgba(232,224,208,.7);
}
/* ── White PNG → colour helper
   white image on dark bg  → keep white (brightness up)
   white image on light bg → invert to black, sepia+hue-rotate → vivid indigo/blue, NO black
   ─────────────────────────────────────────────────────────────────────────── */

/* Drifter images — always inside dark hero
   PNG has dark/black line art → invert() flips to white → glows on dark purple */
.lp-rashi-drifter img {
    filter: invert(1) brightness(1.1);
}

/* Rashi strip — dark mode: same invert → white icons, gold text */
.lp-rashi-chip img {
    opacity: .6;
    filter: invert(1) brightness(1.1) saturate(0);
}

/* Rashi strip — light mode: white → deep indigo */
[data-theme="light"] .lp-rashi-strip {
    background: rgba(80,40,180,.06);
    border-color: rgba(80,40,180,.15);
}
[data-theme="light"] .lp-rashi-chip {
    color: rgba(55,15,155,.8);
}
/* Light mode: PNG is dark art → invert → white → sepia+hue-rotate → indigo (never black) */
[data-theme="light"] .lp-rashi-chip img {
    opacity: .9;
    filter: invert(1) sepia(1) saturate(8) hue-rotate(212deg) brightness(0.7);
}

/* Compare card rashi images — light mode */
[data-theme="light"] .lp-compare-rashi img {
    filter: invert(1) sepia(1) saturate(8) hue-rotate(212deg) brightness(0.7);
    opacity: .85;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────────────── */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 70% at 50% 40%, var(--lp-hero-glow1), transparent),
                radial-gradient(ellipse 60% 40% at 70% 70%, var(--lp-hero-glow2), transparent),
                linear-gradient(160deg, var(--lp-hero-deep) 0%, var(--lp-hero-mid) 60%, var(--lp-hero-deep) 100%);
    background-size: 200% 200%;
    animation: lp-gradient-shift 14s ease infinite;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
}

/* Stars */
.lp-stars { position: absolute; inset: 0; pointer-events: none; }
.lp-star {
    position: absolute;
    background: var(--lp-star-col);
    border-radius: 50%;
    animation: lp-twinkle 3s infinite alternate;
}

/* Zodiac drifters field */
.lp-zodiac-field { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* Rashi image drifters
   animation is on the DIV so PHP inline animation-delay/duration take effect */
.lp-rashi-drifter {
    position: absolute !important;
    pointer-events: none;
    user-select: none;
    animation-name: lp-drift;
    animation-duration: 10s;       /* overridden per-element by inline style */
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0s;           /* overridden per-element by inline style */
}
.lp-rashi-drifter img {
    display: block;
    width: 40px; height: 40px;
    filter: var(--lp-drifter-filter, brightness(2) saturate(0) invert(1));
}

.lp-zodiac-drifter {
    position: absolute;
    color: var(--lp-gold);
    animation: lp-drift 9s ease-in-out infinite;
    user-select: none;
}

/* Decorative rings */
.lp-hero-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(200,134,10,.18);
    pointer-events: none;
}
.lp-hero-ring--1 {
    width: 600px; height: 600px;
    animation: lp-ring-spin 40s linear infinite;
    border-style: dashed;
}
.lp-hero-ring--2 {
    width: 900px; height: 900px;
    animation: lp-ring-spin-r 65s linear infinite;
    border-color: rgba(120,80,200,.12);
}

/* Hero content */
.lp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.lp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lp-gold);
    margin-bottom: 1.5rem;
    padding: 0.4rem 1.1rem;
    border: 1px solid rgba(200,134,10,.3);
    border-radius: 40px;
    background: rgba(200,134,10,.06);
}

.lp-badge-dot {
    width: 7px; height: 7px;
    background: var(--lp-gold);
    border-radius: 50%;
    animation: lp-pulse-ring 2s infinite;
}

.lp-h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}
[data-theme="light"] .lp-h1 { color: #fff; }

.lp-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.75;
    color: rgba(232,224,208,.82);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.lp-hero-sub em { color: var(--lp-gold); font-style: normal; font-weight: 600; }

.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 2rem;
    background: var(--lp-gold);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(200,134,10,.35);
}
.lp-btn-primary:hover {
    background: #d9960f;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,134,10,.5);
}
.lp-btn-primary--sm { padding: .7rem 1.5rem; font-size: .9rem; }
.lp-btn-primary--lg { padding: 1.1rem 2.6rem; font-size: 1.1rem; }

.lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 0.9rem 1.8rem;
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.78);
    font-size: .95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}
.lp-btn-ghost:hover {
    border-color: var(--lp-gold);
    color: var(--lp-gold);
    background: rgba(200,134,10,.07);
}

.lp-btn-pulse { animation: lp-pulse-ring 2.2s infinite; }

.lp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
    justify-content: center;
    font-size: .78rem;
    color: rgba(232,224,208,.5);
}
.lp-hero-trust span { display: flex; align-items: center; gap: .35rem; }
.lp-hero-trust i { color: var(--lp-gold); font-size: .75rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   SHARED SECTION STYLES
   ───────────────────────────────────────────────────────────────────────────── */
.lp-section {
    padding: 5rem 1.5rem;
    background: var(--lp-bg);
}
.lp-section--pain     { background: var(--lp-pain-bg); }
.lp-section--solution { background: var(--lp-bg2); }
.lp-section--preview  { background: var(--lp-bg); }
.lp-section--steps    { background: var(--lp-bg2); }
.lp-section--pricing  { background: var(--lp-bg); }
.lp-section--authority{ background: var(--lp-auth-bg); }
.lp-section--final    { position: relative; overflow: hidden; padding: 6rem 1.5rem; background: var(--lp-hero-deep); }

.lp-container {
    max-width: 1120px;
    margin: 0 auto;
}
.lp-container--narrow  { max-width: 680px; margin: 0 auto; text-align: center; }
.lp-container--preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 820px) { .lp-container--preview { grid-template-columns: 1fr; } }

.lp-eyebrow {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--lp-gold);
    margin-bottom: .75rem;
}

.lp-h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.55rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--lp-text);
    margin: 0 0 1.5rem;
}
.lp-h2--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────────────────────────────────────
   PAIN SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.lp-pain-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 820px) { .lp-pain-split { grid-template-columns: 1fr; } }

.lp-pain-left p {
    color: var(--lp-text2);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: .98rem;
}
.lp-pain-left p strong { color: var(--lp-text); }
.lp-pain-left p em     { color: var(--lp-gold); font-style: normal; }

.lp-pain-right { display: flex; flex-direction: column; gap: .75rem; }

.lp-compare-card {
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
    border: 1px solid var(--lp-border);
    background: var(--lp-card-bg);
    backdrop-filter: blur(10px);
}
.lp-compare-card--bad  { border-color: rgba(220,60,60,.25); }
.lp-compare-card--good { border-color: rgba(200,134,10,.35); background: rgba(200,134,10,.05); }

.lp-compare-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.lp-compare-card--bad  .lp-compare-label { color: #e05555; }
.lp-compare-card--good .lp-compare-label { color: var(--lp-gold); }

.lp-compare-rashi {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .3rem .4rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--lp-text2);
    margin-bottom: .5rem;
}
.lp-compare-rashi i.fa-moon {
    font-size: .72rem;
    color: var(--lp-gold);
    opacity: .8;
}
.lp-compare-rashi img { vertical-align: middle; opacity: .65; }
.lp-compare-text {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--lp-text);
    margin-bottom: .6rem;
    font-style: italic;
}
.lp-compare-note {
    font-size: .72rem;
    color: var(--lp-text2);
    border-top: 1px solid var(--lp-border);
    padding-top: .5rem;
    margin-top: .5rem;
}
.lp-compare-arrow {
    text-align: center;
    color: var(--lp-gold);
    font-size: 1.1rem;
    opacity: .5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PILLARS
   ───────────────────────────────────────────────────────────────────────────── */
.lp-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
@media (max-width: 820px) { .lp-pillars { grid-template-columns: 1fr; } }

.lp-pillar {
    padding: 2rem 1.75rem;
    border-radius: 18px;
    border: 1px solid var(--lp-border);
    background: var(--lp-card-bg);
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.lp-pillar:hover {
    transform: translateY(-6px);
    border-color: var(--lp-gold);
    box-shadow: 0 12px 40px rgba(200,134,10,.18);
}

.lp-pillar-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(200,134,10,.1);
    border: 1px solid rgba(200,134,10,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.35rem;
    color: var(--lp-gold);
    transition: background .2s, transform .2s;
}
.lp-pillar:hover .lp-pillar-icon {
    background: rgba(200,134,10,.2);
    transform: scale(1.08);
}

.lp-pillar-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lp-text);
    margin: 0 0 .75rem;
}
.lp-pillar-text {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--lp-text2);
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PHONE PREVIEW
   ───────────────────────────────────────────────────────────────────────────── */
.lp-preview-copy .lp-h2 { margin-bottom: 1.5rem; }

.lp-preview-list {
    list-style: none;
    padding: 0; margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.lp-preview-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .93rem;
    color: var(--lp-text2);
    line-height: 1.5;
}
.lp-preview-list li i { color: var(--lp-gold); margin-top: .2rem; flex-shrink: 0; }
.lp-preview-list li strong { color: var(--lp-text); }

/* Phone caption */
.lp-phone-caption {
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lp-gold);
    margin-bottom: .85rem;
    opacity: .75;
}

/* Phone frame */
.lp-phone {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    animation: lp-float 5s ease-in-out infinite;
}

.lp-phone-frame {
    width: 270px;
    background: #0a0f1e;
    border-radius: 36px;
    border: 2px solid rgba(200,134,10,.4);
    padding: 14px 10px 20px;
    box-shadow:
        0 0 0 1px rgba(200,134,10,.1),
        0 30px 80px rgba(0,0,0,.6),
        inset 0 0 30px rgba(100,60,200,.05);
    position: relative;
    overflow: hidden;
}
[data-theme="light"] .lp-phone-frame { background: #1a1240; }

.lp-phone-notch {
    width: 70px; height: 12px;
    background: #0a0f1e;
    border-radius: 0 0 10px 10px;
    margin: 0 auto 10px;
    border: 1px solid rgba(200,134,10,.2);
    border-top: none;
}
[data-theme="light"] .lp-phone-notch { background: #1a1240; }

.lp-phone-screen {
    background: #0c1220;
    border-radius: 22px;
    padding: .75rem .65rem;
    min-height: 460px;
    overflow: hidden;
}
[data-theme="light"] .lp-phone-screen { background: #131830; }

.lp-phone-glow {
    position: absolute;
    bottom: -30px; left: 50%;
    transform: translateX(-50%);
    width: 160px; height: 50px;
    background: radial-gradient(ellipse, rgba(200,134,10,.5), transparent 70%);
    pointer-events: none;
    animation: lp-hero-glow 3s ease-in-out infinite;
}

/* Phone screen internals */
.lp-ps-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(200,134,10,.15);
}
.lp-ps-logo {
    font-family: 'Cinzel', serif;
    font-size: .78rem;
    font-weight: 700;
    color: #e8e0d0;
}
.lp-ps-logo span { color: #c8860a; }
.lp-ps-time { font-size: .68rem; color: rgba(232,224,208,.45); }

.lp-ps-greeting {
    font-size: .8rem;
    color: rgba(232,224,208,.65);
    margin-bottom: .65rem;
    font-style: italic;
}

.lp-ps-card {
    background: rgba(26,34,56,.8);
    border-radius: 10px;
    padding: .65rem .7rem;
    margin-bottom: .55rem;
    border: 1px solid rgba(30,40,64,.9);
}
.lp-ps-card--gold { border-color: rgba(200,134,10,.3); background: rgba(200,134,10,.06); }

.lp-ps-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .7rem;
    font-weight: 600;
    color: rgba(232,224,208,.7);
    margin-bottom: .45rem;
}
.lp-ps-card-head i { color: #c8860a; margin-right: .3rem; }

.lp-ps-badge {
    font-size: .58rem;
    padding: .15rem .45rem;
    border-radius: 20px;
    background: rgba(200,134,10,.15);
    color: #c8860a;
    font-weight: 700;
    letter-spacing: .5px;
}
.lp-ps-badge--good { background: rgba(60,180,80,.15); color: #4cc870; }

.lp-ps-tara-desc { font-size: .7rem; color: rgba(232,224,208,.55); line-height: 1.5; }

.lp-ps-themes { display: flex; flex-direction: column; gap: .3rem; }
.lp-ps-theme {
    display: grid;
    grid-template-columns: 12px 42px 1fr;
    align-items: center;
    gap: .3rem;
    font-size: .65rem;
}
.lp-ps-theme i { color: #c8860a; font-size: .6rem; }
.lp-ps-theme span:nth-child(2) { color: rgba(232,224,208,.55); font-weight: 600; }
.lp-ps-theme-text { color: rgba(232,224,208,.75); line-height: 1.4; }

.lp-ps-dasha { display: flex; flex-direction: column; gap: .3rem; }
.lp-ps-dasha-row {
    display: grid;
    grid-template-columns: 70px 1fr 30px;
    font-size: .65rem;
    color: rgba(232,224,208,.55);
    gap: .3rem;
    align-items: center;
}
.lp-ps-dasha-pl { color: rgba(232,224,208,.8); font-weight: 600; }
.lp-ps-dasha-h {
    font-size: .6rem;
    background: rgba(200,134,10,.15);
    color: #c8860a;
    border-radius: 4px;
    padding: .1rem .3rem;
    text-align: center;
}

/* ─────────────────────────────────────────────────────────────────────────────
   STEPS
   ───────────────────────────────────────────────────────────────────────────── */
.lp-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 3rem;
}
@media (max-width: 820px) {
    .lp-steps { grid-template-columns: 1fr; gap: 2rem; }
    .lp-step-connector { display: none; }
}

.lp-step {
    text-align: center;
    padding: 0 1.5rem;
}
.lp-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2.5rem;
    color: rgba(200,134,10,.35);
    font-size: 1.2rem;
}
.lp-step-connector::before { content: '→'; }

.lp-step-num {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200,134,10,.18);
    line-height: 1;
    margin-bottom: .75rem;
}
.lp-step-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-text);
    margin: 0 0 .65rem;
}
.lp-step-text {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--lp-text2);
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────────────────────────────── */
.lp-pricing-sub {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
    color: var(--lp-text2);
    font-size: .95rem;
    line-height: 1.75;
}

.lp-price-cards {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    max-width: 820px;
    margin: 0 auto;
}
@media (max-width: 680px) { .lp-price-cards { grid-template-columns: 1fr; } }

.lp-price-card {
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 1px solid var(--lp-border);
    background: var(--lp-card-bg);
    position: relative;
    transition: transform .25s, box-shadow .25s;
}
.lp-price-card:hover { transform: translateY(-4px); }

.lp-price-card--featured {
    border-color: rgba(200,134,10,.5);
    background: linear-gradient(160deg, rgba(200,134,10,.07) 0%, var(--lp-card-bg) 100%);
    box-shadow: 0 8px 40px rgba(200,134,10,.18);
}
.lp-price-card--featured:hover { box-shadow: 0 16px 56px rgba(200,134,10,.28); }

.lp-price-popular {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--lp-gold);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .25rem .9rem;
    border-radius: 20px;
    white-space: nowrap;
}

.lp-price-card-name {
    font-family: 'Cinzel', serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--lp-text);
    margin-bottom: .75rem;
    text-align: center;
}

.lp-price-card-price {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lp-text);
    text-align: center;
    margin-bottom: .5rem;
    line-height: 1;
}
.lp-price-card-price span { font-size: .85rem; font-weight: 400; color: var(--lp-text2); }
.lp-price-orig {
    font-size: 1rem;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--lp-text2);
    margin-right: .4rem;
}

.lp-price-intro {
    text-align: center;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lp-gold);
    margin-bottom: 1.25rem;
}
.lp-price-intro i { margin-right: .3rem; }

.lp-price-features {
    list-style: none;
    padding: 0; margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    border-top: 1px solid var(--lp-border);
    padding-top: 1.25rem;
}
.lp-price-features li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .88rem;
    color: var(--lp-text2);
    line-height: 1.45;
}
.lp-price-features li i { margin-top: .15rem; flex-shrink: 0; }
.lp-price-features li i.fa-check { color: var(--lp-gold); }
.lp-price-features li i.fa-xmark { color: rgba(200,80,80,.5); }
.lp-price-features li strong { color: var(--lp-text); }
.lp-feat-off { opacity: .55; }

.lp-price-btn {
    display: block;
    text-align: center;
    padding: .85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s;
}
.lp-price-btn--ghost {
    border: 1px solid var(--lp-border);
    color: var(--lp-text2);
    background: transparent;
}
.lp-price-btn--ghost:hover { border-color: var(--lp-gold); color: var(--lp-gold); }

.lp-price-btn--gold {
    background: var(--lp-gold);
    color: #fff;
    box-shadow: 0 4px 20px rgba(200,134,10,.35);
}
.lp-price-btn--gold:hover { background: #d9960f; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,134,10,.5); }

.lp-price-note {
    text-align: center;
    font-size: .72rem;
    color: var(--lp-text2);
    margin: .75rem 0 0;
    opacity: .7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   AUTHORITY
   ───────────────────────────────────────────────────────────────────────────── */
.lp-authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
@media (max-width: 820px) { .lp-authority-grid { grid-template-columns: 1fr; } }

.lp-authority-item {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--lp-border);
    background: var(--lp-card-bg);
    transition: border-color .25s, box-shadow .25s;
}
.lp-authority-item:hover {
    border-color: rgba(200,134,10,.35);
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.lp-authority-icon {
    width: 48px; height: 48px;
    background: rgba(200,134,10,.1);
    border: 1px solid rgba(200,134,10,.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-gold);
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
}
.lp-authority-item h3 {
    font-family: 'Cinzel', serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--lp-text);
    margin: 0 0 .65rem;
}
.lp-authority-item p {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--lp-text2);
    margin: 0;
}
.lp-authority-item p em { color: var(--lp-gold); font-style: normal; font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────────────────────────────────────── */
.lp-final-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(100,60,200,.25), transparent),
                radial-gradient(ellipse 40% 40% at 30% 70%, rgba(200,134,10,.12), transparent);
    pointer-events: none;
}

.lp-final-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 500px; height: 500px;
    margin-left: -250px;
    margin-top: -250px;
    border-radius: 50%;
    border: 1px dashed rgba(200,134,10,.2);
    animation: lp-final-ring 30s linear infinite;
    pointer-events: none;
}

.lp-final-inner { position: relative; z-index: 2; }

.lp-final-eyebrow {
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(200,134,10,.7);
    margin-bottom: 1rem;
    display: block;
}

.lp-final-h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.25rem;
    line-height: 1.15;
}

.lp-final-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(232,224,208,.65);
    margin-bottom: 2.5rem;
}

.lp-final-note {
    margin-top: 1.75rem;
    font-size: .82rem;
    color: rgba(232,224,208,.4);
    font-style: italic;
}
.lp-final-note i { color: var(--lp-gold); opacity: .7; }

/* ─────────────────────────────────────────────────────────────────────────────
   RASHI STRIP
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes lp-strip-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.lp-rashi-strip {
    overflow: hidden;
    padding: .75rem 0;
    background: rgba(200,134,10,.06);
    border-top: 1px solid rgba(200,134,10,.12);
    border-bottom: 1px solid rgba(200,134,10,.12);
}
.lp-rashi-strip-track {
    display: flex;
    width: max-content;
    animation: lp-strip-scroll 32s linear infinite;
}
.lp-rashi-strip-track:hover { animation-play-state: paused; }
.lp-rashi-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem 1.2rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: rgba(200,134,10,.7);
    flex-shrink: 0;
    white-space: nowrap;
}
.lp-rashi-chip img {
    opacity: .55;
    filter: brightness(1.6) saturate(0.5);
}

/* ─────────────────────────────────────────────────────────────────────────────
   LANGUAGE SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.lp-section--lang { background: var(--lp-bg2); }

.lp-lang-sub {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--lp-text2);
    font-size: .95rem;
    line-height: 1.75;
}

.lp-lang-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 0;
}
@media (max-width: 820px) { .lp-lang-cards { grid-template-columns: 1fr; } }

.lp-lang-card {
    padding: 2rem 1.75rem;
    border-radius: 18px;
    border: 1px solid var(--lp-border);
    background: var(--lp-card-bg);
    backdrop-filter: blur(10px);
    position: relative;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.lp-lang-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,134,10,.4);
    box-shadow: 0 12px 40px rgba(200,134,10,.14);
}
.lp-lang-card--featured {
    border-color: rgba(200,134,10,.45);
    background: linear-gradient(160deg, rgba(200,134,10,.07) 0%, var(--lp-card-bg) 100%);
    box-shadow: 0 6px 30px rgba(200,134,10,.15);
}

.lp-lang-popular {
    position: absolute;
    top: -11px; left: 50%;
    transform: translateX(-50%);
    background: var(--lp-gold);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .22rem .85rem;
    border-radius: 20px;
    white-space: nowrap;
}

.lp-lang-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(200,134,10,.1);
    border: 1px solid rgba(200,134,10,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--lp-gold);
    margin: 0 0 1.25rem;
    transition: background .2s, transform .2s;
}
.lp-lang-card:hover .lp-lang-icon {
    background: rgba(200,134,10,.2);
    transform: scale(1.08);
}

.lp-lang-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lp-text);
    margin: 0 0 .75rem;
}

.lp-lang-desc {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--lp-text2);
    margin: 0 0 1.25rem;
}

.lp-lang-sample {
    font-size: .83rem;
    line-height: 1.7;
    color: var(--lp-text);
    font-style: italic;
    padding: .85rem 1rem;
    border-radius: 10px;
    background: rgba(200,134,10,.06);
    border-left: 2px solid rgba(200,134,10,.4);
}
.lp-lang-sample--deva {
    font-family: 'Noto Sans Devanagari', 'Mangal', serif;
    font-style: normal;
    font-size: .88rem;
    line-height: 1.85;
}

/* ─────────────────────────────────────────────────────────────────────────────
   NUMEROLOGY SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.lp-section--num { background: var(--lp-bg); }

.lp-container--num {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.lp-num-inner { }

.lp-num-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lp-gold);
    border: 1px solid rgba(200,134,10,.3);
    background: rgba(200,134,10,.07);
    padding: .35rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.lp-num-text {
    font-size: .97rem;
    line-height: 1.8;
    color: var(--lp-text2);
    max-width: 700px;
    margin: 0 auto 1rem;
}
.lp-num-text strong { color: var(--lp-text); }

.lp-num-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: center;
    margin-top: 2.25rem;
}

.lp-num-pill {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    border-radius: 30px;
    border: 1px solid var(--lp-border);
    background: var(--lp-card-bg);
    font-size: .82rem;
    color: var(--lp-text2);
    transition: border-color .2s, background .2s;
}
.lp-num-pill:hover {
    border-color: rgba(200,134,10,.4);
    background: rgba(200,134,10,.06);
    color: var(--lp-text);
}

.lp-num-n {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-gold);
    min-width: 1.2rem;
    text-align: center;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .lp-section { padding: 3.5rem 1.25rem; }
    .lp-hero    { padding: 5rem 1.25rem 3.5rem; }
    .lp-hero-ring--1 { width: 320px; height: 320px; }
    .lp-hero-ring--2 { width: 480px; height: 480px; }
    .lp-phone-frame  { width: 230px; }
    .lp-phone-screen { min-height: 380px; }
    .lp-price-cards  { max-width: 100%; }
}

@media (max-width: 380px) {
    .lp-hero-cta { flex-direction: column; align-items: center; }
    .lp-btn-primary, .lp-btn-ghost { width: 100%; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SOULMATE SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.lp-section--soulmate {
    background: var(--lp-pain-bg);
    border-top: 1px solid rgba(200,134,10,.1);
    border-bottom: 1px solid rgba(200,134,10,.1);
}

.lp-soulmate-body {
    margin-top: 2.5rem;
}

.lp-soulmate-p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--lp-text2);
    margin: 0 auto 1.25rem;
    max-width: 680px;
    text-align: center;
}

.lp-soulmate-p em {
    color: var(--lp-gold);
    font-style: normal;
    font-weight: 600;
}

.lp-soulmate-p--em {
    font-size: 1.3rem;
    color: var(--lp-text);
    font-weight: 500;
}

.lp-soulmate-quote {
    border: 1px solid rgba(200,134,10,.3);
    background: rgba(200,134,10,.05);
    border-radius: 14px;
    padding: 2rem 2.5rem;
    margin: 2.5rem auto;
    max-width: 600px;
    text-align: center;
}

.lp-soulmate-quote p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--lp-text);
    font-style: italic;
}

.lp-soulmate-quote p em {
    color: var(--lp-gold);
    font-style: normal;
    font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOUNDING BANNER
   ───────────────────────────────────────────────────────────────────────────── */
.lp-founding-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    background: rgba(200,134,10,.1);
    border: 1px solid rgba(200,134,10,.4);
    border-radius: 10px;
    padding: .9rem 1.5rem;
    margin: 1.5rem auto 2.5rem;
    max-width: 600px;
    font-size: .92rem;
    color: var(--lp-text);
    text-align: center;
    line-height: 1.6;
}

.lp-founding-banner i {
    color: var(--lp-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.lp-founding-banner strong {
    color: var(--lp-gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.lp-section--faq { background: var(--lp-bg2); }

.lp-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 720px) { .lp-faq-grid { grid-template-columns: 1fr; } }

.lp-faq-item {
    padding: 1.75rem;
    border-radius: 14px;
    border: 1px solid var(--lp-border);
    background: var(--lp-card-bg);
    transition: border-color .2s, box-shadow .2s;
}

.lp-faq-item:hover {
    border-color: rgba(200,134,10,.35);
    box-shadow: 0 6px 24px rgba(200,134,10,.1);
}

.lp-faq-item h3 {
    font-family: 'Cinzel', serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--lp-text);
    margin: 0 0 .85rem;
    line-height: 1.5;
}

.lp-faq-item p {
    font-size: .88rem;
    line-height: 1.75;
    color: var(--lp-text2);
    margin: 0;
}
