/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #00d4ff;
    /* Chemical Blue vibe */
    --accent-dim: rgba(0, 212, 255, 0.1);
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-manifesto: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animations */
@keyframes fluidMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fallback gradient since image generation failed */
    background: radial-gradient(circle at center, #1a1a2e 0%, #000000 70%);
    background-size: 200% 200%;
    animation: fluidMove 15s ease infinite;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: dropIn 1.5s ease-out forwards;
    background: linear-gradient(to right, #fff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    animation: bounce 2s infinite;
    opacity: 0.5;
}

.scroll-indicator span {
    font-size: 2rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/* MANIFESTO SECTION */
.manifesto-section {
    padding: 8rem 0;
    background-color: #080808;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.manifesto-text {
    font-family: var(--font-manifesto);
    font-size: 2.5rem;
    line-height: 1.4;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-text .highlight {
    color: #fff;
    font-style: italic;
    border-bottom: 1px solid var(--accent-color);
}

/* PILLARS SECTION */
.pillars-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.pilar-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    /* Slightly soft edges */
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.pilar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pilar-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pilar-card:hover::before {
    transform: scaleX(1);
}

.pilar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.pilar-card p {
    font-size: 1rem;
    color: #aaa;
}

/* FOOTER */
.footer {
    padding: 4rem 0;
    background-color: #000;
    border-top: 1px solid #111;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 0.3rem;
    color: #fff;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.contact-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .manifesto-text {
        font-size: 1.8rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .contact-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Sale Banners */
.sale-banner-top {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 212, 255, 0.15), rgba(0, 0, 0, 0.9));
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1000;
    font-family: var(--font-primary);
}

.sale-banner-top a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
    transition: color 0.3s;
}

.sale-banner-top a:hover {
    color: #fff;
    text-decoration: underline;
}

.sale-banner-bottom {
    margin-top: 3rem;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--accent-dim);
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    max-width: 600px;
}

.sale-banner-bottom p {
    color: #aaa;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sale-btn-large {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 1px;
}

.sale-btn-large:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}