* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

body {
    background: #020918;
    color: #dce4f0;
    overflow-x: hidden;
}

/* ---- Color tokens ---- */
:root {
    --navy-950: #020918;
    --navy-900: #03112b;
    --navy-800: #061a3e;
    --gold-400: #f0c040;
    --gold-500: #e6a800;
    --gold-300: #f5d980;
    --accent: #3b82f6;
}

/* ---- Gradients ---- */
.gradient-text {
    background: linear-gradient(135deg, #f0c040 0%, #faecc2 60%, #f0c040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-line {
    height: 3px;
    width: 56px;
    background: linear-gradient(90deg, #f0c040, #e6a800);
    border-radius: 2px;
    display: block;
}

/* ---- Cards ---- */
.card-corp {
    background: linear-gradient(160deg, rgba(6, 26, 62, 0.95) 0%, rgba(3, 17, 43, 0.98) 100%);
    border: 1px solid rgba(240, 192, 64, 0.18);
    border-radius: 12px;
    transition: all .35s ease;
}

.card-corp:hover {
    border-color: rgba(240, 192, 64, 0.5);
    box-shadow: 0 8px 40px rgba(240, 192, 64, 0.1), 0 24px 64px rgba(0, 0, 0, .45);
    transform: translateY(-5px);
}

/* ---- Buttons ---- */
.btn-gold {
    background: linear-gradient(135deg, #f0c040, #e6a800);
    color: #020918;
    font-weight: 700;
    letter-spacing: .01em;
    transition: all .3s ease;
    display: inline-block;
}

.btn-gold:hover {
    box-shadow: 0 6px 28px rgba(240, 192, 64, .45);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1.5px solid rgba(240, 192, 64, .55);
    color: #f0c040;
    transition: all .3s ease;
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(240, 192, 64, .08);
    border-color: #f0c040;
}

/* ---- Nav ---- */
.nav-link {
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f0c040;
    transition: width .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ---- Backgrounds ---- */
.hero-bg {
    background: radial-gradient(ellipse 80% 60% at 15% 55%, rgba(240, 192, 64, .055) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 85% 20%, rgba(59, 130, 246, .05) 0%, transparent 55%), #020918;
}

.dot-grid {
    background-image: radial-gradient(rgba(240, 192, 64, .07) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* ---- Icon box ---- */
.icon-box {
    background: linear-gradient(135deg, rgba(240, 192, 64, .14), rgba(240, 192, 64, .06));
    border: 1px solid rgba(240, 192, 64, .22);
    border-radius: 10px;
}

/* ---- Stat ---- */
.stat-box {
    background: linear-gradient(135deg, rgba(240, 192, 64, .09), rgba(59, 130, 246, .05));
    border: 1px solid rgba(240, 192, 64, .22);
    border-radius: 12px;
}

/* ---- Divider ---- */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 192, 64, .25), transparent);
}

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity .8s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* ---- Misc ---- */
.menu-open {
    display: flex !important;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #020918;
}

::-webkit-scrollbar-thumb {
    background: #f0c040;
    border-radius: 3px;
}

.badge-pill {
    background: rgba(240, 192, 64, .12);
    border: 1px solid rgba(240, 192, 64, .3);
    color: #f0c040;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
}

.testimonial-card {
    background: linear-gradient(160deg, rgba(6, 26, 62, .9), rgba(3, 17, 43, .95));
    border: 1px solid rgba(240, 192, 64, .15);
    border-radius: 14px;
}

.tech-chip {
    background: rgba(240, 192, 64, .09);
    border: 1px solid rgba(240, 192, 64, .22);
    color: #f5d980;
    padding: 4px 13px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    display: inline-block;
}

.process-line::before {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 1px;
    background: linear-gradient(90deg, rgba(240, 192, 64, .4), rgba(240, 192, 64, .1));
    display: block;
}