/* ==========================================================================
   No404 Marketing - Editorial Design System
   Version: 3.0
   Aesthetic: Bold editorial with refined minimalism
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Crimson+Pro:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
    /* Core Brand Colors */
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;

    /* Accent Colors */
    --electric: #3b82f6;
    --electric-light: #60a5fa;
    --electric-dark: #2563eb;
    --coral: #f97316;
    --coral-light: #fb923c;
    --coral-dark: #ea580c;
    --emerald: #10b981;
    --emerald-light: #34d399;

    /* Semantic */
    --text-primary: var(--slate-900);
    --text-secondary: var(--slate-600);
    --text-muted: var(--slate-400);
    --text-inverse: #ffffff;
    --bg-cream: #faf9f7;
    --bg-white: #ffffff;
    --border-subtle: var(--slate-200);
    --border-strong: var(--slate-300);

    /* Typography */
    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body: 'Crimson Pro', Georgia, serif;
    --font-mono: ui-monospace, 'SF Mono', monospace;

    /* Type Scale (fluid) */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.25rem);
    --text-5xl: clamp(2.75rem, 2rem + 3.75vw, 4.5rem);
    --text-6xl: clamp(3.5rem, 2.5rem + 5vw, 6rem);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.16);
    --shadow-glow: 0 0 60px rgba(59, 130, 246, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 500ms;

    /* Container */
    --container-max: 1280px;
    --container-text: 720px;

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;

    /* Legacy compatibility */
    --color-primary: var(--electric);
    --color-primary-dark: var(--electric-dark);
    --color-accent: var(--coral);
    --color-accent-dark: var(--coral-dark);
    --color-gray-900: var(--slate-900);
    --color-success: var(--emerald);
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --transition-fast: var(--duration-fast) var(--ease-out);
    --transition-base: var(--duration-base) var(--ease-out);
    --leading-relaxed: 1.625;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-cream);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    z-index: 9999;
}

::selection {
    background: var(--electric);
    color: white;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 { font-size: var(--text-5xl); font-weight: 800; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); font-weight: 600; }
h6 { font-size: var(--text-lg); font-weight: 600; }

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

.display-text {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.lead-text {
    font-size: var(--text-xl);
    line-height: 1.6;
    color: var(--text-secondary);
}

.eyebrow {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--electric);
}

/* ==========================================================================
   4. Layout
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-text {
    max-width: var(--container-text);
}

.section {
    padding: var(--space-24) 0;
}

.section-sm {
    padding: var(--space-16) 0;
}

/* Grid */
.grid {
    display: grid;
    gap: var(--space-8);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ==========================================================================
   5. Header & Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(250, 249, 247, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: background var(--duration-base) var(--ease-out);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-4) var(--space-6);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    transition: opacity var(--duration-fast) var(--ease-out);
}

.brand-logo:hover {
    opacity: 0.8;
}

.brand-logo__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
}

.brand-logo__text {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--slate-900);
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--slate-900);
    background: var(--slate-100);
}

.nav-cta {
    background: var(--slate-900) !important;
    color: white !important;
    padding: var(--space-2) var(--space-5) !important;
    font-weight: 600 !important;
    margin-left: var(--space-2);
}

.nav-cta:hover {
    background: var(--slate-800) !important;
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-900);
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
    transform-origin: center;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translateY(5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translateY(-5px);
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: var(--space-6);
        background: var(--bg-white);
        border-bottom: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration-base) var(--ease-out);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        width: 100%;
        justify-content: center;
        padding: var(--space-4);
        font-size: var(--text-base);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: var(--space-2);
    }
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
    white-space: nowrap;
    cursor: pointer;
}

.btn-primary {
    background: var(--slate-900);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--slate-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--coral);
    color: white;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--slate-900);
    border: 2px solid var(--slate-200);
}

.btn-secondary:hover {
    background: var(--slate-100);
    border-color: var(--slate-300);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-600);
}

.btn-ghost:hover {
    color: var(--slate-900);
    background: var(--slate-100);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
}

/* ==========================================================================
   7. Cards
   ========================================================================== */

.card {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
}

.card-elevated {
    box-shadow: var(--shadow-lg);
}

.card-interactive:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-body {
    padding: var(--space-8);
}

.card-header {
    padding: var(--space-6) var(--space-8);
    border-bottom: 1px solid var(--border-subtle);
}

.card-footer {
    padding: var(--space-4) var(--space-8);
    background: var(--slate-50);
    border-top: 1px solid var(--border-subtle);
}

/* Feature Card */
.feature-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-8);
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-base) var(--ease-out);
}

.feature-card:hover {
    border-color: var(--electric);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-2px);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--electric), var(--coral));
    border-radius: var(--radius-lg);
    color: white;
    font-size: var(--text-xl);
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--slate-900);
    margin: 0;
}

.feature-card__text {
    font-size: var(--text-base);
    color: var(--slate-600);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   8. Footer
   ========================================================================== */

.site-footer {
    background: var(--slate-900);
    color: white;
    padding: var(--space-16) 0 var(--space-8);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: var(--space-12);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--slate-400);
    line-height: 1.6;
    margin: 0;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-300);
    margin-bottom: var(--space-4);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-column a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--slate-400);
    transition: color var(--duration-fast) var(--ease-out);
}

.footer-column a:hover {
    color: white;
}

.footer-column a i {
    width: 16px;
    text-align: center;
}

.footer-bottom {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
    border-top: 1px solid var(--slate-800);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--slate-500);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }
}

/* ==========================================================================
   9. Forms
   ========================================================================== */

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--slate-700);
}

.form-input,
.form-select,
.form-textarea {
    display: block;
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--slate-900);
    background: white;
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-out);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--electric);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ==========================================================================
   10. Badges & Status
   ========================================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-primary {
    background: rgba(59, 130, 246, 0.1);
    color: var(--electric);
}

.badge-accent {
    background: rgba(249, 115, 22, 0.1);
    color: var(--coral);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
}

.badge-neutral {
    background: var(--slate-100);
    color: var(--slate-600);
}

/* ==========================================================================
   11. Animations
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn var(--duration-base) var(--ease-out) forwards;
}

.animate-slide-up {
    animation: slideUp var(--duration-slow) var(--ease-out) forwards;
}

.animate-scale-in {
    animation: scaleIn var(--duration-base) var(--ease-out) forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }
.delay-3 { animation-delay: 300ms; }
.delay-4 { animation-delay: 400ms; }
.delay-5 { animation-delay: 500ms; }

/* ==========================================================================
   12. Utilities
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-inverse { color: var(--text-inverse); }
.text-electric { color: var(--electric); }
.text-coral { color: var(--coral); }

.bg-white { background: var(--bg-white); }
.bg-cream { background: var(--bg-cream); }
.bg-slate-900 { background: var(--slate-900); }

.m-0 { margin: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-8 { margin-top: var(--space-8); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hidden { display: none !important; }

/* ==========================================================================
   13. Legacy Support (for existing portal pages)
   ========================================================================== */

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--slate-900);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--slate-900), var(--electric-dark));
    color: white;
    padding: var(--space-6) 0;
}

.status-open, .status-new {
    background: rgba(59, 130, 246, 0.1);
    color: var(--electric);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.status-in-progress {
    background: rgba(249, 115, 22, 0.1);
    color: var(--coral);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.status-completed, .status-closed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.priority-low { background: var(--slate-100); color: var(--slate-600); }
.priority-medium { background: rgba(249, 115, 22, 0.1); color: var(--coral); }
.priority-high { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.priority-urgent { background: #fee2e2; color: #dc2626; }

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: var(--z-overlay);
    display: none;
}

.modal-backdrop.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn var(--duration-base) var(--ease-out);
}

.stat-card {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--electric);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--slate-500);
}

.alert {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border-left: 4px solid;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--emerald);
    color: var(--emerald);
}

.alert-warning {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--coral);
    color: var(--coral-dark);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #dc2626;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.table th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--slate-700);
    background: var(--slate-50);
}

.table tbody tr:hover {
    background: var(--slate-50);
}
