/**
 * Kagami Test Audit — Design System v2.1
 * Inspired by: weather/ (celestial premium), clue/ (mansion atmosphere), orb/ (minimal dark)
 *
 * Fibonacci spacing: 8, 13, 21, 34, 55, 89px
 * Fibonacci timing: 89, 144, 233, 377, 610, 987ms
 * Typography: Inter (body), JetBrains Mono (code), Orbitron (display)
 * Contrast: WCAG AA compliant
 *
 * FOR ODIL — Every pixel. Every moment. Perfect.
 */

:root {
    /* Core Palette */
    --void: #050508;
    --surface: #0a0a0f;
    --surface2: #12121a;
    --surface3: #1a1a24;
    --border: rgba(255,255,255,0.08);
    --border-bright: rgba(255,255,255,0.15);

    /* Text */
    --text: #f0f0f5;
    --text-dim: #6b6b78;
    --text-muted: #444452;

    /* Accents — Colony Colors */
    --spark: #ff00ff;
    --forge: #ff2d55;
    --flow: #00e5cc;
    --nexus: #af52de;
    --beacon: #ffd60a;
    --grove: #30d158;
    --crystal: #0a84ff;

    /* Semantic */
    --pass: #30d158;
    --fail: #ff453a;
    --warn: #ffd60a;
    --skip: #6b6b78;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--nexus), var(--crystal));
    --gradient-pass: linear-gradient(135deg, var(--grove), var(--flow));
    --gradient-fail: linear-gradient(135deg, var(--fail), var(--forge));
    --glow-accent: rgba(168, 85, 247, 0.2);

    /* Fibonacci Spacing */
    --space-xs: 8px;
    --space-sm: 13px;
    --space-md: 21px;
    --space-lg: 34px;
    --space-xl: 55px;
    --space-2xl: 89px;

    /* Animation - Fibonacci Timing */
    --duration-89: 89ms;
    --duration-144: 144ms;
    --duration-233: 233ms;
    --duration-377: 377ms;
    --duration-610: 610ms;
    --duration-987: 987ms;

    /* Easings */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Gold accent (from weather/) */
    --gold: #D4AF37;
    --gold-dim: rgba(212, 175, 55, 0.6);
    --gold-glow: rgba(212, 175, 55, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--void);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scrollbar styling */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--nexus) var(--void);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--void);
}

::-webkit-scrollbar-thumb {
    background: var(--nexus);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--crystal);
}

::selection {
    background: var(--nexus);
    color: var(--void);
}

/* Skip link (accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nexus);
    color: var(--void);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 8px;
    font-weight: 600;
    z-index: 10000;
    transition: top var(--duration-233) var(--ease-out);
    text-decoration: none;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* Loading state */
body.loading .hero-sub {
    opacity: 0;
}

body:not(.loading) .hero-sub {
    opacity: 1;
    animation: fade-in var(--duration-610) var(--ease-out) forwards;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .cursor-glow, #particle-canvas {
        display: none !important;
    }
}

/* ===================================
   BACKGROUND EFFECTS
   =================================== */

.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168,85,247,0.12), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(99,102,241,0.08), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(14,165,233,0.06), transparent);
    pointer-events: none;
    z-index: 0;
    animation: gradient-drift 20s ease-in-out infinite;
}

@keyframes gradient-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(2%, -1%) scale(1.02); }
    66% { transform: translate(-1%, 2%) scale(0.98); }
}

/* Scanline effect */
.scanlines {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
    z-index: 1000;
    opacity: 0.5;
}

/* Cursor glow effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

.grid-pattern {
    position: fixed;
    inset: 0;
    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: 55px 55px;
    pointer-events: none;
    z-index: 0;
}

/* Floating particles canvas */
#particle-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) var(--space-lg);
    background: rgba(5,5,8,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text);
}

.nav-kanji {
    font-size: 24px;
    filter: drop-shadow(0 0 8px var(--glow-accent));
}

.nav-title {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.nav-badge {
    font-size: 11px;
    padding: 4px 8px;
    background: var(--surface2);
    border-radius: 6px;
    color: var(--text-dim);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-hero);
    border-radius: 1px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px var(--space-lg) var(--space-2xl);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: var(--space-lg);
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--pass);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(48, 209, 88, 0); }
}

.hero-kanji {
    font-size: clamp(80px, 15vw, 140px);
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 40px var(--glow-accent));
    animation: float 6s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--text) 0%, var(--text-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: var(--space-xl);
}

/* ===================================
   VERDICT CARD (TL;DR)
   =================================== */

.verdict-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--space-xl);
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.verdict-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-hero);
}

.verdict-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.verdict-item {
    text-align: center;
    padding: var(--space-md);
}

.verdict-value {
    font-size: 32px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: var(--space-xs);
}

.verdict-value.pass { color: var(--pass); }
.verdict-value.fail { color: var(--fail); }
.verdict-value.warn { color: var(--warn); }
.verdict-value.neutral { color: var(--text); }

.verdict-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.verdict-summary {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--surface2);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
}

.verdict-summary code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    background: var(--surface3);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--flow);
}

/* ===================================
   METRICS CARDS
   =================================== */

.metrics-section {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* Section header with number (like weather/) */
.section-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.section-number {
    font-family: 'Orbitron', 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-dim);
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px var(--gold-glow);
    flex-shrink: 0;
}

.section-title {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.section-title::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gradient-hero);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.metric-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    animation: card-fade-in 0.6s var(--ease-out) backwards;
}

.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }
.metric-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes card-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(168,85,247,0.1);
}

.metric-card:active {
    transform: translateY(-2px) scale(1.01);
}

.metric-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--card-accent, var(--gradient-hero));
    opacity: 0;
    transition: opacity 0.3s;
}

.metric-card:hover::after {
    opacity: 1;
}

.metric-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.metric-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px var(--glow-accent));
}

.metric-badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-pass { background: rgba(48, 209, 88, 0.15); color: var(--pass); }
.badge-fail { background: rgba(255, 69, 58, 0.15); color: var(--fail); }
.badge-warn { background: rgba(255, 214, 10, 0.15); color: var(--warn); }
.badge-info { background: rgba(10, 132, 255, 0.15); color: var(--crystal); }

.metric-value {
    font-size: 42px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.metric-label {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: var(--space-sm);
}

.metric-detail {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

/* ===================================
   PYRAMID VISUALIZATION
   =================================== */

.pyramid-section {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.pyramid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.pyramid-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-align: center;
}

.pyramid-subtitle {
    font-size: 14px;
    color: var(--text-dim);
    text-align: center;
    max-width: 500px;
    margin-bottom: var(--space-lg);
}

.pyramid-layer {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border-radius: 8px;
    transition: all 0.3s var(--ease-out);
}

.pyramid-layer:hover {
    background: var(--surface2);
}

.pyramid-bar {
    height: 40px;
    border-radius: 4px;
    position: relative;
    transition: all 0.5s var(--ease-out);
    display: flex;
    align-items: center;
    padding: 0 var(--space-md);
}

.pyramid-bar.unit {
    background: linear-gradient(90deg, var(--grove), var(--flow));
    box-shadow: 0 0 20px rgba(48, 209, 88, 0.3);
}

.pyramid-bar.integration {
    background: linear-gradient(90deg, var(--nexus), var(--crystal));
    box-shadow: 0 0 20px rgba(175, 82, 222, 0.3);
}

.pyramid-bar.e2e {
    background: linear-gradient(90deg, var(--beacon), var(--forge));
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
}

.pyramid-label {
    flex-shrink: 0;
    width: 100px;
    font-weight: 600;
    font-size: 14px;
}

.pyramid-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--void);
}

.pyramid-percent {
    flex-shrink: 0;
    width: 60px;
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--text-dim);
}

/* ===================================
   DATA TABLES
   =================================== */

.table-section {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.data-table thead {
    background: var(--surface2);
}

.data-table th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: var(--surface2);
}

.data-table .mono {
    font-family: 'JetBrains Mono', monospace;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: var(--space-xs);
}

.status-dot.pass { background: var(--pass); }
.status-dot.fail { background: var(--fail); }
.status-dot.warn { background: var(--warn); }

/* ===================================
   ANALYSIS BLOCKS
   =================================== */

.analysis-section {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.analysis-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.analysis-q {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.analysis-q-icon {
    width: 32px;
    height: 32px;
    background: var(--surface2);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0;
}

.analysis-q h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.analysis-a {
    padding-left: 48px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dim);
}

.analysis-a strong {
    color: var(--text);
    font-weight: 600;
}

.analysis-a code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    background: var(--surface2);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--flow);
}

/* ===================================
   ACTION ITEMS
   =================================== */

.actions-section {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.action-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: var(--space-md);
    transition: all 0.3s var(--ease-out);
}

.action-item:hover {
    border-color: var(--border-bright);
    transform: translateX(4px);
}

.action-priority {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.priority-p0 { background: rgba(255, 69, 58, 0.15); color: var(--fail); }
.priority-p1 { background: rgba(255, 214, 10, 0.15); color: var(--warn); }
.priority-p2 { background: rgba(10, 132, 255, 0.15); color: var(--crystal); }

.action-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.action-content p {
    font-size: 13px;
    color: var(--text-dim);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    position: relative;
    z-index: 1;
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-kanji {
    font-size: 32px;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 0 16px var(--glow-accent));
}

.footer-text {
    font-size: 13px;
    color: var(--text-dim);
}

.footer-timestamp {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.footer-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

.footer-link {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--duration-144) var(--ease-out);
}

.footer-link:hover {
    color: var(--flow);
    text-decoration: underline;
}

/* ===================================
   ARCHITECTURE DIAGRAM
   =================================== */

.architecture-section {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.diagram {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-xl);
    overflow-x: auto;
}

.diagram-title {
    font-family: 'Orbitron', 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.diagram-content {
    overflow-x: auto;
}

.diagram-content pre {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-dim);
    white-space: pre;
    margin: 0;
}

.diagram-gold {
    color: var(--gold);
    font-weight: 600;
}

.diagram-green {
    color: var(--pass);
    font-weight: 600;
}

.diagram-dim {
    color: var(--text-muted);
    font-style: italic;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .nav-links { display: none; }

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

    .pyramid-layer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .pyramid-label, .pyramid-percent {
        width: auto;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-pass { color: var(--pass); }
.text-fail { color: var(--fail); }
.text-warn { color: var(--warn); }
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--text-muted); }

.font-mono { font-family: 'JetBrains Mono', monospace; }
.font-display { font-family: 'Bangers', cursive; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
