body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
}


:root {
    --deep-space: #F7F5FC;
    --surface-1: #FFFFFF;
    --surface-2: #F5F1FA;
    --surface-3: #ECE6F5;

    --accent: #A855F7;
    --accent-light: #a87fd4;
    --accent-glow: #a855f740;
    --accent-soft: rgba(169, 85, 247, 0.109);
    --accent-border: #a855f733;

    --text-primary: #242033;
    --text-secondary: #6B6780;
    --text-muted: #7a748b;

    --border-subtle: rgba(36, 32, 51, 0.08);

    --green: #34D399;
    --amber: #FBBF24;
    --rose: #FB7185;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-pill: 100px;
}
body {
    margin: 0;
}

.clip-wrapper {
    border-radius: 50px;
    overflow: hidden;
    position: static;
}
/* ===== SECTIONS ===== */

.section { padding: 0px 0; position: relative; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    font-family: 'JetBrains Mono', monospace;
}

.section-label::before {
    content: '- ';
    width: 18px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
}

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

