/* AgentForge AI — Production-Grade Styles */
/* Dark theme | Distinctive typography | Bold animations */
/* Following Anthropic Frontend Design Plugin guidelines */

:root {
    --bg: #0a0b0e;
    --bg-dark: #060709;
    --bg-card: #12141a;
    --bg-card-hover: #1a1d26;
    --text: #e8e6e3;
    --text-dim: #8a8f98;
    --text-muted: #5a5f6b;
    --accent: #00d4ff;
    --accent-bright: #33dfff;
    --accent-glow: rgba(0, 212, 255, 0.12);
    --accent-glow-strong: rgba(0, 212, 255, 0.25);
    --success: #00ff88;
    --success-glow: rgba(0, 255, 136, 0.12);
    --danger: #ff4466;
    --border: #1e2028;
    --border-hover: #2a2d38;
    --radius: 20px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --max-w: 1060px;
    --max-w-narrow: 680px;
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* --- Mesh gradient background --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 15% 10%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
}

body > * { position: relative; z-index: 1; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

a:hover { color: var(--accent-bright); opacity: 1; }

.accent { color: var(--accent); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }

/* --- Fade-in Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.7s var(--ease-out) forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll-triggered fade (enhanced by JS) */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s var(--ease-out);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.nav-logo:hover { color: var(--text); opacity: 1; }

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
}

.nav-links a {
    color: var(--text-dim);
    transition: color 0.3s var(--ease-out);
    padding: 4px 0;
}

.nav-links a:hover { color: var(--text); opacity: 1; }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s var(--ease-out);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
}

/* Subtle floating orb behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -55%);
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 65%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -55%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -55%) scale(1.1); }
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-proof {
    margin-top: 48px;
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    line-height: 1.3;
}

/* Ripple effect on buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out), height 0.6s var(--ease-out);
}

.btn:hover::before {
    width: 320px;
    height: 320px;
}

.btn-primary {
    background: var(--accent);
    color: #0a0b0e;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-bright);
    color: #0a0b0e;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--accent-glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent-bright);
    opacity: 1;
    transform: translateY(-2px);
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-dark);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-sub {
    text-align: center;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 48px;
    font-size: 16px;
    line-height: 1.6;
}

/* --- Grid --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* --- Cards --- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

/* Gradient accent line on top of cards */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--danger), var(--danger));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.card:hover::before { transform: scaleX(1); }

.card-accent::before {
    background: linear-gradient(90deg, var(--accent), var(--success));
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card ul li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-dim);
    font-size: 15px;
}

.card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger);
}

.card-accent ul li::before {
    background: var(--success);
    box-shadow: 0 0 8px var(--success-glow);
}

/* --- Product Cards --- */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--success));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.product-card:hover::before { opacity: 1; }

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.product-badge {
    position: absolute;
    top: -1px;
    left: 32px;
    background: var(--accent);
    color: #0a0b0e;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 0 0 var(--radius-xs) var(--radius-xs);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-alt {
    background: var(--success);
}

.product-price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    margin: 12px 0 16px;
    letter-spacing: -0.03em;
}

.product-desc {
    color: var(--text-dim);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.product-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.5;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success-glow);
}

/* --- Architecture --- */
.architecture {
    max-width: 520px;
    margin: 48px auto;
}

.arch-layer {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    position: relative;
    transition: all 0.3s var(--ease-out);
}

.arch-layer:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.arch-num {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--accent);
    color: #0a0b0e;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.arch-layer h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.arch-layer p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.55;
}

.arch-arrow {
    text-align: center;
    font-size: 20px;
    color: var(--accent);
    padding: 10px 0;
    opacity: 0.5;
}

.arch-insight {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 28px;
    font-family: var(--font-mono);
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* --- Stats --- */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
    font-family: var(--font-body);
}

.stat-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    font-family: var(--font-mono);
}

/* --- Lead Form --- */
.lead-form {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.form-inline {
    display: flex;
    gap: 12px;
}

.form-inline input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    min-height: 48px;
}

.form-inline input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-inline input[type="email"]::placeholder {
    color: var(--text-muted);
}

/* --- FAQ --- */
.faq {
    margin-top: 40px;
}

.faq details {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-display);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
    content: '+';
    font-size: 22px;
    color: var(--accent);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq details[open] summary::after {
    transform: rotate(45deg);
}

.faq details p {
    margin-top: 12px;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.65;
    padding-right: 40px;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border);
    padding: 56px 0;
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    font-family: var(--font-mono);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
    font-size: 14px;
}

.footer-links a {
    color: var(--text-dim);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover { color: var(--text); opacity: 1; }

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 24px;
}

/* ================================================== */
/* --- RESPONSIVE: Tablet (768px) --- */
/* ================================================== */
@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 42px);
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 340px;
    }

    /* Hamburger visible */
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 11, 14, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 16px 24px 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-links a:last-child { border-bottom: none; }

    .section {
        padding: 72px 0;
    }

    .section h2 {
        font-size: clamp(22px, 6vw, 32px);
    }

    .card, .product-card {
        padding: 28px;
    }

    .product-price {
        font-size: 38px;
    }

    .form-inline {
        flex-direction: column;
    }

    .form-inline .btn {
        width: 100%;
    }

    .architecture {
        max-width: 100%;
    }

    .footer-links {
        gap: 16px;
    }
}

/* ================================================== */
/* --- RESPONSIVE: Small Mobile (480px) --- */
/* ================================================== */
@media (max-width: 480px) {
    .container, .container-narrow {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero::before {
        width: 300px;
        height: 300px;
    }

    .card, .product-card {
        padding: 24px;
        border-radius: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-num {
        font-size: 32px;
    }

    .section {
        padding: 56px 0;
    }

    .faq details p {
        padding-right: 0;
    }
}

/* ================================================== */
/* --- RESPONSIVE: Large screens (1200px+) --- */
/* ================================================== */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 68px;
    }

    .section h2 {
        font-size: 44px;
    }
}

/* --- Accessibility: reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero::before { animation: none; }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* --- Hero Trust Indicators --- */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    flex-wrap: wrap;
}

.hero-trust span {
    opacity: 0.7;
}

.hero-trust .sep {
    opacity: 0.3;
}

/* --- Section Tag (monospace label above headings) --- */
.section-tag {
    display: block;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 12px;
}

/* --- Partner Bridge Section --- */
.section-partner {
    padding: 72px 0;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
}

.section-partner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-partner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-partner h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-partner p {
    color: var(--text-dim);
    font-size: 15px;
    max-width: 460px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* --- Stats Social Proof --- */
.stats-social {
    text-align: center;
    margin-top: 32px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* --- Built With Trust Bar --- */
.trust-bar {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    opacity: 0.6;
}

.trust-bar-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.45;
    transition: opacity 0.3s var(--ease-out);
}

.trust-bar-item:hover {
    opacity: 0.8;
}

.trust-bar-item img {
    height: 20px;
    width: auto;
}

.trust-bar-item span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: -0.01em;
}

/* --- Responsive: Partner & Trust --- */
@media (max-width: 768px) {
    .hero-trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .hero-trust .sep {
        display: none;
    }

    .section-partner {
        padding: 56px 0;
    }

    .trust-bar-items {
        gap: 24px;
    }

    .trust-bar-item img {
        height: 16px;
    }

    .trust-bar-item span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .trust-bar-items {
        gap: 16px;
    }

    .trust-bar-item img {
        height: 14px;
    }

    .trust-bar-item span {
        font-size: 11px;
    }
}

/* --- Focus styles for keyboard navigation --- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* --- Selection color --- */
::selection {
    background: var(--accent-glow-strong);
    color: var(--text);
}
