:root {
    /* Premium UX Color Palette */
    --surface-bg: #FCFAFA;
    --surface-card: rgba(255, 255, 255, 0.7);
    --surface-modal: rgba(255, 255, 255, 0.95);
    
    /* Elegant Pastel Pink Theme */
    --primary: #FF8FAB;
    --primary-light: #FFC2D1;
    --primary-glow: rgba(255, 143, 171, 0.4);
    
    /* Branding Colors */
    --twitch: #9146FF;
    --growth-blue: #3A86FF;
    --icaro-green: #38B000;
    --steam-purple: #7B2CBF;
    
    /* Text */
    --text-main: #1C1919;
    --text-muted: #6B6565;
    
    /* UI Adjustments */
    --glass-border: rgba(255,255,255, 0.6);
    --shadow-soft: 0 8px 32px rgba(255, 143, 171, 0.08);
    --shadow-heavy: 0 24px 48px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 24px var(--primary-glow);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
}

body {
    background-color: var(--surface-bg);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

body.loading {
    overflow: hidden;
}

/* =========================================
   Premium Loading Screen (Preloader)
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 99999;
    background-color: var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    /* Hardware acceleration and transform anchor for the slide up */
    transform-origin: top;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.sagaz-letters {
    display: flex;
    gap: 0.5rem;
}

.sagaz-letters span {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    /* Initial state before animation */
    opacity: 0;
    transform: translateY(30px);
    /* Forward fills the animation state at the end */
    animation: letterReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay);
    text-shadow: 0 4px 24px rgba(255, 143, 171, 0.4);
}

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.preloader-line {
    width: 0%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255,255,255,0.8);
    animation: lineGrow 2s ease-in-out forwards;
    animation-delay: 0.8s;
}

@keyframes lineGrow {
    0% { width: 0%; opacity: 0; }
    30% { opacity: 1; }
    100% { width: 100%; opacity: 1; }
}

.preloader-subtext {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 1.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
   Exit Animations triggering on body.loaded
*/

/* 1. Letters fade and separate */
body.loaded .sagaz-letters span {
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    opacity: 0 !important;
    transform: translateY(-20px) scale(1.1) !important;
}

/* 2. Line shrinks */
body.loaded .preloader-line,
body.loaded .preloader-subtext {
    transition: opacity 0.4s ease;
    opacity: 0 !important;
}

/* 3. The whole pink background curtains up */
body.loaded .preloader {
    transform: translateY(-100%);
}

/* 4. Main content depth reveal */
body.loading main {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}

main {
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s; /* Wait slightly for curtain to rise */
}

body.loaded main {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* =========================================
   3D & Parallax Background
   ========================================= */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at top right, #fff0f3, var(--surface-bg));
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    transition: transform 0.2s cubic-bezier(0.1, 0.5, 0.1, 1);
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    background: var(--primary-light);
    top: -10%;
    right: -10%;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: #E0CAFF; /* Soft Lavender */
    bottom: -15%;
    left: -10%;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    background: #FFE5D9; /* Soft Peach */
    top: 40%;
    left: 20%;
}

.glass-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
}

/* =========================================
   Pill Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.navbar.scrolled {
    width: 100%;
    max-width: 100%;
    top: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.85);
    border-top: none;
    border-left: none;
    border-right: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-item:hover {
    color: var(--text-main);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1001;
}

/* =========================================
   Buttons & Socials
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: inherit;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--text-main);
    color: white;
}

.btn-primary.btn-glow {
    box-shadow: 0 8px 24px rgba(28, 25, 25, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(28, 25, 25, 0.3);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-glass:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-dark {
    background: var(--text-main);
    color: white;
}

.btn-twitch {
    background: var(--twitch);
    color: white;
}

.btn-twitch:hover {
    background: #7a31eb;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.social-circle:hover .fa-twitch { color: var(--twitch); }
.social-circle:hover .fa-youtube { color: #FF0000; }
.social-circle:hover .fa-instagram { color: #E1306C; }
.social-circle:hover .fa-tiktok { color: #000; }

/* =========================================
   Layout & Typography
   ========================================= */
main {
    padding-top: 100px;
}

.section {
    padding: 8rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--primary-glow); }
    70% { box-shadow: 0 0 0 8px rgba(255, 143, 171, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 143, 171, 0); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(120deg, var(--primary), #FFB5A7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-bio {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-socials {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* 3D Hero Visual */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.image-showcase {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-heavy);
    transform-style: preserve-3d;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transform: translateZ(20px); /* Popped out of card */
    filter: contrast(1.05) saturate(1.1);
}

.floating-glass {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.8);
    transform-style: preserve-3d;
    transform: translateZ(60px); /* High pop out */
}

.glass-1 {
    top: 15%;
    left: -10%;
}

.glass-2 {
    bottom: 15%;
    right: -10%;
}

.floating-glass i {
    color: var(--primary);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* =========================================
   Bento Grid Partners
   ========================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.bento-card {
    position: relative;
    background: var(--surface-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    cursor: pointer;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-bg-icon {
    position: absolute;
    right: -10%;
    bottom: -10%;
    font-size: 15rem;
    opacity: 0.03;
    z-index: 0;
    transform: translateZ(0);
}

.card-content {
    position: relative;
    z-index: 1;
    transform: translateZ(20px);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    background: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.bento-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coupon-tag {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px dashed rgba(0,0,0,0.1);
}

.coupon-tag span {
    font-weight: 800;
    margin-left: 0.5rem;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
    transform: translateZ(30px);
}

.action-text {
    font-weight: 700;
    font-size: 1.1rem;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.bento-card:hover .arrow-icon {
    transform: translate(5px, -5px);
}

/* Card Specifics */
.card-growth .icon-wrapper { color: var(--growth-blue); }
.card-growth .action-text { color: var(--growth-blue); }

.card-icaro .icon-wrapper { color: var(--icaro-green); }
.card-icaro .action-text { color: var(--icaro-green); }

/* CTA Banner */
.cta-banner {
    background: var(--text-main);
    border-radius: var(--radius-lg);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    box-shadow: var(--shadow-heavy);
}

.cta-banner h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: #A09E9E;
    font-size: 1.1rem;
}

.cta-banner .btn-dark {
    background: white;
    color: var(--text-main);
    box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

/* =========================================
   Support Split
   ========================================= */
.support-split {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.support-card {
    background: var(--surface-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-soft);
}

.support-icon-area {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transform: translateZ(30px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.pink-gradient {
    background: linear-gradient(135deg, var(--primary), #FF5D8F);
    box-shadow: 0 12px 24px rgba(255, 93, 143, 0.3);
}

.purple-gradient {
    background: linear-gradient(135deg, var(--steam-purple), #9D4EDD);
    box-shadow: 0 12px 24px rgba(123, 44, 191, 0.3);
}

.support-info {
    transform: translateZ(20px);
    flex: 1;
}

.support-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.support-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: gap 0.3s;
}

.support-card:hover .btn-text {
    gap: 1rem;
}

/* =========================================
   Footer
   ========================================= */
.modern-footer {
    padding: 4rem 2rem;
    text-align: center;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.footer-brand span { color: var(--primary); }

.copyright {
    color: var(--text-muted);
    font-weight: 500;
}

.developer-credit {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.developer-credit .heart-icon {
    color: var(--primary);
    font-size: 0.85rem;
    margin: 0 2px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.dev-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dev-link:hover {
    color: var(--primary);
}

/* =========================================
   Premium 3D Modal
   ========================================= */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 25, 25, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    perspective: 1000px;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-3d-wrapper {
    transform: translateY(50px) rotateX(-10deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-backdrop.active .modal-3d-wrapper {
    transform: translateY(0) rotateX(0);
    opacity: 1;
}

.modal-card {
    width: 90vw;
    max-width: 460px;
    background: var(--surface-modal);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--surface-bg);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #EBEBEB;
    transform: scale(1.05);
}

.modal-icon-header {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
}

.tx-content .primary-msg {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tx-content .secondary-msg {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

.tx-content .heart { color: var(--primary); }

.steam-theme .accent-box {
    background: rgba(123, 44, 191, 0.1);
    border: 1px dashed var(--steam-purple);
    color: var(--steam-purple);
    padding: 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-weight: 700;
    margin-top: 1.5rem;
}
.steam-theme .accent-box i { font-size: 1.5rem; }


.coupon-display {
    background: rgba(58, 134, 255, 0.05);
    border: 1px dashed rgba(58, 134, 255, 0.3);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.coupon-display.green-theme {
    background: rgba(56, 176, 0, 0.05);
    border-color: rgba(56, 176, 0, 0.3);
}

.coupon-desc {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.coupon-box {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.2s;
}

.coupon-box:active { transform: scale(0.98); }

.coupon-code {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1px;
}

.copy-icon {
    color: var(--text-muted);
}

.modal-actions-row {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.modal-actions-row .btn {
    flex: 1;
    padding: 1.2rem;
}

/* =========================================
   Reveal Animations (Intersection Observer)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-container { gap: 2rem; }
    .bento-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hidden-mobile { display: none !important; }
    
    .navbar {
        width: calc(100% - 2rem);
        top: 1rem;
    }

    .menu-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--surface-bg);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        font-size: 2rem;
        font-weight: 800;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
    }

    .hero-bio {
        margin: 0 auto 2.5rem;
    }

    .hero-socials, .hero-actions {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }
    
    .floating-glass {
        display: none; /* Simplify on mobile to prevent clutter */
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }
    
    .support-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .support-card:hover .btn-text {
        justify-content: center;
    }
}
