/* global.css — AVITTAM Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* ---------- surfaces ---------- */
    --bg-primary:   #0A0A0A;
    --bg-secondary: #141414;
    --bg-tertiary:  #1E1E1E;
    --bg-elevated:  #262626;
    --surface-1:    var(--bg-primary);
    --surface-2:    var(--bg-secondary);
    --surface-3:    var(--bg-tertiary);
    --surface-4:    var(--bg-elevated);

    /* ---------- accent ---------- */
    --accent:        #F5C518;
    --accent-hover:  #E8B200;
    --accent-soft:   rgba(245, 197, 24, 0.10);
    --accent-glow:   rgba(245, 197, 24, 0.25);
    --gold-gradient: linear-gradient(135deg, var(--accent) 0%, #D4A017 100%);

    /* ---------- text ---------- */
    --text-primary:   #FAFAFA;
    --text-secondary: #8A8A8A;
    --text-muted:     #555555;
    --text-1: var(--text-primary);
    --text-2: var(--text-secondary);
    --text-3: var(--text-muted);

    /* ---------- borders & rings ---------- */
    --border:       rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --ring:         0 0 0 3px var(--accent-soft);

    /* ---------- semantic ---------- */
    --danger:  #FF4D4D;
    --success: #34D399;
    --warning: #F59E0B;

    /* ---------- shadows ---------- */
    --shadow-soft: 0 6px 24px rgba(0, 0, 0, 0.30);
    --shadow-elev: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 40px var(--accent-soft);

    /* ---------- radii ---------- */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* ---------- motion ---------- */
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --dur-fast: 160ms;
    --dur-base: 220ms;
    --dur-slow: 360ms;

    /* ---------- z-index scale ---------- */
    --z-nav:   100;
    --z-modal: 1000;
    --z-toast: 2000;

    /* ---------- chrome ---------- */
    --nav-height: 72px;
}

@media (prefers-reduced-motion: reduce) {
    :root {
        --dur-fast: 0ms;
        --dur-base: 0ms;
        --dur-slow: 0ms;
    }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 16px); }

/* ===== SCROLLBAR (theme) ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-secondary);
}
/* WebKit / Chromium / Edge */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent) 0%, #D4A017 100%);
    border-radius: 999px;
    border: 2px solid var(--bg-secondary);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-hover) 0%, #C19115 100%);
}
::-webkit-scrollbar-corner {
    background: var(--bg-secondary);
}
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }
a:hover { opacity: 0.85; }
ul { list-style: none; }
img { max-width: 100%; }
::selection { background: var(--accent); color: #000; }

/* Grid Texture */
.grid-bg {
    position: relative;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
}
.grid-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-soft) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== SCROLL-FLOW GOLDEN LINES (landing page only) =====
   Decorative parallel golden arcs behind the landing page. Sits
   above the black body background (z-index:-1) and below all page
   content. Markup + the arc builder / scroll driver live in
   templates/index.html (#flow-lines). Not used on other pages. */
.flow-lines {
    position: fixed; inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.flow-lines svg { width: 100%; height: 100%; display: block; }
/* One golden strand per line. No always-on "path" underneath — each
   line only exists as far as it has been drawn. The draw length is
   driven by stroke-dashoffset, set per scroll in the index.html script. */
.flow-line {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.2;
    opacity: 0.4;
}

/* Base Layout */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}
.main-content {
    min-height: calc(100vh - var(--nav-height));
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 80px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-height);
    /* Soft top-down scrim that fades into the page instead of a hard
       translucent band — lets the golden top glow read through naturally. */
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.70) 0%, rgba(10, 10, 10, 0.30) 55%, rgba(10, 10, 10, 0) 100%);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.brand {
    display: flex; align-items: center; gap: 14px;
    font-weight: 900; font-size: 18px; letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: opacity 0.2s;
}
.brand:hover { opacity: 1; }
.brand-icon {
    width: 34px; height: 34px;
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-weight: 900; font-size: 26px; line-height: 1;
    text-shadow: 0 2px 12px var(--accent-soft);
}
.nav-links {
    display: flex; gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 6px 10px;
}
.nav-links a {
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
}
.nav-links a:hover {
    background: rgba(245, 197, 24, 0.12);
    color: var(--accent);
    opacity: 1;
}
.nav-links a[aria-disabled="true"] {
    opacity: 0.4;
    pointer-events: none;
}
.nav-actions {
    display: flex; gap: 12px; align-items: center;
}

/* Navbar-specific action buttons — kept separate from global .btn-*
   so they don't drag the rest of the app's buttons into this look. */
.nav-btn-text {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; border: none;
    color: var(--accent);
    font-family: inherit; font-weight: 700; font-size: 12px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 10px; cursor: pointer; white-space: nowrap;
    transition: opacity 0.2s ease;
}
.nav-btn-text:hover { opacity: 0.65; }
.nav-btn-solid {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent); color: #000;
    border: none; border-radius: 7px;
    font-family: inherit; font-weight: 800; font-size: 12px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 9px 16px; cursor: pointer; white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-btn-solid:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
}
.nav-btn-text:active, .nav-btn-solid:active { transform: scale(0.97); }
.nav-chevron { font-size: 0.7em; line-height: 1; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: rgba(245, 197, 24, 0.3);
}
.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.08);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #D4A017 100%);
    color: #000;
    font-weight: 700;
    border: none;
}
.btn-primary:hover {
    box-shadow: 0 4px 24px var(--accent-glow);
    transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-danger {
    background: rgba(255,77,77,0.10);
    color: var(--danger);
    border: 1px solid rgba(255,77,77,0.25);
}
.btn-danger:hover { background: rgba(255,77,77,0.18); }
.btn-success {
    background: rgba(52,211,153,0.10);
    color: var(--success);
    border: 1px solid rgba(52,211,153,0.25);
}
.btn-success:hover { background: rgba(52,211,153,0.18); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 36px; font-size: 16px; }
.btn-google {
    background: #FFFFFF;
    color: #3C4043;
    font-weight: 600;
    border: 1px solid #dadce0;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    font-size: 15px;
    gap: 12px;
}
.btn-google:hover {
    background: #F8F9FA;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.btn-google svg { flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
    background: var(--bg-primary);
}
.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand { color: var(--text-secondary); font-size: 14px; line-height: 1.8; }
.footer-brand .logo { font-weight: 900; font-size: 18px; letter-spacing: 2px; color: var(--text-primary); margin-bottom: 12px; text-transform: uppercase; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-secondary); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-primary); opacity: 1; }
.footer-bottom {
    max-width: 1140px;
    margin: 40px auto 0;
    padding: 24px 32px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* ===== GATE POPUP (Login) ===== */
.gate-overlay {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
}
.gate-overlay.active {
    opacity: 1; pointer-events: auto;
}
.gate-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    width: 100%; max-width: 420px;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px var(--accent-soft);
    transform: translateY(24px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gate-overlay.active .gate-card {
    transform: translateY(0) scale(1);
}
.gate-logo-text { font-size: 14px; letter-spacing: 3px; color: var(--accent); font-weight: 700; text-transform: uppercase; margin-bottom: 24px; }
.gate-card h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; color: var(--text-primary); }
.gate-card p { color: var(--text-secondary); font-size: 14px; margin-bottom: 28px; line-height: 1.6; }
.gate-divider { display: flex; align-items: center; gap: 16px; margin: 20px 0; color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.gate-divider::before, .gate-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.spinner {
    width: 38px; height: 38px; margin: 0 auto 18px;
    border: 3px solid var(--border); border-top-color: var(--accent);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Role select cards */
.role-select { display: flex; gap: 16px; margin-bottom: 16px; }
.role-card {
    flex: 1;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.role-card:hover { border-color: var(--accent); background: var(--accent-soft); }
.role-card.selected { border-color: var(--accent); background: var(--accent-soft); }
.role-card .role-icon { font-size: 32px; margin-bottom: 8px; }
.role-card .role-label { font-weight: 700; font-size: 14px; }

/* ===== DASHBOARD CARDS/PANELS ===== */
.panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    transition: border-color 0.25s ease;
}
.panel:hover { border-color: var(--border-hover); }
.panel-head {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.panel-head h3 { font-size: 16px; font-weight: 700; letter-spacing: 0.3px; }
.panel-body { padding: 24px; }

/* ===== INPUTS (Global) ===== */
input, select, textarea {
    width: 100%; padding: 14px 16px; margin-bottom: 16px;
    background: var(--bg-tertiary); border: 1px solid var(--border);
    border-radius: var(--radius-md); color: var(--text-primary);
    font-size: 14px; font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* Utilities */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.gap-2 { display: flex; gap: 8px; }
.gap-4 { display: flex; gap: 16px; }

.badge {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
}
.badge.pending { background: rgba(245,197,24,0.12); color: var(--accent); }
.badge.success { background: rgba(52,211,153,0.12); color: var(--success); }
.badge.danger { background: rgba(255,77,77,0.12); color: var(--danger); }

/* Section title with accent line */
.section-title {
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: var(--accent); margin-bottom: 8px;
}

/* Animations */
.fade-in { animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.slide-up { animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* Toast */
#toast {
    position: fixed; bottom: 28px; right: 28px; z-index: 2000;
    background: var(--bg-elevated); border: 1px solid var(--border-hover); border-left: 3px solid var(--accent);
    color: var(--text-primary); padding: 16px 20px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); opacity: 0; transform: translateY(12px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease; max-width: 360px;
}
#toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#toast.err { border-left-color: var(--danger); }

/* Responsive */
@media (max-width: 768px) {
    .navbar-inner { padding: 0 16px; }
    .nav-links { display: none; }
    .container { padding: 0 16px; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .hero-content h1 { font-size: 36px !important; }
}

/* ===== A11Y SKIP LINK ===== */
.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: calc(var(--z-nav) + 1);
    background: var(--accent);
    color: #000;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 16px; outline: none; }

/* Global focus ring for every interactive element */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

/* ===== NAVBAR EXTENSIONS (Task 4) ===== */
.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-1);
    cursor: pointer;
    align-items: center; justify-content: center;
}
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle svg { width: 20px; height: 20px; }

.nav-wallet {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: var(--accent-soft);
    border: 1px solid rgba(245,197,24,0.30);
    border-radius: 999px;
    color: var(--accent);
    font-weight: 700; font-size: 13px;
    transition: all var(--dur-fast) var(--ease-out);
    cursor: default;
}
.nav-wallet::before { content: '₹'; opacity: 0.7; font-weight: 800; }
.nav-wallet[title]:hover { transform: translateY(-1px); box-shadow: 0 4px 12px var(--accent-soft); }

.nav-user {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--text-2);
    font-size: 14px; font-weight: 500;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    transition: background var(--dur-fast) var(--ease-out);
}
.nav-user:hover { background: rgba(255,255,255,0.04); color: var(--text-1); opacity: 1; }
.nav-user .name { color: var(--text-1); font-weight: 600; }

@media (max-width: 820px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: fixed; top: var(--nav-height); left: 0; right: 0;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(16px);
        flex-direction: column; gap: 0;
        padding: 12px 16px 16px;
        border: none;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        display: none;
    }
    body.nav-mobile-open .nav-links { display: flex; }
    .nav-links a { padding: 12px 16px; }
    .nav-actions .nav-btn-text,
    .nav-actions .nav-user,
    .nav-actions #nav-wallet { display: none !important; }
    body.nav-mobile-open .nav-actions { display: flex; }
}

/* ============================================================
   COMPONENT POLISH — visual styling only
   Additive overrides that deepen gradients, add light sheens,
   refined shadows, and smoother hover/focus states across the
   shared components. Strictly cosmetic: no padding, margin,
   width/height, font-size, or positioning changes — geometry of
   every component is untouched. All motion collapses to instant
   under the prefers-reduced-motion rule above.
   ============================================================ */

/* ----- Buttons: gold glint sweep on the filled variants ----- */
/* Sheen rides a ::before inside an isolated stacking context, so it sits
   above the button's own fill but below its label — never reflows it. */
.btn-primary, .nav-btn-solid { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::before, .nav-btn-solid::before {
    content: ''; position: absolute; top: 0; left: -120%;
    width: 80%; height: 100%; z-index: -1; pointer-events: none;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease-out);
}
.btn-primary:hover::before, .nav-btn-solid:hover::before { left: 140%; }
/* Richer resting + hover depth for the primary call-to-action. */
.btn-primary { box-shadow: 0 2px 10px rgba(245, 197, 24, 0.12); }
.btn-primary:hover { box-shadow: 0 6px 28px var(--accent-glow); }
.btn-outline:hover { box-shadow: 0 0 24px rgba(245, 197, 24, 0.10), inset 0 0 0 1px rgba(245, 197, 24, 0.20); }

/* ----- Inputs: hover hint + gentle lift into focus ----- */
input, select, textarea {
    transition: border-color var(--dur-base) var(--ease-out),
                box-shadow var(--dur-base) var(--ease-out),
                background var(--dur-base) var(--ease-out);
}
input:hover, select:hover, textarea:hover { border-color: var(--border-hover); }
input:focus, select:focus, textarea:focus { background: var(--bg-secondary); }

/* ----- Panels: faint top sheen + soft shadow on hover ----- */
.panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent 140px), var(--bg-secondary);
    transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.panel:hover { box-shadow: var(--shadow-soft); }

/* ----- Badges: crisp tinted outline (border-box, no size change) ----- */
.badge { border: 1px solid transparent; }
.badge.pending { border-color: rgba(245, 197, 24, 0.28); }
.badge.success { border-color: rgba(52, 211, 153, 0.28); }
.badge.danger  { border-color: rgba(255, 77, 77, 0.28); }

/* ----- Role cards: soft shadow to match the rest on hover ----- */
.role-card:hover { box-shadow: var(--shadow-soft); }

/* ----- Footer links: settle on brand gold instead of plain white ----- */
.footer-col a { transition: color var(--dur-fast) var(--ease-out); }
.footer-col a:hover { color: var(--accent); }
