:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent: #86868b;
}

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

body, html {
    width: 100%;
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.glow-blob {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 80vh;
    background: radial-gradient(ellipse at center, rgba(52, 199, 89, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    filter: blur(80px);
    animation: waveBlob 15s ease-in-out infinite alternate;
}

.blob-2 {
    width: 60vw;
    height: 60vh;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    animation: waveBlob2 20s ease-in-out infinite alternate-reverse;
}

@keyframes waveBlob {
    0% { transform: translate(-60%, -40%) scale(0.9) rotate(0deg); }
    50% { transform: translate(-45%, -55%) scale(1.1) rotate(20deg); }
    100% { transform: translate(-35%, -45%) scale(1) rotate(-15deg); }
}

@keyframes waveBlob2 {
    0% { transform: translate(-30%, -60%) scale(1.1) rotate(0deg); }
    100% { transform: translate(-70%, -30%) scale(0.8) rotate(30deg); }
}

#intro-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: #000000;
    z-index: 50;
}

#bg-greeting-container {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100; pointer-events: none;
    display: flex; justify-content: center; align-items: center; width: 100vw;
}

#bg-greeting {
    font-family: 'Caveat', cursive; font-size: 6rem; font-weight: 700; color: #ffffff; margin: 0;
}

#main-content {
    position: relative; z-index: 10; opacity: 0; display: none;
}

.screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.text-center { text-align: center; }
.spacing-huge { height: 8rem; }
.spacing-medium { height: 4rem; }
.max-w-800 { max-width: 800px; margin: 0 auto; }

.title {
    font-size: 10rem; font-weight: 800; letter-spacing: -5px; line-height: 1;
}

.subtitle {
    font-size: 2rem; font-weight: 400; color: #a1a1a6; margin-top: 1rem;
}

.massive-text {
    font-size: 5rem; font-weight: 800; letter-spacing: -2.5px; line-height: 1.1;
}

.section-title {
    font-size: 4rem; font-weight: 700; letter-spacing: -1.5px; margin-bottom: 2rem;
}

.sticky-title {
    font-size: 5rem; font-weight: 800; line-height: 1; letter-spacing: -2px;
}

.large-body {
    font-size: 2rem; font-weight: 400; max-width: 900px; margin: 0 auto; line-height: 1.4;
}

.fade-text { color: #666; }

.title, .massive-text, .section-title, .sticky-title { 
    background: linear-gradient(135deg, #ffffff 20%, #777777 100%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.flex-center {
    display: flex; justify-content: center; align-items: center; position: relative;
}

.stat-backdrop {
    position: absolute;
    font-size: 20rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.front-layer {
    position: relative; z-index: 2;
}

.editorial-screen {
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
}

.editorial-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.editorial-left {
    flex: 0 0 35%;
    position: sticky;
    top: 30vh;
}

.editorial-right {
    flex: 1;
    padding-top: 1rem;
}

.editorial-text {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: #a1a1a6;
    font-weight: 400;
}

.editorial-text strong {
    color: #fff;
    font-weight: 600;
}

.footer {
    padding: 10rem 2rem 5rem 2rem; text-align: center; border: none; background: transparent;
}

.contact-links {
    display: flex; justify-content: center; gap: 2rem;
}

.btn {
    text-decoration: none; padding: 1.2rem 4rem; border-radius: 50px; font-size: 1.2rem; font-weight: 600;
    transition: all 0.3s ease; border: 1px solid #333; color: #fff; background: transparent;
}

.btn:hover { background-color: #111; }
.btn.primary { background-color: #fff; color: #000; border: none; }
.btn.primary:hover { background-color: #ddd; transform: scale(1.05); }
.footer-note { font-size: 1rem; color: var(--accent); margin-bottom: 1rem; }
.copyright { font-size: 0.9rem; color: #444; }

@media (max-width: 1024px) {
    .editorial-container {
        flex-direction: column;
        gap: 2rem;
    }
    .editorial-left {
        position: static;
        flex: auto;
    }
    .title { font-size: 7rem; }
    .massive-text { font-size: 3.5rem; }
    .stat-backdrop { font-size: 10rem; }
}

@media (max-width: 768px) {
    .title { font-size: 5rem; }
    .massive-text { font-size: 2.5rem; }
    .large-body, .editorial-text { font-size: 1.5rem; }
    .sticky-title { font-size: 3.5rem; }
    .screen, .editorial-screen { padding: 6rem 2rem; }
    .contact-links { flex-direction: column; }
}
