/**
 * Osho Zen Tarot - Scoped Premium Styles
 */

#osho-app {
    --t: #C4714A;
    --td: #A85A35;
    --tl: #D4876A;
    --nu: #E8D5C4;
    --nl: #F2E8DF;
    --cr: #FAF6F2;
    --bk: #5C4038;
    --mi: #8A6858;
    --dk: #2A1A14;
    --terra: var(--t);
    --sans: 'DM Sans', sans-serif;
    --serif: 'Cormorant Garamond', serif;

    font-family: 'DM Sans', sans-serif;
    background: #F2EAE1;
    color: var(--dk);
    min-height: 600px;
    position: relative;
    line-height: 1.6;
}

#osho-app *,
#osho-app *::before,
#osho-app *::after {
    box-sizing: border-box;
}

/* NAV */
#osho-app .nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 246, 242, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 113, 74, 0.1);
}

#osho-app .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--dk);
}

#osho-app .nav-logo em {
    color: var(--t);
    font-style: italic;
}

#osho-app .nav-back {
    font-size: 11px;
    color: var(--mi);
    cursor: pointer;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
}

#osho-app .nav-back:hover {
    color: var(--t);
}

/* PROGRESS BAR */
#osho-app .pbar {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    z-index: 199;
    padding: 7px 40px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(250, 246, 242, 0.9);
    border-bottom: 1px solid rgba(196, 113, 74, 0.06);
}

#osho-app .pbar.on {
    display: flex;
}

#osho-app .pi {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: var(--mi);
    opacity: .38;
    transition: all .3s;
    font-weight: 400;
}

#osho-app .pi.active {
    opacity: 1;
    color: var(--t);
}

#osho-app .pi.done {
    opacity: .65;
    color: var(--t);
}

#osho-app .pi-n {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 500;
}

#osho-app .pi.done .pi-n {
    background: var(--t);
    border-color: var(--t);
    color: #fff;
}

#osho-app .pi-line {
    width: 18px;
    height: 1px;
    background: rgba(196, 113, 74, .18);
}

/* STEPS */
#osho-app .step {
    display: none;
    min-height: 80vh;
    padding: 140px 24px 60px;
    position: relative;
    z-index: 1;
}

#osho-app #s1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 15% 20%, rgba(196, 113, 74, .10) 0%, transparent 62%), radial-gradient(ellipse 55% 70% at 88% 82%, rgba(232, 213, 196, .45) 0%, transparent 58%);
    pointer-events: none;
}

#osho-app #s2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 45% at 82% 28%, rgba(196, 113, 74, .07) 0%, transparent 56%);
    pointer-events: none;
}

#osho-app #s3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 72% 58% at 50% 0%, rgba(196, 113, 74, .08) 0%, transparent 50%);
    pointer-events: none;
}

#osho-app #s4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 66% 66% at 50% 50%, rgba(232, 213, 196, .36) 0%, transparent 60%);
    pointer-events: none;
}

#osho-app #s5::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 56% 56% at 50% 36%, rgba(196, 113, 74, .09) 0%, transparent 56%), radial-gradient(ellipse 74% 36% at 50% 100%, rgba(232, 213, 196, .36) 0%, transparent 50%);
    pointer-events: none;
}

#osho-app .step.on {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

/* HERO ANIMATIONS */
@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes hpulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

#osho-app .orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orb linear infinite;
    z-index: -1;
}

#osho-app .o1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(196, 113, 74, .08), transparent 70%);
    top: -100px;
    right: -100px;
    animation-duration: 18s;
}

#osho-app .o2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(232, 213, 196, .3), transparent 70%);
    bottom: 50px;
    left: -50px;
    animation-duration: 22s;
    animation-delay: -5s;
}

/* HERO CONTENT */
#osho-app .hero {
    max-width: 650px;
    text-align: center;
}

#osho-app .bmark {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--t);
    margin-bottom: 28px;
    opacity: 0;
    animation: fu 0.9s ease 0.1s forwards;
}

#osho-app .h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 8vw, 70px);
    font-weight: 300;
    line-height: 1.07;
    letter-spacing: -0.02em;
    color: var(--dk);
    margin-bottom: 20px;
    opacity: 0;
    animation: fu 0.9s ease 0.25s forwards;
}

#osho-app .h1 em {
    font-style: italic;
    color: var(--t);
}

#osho-app .hsub {
    font-size: 16px;
    font-weight: 300;
    color: var(--mi);
    line-height: 1.72;
    max-width: 400px;
    margin: 0 auto 36px;
    opacity: 0;
    animation: fu 0.9s ease 0.42s forwards;
}

#osho-app .btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #fff;
    background: var(--t);
    border: none;
    border-radius: 100px;
    padding: 16px 52px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 15px rgba(196, 113, 74, 0.2);
}

#osho-app .btn:hover {
    background: var(--td);
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(196, 113, 74, 0.34);
}

#osho-app .btn:disabled {
    background: #E8D5C4;
    color: #8A6858;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 1;
}

/* CARD FANNING */
#osho-app .pfan-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 52px;
    opacity: 0;
    animation: fu 1.1s ease 0.8s forwards;
}

#osho-app .pfan {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#osho-app .pcard-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#osho-app .pcard {
    width: 76px;
    height: 116px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(196, 113, 74, 0.3);
    background: #fff;
    transition: transform 0.3s ease;
    animation: cardLiving 3.2s ease-in-out infinite;
}

#osho-app .pcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#osho-app .pcard-item:nth-child(1) .pcard {
    transform: rotate(-8deg) translateY(8px);
    z-index: 1;
    animation-duration: 2.8s;
}

#osho-app .pcard-item:nth-child(2) .pcard {
    transform: rotate(0deg);
    z-index: 3;
    animation-duration: 3.2s;
}

#osho-app .pcard-item:nth-child(3) .pcard {
    transform: rotate(8deg) translateY(8px);
    z-index: 2;
    animation-duration: 3.6s;
}

@keyframes cardLiving {
    0%, 100% {
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 0 5px rgba(212, 180, 140, 0.1);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 0 15px rgba(212, 180, 140, 0.4);
        filter: brightness(1.08);
    }
}


#osho-app .pcard-item:nth-child(2) {
    margin: 0 -10px;
    z-index: 3;
}

#osho-app .fan-labels {
    display: flex;
    justify-content: center;
    gap: 44px;
    margin-top: 12px;
}

#osho-app .fan-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--mi);
    font-weight: 400;
}

/* MINIFAN (Step 4) */
#osho-app .minifan {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

#osho-app .mc {
    width: 60px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(196, 113, 74, 0.2);
    border: 1px solid rgba(196, 113, 74, 0.25);
    background: #fff;
}

#osho-app .tc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#osho-app .tnum {
    font-size: 10px;
    font-family: 'DM Sans', sans-serif;
    color: var(--mi);
    font-weight: 300;
    letter-spacing: 0.04em;
}

#osho-app .tname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-style: italic;
    color: var(--t);
    text-align: center;
    max-width: 74px;
    line-height: 1.25;
    min-height: 14px;
}

#osho-app .tc-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t);
    border: 1px dashed var(--t);
}

#osho-app .mc:nth-child(1) {
    transform: rotate(-8deg) translateX(5px);
    z-index: 1;
}

#osho-app .mc:nth-child(2) {
    transform: rotate(2deg) translateY(-6px);
    z-index: 3;
    margin: 0 -12px;
}

#osho-app .mc:nth-child(3) {
    transform: rotate(10deg) translateX(-5px);
    z-index: 2;
}

#osho-app .mc-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

#osho-app .mc-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--t);
    font-weight: 500;
}

/* STEP 4: EMAIL */
#osho-app .ewrap {
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

#osho-app .ebox {
    background: #fff;
    border-radius: 22px;
    padding: 38px 34px;
    border: 1.5px solid rgba(196, 113, 74, 0.09);
    box-shadow: 0 16px 68px rgba(42, 26, 20, 0.07);
}

#osho-app .eh2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 31px;
    font-weight: 400;
    color: var(--dk);
    line-height: 1.2;
    margin-bottom: 8px;
}

#osho-app .eh2 em {
    font-style: italic;
    color: var(--t);
}

#osho-app .email-sub-copy {
    font-size: 14px;
    font-weight: 300;
    color: var(--mi);
    line-height: 1.6;
    margin-bottom: 24px;
}

#osho-app .field {
    margin-bottom: 15px;
    text-align: left;
}

#osho-app .field label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bk);
    margin-bottom: 8px;
}

#osho-app .field input {
    width: 100%;
    padding: 13px 18px;
    background: var(--cr);
    border: 1.5px solid rgba(196, 113, 74, 0.13);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--dk);
    outline: none;
    transition: all 0.3s;
}

#osho-app .field input:focus {
    border-color: var(--t);
    box-shadow: 0 0 0 3px rgba(196, 113, 74, 0.09);
    background: #fff;
}

#osho-app .field input::placeholder {
    color: rgba(90, 64, 56, 0.32);
}

/* STEP LABELS & TITLES */
#osho-app .slbl {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--t);
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

#osho-app .slbl::before,
#osho-app .slbl::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--t);
    opacity: 0.36;
}

#osho-app .h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(27px, 4.5vw, 40px);
    font-weight: 400;
    line-height: 1.14;
    color: var(--dk);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    text-align: center;
}

#osho-app .h2 em {
    font-style: italic;
    color: var(--t);
}

#osho-app .theme-sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--t);
    line-height: 1.65;
    text-align: center;
    max-width: 440px;
    margin: 0 auto 34px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
}

/* THEMES */
#osho-app .tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    #osho-app .tgrid {
        grid-template-columns: 1fr;
    }
}

#osho-app .tc {
    background: #fff;
    border: 1.5px solid rgba(196, 113, 74, .12);
    border-radius: 20px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all .4s cubic-bezier(.2, 1, .3, 1);
    position: relative;
    text-align: left;
}

#osho-app .tc:hover {
    border-color: var(--tl);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(196, 113, 74, 0.15);
}

#osho-app .tc.active {
    border-color: var(--t);
    background: linear-gradient(145deg, #ffffff, var(--nl));
    box-shadow: 0 20px 50px rgba(196, 113, 74, 0.2);
}

#osho-app .tc-ck {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 22px;
    height: 22px;
    background: var(--t);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
}

#osho-app .tc.active .tc-ck {
    opacity: 1;
    transform: scale(1);
}

#osho-app .tc-ck svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}

#osho-app .tc-ic {
    font-size: 26px;
    margin-bottom: 15px;
    width: 46px;
    height: 46px;
    background: var(--nl);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#osho-app .tc:hover .tc-ic,
#osho-app .tc.active .tc-ic {
    background: var(--t);
    transform: rotate(-4deg) scale(1.06);
}

#osho-app .tc-nm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 3px;
    line-height: 1.2;
}

#osho-app .tc-tg {
    font-size: 10px;
    color: var(--t);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

#osho-app .tc-ds {
    font-size: 12px;
    color: var(--mi);
    font-weight: 300;
    line-height: 1.65;
    flex: 1;
}

#osho-app .tc-ln {
    height: 2px;
    background: linear-gradient(90deg, var(--t), transparent);
    border-radius: 2px;
    margin-top: 13px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#osho-app .tc:hover .tc-ln,
#osho-app .tc.active .tc-ln {
    transform: scaleX(1);
}

/* WHEEL CONTAINER */
#osho-app .wheel-container {
    position: relative;
    width: 500px;
    height: 500px;
    max-width: 90vw;
    max-height: 90vw;
    margin: 0 auto;
}

#osho-app .wheel-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #FAFAF8, #F2E8DF);
    border-radius: 50%;
    border: 2px solid rgba(196, 113, 74, 0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 18px rgba(196, 113, 74, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

#osho-app .hub-sym {
    font-size: 24px;
    color: var(--t);
    animation: hpulse 3s ease-in-out infinite;
}

#osho-app .hub-txt {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--mi);
    margin-top: 2px;
}

#osho-app .wheel-ptr {
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 24px;
    background: linear-gradient(180deg, var(--t), transparent);
    border-radius: 3px;
    z-index: 21;
    filter: drop-shadow(0 0 5px rgba(196, 113, 74, 0.7));
}

#osho-app .wheel-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

#osho-app .spin-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t);
    background: transparent;
    border: 1.5px solid rgba(196, 113, 74, 0.36);
    border-radius: 100px;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.3s;
}

#osho-app .spin-btn:hover {
    background: rgba(196, 113, 74, 0.06);
    border-color: var(--t);
}

#osho-app .w-hint {
    font-size: 12px;
    color: var(--mi);
    font-weight: 300;
    font-style: italic;
    text-align: center;
}

/* TRAY */
#osho-app .tray {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

#osho-app .tslot {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.3;
    transition: opacity 0.5s;
}

#osho-app .tslot.filled {
    opacity: 1;
}

#osho-app .tc-img {
    width: 65px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid var(--t);
    margin-bottom: 8px;
    background: var(--nl);
}

#osho-app .tc-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t);
    border: 1px dashed var(--t);
}

/* MODAL / GATE */
#osho-app .s-gate {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 26, 20, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#osho-app .gate-box {
    background: #fff;
    border-radius: 25px;
    padding: 45px 35px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(196, 113, 74, 0.1);
}

#osho-app .gate-icon {
    font-size: 40px;
    color: var(--t);
    margin-bottom: 20px;
}

#osho-app .gate-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

#osho-app .gate-h2 em {
    font-style: italic;
    color: var(--t);
}

#osho-app .gate-txt {
    font-size: 15px;
    color: var(--mi);
    margin-bottom: 30px;
}

#osho-app .gate-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* STEP 5: OUTCOME CONTENT */
#osho-app #s5 {
    padding: 56px 24px;
    position: relative;
}

#osho-app #s5::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 56% 56% at 50% 36%, rgba(196, 113, 74, .09) 0%, transparent 56%),
        radial-gradient(ellipse 74% 36% at 50% 100%, rgba(232, 213, 196, .36) 0%, transparent 50%);
    pointer-events: none;
}

#osho-app .cwrap {
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

#osho-app .cicon {
    width: 74px;
    height: 74px;
    background: linear-gradient(135deg, var(--t), var(--tl));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    margin: 0 auto 24px;
    box-shadow: 0 14px 36px rgba(196, 113, 74, 0.3);
    animation: popIn .6s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

#osho-app .ch2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--dk);
    line-height: 1.14;
    margin-bottom: 13px;
}

#osho-app .ch2 em {
    font-style: italic;
    color: var(--t);
}

#osho-app .ctxt {
    font-size: 14px;
    font-weight: 300;
    color: var(--mi);
    line-height: 1.72;
    margin-bottom: 26px;
}

#osho-app .sitbox {
    background: var(--nl);
    border-left: 3px solid var(--t);
    border-radius: 0 13px 13px 0;
    padding: 16px 20px;
    text-align: left;
    margin-bottom: 26px;
}

#osho-app .sitlbl {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--t);
    margin-bottom: 5px;
}

#osho-app .sittxt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--dk);
    line-height: 1.42;
}

#osho-app .ctacopy {
    font-size: 13px;
    color: var(--mi);
    font-weight: 300;
    margin-bottom: 11px;
}


/* Tinh chỉnh kh vực nút bấm */
#osho-app .gbtn {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--mi);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: .65;
    transition: opacity .2s;
}

#osho-app .tcta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#osho-app .reveal-btn-wrap {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

:where(.wp-site-blocks)>* {
    margin-block-start: 0;
}

/* REVEAL WRAP (Step 5) */
#osho-app .reveal-wrap {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

#osho-app .step.on .reveal-wrap {
    opacity: 1;
    transform: translateY(0);
}

#osho-app .reveal-header {
    margin-bottom: 50px;
}

#osho-app .reveal-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 600px) {
    #osho-app .reveal-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

#osho-app .rcard-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
}

/* 3D Card Flip Reveal */
#osho-app .card-flipper {
    perspective: 1000px;
}
#osho-app .card-inner {
    position: relative;
    width: 140px;
    height: 210px;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}
#osho-app .card-inner.flipped {
    transform: rotateY(180deg);
}
#osho-app .card-front-face, #osho-app .card-back-face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(196, 113, 74, 0.18);
    border: 1px solid rgba(196, 113, 74, 0.2);
}
#osho-app .card-back-face {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#osho-app .card-back-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#osho-app .card-front-face {
    background: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

#osho-app .rc-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--t);
    margin-bottom: 12px;
    font-weight: 500;
}

#osho-app .rc-box {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    background: #fff;
    overflow: hidden;
}

#osho-app .rc-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#osho-app .rc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--dk);
    line-height: 1.2;
}

#osho-app .reveal-narrative {
    text-align: left;
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    border: 1.5px solid rgba(196, 113, 74, 0.08);
    box-shadow: 0 30px 90px rgba(42, 26, 20, 0.05);
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dk);
    font-family: 'Cormorant Garamond', serif;
}

#osho-app .reveal-narrative p {
    margin-bottom: 25px;
}

#osho-app .reveal-narrative .card-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--t);
    margin-bottom: 8px;
    font-weight: 600;
}

#osho-app .reveal-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(196, 113, 74, 0.1);
}

#osho-app .f-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

@media (max-width: 600px) {
    #osho-app .f-btns {
        flex-direction: column;
        align-items: stretch;
    }
    #osho-app .reveal-narrative {
        padding: 30px 20px;
        font-size: 16px;
    }
}

/* LOADING OVERLAY */
#osho-app .loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(250, 246, 242, 0.95);
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#osho-app .loading-overlay.active {
    display: flex;
}

#osho-app .lotus-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#osho-app #lotusCanvas {
    display: block;
    max-width: 280px;
    height: auto;
}

#osho-app .lotus-text-area {
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
    padding: 0 24px;
}

#osho-app .lotus-main {
    font-family: var(--serif);
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 300;
    font-style: italic;
    color: var(--dk);
    opacity: 0;
    transition: opacity 1s ease;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 10px;
}

#osho-app .lotus-main.on {
    opacity: 0.85;
}

#osho-app .lotus-cue {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--t);
    opacity: 0;
    transition: opacity 0.8s ease;
    font-weight: 500;
}

#osho-app .lotus-cue.on {
    opacity: 0.75;
}

/* --- NEW PICK YOUR CARDS SCREEN (HOLD & DRAW) --- */
#osho-app #s3-5 {
    background: var(--cr);
    color: var(--mi);
    overflow: hidden;
}

#osho-app #cardCanvas { position:absolute; inset:0; z-index:2; }
#osho-app #pCanvas    { position:absolute; inset:0; z-index:5; pointer-events:none; }

#osho-app #drawOver {
    position: absolute; inset: 0; z-index: 20;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    padding: 32px 24px;
    pointer-events: none;
}

#osho-app #drawHdr { text-align: center; }

#osho-app #instW {
    position: absolute; z-index: 8; pointer-events: none;
    left: 0; right: 0; text-align: center;
    transition: opacity .5s;
}

#osho-app .dmi {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(18px, 4vw, 26px);
    color: var(--dk);
    margin-bottom: 6px;
}

#osho-app .dsi {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: .2em;
    color: rgba(138, 104, 88, 0.6);
    text-transform: uppercase;
}

#osho-app #holdRing {
    position: absolute; z-index: 9;
    opacity: 0; transition: opacity .3s;
    pointer-events: none;
}

#osho-app #drawSt {
    position: absolute; left: 0; right: 0; bottom: 180px;
    text-align: center; z-index: 18; pointer-events: none;
}

#osho-app .dst {
    font-size: 10px; font-weight: 300; letter-spacing: .2em;
    color: var(--mi); text-transform: uppercase; margin-bottom: 10px;
}

#osho-app .dots { display: flex; gap: 10px; justify-content: center; }
#osho-app .dot {
    width: 7px; height: 7px; border-radius: 50%;
    border: 1.5px solid rgba(196, 113, 74, 0.3);
    background: transparent; transition: all .45s;
}
#osho-app .dot.on {
    background: var(--t); border-color: var(--t);
    box-shadow: 0 0 10px rgba(196, 113, 74, 0.6);
}

#osho-app #chosen {
    position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
    display: flex; align-items: center; justify-content: center; gap: 14px;
    z-index: 19; pointer-events: none; padding: 0 20px;
    background: linear-gradient(to top, rgba(250, 246, 242, .99) 60%, transparent);
}

#osho-app .cslot {
    flex: 1; max-width: 98px; height: 120px; border-radius: 8px;
    border: 1px dashed rgba(196, 113, 74, 0.25);
    display: flex; align-items: center; justify-content: center;
    position: relative; transition: border-color .4s;
}
#osho-app .cslot.filled { border-color: rgba(196, 113, 74, 0.5); border-style: solid; }

#osho-app .slbl-c {
    position: absolute; top: -20px; font-size: 7px; font-weight: 500;
    letter-spacing: .18em; color: var(--mi); text-transform: uppercase;
    white-space: nowrap;
}

#osho-app .rev-card {
    width: 82px; height: 114px; border-radius: 7px; overflow: hidden;
    border: 1px solid rgba(196, 113, 74, 0.35);
    box-shadow: 0 4px 16px rgba(42, 26, 20, 0.12);
    opacity: 0; transform: scale(.75) translateY(16px);
    transition: opacity .5s cubic-bezier(.23, 1, .32, 1), transform .5s cubic-bezier(.23, 1, .32, 1);
    background: #fff; display: flex; flex-direction: column;
}
#osho-app .rev-card.show { opacity: 1; transform: scale(1) translateY(0); }
#osho-app .rev-card canvas { width: 100%; flex: 1; display: block; }

#osho-app .rev-name {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 8.5px; color: var(--dk); text-align: center;
    padding: 3px 4px; background: var(--cr);
    border-top: 1px solid rgba(196, 113, 74, 0.12); line-height: 1.2;
}

#osho-app #flyCard { position: absolute; z-index: 50; pointer-events: none; display: none; transform-style: preserve-3d; }
#osho-app .flyb, #osho-app .flyf { position: absolute; inset: 0; border-radius: 9px; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
#osho-app .flyb { overflow: hidden; box-shadow: 0 12px 40px rgba(42, 26, 20, 0.18), 0 4px 12px rgba(196, 113, 74, 0.14); }
#osho-app .flyf {
    background: linear-gradient(155deg, var(--cr), var(--nl));
    border: 1px solid rgba(196, 113, 74, 0.35);
    transform: rotateY(180deg); display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 14px 10px;
    text-align: center; box-shadow: 0 12px 40px rgba(42, 26, 20, 0.15);
}
#osho-app .flyf::before { content: ''; position: absolute; inset: 8px; border: .5px solid rgba(196, 113, 74, 0.18); border-radius: 6px; }

#osho-app .ffpos  { font-size: 7.5px; font-weight: 500; letter-spacing: .18em; color: var(--t); text-transform: uppercase; margin-bottom: 8px; }
#osho-app .ffline { width: 18px; height: .5px; background: rgba(196, 113, 74, 0.4); margin: 8px auto; }
#osho-app .ffname { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--dk); line-height: 1.3; }

#osho-app #rdgBtn {
    position: absolute; z-index: 22; bottom: 170px; left: 50%;
    transform: translateX(-50%); font-family: 'DM Sans', sans-serif;
    font-weight: 500; font-size: 11px; letter-spacing: .2em;
    text-transform: uppercase; color: #fff; background: var(--t);
    border: none; border-radius: 40px; padding: 13px 32px;
    box-shadow: 0 6px 24px rgba(196, 113, 74, 0.35);
    opacity: 0; pointer-events: none; transition: opacity .5s;
    cursor: pointer; white-space: nowrap;
}
#osho-app #rdgBtn.show { opacity: 1; pointer-events: auto; }
#osho-app #rdgBtn:hover { background: var(--td); }

/* LANDING PAGE V2 STYLES */
.crs-landing-v2 {
    --cream: #F5EDE4;
    --cream2: #FAF6F2;
    --oat: #E8D5C0;
    --terra: #C4825A;
    --terra-light: #D4966E;
    --gold: #C9956A;
    --text: #2C1A0E;
    --text-mid: #6B4C35;
    --text-light: #9B7355;
    --border: rgba(196,130,90,0.15);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
    
    background: var(--cream2);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.5;
    overflow-x: hidden;
}

@keyframes crs-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes crs-float0 { 0%,100%{transform:rotate(-7deg) translateY(0)} 50%{transform:rotate(-7deg) translateY(-12px)} }
@keyframes crs-float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes crs-float2 { 0%,100%{transform:rotate(7deg) translateY(0)} 50%{transform:rotate(7deg) translateY(-10px)} }
@keyframes crs-pulse { 0%,100%{opacity:0.7;transform:scale(1)} 50%{opacity:1;transform:scale(1.12)} }

.crs-landing-v2 .fade-up { opacity:0; transform:translateY(28px); transition:opacity 0.9s cubic-bezier(0.34,1.1,0.64,1), transform 0.9s cubic-bezier(0.34,1.1,0.64,1); }
.crs-landing-v2 .fade-up.visible { opacity:1; transform:translateY(0); }

/* TICKER */
.crs-ticker { background: var(--cream2); padding: 10px 0; overflow: hidden; white-space: nowrap; border-bottom: 1px solid var(--border); }
.crs-ticker-track { display: inline-flex; gap: 48px; animation: crs-ticker 30s linear infinite; }
.crs-ticker-item { font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.crs-ticker-item .stars { color: var(--terra); }
.crs-ticker-divider { color: rgba(196,130,90,0.3); }

/* BUTTON */
.crs-btn-main { display:inline-flex; align-items:center; justify-content:center; background:var(--terra); color:#fff; border:none; border-radius:40px; padding:17px 44px; font-family:var(--sans); font-size:10px; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; cursor:pointer; transition:all 0.35s; text-decoration:none; box-shadow:0 8px 32px rgba(196,130,90,0.28); width:fit-content; }
.crs-btn-main:hover { background:var(--terra-light); transform:translateY(-3px); box-shadow:0 14px 44px rgba(196,130,90,0.38); color: #fff; text-decoration: none; }

/* HERO */
.crs-hero-v2 { min-height:60vh; display: flex; align-items:center; background:var(--cream2); }
.crs-hero-inner { display:grid; grid-template-columns: 1.2fr 0.8fr; align-items:center; gap:0; max-width: 1200px; margin: 0 auto; width: 100%; }
.crs-hero-left { padding:40px 48px; display:flex; flex-direction:column; justify-content:center; }
.crs-hero-right { background:var(--oat); min-height:100%; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; padding: 100px 0; }
.crs-hero-gem { font-size:22px; color:var(--terra); animation:crs-pulse 3s ease-in-out infinite; margin-bottom:20px; display:block; }
.crs-hero-eyebrow { font-size:9px; font-weight:500; letter-spacing:0.28em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; opacity:0.85; }
.crs-hero-hook { font-family:var(--serif); font-size:clamp(14px,1.5vw,17px); color:var(--text-mid); font-style:italic; margin-bottom:8px; }
.crs-hero-h1 { font-family:var(--serif); font-size:clamp(34px,4.5vw,56px); font-weight:300; line-height:1.1; color:var(--text); margin-bottom:20px; border:none; }
.crs-hero-h1 em { font-style:italic; color:var(--terra); }
.crs-hero-pain { font-family:var(--serif); font-size:clamp(15px,1.6vw,18px); font-style:italic; color:var(--text-mid); line-height:1.7; margin-bottom:4px; }
.crs-hero-position { font-family:var(--sans); font-size:10px; letter-spacing:0.18em; text-transform:uppercase; color:var(--terra); margin-bottom:32px; margin-top:16px; }
.crs-hero-note { font-family:var(--serif); font-size:15px; color:var(--text-mid); font-style:italic; line-height:1.7; margin-top:24px; padding-top:24px; border-top:0.5px solid var(--border); }

.crs-cards-visual { position:relative; width:300px; height:380px; z-index:1; }
.crs-vis-card { position:absolute; width:110px; height:178px; border-radius:14px; background:var(--oat); box-shadow:0 20px 50px rgba(44,26,14,0.2); overflow:hidden; }
.crs-vis-card img { width:100%; height:100%; object-fit:cover; border-radius:12px; }
.crs-vis-card:nth-child(1) { left:0; top:40px; animation:crs-float0 3.4s 0s ease-in-out infinite; }
.crs-vis-card:nth-child(2) { left:95px; top:10px; animation:crs-float1 3.8s 0.3s ease-in-out infinite; z-index:2; }
.crs-vis-card:nth-child(3) { left:190px; top:50px; animation:crs-float2 3.2s 0.6s ease-in-out infinite; }
.crs-cards-caption { position:absolute; bottom:-36px; left:0; right:0; text-align:center; font-family:var(--serif); font-size:13px; font-style:italic; color:var(--text-mid); opacity:0.7; }

/* DIVIDER */
.crs-divider { display:flex; align-items:center; gap:16px; padding:60px 40px; max-width:900px; margin:0 auto; }
.crs-divider-line { flex:1; height:1px; background:rgba(196,130,90,0.15); }
.crs-divider-gem { color:var(--terra); font-size:14px; opacity:0.6; }

/* FOR YOU IF */
.crs-for-you { background:var(--cream); padding:100px 24px; }
.crs-for-you-inner { max-width:600px; margin:0 auto; text-align:center; }
.crs-for-you-list { max-width:520px; margin: 48px auto; list-style:none; text-align:left; }
.crs-section-eyebrow { font-size:9px; font-weight:500; letter-spacing:0.28em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; opacity:0.8; }
.crs-for-you-h { font-family:var(--serif); font-size:clamp(30px,5vw,50px); font-weight:300; line-height:1.12; color:var(--text); margin-bottom:48px; border:none; }
.crs-for-you-h em { font-style:italic; color:var(--terra); }
.crs-for-you-item { display:flex; align-items:flex-start; gap:18px; padding:20px 0; border-bottom:0.5px solid var(--border); font-family:var(--serif); font-size:clamp(16px,2vw,19px); color:var(--text); font-style:italic; line-height:1.5; }
.crs-for-you-item:first-child { border-top:0.5px solid var(--border); }
.crs-for-you-dot { width:5px; height:5px; border-radius:50%; background:var(--terra); flex-shrink:0; margin-top:9px; }
.crs-for-you-glimpse { font-family:var(--serif); font-size:clamp(15px,1.8vw,18px); color:var(--text-mid); font-style:italic; line-height:1.9; }

/* HOW IT WORKS */
.crs-how { background:var(--cream2); padding:100px 24px; }
.crs-how-inner { max-width:900px; margin:0 auto; }
.crs-how-headline { font-family:var(--serif); font-size:clamp(34px,5vw,54px); font-weight:300; line-height:1.1; color:var(--text); margin-bottom:72px; border:none; }
.crs-how-headline em { font-style:italic; color:var(--terra); }
.crs-how-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; margin-bottom:64px; }
.crs-how-step { border-top:1.5px solid var(--terra); padding-top:28px; }
.crs-how-step-num { font-family:var(--sans); font-size:10px; letter-spacing:0.2em; color:var(--terra); margin-bottom:12px; opacity:0.7; }
.crs-how-step-title { font-family:var(--sans); font-size:10px; letter-spacing:0.16em; color:var(--text); text-transform:uppercase; margin-bottom:14px; font-weight:500; }
.crs-how-step-body { font-family:var(--serif); font-size:16px; color:var(--text-mid); line-height:1.8; font-style:italic; }
.crs-how-themes { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.crs-how-theme { background:var(--cream); border:1px solid rgba(196,130,90,0.2); border-radius:22px; padding:32px 24px; transition:all 0.32s; }
.crs-how-theme:hover { border-color:var(--terra); transform:translateY(-5px); box-shadow:0 16px 40px rgba(196,130,90,0.12); }
.crs-how-theme-name { font-family:var(--serif); font-size:19px; font-weight:500; color:var(--text); margin-bottom:6px; line-height:1.25; }
.crs-how-theme-label { font-family:var(--sans); font-size:9px; letter-spacing:0.2em; text-transform:uppercase; color:var(--terra); margin-bottom:14px; opacity:0.8; }
.crs-how-theme-body { font-family:var(--serif); font-size:14px; font-style:italic; color:var(--text-light); line-height:1.65; }

/* EXPERIENCE */
.crs-experience { background:var(--cream); padding:100px 24px; }
.crs-experience-inner { max-width:900px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.crs-exp-label { font-size:9px; font-weight:500; letter-spacing:0.28em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; opacity:0.8; }
.crs-exp-headline { font-family:var(--serif); font-size:clamp(28px,3.5vw,42px); font-weight:300; line-height:1.15; color:var(--text); margin-bottom:28px; border:none; }
.crs-exp-headline em { font-style:italic; color:var(--terra); }
.crs-exp-body p { font-family:var(--serif); font-size:16px; color:var(--text-mid); line-height:1.85; margin-bottom:16px; font-style:italic; }
.crs-exp-quote { margin-top:36px; padding-left:22px; border-left:2px solid var(--terra); }
.crs-exp-quote-text { font-family:var(--serif); font-size:17px; color:var(--text); font-style:italic; line-height:1.7; margin-bottom:10px; }
.crs-exp-quote-attr { font-family:var(--sans); font-size:10px; letter-spacing:0.1em; color:var(--text-light); }
.crs-exp-reading-preview { background:var(--cream2); border-radius:24px; padding:36px 32px; border:1px solid var(--border); box-shadow:0 8px 40px rgba(196,130,90,0.07); }
.crs-exp-reading-theme { font-family:var(--sans); font-size:9px; letter-spacing:0.18em; color:var(--terra); margin-bottom:8px; opacity:0.8; text-transform:uppercase; }
.crs-exp-reading-card { font-family:var(--serif); font-size:20px; color:var(--text); font-weight:500; margin-bottom:20px; padding-bottom:20px; border-bottom:0.5px solid var(--border); }
.crs-exp-reading-text { font-family:var(--serif); font-size:15px; color:var(--text-mid); line-height:1.85; margin-bottom:14px; font-style:italic; }
.crs-exp-reading-sit { font-family:var(--serif); font-size:14px; color:var(--text); line-height:1.7; margin-top:20px; padding-top:20px; border-top:0.5px solid var(--border); }

/* FAQ */
.crs-faq { background:var(--cream); padding:100px 24px; }
.crs-faq-inner { max-width:720px; margin:0 auto; }
.crs-faq-headline { font-family:var(--serif); font-size:clamp(30px,4vw,46px); font-weight:300; line-height:1.15; color:var(--text); margin-bottom:56px; border:none; }
.crs-faq-headline em { font-style:italic; color:var(--terra); }
.crs-faq-item { border-top:0.5px solid var(--border); padding:24px 0; }
.crs-faq-item:last-child { border-bottom:0.5px solid var(--border); }
.crs-faq-q { font-family:var(--serif); font-size:19px; color:var(--text); font-weight:400; margin-bottom:12px; line-height:1.4; }
.crs-faq-a { font-family:var(--serif); font-size:15.5px; color:var(--text-mid); line-height:1.85; font-style:italic; }

/* FINAL CTA */
.crs-final-cta { background:var(--oat); padding:120px 24px; text-align:center; position:relative; overflow:hidden; }
.crs-final-cta::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 60%, rgba(196,130,90,0.08) 0%, transparent 60%); pointer-events:none; }
.crs-final-cta-inner { position:relative; max-width:640px; margin:0 auto; }
.crs-final-eyebrow { font-size:9px; font-weight:500; letter-spacing:0.28em; text-transform:uppercase; color:var(--gold); margin-bottom:20px; opacity:0.8; }
.crs-final-headline { font-family:var(--serif); font-size:clamp(42px,6vw,72px); color:var(--text); line-height:1.08; font-weight:300; margin-bottom:20px; border:none; }
.crs-final-headline em { color:var(--terra); font-style:italic; display:block; }
.crs-final-subline { font-family:var(--serif); font-size:clamp(16px,2vw,20px); color:var(--text-mid); font-style:italic; margin-bottom:48px; line-height:1.6; }
.crs-final-note { display:block; font-family:var(--sans); font-size:11px; color:var(--text-light); letter-spacing:0.06em; margin-top:20px; margin-bottom:20px; }

/* BREATHING STEP STYLES */
.lotus-step-container { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; max-width: 600px; margin: 0 auto; }
.lotus-visual { position: relative; margin-bottom: 40px; }
.lotus-text-area-step { text-align: center; min-height: 100px; }
.lotus-main-step { font-family: var(--serif); font-size: 32px; color: var(--dk); margin-bottom: 12px; opacity: 0; transition: opacity 1s; }
.lotus-main-step.on { opacity: 1; }
.lotus-cue-step { font-family: var(--sans); font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--t); opacity: 0; transition: opacity 1s; }
.lotus-cue-step.on { opacity: 1; }

@media (max-width:768px) {
  .crs-hero-inner { grid-template-columns:1fr; }
  .crs-hero-right { min-height:300px; padding:48px 24px; }
  .crs-how-steps { grid-template-columns:1fr; }
  .crs-how-themes { grid-template-columns:1fr; }
  .crs-experience-inner { grid-template-columns:1fr; }
  .crs-btn-main { width:100%; }
}