/* --- Premium Pages Base Styles --- */
.premium-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 100px;
    overflow: hidden;
}

/* Ambient Backgrounds */
.pages-ambient {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-v1 { width: 500px; height: 500px; background: #6d28d9; top: -100px; right: -100px; }
.orb-v2 { width: 400px; height: 400px; background: #4f46e5; bottom: -100px; left: -100px; }
.orb-v3 { width: 300px; height: 300px; background: #a855f7; top: 40%; left: 60%; }

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Mini Hero Header */
.page-hero {
    text-align: center;
    margin-bottom: 80px;
}

.page-hero .badge {
    display: inline-flex;
    padding: 8px 16px;
    background: rgba(109, 40, 217, 0.1);
    color: #6d28d9;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.page-content {
    position: relative;
    z-index: 10;
}

.glass-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px;
    margin-bottom: 40px;
}

[data-theme="light"] .glass-section {
    background: white;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

/* Typography Hierarchy */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .premium-page { padding-top: 100px; }
    .glass-section { padding: 40px 24px; }
    .grid-2-cols { grid-template-columns: 1fr; gap: 40px; }
    .page-hero h1 { font-size: 2.5rem; }
}
