@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary: #7C3AED;
    --primary-glow: rgba(124, 58, 237, 0.4);
    --secondary: #A3E635;
    --accent: #F472B6;
    --bg-dark: #0A0F1D;
    --text-main: #F9FAFB;
    --text-muted: #9CA3AF;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 4rem 0 2rem;
    color: var(--secondary);
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 65ch;
    color: var(--text-muted);
}

.highlight {
    color: var(--text-main);
    font-weight: 600;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 10% 5%;
}

.hero-media {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 40%;
    height: 70%;
    z-index: -1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2);
}

/* Glass Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 32px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Content Sections */
.long-form-content {
    max-width: 900px;
    margin: 8rem auto;
}

.staggered-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 10rem 0;
}

.staggered-section:nth-child(even) {
    flex-direction: row-reverse;
}

.section-media {
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.section-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-text {
    flex: 1.2;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Funny Ribbon */
.funny-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

footer p {
    margin: 0 auto;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .staggered-section, .staggered-section:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-media {
        display: none;
    }
}
