/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #050505;
    --color-bg-dark: #0a0a0a;
    --color-red: #C41E1E;
    --color-red-dark: #8B0000;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-gray-dark: #333333;
    --color-gray-light: #cccccc;
    --color-black: #0a0a0a;

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    --z-below: -1;
    --z-base: 1;
    --z-content: 10;
    --z-fixed: 1000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: 0 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 2px;
    color: var(--color-white);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to bottom, rgba(5,5,5,0) 65%, rgba(10,10,10,0.85) 85%, rgba(10,10,10,1) 100%),
        radial-gradient(ellipse 60% 45% at 50% 10%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 38%, rgba(255,255,255,0.03) 60%, transparent 78%),
        linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.9) 100%),
        radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 70%);
    z-index: var(--z-base);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(196, 30, 30, 0.08) 0%, transparent 68%);
    z-index: var(--z-below);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.02) 49.5%, rgba(255,255,255,0.02) 50.5%, transparent 50.5%);
    background-size: 200px 100%;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: var(--z-content);
    padding: 0 20px;
}

.hero-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--color-red);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(72px, 14vw, 144px);
    font-weight: 700;
    font-style: italic;
    line-height: 0.95;
    letter-spacing: 3px;
    margin-bottom: 36px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: 48px;
}

/* Construction-specific styles */
.hero-construction {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-construction .hero-content {
    padding-top: 0;
}

.launch-info {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    border: 1px solid rgba(196, 30, 30, 0.5);
    border-radius: 4px;
    color: var(--color-gray);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--color-bg);
}

.footer-construction {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-construction .footer-bottom {
    padding: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-dark);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.copyright {
    font-size: 12px;
    color: var(--color-gray);
    letter-spacing: 2px;
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--color-gray);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 60px;
    }

    .hero-description br {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 20px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
}
