/* === BASE STYLES === */:root {
    --color-1: #0a0118;
    --color-2: #14082b;
    --color-3: #b026ff;
    --color-4: #ff2e9a;
    --color-5: #ffd93d;
    --color-6: #ffffff;
    --color-7: rgba(255, 255, 255, 0.08);
    --color-8: rgba(255, 255, 255, 0.7);
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 48px;
    --space-5: 80px;
    --space-6: 120px;
    --font-1: 'Space Grotesk', sans-serif;
    --font-2: 'Syne', sans-serif;
    --radius-1: 12px;
    --radius-2: 24px;
    --radius-3: 40px;
    --shadow-1: 0 20px 60px rgba(176, 38, 255, 0.3);
    --shadow-2: 0 30px 80px rgba(255, 46, 154, 0.4);
}

* { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-1);
    background: var(--color-1);
    color: var(--color-6);
    line-height: 1.6;
    margin: 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 10%, rgba(176, 38, 255, 0.15), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(255, 46, 154, 0.12), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

main { position: relative; z-index: 1; }

h1, h2, h3, h4 {
    font-family: var(--font-2);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: var(--space-4); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: var(--space-2); }

p { color: var(--color-8); margin-bottom: var(--space-2); }

a { color: var(--color-4); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-5); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-3); }

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--color-4), var(--color-3));
    color: var(--color-6);
    font-weight: 700;
    font-family: var(--font-1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-1);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    font-size: 0.95rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2);
    color: var(--color-6);
}

.cta-button:hover::before { left: 100%; }

.btn-ghost {
    background: var(--color-7);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-6);
    padding: 14px 32px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-weight: 600;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    color: var(--color-6);
    border-color: var(--color-4);
}

.content-image {
    margin: var(--space-3) 0;
    border-radius: var(--radius-2);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: relative;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.content-image.portrait img { max-height: 600px; }
.content-image.wide img { max-height: 450px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: 8px 18px;
    background: var(--color-7);
    border: 1px solid rgba(176, 38, 255, 0.4);
    border-radius: 100px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-5);
    font-weight: 600;
    backdrop-filter: blur(20px);
    margin-bottom: var(--space-3);
}

.eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-5);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* === LAYOUT STYLES === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 1, 24, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--color-7);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2) var(--space-3);
    max-width: 1280px;
    margin: 0 auto;
    gap: var(--space-2);
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-2);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-6);
    letter-spacing: -0.02em;
}

.logo-text strong {
    background: linear-gradient(135deg, var(--color-4), var(--color-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav { display: flex; align-items: center; }

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-4);
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--color-6);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-4), var(--color-3));
    transition: width 0.3s;
}

.nav-list a:hover { color: var(--color-4); }
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: var(--color-7);
    border: 1px solid rgba(255,255,255,0.15);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-6);
    border-radius: 2px;
    transition: all 0.3s;
}

.site-footer {
    background: linear-gradient(180deg, transparent, rgba(20, 8, 43, 0.8));
    padding: var(--space-5) 0 var(--space-3);
    margin-top: var(--space-6);
    border-top: 1px solid var(--color-7);
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    align-items: start;
}

.footer-logo p {
    margin-top: var(--space-2);
    font-size: 0.85rem;
    color: var(--color-8);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.footer-nav a {
    color: var(--color-8);
    font-size: 0.9rem;
}

.footer-nav a:hover { color: var(--color-4); }

.footer-disclaimer {
    grid-column: 1 / -1;
    padding-top: var(--space-3);
    margin-top: var(--space-3);
    border-top: 1px solid var(--color-7);
    font-size: 0.8rem;
    color: var(--color-8);
    text-align: center;
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        gap: var(--space-1);
    }
    .nav-toggle { display: flex; order: 2; }
    .logo { order: 1; }
    .header-inner .cta-button {
        order: 4;
        width: 100%;
        margin-top: var(--space-1);
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    .main-nav {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .main-nav.open { max-height: 400px; }
    .nav-list {
        flex-direction: column;
        gap: var(--space-2);
        padding: var(--space-2) 0;
        width: 100%;
    }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        gap: var(--space-1);
    }
    .nav-toggle { display: flex; order: 2; }
    .logo { order: 1; }
    .header-inner .cta-button {
        order: 4;
        width: 100%;
        margin-top: var(--space-1);
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    .main-nav {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .main-nav.open { max-height: 400px; }
    .nav-list {
        flex-direction: column;
        gap: var(--space-2);
        padding: var(--space-2) 0;
        width: 100%;
    }
    .footer-inner { grid-template-columns: 1fr; }
}