/* ========================================
   Kuningan Hub — Design Tokens (revisi minimalist)
   Lihat skill kuninganhub-frontend / references/design-tokens.md
   ======================================== */

:root {
    --brand-primary: #0093E9;
    --brand-secondary: #4FB3AA;
    --brand-accent: #E8563F;
    --brand-gradient: linear-gradient(135deg, #0093E9 0%, #4FB3AA 100%);

    --success-color: #1E9E5A;
    --warning-color: #B8860B;
    --danger-color: #D14343;
    --info-color: #3D5AFE;

    --bg-body: #FAFBFC;
    --bg-surface: #FFFFFF;
    --bg-surface-alt: #F2F4F7;
    --border-subtle: #E5E8EC;

    --text-primary: #14181F;
    --text-secondary: #4B5563;
    --text-muted: #8A93A1;

    --section-padding-y: 4.5rem;
    --card-padding: 1.5rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.08), 0 1px 2px rgba(16, 24, 40, 0.04);
    --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
    --shadow-lg: 0 12px 24px rgba(16, 24, 40, 0.10);

    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    max-width: 1140px;
}
