/* =========================================================================
   NASHBASE | ULTRA-PREMIUM VISION PAGE
   Aesthetic: OpenAI style (Stark, Minimalist, Profound)
   ========================================================================= */

:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-muted: #888888;
    --accent: #ffffff;
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html, body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* ================== TYPOGRAPHY ================== */
h1, h2, h3, h4, .logo-text, .grand-title, .grand-statement {
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
}

.grand-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text-primary);
}

.grand-statement {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    max-width: 1100px;
    margin: 0 auto;
}

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

.text-center {
    text-align: center;
}

/* ================== HEADER / LOGO ================== */
.minimal-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    z-index: 100;
    pointer-events: none; /* Let clicks pass through */
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    pointer-events: auto;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* ================== LAYOUT & SECTIONS ================== */
.scroller {
    width: 100%;
}

.vision-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
}

.content-wrapper {
    max-width: 1400px;
    width: 100%;
}

.hero-section {
    /* Slightly taller or centered differently if needed */
}

/* ================== FINAL SECTION ================== */
.final-section {
    flex-direction: column;
}

.final-logo {
    margin-bottom: 20px;
}

.final-brand {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 5px;
}

.final-year {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ================== ANIMATIONS (REVEAL) ================== */
.fade-in-up {
    animation: fadeInUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    opacity: 0;
    transform: translateY(60px);
    transition: all var(--transition-slow);
    filter: blur(10px);
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-text.delay {
    transition-delay: 0.2s;
}

/* Media Queries */
@media (max-width: 768px) {
    .minimal-header {
        padding: 20px;
    }
    
    .logo svg {
        width: 24px;
        height: 24px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .vision-section {
        padding: 80px 5%;
    }
}
