/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green-light: #5BB8F1;
    --green-mid: #3B82F6;
    --green-dark: #1D4ED8;
    --green-glow: rgba(91, 184, 241, 0.15);
    --bg-dark: #0A0E17;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: rgba(255,255,255,0.06);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── Section Shared ─── */
section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-light);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* ─── Page Hero (non-home pages) ─── */
.page-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
}

.page-hero .section-title {
    max-width: 800px;
    margin: 0 auto 1rem;
}

.page-hero .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}
