/* ============================================================
   SVY - Site Theme (Black / Dark Saffron / White) via [data-theme]
   Dark (default): black bg, white text, dark saffron accents
   Light: white bg, black text, dark saffron accents
   ============================================================ */
:root {
    --primary: #E07000;
    --secondary: #B85C00;
    --accent: #FF8C1A;
    --bg: #ffffff;
    --bg-soft: #FFF6EC;
    --surface: rgba(255, 255, 255, 0.80);
    --surface-border: rgba(224, 112, 0, 0.30);
    --text: #0a0a0a;
    --text-soft: #5c5c5c;
    --shadow: 0 10px 30px rgba(184, 92, 0, 0.10);
    --radius: 16px;
}

[data-theme="dark"] {
    --bg: #000000;
    --bg-soft: #0f0f10;
    --surface: rgba(16, 16, 18, 0.85);
    --surface-border: rgba(224, 112, 0, 0.35);
    --text: #ffffff;
    --text-soft: #b5b5b5;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}

* { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background .3s ease, color .3s ease;
}

.text-saffron { color: var(--primary) !important; }
.bg-saffron { background-color: var(--primary) !important; }
.text-muted-soft { color: var(--text-soft); }

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn-saffron {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-saffron:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 112, 0, .4);
}

.btn-outline-saffron {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    background: transparent;
}

.btn-outline-saffron:hover { background: var(--primary); color: #fff; }
.btn-saffron.glow { animation: pulse 2.4s infinite; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224, 112, 0, .5); }
    50% { box-shadow: 0 0 0 14px rgba(224, 112, 0, 0); }
}

/* ---------- Glassmorphism ---------- */
.glass-card {
    background: var(--surface);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.glass-dark {
    background: rgba(20, 22, 28, 0.45);
    border-color: rgba(255, 255, 255, 0.18);
}

/* ---------- Topbar / nav ---------- */
.topbar { background: linear-gradient(90deg, var(--secondary), var(--accent)); color: #fff; }
.social-link { color: #fff; opacity: .85; font-size: 13px; width: 24px; display: inline-block; text-align: center; }
.social-link:hover { opacity: 1; color: #fff; }

.theme-toggle {
    background: rgba(255, 255, 255, .18);
    border: none;
    color: inherit;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .3s ease;
}
.theme-toggle:hover { transform: rotate(20deg); }

.main-nav {
    background: var(--surface);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--surface-border);
}

.main-nav .nav-link { color: var(--text); font-weight: 600; font-size: 14.5px; }
.main-nav .nav-link:hover { color: var(--primary); }
.main-nav .dropdown-menu { background: var(--bg); border: 1px solid var(--surface-border); border-radius: 12px; box-shadow: var(--shadow); }
.main-nav .dropdown-item { color: var(--text); font-size: 14px; }
.main-nav .dropdown-item:hover { background: var(--bg-soft); color: var(--primary); }
.navbar-toggler { color: var(--primary); border: none; font-size: 22px; }

.brand-mark {
    width: 42px; height: 42px;
    background-color: #fff;
    color: #fff; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.brand-text { line-height: 1.1; color: var(--text); }
.brand-text strong { color: var(--secondary); }
.brand-text small { font-size: 10px; color: var(--text-soft); }

/* ---------- Hero ---------- */
.hero-slide {
    height: 560px;
    display: flex; align-items: center;
    position: relative;
}
.hero-gradient-1 { background: linear-gradient(120deg, #B85C00, #E07000, #F09A3E); }
.hero-gradient-2 { background: linear-gradient(120deg, #8A4500, #FF8C1A, #E07000); }
.hero-gradient-3 { background: linear-gradient(120deg, #5C2E00, #B85C00, #E89040); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 40%, transparent 30%, rgba(0,0,0,.35)); }
.hero-content { position: relative; z-index: 2; color: #fff; text-align: center; }
.hero-title { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; text-shadow: 0 4px 18px rgba(0,0,0,.3); }
.hero-sub { font-size: clamp(1rem, 2.4vw, 1.4rem); opacity: .92; margin-bottom: 24px; }

.hero-stats {
    margin-top: -64px;
    position: relative; z-index: 5;
    padding: 28px;
}
.stat-value { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; color: var(--secondary); }
.stat-label { font-size: 13px; color: var(--text-soft); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-soft); }
.section-tag {
    display: inline-block;
    background: rgba(224, 112, 0, .14);
    color: var(--secondary);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 30px;
    margin-bottom: 12px;
}
.tag-light { background: rgba(255,255,255,.2); color: #fff; }
.section-title { font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.4rem); }

.mini-feature {
    background: var(--bg-soft);
    border: 1px solid var(--surface-border);
    padding: 12px 16px; border-radius: 12px;
    font-weight: 600; font-size: 14px;
}
.mini-feature i { color: var(--primary); margin-right: 8px; }

.about-tile {
    border-radius: 14px; padding: 26px 14px;
    text-align: center; color: #fff; font-weight: 600;
    display: flex; flex-direction: column; gap: 10px; align-items: center;
    transition: transform .25s ease;
}
.about-tile:hover { transform: translateY(-6px) scale(1.02); }
.about-tile i { font-size: 30px; }
.tile-1 { background: linear-gradient(135deg, #E07000, #B85C00); }
.tile-2 { background: linear-gradient(135deg, #FF8C1A, #E07000); }
.tile-3 { background: linear-gradient(135deg, #B85C00, #8A4500); }
.tile-4 { background: linear-gradient(135deg, #F09A3E, #FF8C1A); }

/* ---------- Benefit cards ---------- */
.benefit-card { padding: 28px; text-align: center; position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.benefit-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(184, 92, 0, .22); }
.benefit-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; font-size: 26px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.benefit-amount { font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.benefit-link { color: var(--primary); font-weight: 700; font-size: 14px; text-decoration: none; }
.benefit-link i { transition: transform .2s ease; }
.benefit-card:hover .benefit-link i { transform: translateX(5px); }

.why-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    padding: 28px 18px; text-align: center; height: 100%;
    transition: transform .25s ease;
}
.why-card:hover { transform: translateY(-6px); }
.why-card i { font-size: 30px; color: var(--primary); margin-bottom: 12px; }
.why-card p { color: var(--text-soft); margin: 0; }

/* ---------- Girl banner ---------- */
.girl-banner { background: linear-gradient(120deg, #8A4500, #B85C00 55%, #E07000); }
.girl-step { background: rgba(255,255,255,.12); color: #fff; border-radius: 10px; padding: 10px 14px; margin-bottom: 10px; font-weight: 500; }
.step-badge { background: #fff; color: var(--secondary); font-weight: 800; font-size: 12px; border-radius: 8px; padding: 3px 10px; margin-right: 10px; }

/* ---------- Stories / news / testimonials ---------- */
.story-card { padding: 28px; position: relative; }
.story-quote { font-size: 28px; color: rgba(224, 112, 0, .35); margin-bottom: 12px; }
.story-author { display: flex; gap: 12px; align-items: center; margin-top: 16px; }
.story-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.news-card { padding: 24px; transition: transform .25s ease; }
.news-card:hover { transform: translateY(-6px); }
.news-date { font-size: 12px; color: var(--text-soft); font-weight: 600; }
.testimonial-card { padding: 26px; }
.stars { color: #FFB300; }

.partner-strip { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.partner-chip {
    background: var(--surface); border: 1px solid var(--surface-border);
    border-radius: 30px; padding: 10px 22px; font-weight: 600; font-size: 14px;
}
.partner-chip i { color: var(--primary); }

.cta-banner { background: linear-gradient(120deg, #B85C00, #FF8C1A); }

/* ---------- Gallery ---------- */
.gallery-tile {
    border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/3; box-shadow: var(--shadow);
    transition: transform .25s ease;
}
.gallery-tile:hover { transform: scale(1.03) rotate(-.5deg); }
.gallery-tile img, .gallery-tile video { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
    display: flex; flex-direction: column; gap: 8px;
    align-items: center; justify-content: center;
    color: #fff; font-weight: 600;
}
.gallery-placeholder i { font-size: 34px; opacity: .8; }
.gp-1 { background: linear-gradient(135deg, #E07000, #B85C00); }
.gp-2 { background: linear-gradient(135deg, #F09A3E, #FF8C1A); }
.gp-3 { background: linear-gradient(135deg, #B85C00, #8A4500); }
.gp-4 { background: linear-gradient(135deg, #FF8C1A, #E07000); }
.gp-5 { background: linear-gradient(135deg, #8A4500, #E07000); }
.gp-6 { background: linear-gradient(135deg, #E89040, #B85C00); }

/* ---------- Page hero / misc ---------- */
.page-hero {
    background: linear-gradient(120deg, var(--secondary), var(--primary));
    color: #fff; text-align: center; padding: 72px 0 56px;
}
.page-hero h1 { font-weight: 800; }
.page-hero p { opacity: .9; margin: 0; }

.kpi { display: flex; flex-direction: column; }
.kpi strong { font-size: 26px; font-weight: 800; }
.kpi span { font-size: 13px; color: var(--text-soft); }

.journey-item { padding: 10px 0; border-bottom: 1px dashed var(--surface-border); }
.journey-item strong { color: var(--primary); margin-right: 10px; }
.journey-item:last-child { border: none; }

.guide-list li { margin-bottom: 10px; color: var(--text-soft); }
.side-link { display: block; padding: 10px 0; border-bottom: 1px dashed var(--surface-border); color: var(--text); text-decoration: none; font-weight: 500; font-size: 14px; }
.side-link:hover { color: var(--primary); }
.side-link i { color: var(--primary); }
.help-card { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; border: none; }

.dept-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 8px 0; border-bottom: 1px dashed var(--surface-border); }

.download-row { display: flex; align-items: center; gap: 14px; padding: 18px; }
.download-row > i { font-size: 28px; color: var(--accent); }

.alert-strip {
    background: rgba(255, 140, 26, .1);
    border: 1px solid rgba(255, 140, 26, .3);
    border-radius: 12px; padding: 14px 18px;
    color: var(--text);
}

.empty-state { text-align: center; padding: 48px 16px; color: var(--text-soft); }
.empty-state i { font-size: 44px; color: var(--primary); opacity: .5; margin-bottom: 14px; }

.accordion-item { background: transparent; border-color: var(--surface-border); }
.accordion-button { background: transparent; color: var(--text); font-weight: 600; }
.accordion-button:not(.collapsed) { background: rgba(224, 112, 0, .12); color: var(--secondary); box-shadow: none; }
.accordion-body { color: var(--text-soft); }

/* ---------- Forms ---------- */
.form-control, .form-select {
    background: var(--bg); color: var(--text);
    border: 1.5px solid var(--surface-border);
    border-radius: 10px; padding: 10px 14px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(224, 112, 0, .15);
    background: var(--bg); color: var(--text);
}
.form-label { font-weight: 600; font-size: 13.5px; }
.input-group-text { background: var(--bg-soft); border: 1.5px solid var(--surface-border); color: var(--primary); border-radius: 10px 0 0 10px; }

/* ---------- Footer ---------- */
.site-footer { background: #0d0d0f; color: #cfd3dc; }
[data-theme="dark"] .site-footer { background: #000000; }
.footer-brand { color: var(--primary); font-weight: 800; }
.site-footer h6 { color: #fff; font-weight: 700; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; }
.footer-links a { color: #aab0bd; text-decoration: none; font-size: 14px; display: block; padding: 4px 0; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); color: #8a90a0; }

/* ---------- Login pages ---------- */
.login-page {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 24px; position: relative; overflow: hidden;
}
.login-admin { background: linear-gradient(135deg, #1f2430, #3d2a16, #1f2430); }
.login-agent { background: linear-gradient(135deg, #2d1c0a, #B85C00, #2d1c0a); background-size: 200% 200%; animation: bgShift 12s ease infinite; }
.login-beneficiary { background: linear-gradient(135deg, #E07000, #FF8C1A, #B85C00); background-size: 200% 200%; animation: bgShift 10s ease infinite; }

@keyframes bgShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.login-orb {
    position: absolute; border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    filter: blur(2px);
    animation: floatOrb 9s ease-in-out infinite;
}
.orb-1 { width: 260px; height: 260px; top: -60px; left: -60px; }
.orb-2 { width: 200px; height: 200px; bottom: -50px; right: -40px; animation-delay: 2s; }

@keyframes floatOrb {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-26px); }
}

.login-card { width: 100%; max-width: 430px; padding: 38px; background: rgba(255,255,255,.92); }
[data-theme="dark"] .login-card { background: rgba(26, 29, 38, .92); }
.login-badge {
    width: 72px; height: 72px; border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; font-size: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px rgba(224, 112, 0, .45);
}

/* ---------- Animations ---------- */
[data-animate] {
    opacity: 0; transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
    /* Failsafe: if JS never marks the element .in-view (script error,
       blocked JS, old browser), force it visible after 2s. */
    animation: animateFailsafe 0s 2s forwards;
}
[data-animate].in-view { opacity: 1; transform: none; animation: none; }
@keyframes animateFailsafe { to { opacity: 1; transform: none; } }

/* ---------- Badges ---------- */
.badge-soft { background: rgba(224, 112, 0, .15); color: var(--secondary); border-radius: 8px; padding: 4px 10px; font-size: 12px; font-weight: 700; }
.badge-ok { background: rgba(34, 160, 84, .15); color: #1d8a4b; }
.badge-warn { background: rgba(255, 173, 31, .18); color: #b07900; }
.badge-off { background: rgba(225, 65, 65, .14); color: #c43c3c; }

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .hero-slide { height: 460px; }
    .hero-stats { margin-top: -40px; padding: 18px; }
}

/* ---------- Language selector ---------- */
.lang-select-wrap {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255, 255, 255, .14);
    border-radius: 20px; padding: 2px 10px;
    color: #fff;
}
.portal-topbar .lang-select-wrap { background: rgba(224, 112, 0, .14); color: var(--text); }
.lang-select {
    background: transparent; border: none; color: inherit;
    font-size: 12.5px; font-weight: 600;
    max-width: 150px; padding: 3px 2px; cursor: pointer; outline: none;
}
.lang-select option { color: #111; background: #fff; }

/* Hide Google Translate banner/tooltip artifacts */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon, #goog-gt-tt,
.goog-te-balloon-frame, .goog-tooltip, .goog-tooltip:hover { display: none !important; }
body { top: 0 !important; }
font[style*="background"], .goog-text-highlight { background: transparent !important; box-shadow: none !important; }

/* ---------- Video success stories ---------- */
.story-video-card { overflow: hidden; display: flex; flex-direction: column; }
.story-video { position: relative; aspect-ratio: 16/9; background: #000; }
.story-video video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    border-radius: var(--radius) var(--radius) 0 0;
}
.story-video-body { padding: 18px 22px 22px; }
                                            
/* ---------- Join With Us ---------- */
.join-card { padding: 32px; }
@media (max-width: 576px) { .join-card { padding: 22px 18px; } }

/* ---------- Mobile app experience ---------- */
.app-bottom-nav { display: none; }

@media (max-width: 991.98px) {
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }

    .app-bottom-nav {
        display: flex;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 1050;
        background: var(--surface);
        backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid var(--surface-border);
        padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
    }
    .app-bottom-nav a {
        flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
        color: var(--text-soft); text-decoration: none;
        font-size: 10.5px; font-weight: 600;
        padding: 4px 0; border-radius: 12px;
        -webkit-tap-highlight-color: transparent;
    }
    .app-bottom-nav a i { font-size: 18px; }
    .app-bottom-nav a.active, .app-bottom-nav a:active { color: var(--primary); }
    .app-nav-cta i {
        width: 46px; height: 46px; margin-top: -24px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: #fff !important; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        box-shadow: 0 8px 18px rgba(224, 112, 0, .45);
        font-size: 17px;
        border: 3px solid var(--bg);
    }

    /* App-like touch & layout polish */
    .form-control, .form-select { font-size: 16px; min-height: 46px; }
    .btn { min-height: 44px; }
    .hero-slide { height: 420px; }
    .hero-title { font-size: 1.9rem; }
    .section { padding: 48px 0; }
    .page-hero { padding: 44px 0 34px; }
    .glass-card { border-radius: 18px; }
    .main-nav .navbar-collapse {
        background: var(--bg);
        border-radius: 0 0 16px 16px;
        padding: 8px 14px 14px;
        box-shadow: var(--shadow);
    }
    .main-nav .nav-link { padding: 12px 8px; border-bottom: 1px dashed var(--surface-border); }
    .main-nav .nav-item:last-child .nav-link { border-bottom: none; }
    .hero-stats { margin-top: -34px; padding: 16px; }
    .topbar { font-size: 11.5px; }
}

/* ============================================================
   Student Gallery - slider (home) + grid (full page)
   ============================================================ */
.sv-slider { position: relative; }
.sv-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 18px;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.sv-track::-webkit-scrollbar { height: 8px; }
.sv-track::-webkit-scrollbar-thumb { background: var(--surface-border); border-radius: 8px; }
.sv-track::-webkit-scrollbar-track { background: transparent; }

.sv-card {
    flex: 0 0 300px;
    max-width: 300px;
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}
.sv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(184, 92, 0, 0.18); }

/* grid variant on the full page stretches to the column */
.sv-card-grid { flex: 1 1 auto; max-width: none; width: 100%; }

.sv-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #000;
}
.sv-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sv-meta { padding: 12px 14px; }
.sv-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sv-name { font-size: 12.5px; color: var(--text-soft); }

/* slider arrows */
.sv-arrow {
    position: absolute;
    top: calc(50% - 24px);
    transform: translateY(-50%);
    z-index: 4;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(184, 92, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.sv-arrow:hover { background: var(--secondary); }
.sv-prev { left: -10px; }
.sv-next { right: -10px; }
.sv-arrow.disabled { opacity: 0; pointer-events: none; }

@media (max-width: 575.98px) {
    .sv-card { flex-basis: 78vw; max-width: 78vw; }
    .sv-arrow { width: 38px; height: 38px; font-size: 14px; }
    .sv-prev { left: 2px; }
    .sv-next { right: 2px; }
}

/* injected grid cards fade-in (infinite scroll) */
.sv-fade { animation: svFadeIn .5s ease both; }
@keyframes svFadeIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Light chip variant for use on the orange girl-banner */
.mini-feature-light {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.mini-feature-light i { color: #fff; }

/* Eligible business activity chips (Youth Entrepreneurship page) */
.activity-chip {
    display: inline-flex;
    align-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--surface-border);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
}
.activity-chip i { color: var(--primary); }
