:root {
    --bg-base: #020202;
    --bg-panel: #0a0a0a;
    --bg-accent: #b30000;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --text-accent: #ff3333;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-base); color: var(--text-primary); font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; cursor: none; }

/* Custom Cursor */
.custom-cursor { width: 8px; height: 8px; background: var(--text-primary); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10001; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s; mix-blend-mode: difference;}
.custom-cursor-follower { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s; mix-blend-mode: difference;}
.custom-cursor.hover { width: 0; height: 0; }
.custom-cursor-follower.hover { width: 80px; height: 80px; background: rgba(255, 255, 255, 0.1); border-color: transparent; backdrop-filter: blur(2px); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 900; line-height: 1.1; text-transform: uppercase; }
.huge-text { font-size: clamp(3rem, 10vw, 7rem); letter-spacing: -0.02em; margin-bottom: 2rem; line-height: 1; text-shadow: 0 5px 20px rgba(0,0,0,0.8); }
.section-heading { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; max-width: 900px; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.sub-heading { font-size: clamp(1.2rem, 2vw, 1.8rem); color: var(--text-secondary); margin-bottom: 1.5rem; font-weight: 400; }
.lead-text { font-size: 1.3rem; color: var(--text-secondary); line-height: 1.7; }
.text-shadow-strong { text-shadow: 0 4px 20px rgba(0,0,0,1), 0 2px 5px rgba(0,0,0,0.8); }
.text-glow-heavy { text-shadow: 0 0 40px rgba(255,0,0,0.6), 0 0 10px rgba(255,255,255,0.2); }
.outline-text { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.2); }
.text-accent { color: var(--text-accent); }

/* Eyebrow Labels */
.hero-eyebrow {
    font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-accent);
    margin-bottom: 1.5rem;
}
.section-eyebrow {
    font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Buttons */
.epic-btn { background: transparent; color: var(--text-primary); border: 1px solid rgba(255,255,255,0.5); padding: 1.2rem 3rem; border-radius: 50px; font-family: var(--font-heading); font-weight: 900; text-transform: uppercase; font-size: 1.1rem; position: relative; overflow: hidden; cursor: none; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.epic-btn .btn-text { position: relative; z-index: 2; }
.epic-btn .btn-glow { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,51,51,0.5), transparent); z-index: 1; transition: 0.5s; }
.epic-btn:hover { border-color: var(--text-accent); box-shadow: 0 0 30px rgba(204,0,0,0.4); }
.epic-btn:hover .btn-glow { left: 150%; transition: left 0.8s ease-in-out; }
.epic-btn.outline { border: 1px solid rgba(255,255,255,0.25); }
.epic-btn.outline:hover { border-color: #fff; box-shadow: 0 0 20px rgba(255,255,255,0.15); }

.audio-btn { display: flex; align-items: center; gap: 10px; cursor: none; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; transition: transform 0.3s;}
.audio-btn:hover { transform: scale(1.05); }
.audio-btn .bars { display: flex; align-items: flex-end; gap: 3px; height: 15px; }
.audio-btn .bar { width: 3px; background: var(--text-primary); transition: height 0.1s; border-radius:2px; }
.audio-btn.active .bar { animation: eq 0.5s infinite alternate; }
.audio-btn.active .bar:nth-child(2) { animation-delay: 0.2s; }
.audio-btn.active .bar:nth-child(3) { animation-delay: 0.4s; }
@keyframes eq { 0% { height: 3px; } 100% { height: 15px; } }

.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 100; mix-blend-mode: difference; }
.logo { font-size: 2rem; font-weight: 900; letter-spacing: -2px; }

/* Global Layout */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 8rem 0; position: relative; border-bottom: 1px solid rgba(255,255,255,0.04); }
.full-bleed { background-color: #000; }
.center-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-2.reverse .visual-content { order: 1; }
.grid-2.reverse .text-content { order: 2; }

/* Global WebGL Background */
.global-webgl-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; outline: none; pointer-events: none; }

/* Hero Section */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; border: none; position: relative; }
.hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; opacity: 0.8; filter: contrast(1.1) brightness(0.9); }
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to bottom, rgba(2,2,2,0.3) 0%, var(--bg-base) 100%); z-index: 1; pointer-events:none; animation: heroGlow 6s ease-in-out infinite; transform-origin: center; }
.hero-content { position: relative; z-index: 10; max-width: 1000px; padding: 0 5%; }
.hero-title { font-size: clamp(3rem, 7vw, 6rem); margin-bottom: 1.5rem; text-shadow: 0 0 40px rgba(255,0,0,0.5); }
.hero-subtitle { font-size: clamp(1.1rem, 1.8vw, 1.5rem); color: var(--text-secondary); line-height: 1.7; }
.cta-group { margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Scroll Indicator */
.scroll-indicator { position: absolute; bottom: 7vh; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 1rem; color: rgba(255,255,255,0.72); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.85rem; pointer-events: none; }
.scroll-indicator .line { width: 1px; height: 54px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; border-radius: 999px; }
.scroll-indicator .line::after { content: ''; position: absolute; left: 0; top: -28px; width: 100%; height: 28px; background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%); animation: scrollLine 1.4s infinite ease-in-out; }
@keyframes scrollLine { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 100% { transform: translateY(82px); opacity: 0; } }
@keyframes heroGlow { 0% { opacity: 0.9; transform: scale(1.02); } 50% { opacity: 1; transform: scale(1.06); } 100% { opacity: 0.95; transform: scale(1.02); } }

/* Feature chips (What Is SØW) */
.feature-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.feature-chip {
    padding: 1rem 2rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 50px;
    font-family: var(--font-heading); font-weight: 700; font-size: 1rem; text-transform: uppercase;
    background: rgba(255,255,255,0.03); backdrop-filter: blur(4px);
    transition: var(--transition);
}
.feature-chip:hover { border-color: var(--text-accent); box-shadow: 0 0 20px rgba(255,51,51,0.15); transform: translateY(-2px); }

/* Micro-lines (Experience) */
.micro-lines { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.2rem, 2.5vw, 2rem); text-transform: uppercase; }
.micro-lines span { opacity: 0.5; transition: opacity 0.3s; }
.micro-lines span:nth-child(odd) { opacity: 1; color: var(--text-accent); }

/* Card number stat */
.card-number { font-family: var(--font-heading); font-weight: 900; font-size: 2.5rem; line-height: 1; margin-bottom: 0.8rem; color: var(--text-accent); }

/* War / Peace Pinned */
.war-peace-container { width: 100vw; height: 100vh; position: relative; overflow: hidden; background: #000; border: none; padding: 0; }
.wp-scene { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.wp-parallax-wrap { position: absolute; top: -20%; left: -10%; width: 120%; height: 140%; overflow: hidden; z-index: 1; }
.wp-bg-img { width: 100%; height: 100%; object-fit: cover; display: block; will-change: transform; }
.wp-dark-layer { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)); z-index:2; pointer-events:none;}
.wp-content { position: relative; z-index: 3; width: 90%; max-width: 900px; padding: 4rem; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }

/* Tilt Card Globe */
.tilt-card { perspective: 1000px; width: 100%; position:relative; }
.tilt-inner { width: 100%; aspect-ratio: 4/5; position: relative; border-radius: 8px; background: #111; transform-style: preserve-3d; will-change: transform; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.full-img { width: 100%; height: 100%; display: block; pointer-events: auto; }
.overlay-grad { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%); pointer-events: none; mix-blend-mode: multiply; }
.date-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; pointer-events: none; }

/* Panels */
.dark-panel { background: rgba(10,10,10,0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); padding: 2.5rem; border-radius: 12px; transition: var(--transition); }
.dark-panel:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.accent-panel { background: linear-gradient(135deg, rgba(204,17,17,0.9), rgba(180,0,40,0.9)); backdrop-filter: blur(10px); color: white; padding: 2.5rem; border-radius: 12px; transition: var(--transition); }
.accent-panel:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(204,0,0,0.3); }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }

/* Marquee */
.marquee-banner { width: 100vw; background: var(--text-accent); color: #000; padding: 1.2rem 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 50; font-weight: 900; font-family: var(--font-heading); text-transform: uppercase; font-size: 1.1rem; letter-spacing: 0.05em; }
.marquee-content { display: inline-block; animation: marquee 25s linear infinite; }
.marquee-content span { padding: 0 1.5rem; display: inline-block; }
.marquee-content .sep { opacity: 0.4; font-size: 0.7rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* "Who This Is For" */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; max-width: 800px; }
.who-item {
    padding: 2rem 2.5rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
    font-size: 1.15rem; font-weight: 500; background: rgba(255,255,255,0.02);
    transition: var(--transition); text-align: left;
}
.who-item:hover { border-color: var(--text-accent); background: rgba(255,51,51,0.05); transform: translateY(-3px); }
.who-item em { color: var(--text-accent); font-style: normal; font-weight: 700; }

/* Event Details & Upcoming Events List */
.events-list { display: flex; flex-direction: column; gap: 1.5rem; }
.event-row { display: flex; align-items: center; justify-content: space-between; background: rgba(10,10,10,0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); padding: 1.5rem; border-radius: 12px; transition: var(--transition); gap: 2rem; }
.event-row:hover { border-color: rgba(255,51,51,0.5); transform: translateY(-3px); box-shadow: 0 5px 20px rgba(204,0,0,0.2); }
.event-image { width: 140px; height: 140px; border-radius: 8px; overflow: hidden; position: relative; flex-shrink: 0; }
.event-info { flex: 1; }
.event-info h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.event-date { color: var(--text-accent); font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.8rem; letter-spacing: 0.05em; }
.event-details-mini { list-style: none; display: flex; gap: 1.5rem; font-size: 0.95rem; color: var(--text-secondary); }
.event-details-mini li { display: flex; align-items: center; gap: 0.5rem; }
.event-action { flex-shrink: 0; }
.btn-sm { padding: 0.8rem 1.8rem; font-size: 0.9rem; }

ul.event-details { list-style: none; margin: 2rem 0; font-size: 1.2rem; }
ul.event-details li { margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
ul.event-details li:last-child { border-bottom: none; }
ul.event-details .icon { font-size: 1.6rem; flex-shrink: 0; }

/* Genre Tags (Sound Identity) */
.genre-tags { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.genre-tag {
    padding: 1.2rem 3rem; border: 2px solid var(--text-accent); border-radius: 50px;
    font-family: var(--font-heading); font-weight: 900; font-size: 1.2rem; text-transform: uppercase;
    color: var(--text-accent); background: transparent;
    transition: var(--transition);
}
.genre-tag:hover { background: var(--text-accent); color: #000; box-shadow: 0 0 30px rgba(255,51,51,0.4); transform: scale(1.05); }

/* How It Works Steps */
.steps-row { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 4rem; flex-wrap: wrap; }
.step-item { flex: 1; min-width: 200px; max-width: 300px; padding: 2rem; text-align: center; }
.step-num { font-family: var(--font-heading); font-weight: 900; font-size: 3rem; color: var(--text-accent); line-height: 1; margin-bottom: 1rem; }
.step-item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step-item p { color: var(--text-secondary); font-size: 1rem; }
.step-divider { width: 60px; height: 2px; background: rgba(255,255,255,0.1); margin-top: 3.5rem; flex-shrink: 0; }

/* Future Grid */
.future-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.future-item {
    padding: 2rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
    font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    background: rgba(255,255,255,0.02); transition: var(--transition);
}
.future-item:hover { border-color: var(--text-accent); transform: translateY(-4px); }
.future-icon { font-size: 2rem; }

/* Purpose Banner */
.purpose-banner { background: var(--text-accent); padding: 6rem 0; }

/* Final CTA */
.final-cta { padding: 10rem 0 !important; }

/* Forms */
.forms-container { display: flex; gap: 2.5rem; margin-top: 4rem; }
.form-wrapper { flex: 1; transition: transform 0.3s; padding: 2.5rem; border-radius: 12px; background: rgba(10,10,10,0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); }
.form-wrapper h3 { color: var(--text-accent); text-align: center; font-size: 1.8rem; margin-bottom: 0.5rem; }
.form-subtitle { text-align: center; color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.input-group { position: relative; margin-bottom: 2rem; margin-top: 1rem; }
.input-group input, .input-group textarea { width: 100%; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,0.1); padding: 1rem 0; color: var(--text-primary); font-size: 1rem; font-family: var(--font-body); transition: var(--transition); resize: none; }
.input-group input:focus, .input-group textarea:focus { outline: none; border-bottom-color: var(--text-accent); }
.input-group label { position: absolute; top: 1rem; left: 0; font-size: 1rem; color: var(--text-secondary); pointer-events: none; transition: var(--transition); }
.input-group input:focus ~ label, .input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label, .input-group textarea:not(:placeholder-shown) ~ label { top: -1rem; font-size: 0.8rem; color: var(--text-primary); }
.submit-btn { width: 100%; background: var(--text-accent); color: #fff; border: none; padding: 1.4rem; font-weight: 900; font-size: 1.1rem; text-transform: uppercase; cursor: none; margin-top: 1rem; border-radius: 50px; font-family: var(--font-heading); letter-spacing: 0.05em; transition: 0.3s; }
.submit-btn:hover { background: #ff5555; box-shadow: 0 0 30px rgba(255,51,51,0.4); }

/* Glitch */
.glitch-text::before, .glitch-text::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.glitch-text::before { left: 2px; text-shadow: -1px 0 red; clip: rect(44px, 450px, 56px, 0); animation: glitch-anim 5s infinite linear alternate-reverse; }
.glitch-text::after { left: -2px; text-shadow: -1px 0 blue; clip: rect(44px, 450px, 56px, 0); animation: glitch-anim 5s infinite linear alternate-reverse; animation-delay: 2s; }
@keyframes glitch-anim { 0% { clip: rect(22px, 9999px, 86px, 0); } 10% { clip: rect(2px, 9999px, 35px, 0); } }

/* Other Elements */
ul.problem-list { list-style: none; margin: 1.5rem 0; font-size: 1.2rem; }
ul.problem-list li { margin-bottom: 1rem; padding-left: 1.5rem; position: relative; }
ul.problem-list li::before { content: '×'; position: absolute; left: 0; top: 0px; color: var(--text-accent); font-weight: bold;}
ul.pillars { list-style: none; margin: 1.5rem 0; }
ul.pillars li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
ul.pillars li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--text-accent); border-radius: 50%; }

.loader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #000; z-index: 10000; display: flex; justify-content: center; align-items: center; }
.loader-content { text-align: center; }
.loader-huge { font-size: 5rem; letter-spacing: -2px; margin-bottom: 1rem; position:relative; }
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.1); margin: 0 auto; overflow: hidden; }
.loader-progress { width: 0%; height: 100%; background: var(--text-accent); }

.char, .word { overflow: hidden; }

.site-footer { padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.04); }
.site-footer p { opacity: 0.4; font-size: 0.85rem; letter-spacing: 0.05em; }

/* Mobile Sticky CTA */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(5,5,5,0.85); backdrop-filter: blur(15px); padding: 1rem 5%; border-top: 1px solid rgba(255,51,51,0.25); z-index: 9000; box-shadow: 0 -10px 40px rgba(0,0,0,0.8); }
.epic-btn.solid-accent { background: var(--text-accent); border: none; color: #000; width: 100%; justify-content: center; padding: 1rem; font-size: 1.2rem; transition: background 0.3s; }
.epic-btn.solid-accent:hover { background: #fff; box-shadow: 0 0 30px rgba(255,255,255,0.4); border: none; }

/* ═══ Responsive ═══ */
@media (max-width: 768px) {
    body { padding-bottom: 90px; } /* Ensure content isn't hidden by sticky CTA */
    .mobile-sticky-cta { display: flex; justify-content: center; }
    .navbar { padding: 1rem 5%; background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent); }

    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .grid-2.reverse .visual-content { order: 0; }
    .grid-2.reverse .text-content { order: 0; }
    .experience-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .future-grid { grid-template-columns: 1fr 1fr; }
    .steps-row { flex-direction: column; align-items: center; }
    .step-divider { width: 2px; height: 40px; margin: 0; }
    .cta-group { flex-direction: column; align-items: center; }
    .epic-btn { width: 100%; justify-content: center; }
    .forms-container { flex-direction: column; }

    /* Optimize Sizes for Phone Screens */
    .section { padding: 4rem 0; }
    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
    .section-heading { font-size: clamp(2rem, 9vw, 3rem); }
    .huge-text { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    .wp-content { padding: 2.5rem; width: 95%; margin: auto; }
    
    .event-row { flex-direction: column; text-align: left; align-items: flex-start; }
    .event-image { width: 100%; height: 200px; }
    .event-action { width: 100%; }

    /* Un-pin War/Peace transition for Mobile */
    .war-peace-container { height: auto; display: flex; flex-direction: column; overflow: visible; }
    .wp-scene { position: relative; height: auto; min-height: 80vh; padding: 4rem 0; overflow: hidden; display: flex; }
    .wp-parallax-wrap { top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
}
