/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0a0a0f;
    --bg2: #12121a;
    --bg3: #1a1a2e;
    --text: #f0f0f5;
    --text2: #a0a0b8;
    --text3: #6b6b80;
    --amber: #f59e0b;
    --amber-d: #d97706;
    --coral: #f97316;
    --teal: #06b6d4;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --card: rgba(255,255,255,0.04);
    --border: rgba(255,255,255,0.08);
    --radius: 16px;
    --radius-sm: 8px;
    --font: 'Outfit', sans-serif;
    --font2: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--amber), var(--coral), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-retro {
    font-style: italic;
    color: var(--amber);
    -webkit-text-fill-color: var(--amber);
}

.text-digital {
    color: var(--teal);
    -webkit-text-fill-color: var(--teal);
}

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--amber);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font2);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}
