:root {
    --ink: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --panel: #ffffff;
    --paper: #ffffff;
    --bg: #f8fafc;
    --ocean-50: #eff6ff;
    --ocean-light: #eff6ff;
    --ocean-mid: #3b82f6;
    --ocean-dark: #1e40af;
    --land: #10b981;
    --rose-light: #ffe4e6;
    --sand-light: #fef3c7;
    --sand: #f59e0b;
    --radius: 8px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --radius-xl: 18px;
    --radius-2xl: 24px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 6px 12px -2px rgba(0, 0, 0, 0.2);
    --color-line: #e2e8f0;
    --color-text-soft: #64748b;
    --color-brand: #0284c7;
    --primary: #025f7f;
    --hero-dark: #0c4a6e;
    --land: #10b981;
    --danger: #dc2626;
    --danger-light: #fee2e2;
    --info: #0ea5e9;
    --info-light: #e0f2fe;
    --light: #f1f5f9;
    --light-text: #475569;
}
.text-custom-brand {
    color: var(--color-brand);
}

.text-ocean-dark {
    color: var(--ocean-dark);
}
.text-custom-gray {
    color: var(--muted);
}
.tag {
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;
    background: var(--ocean-50);
    color: var(--ocean-dark);
    border: 1px solid var(--ocean-light);
}
.tag-primary {
    background: #e0e7ff;
    color: #4338ca;
    border-color: #c7d2fe;
}

.label-custom-success {
    background: var(--land);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}
.label-custom-light-dark {
    background: var(--ocean-mid);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}
.label-custom-primary {
    background: var(--color-brand);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}
.label-custom-danger {
    background: var(--danger);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.label-custom-info {
    background: var(--info);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.label-custom-light {
    background: var(--light);
    color: var(--light-text);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.hero-header {
    background-color: var(--hero-dark);
    background: linear-gradient(135deg, var(--hero-dark), var(--color-brand));
    padding: 40px 60px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    margin-bottom: 1.4rem;
    border-radius: 0 0 50px 50px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(
            circle at 20% 50%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 25%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 25%
        );
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.bg-custom-light {
    background-color: var(--bg);
}

.text-hero-dark {
    color: var(--hero-dark);
}
