:root {
    --bg: #0A0A0A;
    --accent: #FFD700;
    --accent-glow: rgba(255, 215, 0, 0.4);
    --text-main: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);
}

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

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: -2px;
}

h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 8vw, 6rem);
    letter-spacing: 4px;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cinematic Overlays */
.cinematic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 100;
}

.mist {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    opacity: 0.05;
    pointer-events: none;
    z-index: 99;
}

/* Nav */
.cinematic-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 200;
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--accent);
}

.nav-btn {
    border: 1px solid white;
    padding: 0.5rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: white;
    color: black;
}

/* Base Section */
.section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

/* Hero Noir */
.hero-noir {
    flex-direction: column;
}

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

.split-text {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

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

.fade-in {
    opacity: 0;
    animation: fadeIn 2s 0.5s forwards;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: var(--text-dim);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s 1s forwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 3px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .scroll-indicator {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, white, transparent);
    animation: pulseLine 2s infinite;
}

@keyframes pulseLine {
    0% { transform: scaleY(0.5); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0.5); transform-origin: top; }
}

/* Journey Section */
.journey {
    background: black;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.distance-ticker {
    z-index: 10;
    text-align: center;
}

.number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -1rem;
}

#distance {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(6rem, 25vw, 18rem);
    color: var(--accent);
    line-height: 0.8;
}

.unit {
    letter-spacing: 10px;
    font-size: 1.5rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Intelligence Section */
.intelligence {
    background: #0A0A0A;
}

.content-box {
    border-left: 4px solid var(--accent);
    padding-left: 3rem;
}

.content-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Homecoming */
.parallax-bg-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.home-content {
    z-index: 10;
    text-align: center;
}

.glow-btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--accent);
    color: black;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    box-shadow: 0 0 30px var(--accent-glow);
    transition: all 0.4s ease;
    margin-top: 2rem;
}

.glow-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px var(--accent-glow);
}

/* Social & Contract Section */
.social-contract-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.social-links-cinematic {
    display: flex;
    gap: 1.5rem;
}

.social-icon-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.social-icon-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.social-icon-btn:hover svg {
    fill: black;
}

.ca-copier {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 100%;
}

.ca-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
}

#ca-value {
    font-family: monospace;
    font-size: 0.9rem;
    opacity: 0.8;
}

.copy-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
    opacity: 0.5;
    transition: 0.3s;
}

.ca-copier:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.ca-copier:hover .copy-icon svg {
    opacity: 1;
    fill: var(--accent);
}

@media (max-width: 768px) {
    .ca-copier {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }
    #ca-value {
        font-size: 0.7rem;
        word-break: break-all;
    }
}

/* Footer */
.cinematic-footer {
    padding: 8rem 5% 4rem;
    background: black;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-wrap {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.f-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.f-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.f-links a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.6;
    transition: 0.3s;
}

.f-links a:hover { opacity: 1; color: var(--accent); }

@media (max-width: 768px) {
    h1 { font-size: 4rem; }
    #distance { font-size: 5rem; }
    .content-box { padding-left: 1.5rem; }
    .f-links { flex-direction: column; gap: 1rem; }
}
