/* ====================================================
   AI University — Premium Stylesheet
   ==================================================== */

/* Base */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    background: #0A0A0F;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    cursor: none;
    position: relative;
}

/* Hide native cursor on interactive elements */
a, button, [data-scroll], .faq-trigger, .feature-card, .pricing-card, .proof-card {
    cursor: none;
}

/* ===================== Custom Cursor ===================== */
#cursor-dot,
#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: transform;
}

#cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255,255,255,0.8);
}

#cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(124, 58, 237, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5), inset 0 0 12px rgba(124, 58, 237, 0.2);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

#cursor-ring.cursor-hover {
    width: 60px;
    height: 60px;
    border-color: rgba(245, 158, 11, 0.8);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.7), inset 0 0 18px rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.08);
}

@media (max-width: 768px) {
    #cursor-dot, #cursor-ring { display: none; }
    body { cursor: auto; }
    a, button, [data-scroll] { cursor: pointer; }
}

/* ===================== Scroll Progress ===================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #7C3AED, #F59E0B);
    z-index: 100;
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.7);
    transition: width 0.05s linear;
}

/* ===================== Aurora Background ===================== */
.aurora-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.aurora-1 {
    width: 600px;
    height: 600px;
    background: rgba(124, 58, 237, 0.12);
    top: -10%;
    left: -10%;
    animation: drift1 28s ease-in-out infinite;
}

.aurora-2 {
    width: 700px;
    height: 700px;
    background: rgba(245, 158, 11, 0.08);
    bottom: -15%;
    right: -10%;
    animation: drift2 35s ease-in-out infinite;
}

.aurora-3 {
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.07);
    top: 40%;
    left: 50%;
    animation: drift3 22s ease-in-out infinite;
}

@keyframes drift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20vw, 10vh) scale(1.15); }
    66% { transform: translate(8vw, 25vh) scale(0.92); }
}

@keyframes drift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15vw, -18vh) scale(1.18); }
}

@keyframes drift3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    25% { transform: translate(-30%, -65%) scale(1.12); }
    50% { transform: translate(-65%, -40%) scale(0.88); }
    75% { transform: translate(-45%, -30%) scale(1.05); }
}

/* ===================== Noise Overlay ===================== */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===================== Glass Effects ===================== */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-subtle {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===================== Gradient Text ===================== */
.gradient-text {
    background: linear-gradient(135deg, #7C3AED 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ===================== Buttons ===================== */
.btn-primary,
.btn-ghost,
.btn-gold {
    position: relative;
    will-change: transform;
    transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, background 0.25s ease;
    overflow: visible;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.6), inset 0 1px 0 rgba(255,255,255,0.2);
    background: linear-gradient(135deg, #8B4FFF 0%, #6D28D9 100%);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #0A0A0F;
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
    font-weight: 700;
}

.btn-gold:hover {
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.6);
}

/* Disabled buy button — visually inert, "Available Soon" state */
.btn-disabled {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.42);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    font-family: 'Inter', sans-serif;
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
    text-align: center;
    letter-spacing: 0.04em;
}

.btn-disabled .lock-emoji {
    margin-right: 6px;
    opacity: 0.7;
    filter: grayscale(0.6);
}

/* Waitlist button — purple-tinted secondary call to action */
.btn-waitlist {
    position: relative;
    background: rgba(124, 58, 237, 0.12);
    color: #fff;
    border: 1px solid rgba(124, 58, 237, 0.45);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-waitlist:hover {
    background: rgba(124, 58, 237, 0.22);
    border-color: rgba(124, 58, 237, 0.75);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.32);
    transform: translateY(-1px);
}

/* Gold-themed waitlist for the All In tier */
.btn-waitlist-gold {
    background: rgba(245, 158, 11, 0.10);
    border-color: rgba(245, 158, 11, 0.5);
    color: #FCD27A;
}

.btn-waitlist-gold:hover {
    background: rgba(245, 158, 11, 0.20);
    border-color: rgba(245, 158, 11, 0.85);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.32);
    color: #FFE6A8;
}

/* ===================== Waitlist Signup Tracker ===================== */
.waitlist-tracker {
    margin: 0 0 24px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.25);
}

.waitlist-tracker-gold {
    background: rgba(245, 158, 11, 0.07);
    border-color: rgba(245, 158, 11, 0.28);
}

.waitlist-tracker-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.waitlist-tracker-label {
    color: #d1d5db;
    letter-spacing: 0.04em;
}

.waitlist-tracker-num {
    font-weight: 500;
    color: #cbd5e1;
    font-size: 0.82rem;
}

.waitlist-tracker-num span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #C4B5FD;
    margin-right: 4px;
}

.waitlist-tracker-gold .waitlist-tracker-num span {
    color: #FCD34D;
}

.waitlist-tracker-bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.waitlist-tracker-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #7C3AED, #A78BFA);
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
}

.waitlist-tracker-fill-gold {
    background: linear-gradient(90deg, #F59E0B, #FCD34D);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.waitlist-tracker-note {
    margin: 12px 0 0;
    font-size: 0.78rem;
    color: #9ca3af;
    line-height: 1.55;
}

.waitlist-tracker-note strong {
    font-weight: 700;
}

/* ===================== Hero ===================== */
.hero-gradient {
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(124, 58, 237, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(245, 158, 11, 0.10), transparent 60%);
}

.hero-title {
    text-shadow: 0 0 80px rgba(124, 58, 237, 0.3);
    letter-spacing: -0.03em;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Hero floating geometric elements */
.hero-float-el {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
}

.el-1 {
    top: 12%;
    right: 10%;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(124, 58, 237, 0.35);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.25), inset 0 0 30px rgba(124, 58, 237, 0.08);
}

.el-2 {
    bottom: 18%;
    left: 8%;
    width: 80px;
    height: 80px;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.6) 4px, transparent 5px),
        radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.5) 3px, transparent 4px),
        radial-gradient(circle at 40% 70%, rgba(245, 158, 11, 0.55) 5px, transparent 6px),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.4) 3px, transparent 4px);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
}

.el-3 {
    top: 18%;
    left: 6%;
    width: 64px;
    height: 64px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='none' stroke='%23F59E0B' stroke-width='1.5' opacity='0.6'><polygon points='30,5 55,50 5,50'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
}

.el-4 {
    bottom: 14%;
    right: 8%;
    width: 90px;
    height: 90px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.2);
}

.el-5 {
    top: 50%;
    right: 18%;
    width: 18px;
    height: 18px;
    background: rgba(124, 58, 237, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.7);
}

/* Scroll line indicator */
.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #7C3AED, transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: #fff;
    box-shadow: 0 0 12px rgba(255,255,255,0.8);
    animation: scrollPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes scrollPulse {
    0% { top: -20px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 60px; opacity: 0; }
}

/* ===================== Section Dividers ===================== */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 1s ease, transform 1.2s ease;
}

.section-divider.active {
    opacity: 1;
    transform: scaleX(1);
}

/* ===================== Section Heading Common ===================== */
.eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #d4d4d8;
    padding-bottom: 6px;
    background-image: linear-gradient(90deg, #7C3AED, #F59E0B);
    background-size: 60% 1.5px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
}

.section-title {
    letter-spacing: -0.03em;
    line-height: 1.0;
}

.section-title .word {
    display: inline-block;
    margin-right: 0.25em;
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

/* ===================== Proof Section ===================== */
#proof {
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.03) 50%, transparent 100%);
}

.proof-banner {
    max-width: 920px;
    margin: 0 auto 64px;
    padding: 2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.7), rgba(124, 58, 237, 0.6), rgba(245, 158, 11, 0.7));
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.25), 0 0 120px rgba(245, 158, 11, 0.12);
    animation: bannerGlow 3.5s ease-in-out infinite;
}

@keyframes bannerGlow {
    0%, 100% { box-shadow: 0 0 60px rgba(245, 158, 11, 0.25), 0 0 120px rgba(245, 158, 11, 0.12); }
    50% { box-shadow: 0 0 80px rgba(245, 158, 11, 0.45), 0 0 160px rgba(245, 158, 11, 0.22); }
}

.proof-banner-inner {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.proof-banner-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.7));
    animation: bolt 1.6s ease-in-out infinite;
}

@keyframes bolt {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(-6deg); }
}

.proof-banner-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f3f4f6;
}

.proof-30 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.4em;
    letter-spacing: -0.02em;
    text-shadow: 0 0 24px rgba(245, 158, 11, 0.7);
}

/* Timeline */
.timeline-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    padding: 32px 0 16px;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.3), rgba(245, 158, 11, 0.3));
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #F59E0B);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.7), 0 0 40px rgba(245, 158, 11, 0.3);
    margin-bottom: 18px;
    position: relative;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(124, 58, 237, 0.4);
    animation: pulseRing 2.4s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.timeline-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 16px;
    width: 100%;
}

.timeline-week {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #7C3AED, #F59E0B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.timeline-text {
    color: #d4d4d8;
    font-size: 0.92rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .timeline-strip {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .timeline-line {
        top: 6%;
        bottom: 6%;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(124, 58, 237, 0.3), rgba(245, 158, 11, 0.3));
    }
    .timeline-item {
        flex-direction: row;
        text-align: left;
        gap: 18px;
    }
    .timeline-dot { margin-bottom: 0; flex-shrink: 0; }
    .timeline-card { flex: 1; }
}

/* ===================== Proof Stack (orbit on hover) ===================== */
.proof-stack {
    position: relative;
    width: 100%;
    max-width: 760px;
    height: 560px;
    margin: 0 auto;
    perspective: 1400px;
}

.proof-orbit {
    position: absolute;
    inset: 0;
    transform-origin: 50% 50%;
    will-change: transform;
}

.proof-stack:hover .proof-orbit {
    animation: proof-orbit-spin 18s linear infinite;
}

@keyframes proof-orbit-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.orbit-slot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    aspect-ratio: 16 / 10;
    margin-top: -100px;
    margin-left: -160px;
    transform-origin: 50% 50%;
    transition: transform 1s cubic-bezier(0.34, 1.4, 0.5, 1);
    will-change: transform;
}

/* Stacked default — corners peek out behind the top card */
.orbit-slot[data-pos="1"] { transform: translate(-10px, -14px) rotate(-7deg); z-index: 4; }
.orbit-slot[data-pos="2"] { transform: translate(12px, -6px)   rotate(4deg);  z-index: 3; }
.orbit-slot[data-pos="3"] { transform: translate(-4px, 8px)    rotate(-3deg); z-index: 2; }
.orbit-slot[data-pos="4"] { transform: translate(14px, 18px)   rotate(6deg);  z-index: 1; }

/* On hover, slots fly out to four cardinal points around the center */
.proof-stack:hover .orbit-slot[data-pos="1"] { transform: translate(0, -210px) rotate(0deg); }
.proof-stack:hover .orbit-slot[data-pos="2"] { transform: translate(260px, 0)  rotate(0deg); }
.proof-stack:hover .orbit-slot[data-pos="3"] { transform: translate(0, 210px)  rotate(0deg); }
.proof-stack:hover .orbit-slot[data-pos="4"] { transform: translate(-260px, 0) rotate(0deg); }

.proof-img {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.85);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(124, 58, 237, 0.25),
        0 0 30px rgba(124, 58, 237, 0.15);
    transform-origin: 50% 50%;
    will-change: transform;
}

/* Counter-rotation keeps each image upright while the orbit spins */
.proof-stack:hover .proof-img {
    animation: proof-img-counter-spin 18s linear infinite;
}

@keyframes proof-img-counter-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

.proof-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.proof-stack-hint {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.78rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(245, 158, 11, 0.7);
    pointer-events: none;
    transition: opacity 0.5s ease;
    white-space: nowrap;
}

.proof-stack:hover .proof-stack-hint { opacity: 0; }

/* Make individual proof cards feel clickable */
.proof-img { cursor: pointer; }

/* Frozen state — proof clicked, freeze orbit + counter-spin in place */
.proof-stack.frozen .proof-orbit,
.proof-stack.frozen .proof-img {
    animation-play-state: paused !important;
}

/* While frozen, gently dim the unselected cards so the focus is on the lightbox */
.proof-stack.frozen .orbit-slot { transition: opacity 0.6s ease, transform 1s cubic-bezier(0.34, 1.4, 0.5, 1); }
.proof-stack.frozen .orbit-slot { opacity: 0.45; }
.proof-stack.frozen .orbit-slot.is-active { opacity: 0; }

/* ===================== Proof Lightbox ===================== */
.proof-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.proof-lightbox.open {
    pointer-events: auto;
    opacity: 1;
}

.proof-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.55);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: backdrop-filter 0.6s ease, -webkit-backdrop-filter 0.6s ease, background 0.6s ease;
}

.proof-lightbox.open .proof-lightbox-backdrop {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(10, 10, 15, 0.7);
}

.proof-lightbox-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    max-width: min(90vw, 1100px);
    max-height: 86vh;
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(245, 158, 11, 0.18));
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 60px rgba(124, 58, 237, 0.35);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.34, 1.4, 0.5, 1), opacity 0.45s ease;
}

.proof-lightbox.open .proof-lightbox-frame {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.proof-lightbox-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(86vh - 28px);
    object-fit: contain;
    border-radius: 14px;
    background: #0A0A0F;
}

.proof-lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #F59E0B);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.25s ease;
    z-index: 2;
}

.proof-lightbox-close:hover { transform: scale(1.12) rotate(90deg); }

@media (max-width: 768px) {
    .proof-stack { height: 460px; max-width: 520px; }
    .orbit-slot { width: 240px; margin-left: -120px; margin-top: -75px; }
    .proof-stack:hover .orbit-slot[data-pos="1"] { transform: translate(0, -160px) rotate(0deg); }
    .proof-stack:hover .orbit-slot[data-pos="2"] { transform: translate(180px, 0)  rotate(0deg); }
    .proof-stack:hover .orbit-slot[data-pos="3"] { transform: translate(0, 160px)  rotate(0deg); }
    .proof-stack:hover .orbit-slot[data-pos="4"] { transform: translate(-180px, 0) rotate(0deg); }
}

@media (max-width: 480px) {
    .proof-stack { height: 380px; max-width: 360px; }
    .orbit-slot { width: 190px; margin-left: -95px; margin-top: -59px; }
    .proof-stack:hover .orbit-slot[data-pos="1"] { transform: translate(0, -120px) rotate(0deg); }
    .proof-stack:hover .orbit-slot[data-pos="2"] { transform: translate(130px, 0)  rotate(0deg); }
    .proof-stack:hover .orbit-slot[data-pos="3"] { transform: translate(0, 120px)  rotate(0deg); }
    .proof-stack:hover .orbit-slot[data-pos="4"] { transform: translate(-130px, 0) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
    .proof-stack:hover .proof-orbit,
    .proof-stack:hover .proof-img { animation: none; }
}

/* ===================== Feature Cards ===================== */
.feature-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
}

.feature-card:hover {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 18px 50px rgba(124, 58, 237, 0.18);
}

.feature-icon {
    font-size: 2.6rem;
    filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.4));
}

/* ===================== Pricing Cards ===================== */
.pricing-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
}

.pricing-card:hover {
    box-shadow: 0 18px 50px rgba(124, 58, 237, 0.2);
}

.tier-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #c4b5fd;
}

.tier-label-gold { color: #fcd34d; }

.price-amount {
    letter-spacing: -0.04em;
    line-height: 1.0;
}

.check {
    color: #7C3AED;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing Pro animated border */
.pricing-pro {
    background: transparent;
    border: none;
    overflow: hidden;
    isolation: isolate;
}

.pricing-pro-border {
    position: absolute;
    inset: -3px;
    border-radius: 24px;
    z-index: 0;
    pointer-events: none;
}

.pricing-pro-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(from 0deg, #7C3AED, #F59E0B, #EC4899, #7C3AED);
    animation: rotateBorder 3s linear infinite;
}

.pricing-pro-border::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 21px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing-pro-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #0A0A0F;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* ===================== FAQ ===================== */
.faq-item {
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    border-radius: 16px;
}

.faq-item.open {
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 28px rgba(124, 58, 237, 0.25), inset 0 0 0 1px rgba(124, 58, 237, 0.4);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    color: #7C3AED;
    transition: transform 0.4s ease, color 0.4s ease;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #F59E0B;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    padding: 0 26px;
}

.faq-item.open .faq-content {
    max-height: 320px;
    padding: 0 26px 22px;
}

/* ===================== Reveal Animations ===================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

/* ===================== Particle Burst ===================== */
.burst-particle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    will-change: transform, opacity;
}

/* ===================== Glitch Effect ===================== */
#brand-glitch {
    position: relative;
    display: inline-block;
}

#brand-glitch.glitch-active {
    animation: glitchAnim 0.3s steps(2, end);
}

#brand-glitch.glitch-active::before,
#brand-glitch.glitch-active::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    overflow: hidden;
}

#brand-glitch.glitch-active::before {
    transform: translate(2px, 0);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    -webkit-text-fill-color: #F59E0B;
    color: #F59E0B;
    background: none;
}

#brand-glitch.glitch-active::after {
    transform: translate(-2px, 0);
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    -webkit-text-fill-color: #7C3AED;
    color: #7C3AED;
    background: none;
}

@keyframes glitchAnim {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(2px, -1px); }
    60% { transform: translate(-1px, 2px); }
    80% { transform: translate(1px, -2px); }
    100% { transform: translate(0); }
}

/* ===================== Particles bg ===================== */
#particles-js canvas {
    display: block;
}

/* ===================== Responsive helpers ===================== */
@media (max-width: 768px) {
    .hero-float-el { transform: scale(0.65); }
    .el-1 { right: -2%; }
    .el-3 { left: -2%; }
}

/* Heading defaults for h1/h2/h3 luxury kerning */
h1, h2, h3 {
    letter-spacing: -0.03em;
    line-height: 1.0;
}

p {
    line-height: 1.8;
}

/* ===================== Gold check override ===================== */
.check-gold { color: #F59E0B; }

/* ===================== Marquee Strip ===================== */
.marquee-strip {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(245,158,11,0.06), rgba(124,58,237,0.08), rgba(245,158,11,0.06));
    border-top: 1px solid rgba(245,158,11,0.18);
    border-bottom: 1px solid rgba(245,158,11,0.18);
    padding: 14px 0;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: inline-flex;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #fcd34d;
    text-transform: uppercase;
    padding: 0 32px;
}

.marquee-sep {
    color: rgba(245,158,11,0.4);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================== Spots Sidebar ===================== */
.spots-sidebar {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 230px;
    z-index: 40;
    display: none;
}

@media (min-width: 1380px) {
    .spots-sidebar { display: block; }
}

.spots-sidebar-inner {
    background: rgba(10,10,15,0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 0 60px rgba(124,58,237,0.15), 0 0 0 1px rgba(124,58,237,0.08);
    position: relative;
}

/* Live presence pulse dot (top-right of sidebar) */
.live-pulse {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
    z-index: 2;
}

.live-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.45);
    animation: live-pulse-ring 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: -1;
}

.live-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
    animation: live-pulse-core 1.6s ease-in-out infinite;
}

@keyframes live-pulse-ring {
    0%   { transform: scale(0.8); opacity: 0.7; }
    70%  { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes live-pulse-core {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.55; }
}

.spots-header-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #c4b5fd;
    line-height: 1.4;
    margin: 0;
}

.spots-header-sub {
    font-size: 0.7rem;
    color: #71717a;
    margin: -8px 0 2px;
    line-height: 1.4;
}

.spot-tier {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.spot-tier:last-of-type { border-bottom: none; }

.spot-tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spot-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #c4b5fd;
}

.spot-name-gold { color: #fcd34d; }

.spot-count {
    font-size: 0.68rem;
    color: #71717a;
    font-variant-numeric: tabular-nums;
}

.spot-bar-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    overflow: hidden;
}

.spot-bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #7C3AED, #a855f7);
    box-shadow: 0 0 10px rgba(124,58,237,0.6);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.spot-bar-fill-pro {
    background: linear-gradient(90deg, #7C3AED, #F59E0B);
    box-shadow: 0 0 10px rgba(124,58,237,0.5);
}

.spot-bar-fill-gold {
    background: linear-gradient(90deg, #F59E0B, #fcd34d);
    box-shadow: 0 0 10px rgba(245,158,11,0.6);
}

.spot-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.spot-price-now {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
    color: #fff;
    transition: all 0.4s ease;
}

.spot-price-now.filled {
    text-decoration: line-through;
    color: #71717a;
    font-size: 0.85rem;
}

.spot-price-arrow {
    font-size: 0.75rem;
    color: #52525b;
}

.spot-price-next {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #F59E0B;
    opacity: 0.7;
}

/* ===================== Why Price Button ===================== */
.why-btn {
    width: 100%;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 12px;
    color: #c4b5fd;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 10px 12px;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-align: left;
}

.why-btn:hover {
    background: rgba(124,58,237,0.2);
    border-color: rgba(124,58,237,0.6);
    color: #fff;
}

.why-btn-icon { font-size: 1rem; flex-shrink: 0; }

/* ===================== Modal ===================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    pointer-events: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.modal-overlay.open {
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: all;
}

.modal-box {
    background: rgba(15,15,22,0.97);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 28px;
    padding: 40px 36px;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 0 80px rgba(124,58,237,0.25), 0 40px 80px rgba(0,0,0,0.6);
    position: relative;
    transform: scale(0.88) translateY(24px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 16px rgba(245,158,11,0.5));
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.modal-body p {
    font-size: 0.93rem;
    color: #d4d4d8;
    line-height: 1.7;
    margin: 0;
}

.modal-reason {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(124,58,237,0.06);
    border: 1px solid rgba(124,58,237,0.12);
    border-radius: 14px;
    padding: 14px 16px;
}

.modal-reason-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: #7C3AED;
    flex-shrink: 0;
    opacity: 0.8;
    line-height: 1.4;
}

.modal-reason div {
    font-size: 0.9rem;
    color: #d4d4d8;
    line-height: 1.65;
}

.modal-reason strong { color: #fff; }

.modal-note {
    font-size: 0.82rem !important;
    color: #71717a !important;
    font-style: italic;
}

.modal-cta-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem !important;
    color: #F59E0B !important;
    text-align: center;
}

/* ===================== Tier Group Headers ===================== */
.tier-group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tier-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tier-pill-starter {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.5);
    color: #c4b5fd;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.2);
}

.tier-pill-pro {
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(245,158,11,0.12));
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #e9d5ff;
    box-shadow: 0 0 16px rgba(124,58,237,0.15);
}

.tier-pill-elite {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fcd34d;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.18);
}

.tier-group-desc {
    font-size: 0.88rem;
    color: #71717a;
    line-height: 1.5;
    margin: 0;
}

.tier-group-note {
    margin-top: 18px;
    font-size: 0.8rem;
    color: #71717a;
    text-align: center;
    font-style: italic;
}

.tier-group-note-gold {
    color: #fcd34d;
    font-style: normal;
    font-weight: 500;
}

/* ===================== All In Counter (pricing card) ===================== */
.allin-counter {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.25);
    margin-top: 4px;
}

.allin-counter-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.allin-counter-label {
    font-size: 0.78rem;
    color: #d4d4d8;
    letter-spacing: 0.02em;
}

.allin-counter-num {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #fcd34d;
    line-height: 1;
}

.allin-counter-of {
    font-size: 0.85rem;
    color: #71717a;
}

.allin-counter-next {
    margin-top: 6px;
    font-size: 0.72rem;
    color: #a1a1aa;
    letter-spacing: 0.01em;
}

.price-prefix {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #a1a1aa;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* ===================== Quiz Rec — All In scarcity ===================== */
.quiz-rec-scarcity {
    margin-top: -4px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    color: #fcd34d;
    text-align: center;
    letter-spacing: 0.02em;
}

.quiz-rec-price-prefix {
    font-size: 0.7rem;
    font-weight: 500;
    color: #a1a1aa;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
}

/* ===================== Small Feature Cards ===================== */
.feature-card-sm {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform-style: preserve-3d;
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 170px;
    padding-bottom: 54px; /* room for emoji at bottom */
}

/* Emoji repositioned to bottom-right — away from top-left badge */
.feature-card-sm .feature-icon-sm {
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-size: 2.1rem;
    opacity: 0.45;
    margin: 0;
    pointer-events: none;
    line-height: 1;
}

/* Push heading down below the corner badge */
.feature-card-sm h3 {
    padding-top: 14px;
    margin-top: 0;
}

/* Keep description text from running under the emoji */
.feature-card-sm p {
    padding-right: 40px;
}

.feature-card-sm:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.12);
}

.feature-card-pro:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.feature-card-elite {
    border-color: rgba(245, 158, 11, 0.08);
}

.feature-card-elite:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.1);
}

.feature-icon-sm {
    font-size: 1.7rem;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.4));
    line-height: 1;
}

.feature-card-elite .feature-icon-sm {
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
}

/* ===================== Corner Tier Badges ===================== */
.corner-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1.4;
}

.badge-starter {
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.45);
    color: #c4b5fd;
}

.badge-pro {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(245,158,11,0.15));
    border: 1px solid rgba(168, 85, 247, 0.45);
    color: #e9d5ff;
}

.badge-elite {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fcd34d;
}

/* ===================== Jarvis Card Special ===================== */
.feature-card-jarvis {
    border-color: rgba(245, 158, 11, 0.25) !important;
    background: rgba(245, 158, 11, 0.03);
}

.feature-card-jarvis:hover {
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.18) !important;
}

.jarvis-coming {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    padding: 3px 7px;
    animation: jarvispulse 2s ease-in-out infinite;
}

@keyframes jarvispulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===================== Sidebar Collapse ===================== */
.spots-collapsible {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    max-height: 600px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.sidebar-collapsed .spots-collapsible {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

/* ===================== Quiz Button (Navbar) ===================== */
.btn-quiz {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.btn-quiz .quiz-btn-icon {
    font-size: 1rem;
    line-height: 1;
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.5));
}

@media (max-width: 768px) {
    .btn-quiz .quiz-btn-text { display: none; }
    .btn-quiz { padding-left: 12px; padding-right: 12px; }
}

/* ===================== Quiz Overlay ===================== */
.quiz-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    pointer-events: none;
    opacity: 0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, opacity 0.4s ease;
}

.quiz-overlay.open {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: all;
    opacity: 1;
}

.quiz-panel {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(15, 15, 22, 0.97);
    border: 1px solid rgba(124, 58, 237, 0.28);
    border-radius: 28px;
    box-shadow: 0 0 100px rgba(124, 58, 237, 0.25), 0 40px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform: translateY(60px) scale(0.95);
    opacity: 0;
}

.quiz-overlay.open .quiz-panel {
    /* GSAP handles transform/opacity on open; this keeps initial state synced */
}

.quiz-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 5;
}

.quiz-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@media (max-width: 768px) {
    body { /* keep as-is */ }
    .quiz-close { cursor: pointer; }
}

/* ===================== Quiz Progress Bar ===================== */
.quiz-progress-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0;
    overflow: hidden;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quiz-overlay.quiz-show-progress .quiz-progress-track {
    opacity: 1;
}

.quiz-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7C3AED, #F59E0B);
    box-shadow: 0 0 14px rgba(124, 58, 237, 0.7), 0 0 8px rgba(245, 158, 11, 0.5);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== Quiz Screens ===================== */
.quiz-screens {
    position: relative;
    padding: 48px 40px 40px;
}

@media (max-width: 640px) {
    .quiz-screens { padding: 40px 22px 28px; }
}

.quiz-screen {
    display: none;
}

.quiz-screen-active {
    display: block;
}

.quiz-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #d4d4d8;
    padding-bottom: 6px;
    background-image: linear-gradient(90deg, #7C3AED, #F59E0B);
    background-size: 60% 1.5px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    margin-bottom: 14px;
}

/* ===================== Intro Screen ===================== */
.quiz-intro-inner {
    text-align: center;
}

.quiz-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #fff;
}

.quiz-subtitle {
    font-size: 1rem;
    color: #d4d4d8;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 32px;
}

.quiz-example {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 22px 22px 18px;
    margin-bottom: 28px;
}

.quiz-example-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #c4b5fd;
    margin-bottom: 14px;
    text-align: center;
}

.quiz-example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 460px;
    margin: 0 auto;
}

.quiz-example-card {
    position: relative;
}

.quiz-example-imgwrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.quiz-example-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quiz-example-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    line-height: 1.2;
}

.quiz-badge-real {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.6);
    color: #86efac;
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.3);
}

.quiz-badge-ai {
    background: rgba(124, 58, 237, 0.18);
    border: 1px solid rgba(124, 58, 237, 0.6);
    color: #c4b5fd;
    box-shadow: 0 0 14px rgba(124, 58, 237, 0.35);
}

.quiz-example-caption {
    font-size: 0.82rem;
    color: #71717a;
    text-align: center;
    margin: 14px 0 0;
    font-style: italic;
}

.quiz-start-btn {
    margin-top: 6px;
}

.quiz-disclaimer {
    font-size: 0.75rem;
    color: #52525b;
    margin: 14px 0 0;
    font-style: italic;
}

/* ===================== Question Screen ===================== */
.quiz-question-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.quiz-q-counter {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c4b5fd;
}

.quiz-q-score {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    color: #F59E0B;
    letter-spacing: 0.05em;
}

.quiz-prompt {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 28px;
    color: #fff;
}

.quiz-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .quiz-cards { grid-template-columns: 1fr; }
}

.quiz-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-card-imgwrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

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

.quiz-card:not(.locked) .quiz-card-imgwrap:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.25), 0 0 24px rgba(124, 58, 237, 0.2);
}

.quiz-card.is-correct .quiz-card-imgwrap {
    border: 2px solid #22c55e;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.quiz-card.is-wrong .quiz-card-imgwrap {
    border: 2px solid #ef4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.quiz-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.quiz-card.is-correct .quiz-card-overlay,
.quiz-card.is-wrong .quiz-card-overlay {
    opacity: 1;
}

.quiz-overlay-badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(10, 10, 15, 0.82);
    border: 2px solid;
    line-height: 1.1;
}

.quiz-card.is-correct .quiz-overlay-badge {
    color: #22c55e;
    border-color: #22c55e;
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.5);
}

.quiz-card.is-wrong .quiz-overlay-badge {
    color: #ef4444;
    border-color: #ef4444;
    box-shadow: 0 0 24px rgba(239, 68, 68, 0.4);
}

.quiz-answer-btn {
    width: 100%;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: none;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    backdrop-filter: blur(20px);
}

.quiz-answer-btn:hover {
    background: rgba(124, 58, 237, 0.18);
    border-color: rgba(124, 58, 237, 0.7);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.quiz-answer-btn:disabled,
.quiz-card.locked .quiz-answer-btn {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .quiz-answer-btn { cursor: pointer; }
    .quiz-close { cursor: pointer; }
}

/* ===================== Results Screen ===================== */
.quiz-results-inner {
    text-align: center;
}

.quiz-score-display {
    margin: 18px 0 22px;
}

.quiz-score-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(5rem, 14vw, 9rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.quiz-score-out {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #71717a;
    margin-top: 4px;
}

.quiz-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.quiz-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.4);
    will-change: transform, opacity;
}

.quiz-dot.gold {
    background: linear-gradient(135deg, #F59E0B, #fcd34d);
    border-color: rgba(245, 158, 11, 0.7);
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.6);
}

.quiz-rec-card {
    display: none;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 28px 26px;
    text-align: left;
    margin: 0 auto 18px;
    max-width: 560px;
    opacity: 0;
    transform: translateY(40px) scale(0.94);
}

.quiz-rec-card.active {
    display: block;
}

.quiz-rec-starter.active {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.18);
}

.quiz-rec-pro.active {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.22), 0 0 60px rgba(245, 158, 11, 0.12);
}

.quiz-rec-elite.active {
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.22);
}

.quiz-rec-badge {
    position: absolute;
    top: -10px;
    left: 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    line-height: 1.4;
}

.quiz-rec-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 3.4vw, 2rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 6px 0 14px;
    color: #fff;
}

.quiz-rec-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d4d4d8;
    margin: 0 0 20px;
}

.quiz-rec-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 18px;
    color: #fff;
}

.quiz-rec-cta {
    cursor: none;
}

@media (max-width: 768px) {
    .quiz-rec-cta { cursor: pointer; }
}

.quiz-pulse {
    animation: quizPulseGlow 2.4s ease-in-out infinite;
}

@keyframes quizPulseGlow {
    0%, 100% { box-shadow: 0 8px 28px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
    50% { box-shadow: 0 12px 44px rgba(124, 58, 237, 0.75), 0 0 60px rgba(245, 158, 11, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

.quiz-retake {
    display: inline-block;
    margin-top: 6px;
    background: transparent;
    border: none;
    color: #c4b5fd;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: underline;
    text-decoration-color: rgba(124, 58, 237, 0.4);
    text-underline-offset: 4px;
    cursor: none;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.quiz-retake:hover {
    color: #fff;
    text-decoration-color: rgba(245, 158, 11, 0.7);
}

@media (max-width: 768px) {
    .quiz-retake { cursor: pointer; }
}

/* Hide cursor inside quiz on desktop */
.quiz-overlay,
.quiz-overlay * {
    /* fallback — body already sets cursor: none */
}

/* ===================== Quiz Intro Overlay ===================== */
#quiz-intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 28px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#quiz-intro-btn {
    position: relative;
    padding: 32px 72px;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #7C3AED 0%, #9D4EDD 55%, #6D28D9 100%);
    border: 2px solid rgba(245, 158, 11, 0.65);
    border-radius: 80px;
    cursor: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform-origin: center center;
    box-shadow:
        0 0 60px rgba(124, 58, 237, 0.75),
        0 0 130px rgba(124, 58, 237, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    overflow: visible;
    transition: box-shadow 0.3s ease;
}

#quiz-intro-btn:hover {
    box-shadow:
        0 0 80px rgba(124, 58, 237, 0.9),
        0 0 160px rgba(124, 58, 237, 0.45),
        0 0 30px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.quiz-intro-emoji {
    font-size: 2.6rem;
    line-height: 1;
    display: block;
}

.quiz-intro-label {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.quiz-intro-sub {
    font-size: 0.73rem;
    font-weight: 400;
    opacity: 0.6;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quiz-intro-ring {
    position: absolute;
    inset: -4px;
    border-radius: 84px;
    border: 2px solid rgba(124, 58, 237, 0.55);
    pointer-events: none;
    animation: quiz-ring-pulse 2.2s ease-out infinite;
}

.quiz-intro-ring:nth-child(2) { animation-delay: 0.75s; }
.quiz-intro-ring:nth-child(3) { animation-delay: 1.5s; }

@keyframes quiz-ring-pulse {
    0%   { transform: scale(1);    opacity: 0.8; }
    100% { transform: scale(1.65); opacity: 0; }
}

.quiz-intro-hint {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 640px) {
    #quiz-intro-btn {
        padding: 26px 48px;
        font-size: 1.15rem;
    }
    .quiz-intro-emoji { font-size: 2rem; }
    .quiz-intro-label { font-size: 1.15rem; }
}


/* ===================== Quiz Button Attract Glow ===================== */
.quiz-btn-attract {
    animation: quizGlowPulse 2.6s ease-in-out infinite;
}

@keyframes quizGlowPulse {
    0%, 100% {
        box-shadow: none;
    }
    45%, 55% {
        box-shadow:
            0 0 12px 3px rgba(124, 58, 237, 0.6),
            0 0 28px 6px rgba(124, 58, 237, 0.22),
            0 0 6px 1px rgba(245, 158, 11, 0.25);
    }
}

/* ===================== Attract Spark Particles ===================== */
.quiz-attract-spark {
    position: fixed;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle, #F59E0B 0%, #7C3AED 100%);
    box-shadow: 0 0 10px 3px rgba(124, 58, 237, 0.8), 0 0 5px 1px rgba(245, 158, 11, 0.5);
    pointer-events: none;
    z-index: 9997;
    will-change: transform, opacity;
    transform: translate(-50%, -50%);
}
