:root {
    color-scheme: dark;
}

[x-cloak] {
    display: none !important;
}

body {
    background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.08), transparent 45%),
                radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 40%),
                #020617;
}

a {
    text-decoration: none;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(59, 130, 246, 0.14)),
                radial-gradient(circle at 20% 20%, rgba(45, 212, 191, 0.18), transparent 55%);
}

.glass-card {
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.08);
    box-shadow: 0 30px 60px -40px rgba(14, 165, 233, 0.45);
    backdrop-filter: blur(16px);
}

.gradient-border {
    position: relative;
    border-radius: 1rem;
}

.gradient-border::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.45), rgba(56, 189, 248, 0.45));
    -webkit-mask:
        linear-gradient(#000, #000) content-box,
        linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.gradient-border > * {
    position: relative;
    z-index: 1;
}

.badge-success {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.12);
    color: rgb(16, 185, 129);
    font-size: 0.75rem;
    font-weight: 600;
}

.section-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
}

.text-gradient {
    background: linear-gradient(135deg, #34d399, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.table-gradient {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.08), rgba(56, 189, 248, 0.05));
}

.progress-bar {
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(71, 85, 105, 0.4);
    overflow: hidden;
}

.progress-bar__value {
    height: 100%;
    background: linear-gradient(90deg, #34d399, #38bdf8);
    border-radius: inherit;
}
