:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    /* Brand Colors - Extracted from Packaging */
    --brand-pink: #ff66c4;
    --brand-cyan: #3b82f6;
    /* Adjusted for neon glow */
    --brand-purple: #6d28d9;
    --brand-yellow: #fcd34d;
    /* For the "dust" */

    /* Gradients */
    --gradient-glow: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
    --gradient-dust: linear-gradient(to right, #fb7185, #d946ef, #6366f1);

    /* Spacing */
    --container-width: 1200px;
    --section-gap: 8rem;

    /* Fonts */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-glow);
    color: white;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(217, 70, 239, 0.6);
}

/* Text Gradients */
.text-gradient {
    background: var(--gradient-dust);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Glass Effect */
/* Navbar */
nav {
    padding: 2rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 50;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -1px;
    text-shadow: 0 0 15px rgba(255, 102, 196, 0.5);
}

.btn.small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Space for nav */
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 10;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.pill-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-yellow);
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.main-pack {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.hero:hover .main-pack {
    transform: rotate(0deg) scale(1.05);
}

/* Glow Effects */
.glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.4;
}

.glow-1 {
    background: var(--brand-purple);
    top: -10%;
    left: -10%;
}

.glow-2 {
    background: var(--brand-pink);
    bottom: -10%;
    right: -10%;
}

/* Showcase Section */
.showcase {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 10;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.spill-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.showcase-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.showcase-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.features-list .icon {
    font-size: 2rem;
    background: var(--bg-card);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.features-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Visual Break */
.visual-break {
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.center-text {
    position: relative;
    z-index: 10;
}

.center-logo {
    max-width: 300px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 30px rgba(255, 102, 196, 0.4));
}

.visual-break h2 {
    font-size: 4rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.visible {
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-inner {
        padding: 0 1rem;
    }

    .hero-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-image {
        order: -1;
    }

    .features-list li {
        text-align: left;
    }
}