/* ══════════════════════════════════════════════════════════
   Jubaroo Hub — homepage overhaul
   Subtle CSS motion only. No particle engine.
   ══════════════════════════════════════════════════════════ */

:root {
    --home-bg: #09090b;
    --home-bg-elevated: #111114;
    --home-surface: rgba(255, 255, 255, 0.03);
    --home-surface-hover: rgba(255, 255, 255, 0.055);
    --home-border: rgba(255, 255, 255, 0.075);
    --home-border-strong: rgba(255, 255, 255, 0.14);
    --home-text: #ececf0;
    --home-muted: rgba(236, 236, 240, 0.62);
    --home-faint: rgba(236, 236, 240, 0.42);
    --home-accent: #e11d2e;
    --home-accent-soft: rgba(225, 29, 46, 0.12);
    --home-accent-2: #f43f5e;
    --home-font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
    --home-font-body: "Inter", "Segoe UI", system-ui, sans-serif;
    --home-radius: 16px;
    --home-radius-sm: 12px;
    --home-max: 1120px;
    --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --home-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

/* ── Base ───────────────────────────────────────────────── */
html, body.home-page {
    margin: 0;
    padding: 0;
    min-height: 100%;
    min-height: 100dvh;
    overflow-x: hidden;
    font-family: var(--home-font-body);
    color: var(--home-text);
    background: var(--home-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    font-feature-settings: "ss01" on, "cv11" on;
}

body.home-page {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ── Ambient background (quiet, monochrome + single ember) ─ */
.home-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 55% at 50% -5%, rgba(225, 29, 46, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #0c0c0f 0%, #09090b 45%, #070709 100%);
}

.home-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 75% 60% at 50% 15%, #000 10%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 15%, #000 10%, transparent 72%);
    opacity: 0.55;
}

.home-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    will-change: transform;
}

/* Single soft ember — no purple/blue candy orbs */
.home-bg-orb-a {
    width: min(520px, 68vw);
    height: min(420px, 55vw);
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(225, 29, 46, 0.28) 0%, transparent 70%);
}

.home-bg-orb-b {
    width: min(360px, 48vw);
    height: min(360px, 48vw);
    top: 42%;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    opacity: 0.7;
}

.home-bg-orb-c {
    width: min(300px, 42vw);
    height: min(300px, 42vw);
    bottom: 6%;
    left: -4%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.035) 0%, transparent 70%);
    opacity: 0.65;
}

@media (prefers-reduced-motion: no-preference) {
    .home-bg-orb-a {
        animation: homeOrbA 22s ease-in-out infinite alternate;
    }
}

@keyframes homeOrbA {
    from { transform: translateX(-50%) translateY(0) scale(1); }
    to   { transform: translateX(-50%) translateY(12px) scale(1.04); }
}

/* ── Main layout ────────────────────────────────────────── */
.home {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--home-max);
    margin: 0 auto;
    padding: 48px 22px 72px;
    box-sizing: border-box;
    flex: 1;
}

/* ── Reveal (light entrance) ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--home-ease), transform 0.7s var(--home-ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .home-bg-orb {
        animation: none !important;
    }
}

/* ── Hero ───────────────────────────────────────────────── */
.home-hero {
    text-align: center;
    padding: 28px 0 56px;
    max-width: 820px;
    margin: 0 auto;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 22px;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-family: var(--home-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 220, 220, 0.88);
    background: rgba(225, 29, 46, 0.1);
    border: 1px solid rgba(225, 29, 46, 0.22);
}

.home-title {
    font-family: var(--home-font-display);
    font-weight: 700;
    font-size: clamp(2.5rem, 6.4vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
    margin: 0 0 18px;
    color: #fafafa;
    text-wrap: balance;
}

/* Solid accent — no rainbow / candy text gradient */
.home-title-accent {
    color: #f87171;
    position: relative;
    display: inline;
    -webkit-text-fill-color: currentColor;
    background: none;
}

.home-lead {
    margin: 0 auto 28px;
    max-width: 540px;
    font-family: var(--home-font-body);
    font-size: clamp(1.02rem, 1.9vw, 1.125rem);
    line-height: 1.7;
    color: var(--home-muted);
    font-weight: 400;
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 48px;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    font-family: var(--home-font-display);
    font-weight: 600;
    font-size: 0.94rem;
    letter-spacing: -0.015em;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.25s var(--home-ease), background 0.25s ease,
                border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
}

.home-btn:focus-visible {
    outline: 2px solid rgba(248, 113, 113, 0.85);
    outline-offset: 3px;
}

/* Flat solid CTAs — no multi-stop button gradients */
.home-btn-primary {
    color: #fff;
    background: #dc2626;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.28);
}

.home-btn-primary:hover {
    background: #ef4444;
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.36);
}

.home-btn-ghost {
    color: var(--home-text);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--home-border-strong);
    backdrop-filter: blur(10px);
}

.home-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.home-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}

.home-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.86rem;
    color: var(--home-faint);
    font-weight: 500;
}

.home-trust-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: rgba(255, 130, 130, 0.9);
}

.home-trust-icon svg {
    width: 100%;
    height: 100%;
}

/* ── Sections ───────────────────────────────────────────── */
.home-section {
    margin-bottom: 56px;
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.home-section-label {
    margin: 0 0 6px;
    font-family: var(--home-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(248, 113, 113, 0.85);
}

.home-section-title {
    margin: 0;
    font-family: var(--home-font-display);
    font-weight: 650;
    font-size: clamp(1.4rem, 2.8vw, 1.75rem);
    letter-spacing: -0.03em;
    color: #fafafa;
}

.home-section-link {
    font-family: var(--home-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(252, 165, 165, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-section-link:hover,
.home-section-link:focus-visible {
    color: #fff;
    outline: none;
}

/* ── Featured tools ─────────────────────────────────────── */
.home-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feat-card {
    --accent: 255, 80, 80;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 22px 20px 20px;
    min-height: 210px;
    border-radius: var(--home-radius);
    text-decoration: none;
    color: inherit;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transition: transform 0.3s var(--home-ease), border-color 0.3s ease,
                background 0.3s ease, box-shadow 0.3s ease;
}

.feat-card[data-accent="violet"] { --accent: 167, 139, 250; }
.feat-card[data-accent="amber"]  { --accent: 251, 191, 36; }
.feat-card[data-accent="teal"]   { --accent: 45, 212, 191; }
.feat-card[data-accent="blue"]   { --accent: 96, 165, 250; }
.feat-card[data-accent="red"]    { --accent: 248, 113, 113; }
.feat-card[data-accent="green"]  { --accent: 52, 211, 153; }

.feat-card-lg {
    /* Emphasized first card without breaking the 3×2 grid balance */
    justify-content: flex-start;
    padding: 24px 22px 22px;
    background:
        linear-gradient(165deg, rgba(var(--accent), 0.12), transparent 55%),
        var(--home-surface);
    border-color: rgba(var(--accent), 0.22);
}

.feat-card-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(var(--accent), 0.28), transparent 70%);
    filter: blur(10px);
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent), 0.4);
    background: var(--home-surface-hover);
    box-shadow: var(--home-shadow), 0 0 0 1px rgba(var(--accent), 0.08);
}

.feat-card:hover .feat-card-glow {
    opacity: 0.9;
}

.feat-card:focus-visible {
    outline: 2px solid rgba(var(--accent), 0.8);
    outline-offset: 3px;
}

.feat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 18px;
    gap: 12px;
}

.feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(var(--accent), 0.18), rgba(0, 0, 0, 0.25));
    border: 1px solid rgba(var(--accent), 0.28);
    flex-shrink: 0;
}

.feat-card > .feat-icon {
    margin-bottom: 16px;
}

.feat-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.feat-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(var(--accent));
    background: rgba(var(--accent), 0.12);
    border: 1px solid rgba(var(--accent), 0.28);
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.feat-card h3 {
    margin: 0 0 8px;
    font-family: var(--home-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #fafafa;
}

.feat-card-lg h3 {
    font-size: 1.3rem;
}

.feat-card p {
    margin: 0 0 18px;
    font-family: var(--home-font-body);
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--home-muted);
    flex: 1;
}

.feat-cta {
    margin-top: auto;
    font-family: var(--home-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(var(--accent), 0.95);
    transition: transform 0.25s var(--home-ease), gap 0.25s ease;
}

.feat-card:hover .feat-cta {
    transform: translateX(3px);
}

/* ── Categories ─────────────────────────────────────────── */
.home-cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 16px;
    border-radius: var(--home-radius-sm);
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--home-border);
    transition: transform 0.25s var(--home-ease), border-color 0.25s ease,
                background 0.25s ease;
    min-width: 0;
}

.cat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 100, 100, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.cat-card:focus-visible {
    outline: 2px solid rgba(255, 100, 100, 0.75);
    outline-offset: 2px;
}

.cat-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fecaca;
    background: rgba(255, 59, 59, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.2);
}

.cat-icon svg {
    width: 22px;
    height: 22px;
}

.cat-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    text-align: left;
}

.cat-copy strong {
    font-family: var(--home-font-display);
    font-size: 0.98rem;
    font-weight: 600;
    color: #fafafa;
    letter-spacing: -0.02em;
}

.cat-copy span {
    font-size: 0.8rem;
    color: var(--home-faint);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Spotlights ─────────────────────────────────────────── */
.home-spotlights {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 14px;
}

.spot-card {
    position: relative;
    display: flex;
    border-radius: var(--home-radius);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border: 1px solid var(--home-border);
    min-height: 220px;
    background: var(--home-bg-elevated);
    transition: transform 0.3s var(--home-ease), border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.spot-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.9;
    pointer-events: none;
}

.spot-gaming::before {
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(225, 29, 46, 0.2), transparent 55%),
        linear-gradient(160deg, #141012 0%, #0a0a0c 100%);
}

.spot-asvab::before {
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(245, 158, 11, 0.14), transparent 55%),
        linear-gradient(160deg, #12110e 0%, #0a0a0c 100%);
}

.spot-about::before {
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(148, 163, 184, 0.12), transparent 55%),
        linear-gradient(160deg, #101214 0%, #0a0a0c 100%);
}

.spot-card:hover {
    transform: translateY(-3px);
    border-color: var(--home-border-strong);
    box-shadow: var(--home-shadow);
}

.spot-card:focus-visible {
    outline: 2px solid rgba(255, 120, 120, 0.8);
    outline-offset: 3px;
}

.spot-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    height: 100%;
    box-sizing: border-box;
}

.spot-kicker {
    margin: 0 0 10px;
    font-family: var(--home-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.spot-body h3 {
    margin: 0 0 10px;
    font-family: var(--home-font-display);
    font-size: 1.22rem;
    font-weight: 650;
    letter-spacing: -0.025em;
    color: #fafafa;
    line-height: 1.2;
}

.spot-body p {
    margin: 0 0 18px;
    font-family: var(--home-font-body);
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--home-muted);
    flex: 1;
}

.spot-cta {
    font-family: var(--home-font-body);
    font-size: 0.84rem;
    font-weight: 600;
    color: #fca5a5;
    transition: transform 0.25s var(--home-ease);
}

.spot-card:hover .spot-cta {
    transform: translateX(3px);
}

/* ── Bottom CTA band ────────────────────────────────────── */
.home-cta-band {
    margin-top: 8px;
}

.home-cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px 28px;
    border-radius: 18px;
    border: 1px solid rgba(225, 29, 46, 0.2);
    background:
        radial-gradient(ellipse 55% 100% at 0% 50%, rgba(225, 29, 46, 0.1), transparent 55%),
        rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-cta-band h2 {
    margin: 0 0 6px;
    font-family: var(--home-font-display);
    font-size: 1.35rem;
    font-weight: 650;
    letter-spacing: -0.025em;
    color: #fafafa;
}

.home-cta-band p {
    margin: 0;
    font-family: var(--home-font-body);
    color: var(--home-muted);
    font-size: 0.95rem;
}

.home-cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .home {
        padding: 36px 18px 56px;
    }

    .home-featured {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-cats {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-spotlights {
        grid-template-columns: 1fr;
    }

    .spot-card {
        min-height: 180px;
    }
}

@media (max-width: 600px) {
    .home {
        padding: 28px 14px 48px;
    }

    .home-hero {
        padding: 12px 0 40px;
    }

    .home-br-desktop {
        display: none;
    }

    .home-title {
        font-size: clamp(2.1rem, 9vw, 2.7rem);
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-btn {
        width: 100%;
    }

    .home-trust {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .home-featured {
        grid-template-columns: 1fr;
    }

    .home-cats {
        grid-template-columns: 1fr;
    }

    .cat-copy span {
        white-space: normal;
    }

    .home-cta-band-inner {
        padding: 22px 18px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .home-cta-band-actions {
        justify-content: stretch;
    }

    .home-cta-band-actions .home-btn {
        flex: 1;
    }

    .home-section {
        margin-bottom: 44px;
    }
}

/* ── Light theme ────────────────────────────────────────── */
[data-theme="light"] body.home-page {
    --home-bg: #f4f4f5;
    --home-bg-elevated: #ffffff;
    --home-surface: #ffffff;
    --home-surface-hover: #ffffff;
    --home-border: rgba(24, 24, 27, 0.08);
    --home-border-strong: rgba(24, 24, 27, 0.14);
    --home-text: #18181b;
    --home-muted: #52525b;
    --home-faint: #71717a;
    --home-accent: #dc2626;
    --home-accent-soft: rgba(220, 38, 38, 0.08);
    --home-shadow: 0 16px 36px rgba(24, 24, 27, 0.08);
    color: var(--home-text);
    background: var(--home-bg);
}

[data-theme="light"] .home-bg {
    background:
        radial-gradient(ellipse 90% 50% at 50% -5%, rgba(220, 38, 38, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
}

[data-theme="light"] .home-bg-grid {
    background-image:
        linear-gradient(rgba(24, 24, 27, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 24, 27, 0.04) 1px, transparent 1px);
    opacity: 0.7;
}

[data-theme="light"] .home-bg-orb-a {
    background: radial-gradient(circle, rgba(220, 38, 38, 0.12), transparent 70%);
}

[data-theme="light"] .home-bg-orb-b,
[data-theme="light"] .home-bg-orb-c {
    background: radial-gradient(circle, rgba(24, 24, 27, 0.04), transparent 70%);
}

[data-theme="light"] .home-kicker {
    color: #b91c1c;
    background: rgba(220, 38, 38, 0.07);
    border-color: rgba(220, 38, 38, 0.16);
}

[data-theme="light"] .home-title {
    color: #09090b;
}

[data-theme="light"] .home-title-accent {
    color: #dc2626;
    background: none;
    -webkit-text-fill-color: currentColor;
}

[data-theme="light"] .home-btn-primary {
    background: #dc2626;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

[data-theme="light"] .home-btn-primary:hover {
    background: #ef4444;
}

[data-theme="light"] .home-btn-ghost {
    color: #18181b;
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(24, 24, 27, 0.12);
}

[data-theme="light"] .home-trust-icon {
    color: #dc2626;
}

[data-theme="light"] .home-section-label {
    color: #dc2626;
}

[data-theme="light"] .home-section-title,
[data-theme="light"] .feat-card h3,
[data-theme="light"] .cat-copy strong,
[data-theme="light"] .spot-body h3,
[data-theme="light"] .home-cta-band h2 {
    color: #09090b;
}

[data-theme="light"] .home-section-link {
    color: #b91c1c;
}

[data-theme="light"] .feat-card {
    box-shadow: 0 6px 20px rgba(24, 24, 27, 0.05);
}

[data-theme="light"] .feat-icon {
    background: linear-gradient(160deg, rgba(var(--accent), 0.1), #fff);
}

[data-theme="light"] .cat-icon {
    color: #b91c1c;
    background: rgba(220, 38, 38, 0.07);
    border-color: rgba(220, 38, 38, 0.14);
}

[data-theme="light"] .spot-gaming::before {
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(220, 38, 38, 0.1), transparent 55%),
        linear-gradient(160deg, #fff8f8 0%, #ffffff 100%);
}

[data-theme="light"] .spot-asvab::before {
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(245, 158, 11, 0.1), transparent 55%),
        linear-gradient(160deg, #fffbeb 0%, #ffffff 100%);
}

[data-theme="light"] .spot-about::before {
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(113, 113, 122, 0.1), transparent 55%),
        linear-gradient(160deg, #f8fafc 0%, #ffffff 100%);
}

[data-theme="light"] .spot-kicker {
    color: #71717a;
}

[data-theme="light"] .spot-cta {
    color: #b91c1c;
}

[data-theme="light"] .home-cta-band-inner {
    background:
        radial-gradient(ellipse 55% 100% at 0% 50%, rgba(220, 38, 38, 0.06), transparent 55%),
        #ffffff;
    border-color: rgba(220, 38, 38, 0.14);
    box-shadow: 0 10px 28px rgba(24, 24, 27, 0.05);
}
