﻿/* --- 1. CORE VARIABLES --- */
:root {
    --bg-black: #080808; 
    --bg-white: #f5f3f0; 
    --neon-green: #d7f75b; 
    --neon-purple: #9b5de5; 
    --neon-red: #ff4632;    
    --neon-pink: #f72585;
    --neon-blue: #2e59f4;
    --neon-orange: #ff9f1c; /* Added Orange */
    --nav-height: 80px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- CUSTOM SELECTION COLOR --- */
::selection {
    background: var(--neon-green);
    color: var(--bg-black);
}

/* --- CUSTOM CURSOR --- */
body {
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; 
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-black);
    color: var(--bg-white);
    cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10" stroke="%23d7f75b" stroke-width="2"/><circle cx="12" cy="12" r="2" fill="%23d7f75b"/></svg>') 12 12, auto;
}

a, button, .card, .entry-btn {
    cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10" stroke="%23ff4632" stroke-width="2"/><circle cx="12" cy="12" r="4" fill="%23ff4632"/></svg>') 12 12, pointer;
}

.hidden { display: none !important; }

/* --- SPLASH BACKGROUND VISUALS (Updated Palette & Shapes) --- */
#splash-visuals {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9990; 
    background-color: var(--bg-black);
    overflow: hidden;
    transition: opacity 0.8s ease;
}

/* Floating Neon Shapes */
.neon-shape {
    position: absolute;
    filter: blur(60px);
    opacity: 0.7;
    animation: floatShapeAnim 12s ease-in-out infinite alternate;
    mix-blend-mode: screen;
}

/* 1. Purple Blob */
.shape-purple {
    width: 50vw; height: 50vw;
    background: var(--neon-purple);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: -10%; left: -10%;
    animation-duration: 18s;
}

/* 2. Green Blob */
.shape-green {
    width: 45vw; height: 45vw;
    background: var(--neon-green);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -10%; right: -5%;
    animation-duration: 20s;
    animation-delay: -5s;
}

/* 3. Orange Blob */
.shape-orange {
    width: 35vw; height: 35vw;
    background: var(--neon-orange);
    border-radius: 50%;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation-duration: 15s;
    animation-delay: -2s;
}

/* 4. White Glow */
.shape-white {
    width: 20vw; height: 20vw;
    background: #ffffff;
    border-radius: 50%;
    top: 20%; right: 20%;
    filter: blur(50px);
    opacity: 0.5;
    animation: pulseWhite 8s ease-in-out infinite;
}

/* 5. Extra Purple/Blue Accent */
.shape-extra {
    width: 25vw; height: 25vw;
    background: var(--neon-blue);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%; left: 10%;
    opacity: 0.4;
    animation-duration: 22s;
}

@keyframes floatShapeAnim {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    100% { transform: translate(30px, 40px) rotate(10deg) scale(1.1); }
}
@keyframes pulseWhite {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

/* Stronger Grain Texture */
.noise-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Using CSS Noise Generator Data URI */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.18; /* Increased visibility */
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}


/* --- STEP 1: PRELOADER (0-100%) --- */
#view-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: transparent; 
    z-index: 10000;
    display: flex;
    justify-content: flex-end; /* Bottom Right alignment like reference */
    align-items: flex-end;
    padding: 40px 60px;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.loader-percentage {
    font-size: 12rem;
    font-weight: 900;
    line-height: 0.8;
    color: #fff;
    letter-spacing: -10px;
    /* Enhance readability over complex background */
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    z-index: 10;
}
.loader-percentage span {
    color: var(--neon-green);
    font-size: 4rem;
    vertical-align: top;
    margin-left: 10px;
}

/* --- STEP 2: ENTRY SCREEN (Click to Enter) --- */
#view-entry {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: transparent; 
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Hidden initially */
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#view-entry.visible {
    opacity: 1;
    pointer-events: all;
}

.entry-title {
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* Improved Button Design */
.entry-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 22px 70px;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 3px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Button Glow on Hover */
.entry-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

/* Optional: Inner shine animation */
.entry-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}
.entry-btn:hover::after {
    left: 100%;
}

/* Slide curtain effect for transition */
.curtain-slide-up {
    transform: translateY(-100%);
}


/* --- 2. LAYOUT ENGINE (Dashboard) --- */
.container {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    padding-top: var(--nav-height); 
}
section {
    min-height: calc(100vh - var(--nav-height)); 
    height: auto; 
    width: 100%;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
}

/* --- 2B. NAVIGATION BAR --- */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(18, 18, 18, 0.85); 
    backdrop-filter: blur(15px);
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#main-nav .logo-container {
    display: flex;
    align-items: center;
    height: 100%; 
}
#main-nav .logo-text {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--bg-white); 
    letter-spacing: -1px;
    line-height: 1; 
    position: relative;
    margin-top: 4px; 
}
#main-nav .logo-text::after {
    content: '.';
    color: var(--neon-green);
}

#main-nav .nav-links {
    display: flex;
    gap: 40px; 
    align-items: center; 
    height: 100%;
}
#main-nav a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
    transition: color 0.2s;
    opacity: 0.7;
}
#main-nav a:hover {
    color: var(--neon-green);
    opacity: 1;
}
#main-nav a.contact-link { 
    color: var(--neon-purple);
    opacity: 1; 
}
#main-nav a.contact-link:hover {
    color: var(--neon-red); 
}

/* --- 4. ANIMATIONS & INTERACTIVITY --- */

/* Header Hover Effect */
.text-hover {
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    cursor: default;
}
.text-hover:hover {
    transform: scale(1.02) skewX(-2deg);
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.1);
    color: var(--neon-green);
}
#page3 .text-hover:hover { color: var(--neon-green); }
#page1 .text-hover:hover { color: var(--neon-red); text-shadow: 2px 2px 0px rgba(0,0,0,0.1); }

/* Slide Up Reveal */
.slide-up {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000), 
                transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.slide-up.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.spin-slow { animation: spin 20s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.highlight-box { 
    background: #000; color: #fff; padding: 15px 25px; 
    transform: rotate(-3deg); display: inline-block; 
    font-weight: 700; font-size: 1.2rem; margin-top: 20px;
    animation: continuousRotate 8s linear infinite;
    box-shadow: 10px 10px 0 var(--neon-green);
}
@keyframes continuousRotate {
    0% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}

.scribble {
    position: absolute; width: 140%; top: 5%; left: -20%;
    fill: none; stroke-width: 3; stroke-linecap: round; z-index: 1; opacity: 0.8;
    animation: lineDrift 20s linear infinite;
}
@keyframes lineDrift {
    0% { transform: translate(-30%, -10%); }
    100% { transform: translate(30%, 10%); }
}

.bg-dots {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--neon-red) 25%, transparent 25%);
    background-size: 40px 40px; opacity: 0.15; z-index: 0;
    animation: bgShift 60s linear infinite;
}
@keyframes bgShift {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.spiral-bg {
    position: absolute; width: 120%; height: auto;
    bottom: -20%; right: -20%; opacity: 0.4; z-index: 0;
    /* No mouse interaction */
}

/* --- TYPOGRAPHY --- */
h1 {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    z-index: 10;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

/* --- INTERACTIVE PARAGRAPHS (Reading Light Effect) --- */
p {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem; 
    z-index: 10;
    max-width: 550px;
    opacity: 0.8; /* Slightly dimmer by default */
    transition: all 0.4s ease;
    cursor: default;
}
p:hover {
    opacity: 1;
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.sub-header {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    z-index: 10;
    opacity: 0.8;
    display: inline-block;
    border-bottom: 2px solid currentColor;
    padding-bottom: 5px;
}

/* --- 6. PAGE STYLES --- */

#page1 { background-color: var(--bg-white); color: #000; }

.scribble-layer {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    fill: none;
    stroke-width: 4;
    opacity: 0.6;
    z-index: 0;
    transform-origin: 50% 50%;
}
/* RESTORED ANIMATIONS (Non-interactive background) */
.scribble-1 { 
    stroke: var(--neon-red); 
    animation: layerRotate 30s linear infinite reverse; 
}
.scribble-2 { 
    stroke: var(--neon-green); 
    opacity: 0.7; 
    animation: layerRotateScale1 45s linear infinite; 
}
.scribble-3 { 
    stroke: var(--neon-purple); 
    opacity: 0.5; 
    animation: layerRotateScale2 60s linear infinite reverse; 
}

@keyframes layerRotate { to { transform: rotate(360deg); } }

@keyframes layerRotateScale1 {
    from { transform: scale(0.8) rotate(20deg); }
    to { transform: scale(0.8) rotate(380deg); }
}
@keyframes layerRotateScale2 {
    from { transform: scale(1.2) rotate(-45deg); }
    to { transform: scale(1.2) rotate(-405deg); }
}

#page1 > * { z-index: 10; }

.huge-year { 
    font-size: 10rem; color: var(--neon-red); 
    font-weight: 900; letter-spacing: -10px; 
    margin-top: -5px; 
    z-index: 5;
    line-height: 0.8;
    text-align: center; 
    width: 100%;
    text-shadow: 10px 10px 0px rgba(0,0,0,0.1);
}

#page2 { background-color: var(--bg-black); color: var(--bg-white); }
.big-stat { 
    font-size: 8rem; 
    color: var(--neon-purple); 
    font-weight: 900; 
    line-height: 0.7; 
    margin: 30px 0; 
    letter-spacing: -5px;
}
/* Counter Animation Class */
.counter-anim { display: inline-block; }

#page3 { background-color: var(--neon-purple); color: var(--bg-white); }
#page4 { background-color: var(--bg-black); color: var(--bg-white); }
#page5 { background-color: var(--bg-white); color: #000; }

.money-stat { 
    font-size: 9rem; color: var(--neon-green); 
    font-weight: 900; letter-spacing: -5px; line-height: 1; 
    text-shadow: 5px 5px 0 #000; 
    margin: 10px 0;
}

#page6 { background-color: var(--bg-black); color: var(--neon-green); }
.shy-icon-wrapper {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.shy-icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
}

#page7 { background-color: var(--neon-red); color: var(--bg-white); }
.list-item { 
    background: #000; color: #fff; padding: 15px 25px; 
    margin: 8px 0; font-weight: 900; font-size: 1.6rem; 
    text-align: left; width: 100%; max-width: 400px; 
    transform: skewX(-10deg); 
    transition: transform 0.3s, background 0.3s;
}
.list-item:hover {
    transform: skewX(-10deg) translateX(10px);
    background: var(--neon-blue);
}

#page8 { background-color: var(--bg-black); color: var(--bg-white); }

/* CARD LAYOUT */
#page8 .card-grid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

#page8 .card-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 25px; 
    width: 100%;
    margin-bottom: 25px; 
}

#page8 .card-center-1 {
    width: 100%; 
    max-width: 320px; 
}

.card { 
    background: #1a1a1a; 
    padding: 25px; 
    border-radius: 16px; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 12px; 
    text-align: left; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #333;
    min-height: 180px; 
    position: relative;
    top: 0;
}
.card:hover {
    transform: translateY(-10px);
    background: #252525;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.2);
}

/* Icon container */
.card .icon-container {
    width: 45px; 
    height: 45px; 
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem; 
    margin-bottom: 5px; 
    transition: transform 0.3s;
}
.card:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
}

.card-creator .icon-container { background: var(--neon-green); color: var(--bg-black); }
.card-editor .icon-container { background: var(--neon-purple); color: var(--bg-white); }
.card-movie .icon-container { background: var(--neon-red); color: var(--bg-white); }
.card-music .icon-container { background: var(--bg-white); color: var(--bg-black); }
.card-business .icon-container { background: var(--neon-blue); color: var(--bg-white); }

.card-content h3 { 
    font-size: 1.3rem; 
    margin-bottom: 5px; 
    color: #fff; 
    font-weight: 800;
}

.card span { 
    font-size: 0.95rem; 
    color: #aaa; 
    font-weight: 500; 
    line-height: 1.4;
}

/* --- 7. CONTACT SECTION --- */
#page-contact {
    min-height: 60vh; 
    background-color: var(--bg-black); 
    padding: 60px 20px;
}
#page-contact h1 {
    color: var(--neon-red);
    font-size: 3.5rem;
    margin-bottom: 40px;
}
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 1.4rem;
    max-width: 450px;
    width: 100%;
}
.contact-links a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    padding: 15px 20px;
    border: 1px solid rgba(215, 247, 91, 0.3);
    border-radius: 12px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
}
.contact-links a:hover {
    color: var(--bg-black);
    background: var(--neon-green);
    transform: translateX(10px);
}
.contact-links i {
    margin-right: 15px;
    font-size: 1.8rem;
}

/* --- WAITLIST --- */
#page-waitlist {
    background-color: var(--neon-red);
    color: var(--bg-black);
}
#page-waitlist h1 {
    color: var(--bg-white);
    font-size: 5rem;
    margin-bottom: 2rem;
    text-shadow: 4px 4px 0 var(--bg-black);
}
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
}
.waitlist-form input[type="email"] {
    padding: 20px 25px;
    border-radius: 50px;
    border: 2px solid #000;
    font-size: 1.1rem;
    background: var(--bg-white);
    color: var(--bg-black);
    font-weight: 700;
    outline: none;
    box-shadow: 5px 5px 0 #000;
    transition: box-shadow 0.2s, transform 0.2s;
}
.waitlist-form input[type="email"]:focus {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 #000;
}
.waitlist-form button {
    padding: 20px 25px;
    border-radius: 50px;
    border: 2px solid #000;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer; 
    background: var(--bg-black);
    color: var(--neon-green);
    transition: all 0.2s;
    box-shadow: 5px 5px 0 rgba(255,255,255,0.2);
}
.waitlist-form button:hover {
    background: #fff;
    color: #000;
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(0,0,0,0.2);
}

/* --- PROGRESS BAR --- */
.progress-wrapper {
    position: fixed; top: var(--nav-height); left: 0; width: 100%; display: flex; gap: 4px; padding: 0 10px; z-index: 100;
}
.bar { flex: 1; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; transition: background 0.3s; }
.bar.active { background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.5); }

.progress-wrapper.dark-mode .bar { background: rgba(0,0,0,0.1); }
.progress-wrapper.dark-mode .bar.active { background: #000; box-shadow: none; }

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 600px) {
    
    section { padding: 1.5rem 1rem; }
    .container { padding-top: 50px; }
    #main-nav { height: 60px; padding: 0 20px; }
    #main-nav .nav-links { gap: 15px; }
    #main-nav a { display: none; } 
    #main-nav a.contact-link { display: none; }
    
    h1 { font-size: 3rem; line-height: 1; }
    .huge-year { font-size: 6rem; letter-spacing: -5px; margin-top: -10px; }
    .big-stat { font-size: 6rem; margin: 15px 0; }
    .money-stat { font-size: 6rem; letter-spacing: -3px; }
    
    /* Mobile Splash Tweak */
    .loader-percentage { font-size: 6rem; }
    .entry-title { font-size: 2.5rem; }

    #page8 .card-grid-4 { grid-template-columns: 1fr; gap: 15px; }
    #page8 .card-center-1 { max-width: 100%; }

     .contact-links { font-size: 1.2rem; }
     
     body { overflow: auto; }
     
     /* Loader Mobile */
     #view-loader { justify-content: center; align-items: center; }
}

