/**
 * MarvisX site — Design System
 * v1.0.0 — 2026-05-19
 *
 * Palette: slate + indigo (tech)
 * Typography: Inter Display + JetBrains Mono
 */

:root {
    /* Brand palette — tech */
    --marvis-deep:       #0F172A;
    --marvis-base:       #1E293B;
    --marvis-mid:        #334155;
    --marvis-mute:       #94A3B8;
    --cream:             #F8FAFC;
    --cream-warm:        #FEFCE8;
    --white:             #FFFFFF;

    --accent-primary:    #4F46E5;
    --accent-hover:      #4338CA;
    --accent-mute:       #C7D2FE;
    --accent-faint:      #EEF2FF;

    --state-full:        #10B981;
    --state-partial:     #F59E0B;
    --state-vision:      #8B5CF6;
    --state-absent:      #6B7280;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-display: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, 'Courier New', monospace;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 8px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.12);

    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;

    --max-width: 1120px;
    --max-width-narrow: 720px;
    --header-height: 64px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--marvis-deep);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
code, pre { font-family: var(--font-mono); }

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--max-width-narrow);
}

/* ============================================
   NAV HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.site-logo {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--marvis-deep);
    letter-spacing: -0.02em;
}

.site-logo:hover { color: var(--accent-primary); }

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.site-nav a {
    color: var(--marvis-base);
    font-size: var(--text-sm);
    font-weight: 500;
}

.site-nav a:hover { color: var(--accent-primary); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--marvis-deep);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--accent-primary);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--marvis-deep);
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .site-nav { display: none; }
    .site-nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--cream);
        padding: var(--space-lg);
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        gap: var(--space-md);
        align-items: flex-start;
    }
    .nav-toggle { display: inline-flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(79, 70, 229, 0.08) 0%, transparent 60%),
        var(--cream);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--marvis-base);
    box-shadow: var(--shadow-sm);
}

.eyebrow .dot { color: var(--accent-primary); }

.hero h1 {
    margin: var(--space-xl) auto var(--space-lg);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 920px;
    color: var(--marvis-deep);
}

.hero .lede {
    margin: 0 auto var(--space-2xl);
    font-size: var(--text-xl);
    line-height: 1.5;
    color: var(--marvis-base);
    max-width: 720px;
}

.cta-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    font-weight: 600;
    transition: all var(--transition-fast);
    border: 0;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    background: var(--marvis-deep);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--marvis-deep);
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.btn-secondary:hover {
    background: var(--accent-faint);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--marvis-base);
}

.btn-ghost:hover { color: var(--accent-primary); }

/* Stats strip */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat__value {
    font-family: var(--font-mono);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--marvis-deep);
    letter-spacing: -0.02em;
}

.stat__label {
    font-size: var(--text-sm);
    color: var(--marvis-mute);
    margin-top: var(--space-xs);
}

@media (max-width: 640px) {
    .stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-4xl) 0;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
}

.section h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--marvis-deep);
    margin-bottom: var(--space-md);
}

.section-sub {
    font-size: var(--text-lg);
    color: var(--marvis-base);
    max-width: 640px;
    margin: 0 auto;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 900px) {
    .card-grid { grid-template-columns: 1fr; }
}

.card {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: var(--accent-mute);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card__icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
    color: var(--accent-primary);
}

.card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--marvis-deep);
}

.card .quote {
    font-style: italic;
    color: var(--marvis-base);
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    border-left: 3px solid var(--accent-mute);
}

.card p {
    color: var(--marvis-base);
    margin-bottom: var(--space-md);
}

.card .footnote {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--marvis-mute);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* Architecture grid */
.arch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 1024px) { .arch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .arch-grid { grid-template-columns: 1fr; } }

.arch-card {
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.arch-card h4 {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.arch-card .title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--marvis-deep);
    margin-bottom: var(--space-sm);
}

.arch-card p {
    font-size: var(--text-sm);
    color: var(--marvis-base);
    line-height: 1.5;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.tier {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
}

.tier--highlight {
    border-color: var(--accent-primary);
    border-width: 2px;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.tier--highlight::before {
    content: "Most popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.tier__name {
    font-family: var(--font-mono);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--marvis-deep);
    margin-bottom: var(--space-md);
}

.tier__price {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--marvis-deep);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
}

.tier__price-sub {
    font-size: var(--text-sm);
    color: var(--marvis-mute);
    margin-bottom: var(--space-lg);
}

.tier__tag {
    font-size: var(--text-sm);
    color: var(--marvis-base);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.tier__features {
    list-style: none;
    margin-bottom: var(--space-lg);
    flex: 1;
}

.tier__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--marvis-base);
}

.tier__features li::before {
    content: "✓";
    color: var(--state-full);
    font-weight: 700;
    flex-shrink: 0;
}

.tier__cta {
    margin-top: auto;
    text-align: center;
}

.tier__footnote {
    font-size: var(--text-xs);
    color: var(--marvis-mute);
    margin-top: var(--space-md);
    font-style: italic;
}

/* Comparison table */
.compare {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: var(--text-sm);
}

.compare th,
.compare td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.compare th {
    background: var(--cream);
    font-weight: 600;
    color: var(--marvis-deep);
}

.compare td:not(:first-child),
.compare th:not(:first-child) {
    text-align: center;
}

.compare tbody tr:last-child td { border-bottom: 0; }

.state-full    { color: var(--state-full); }
.state-partial { color: var(--state-partial); }
.state-vision  { color: var(--state-vision); }
.state-absent  { color: var(--state-absent); }

/* Demo */
.demo-frame {
    aspect-ratio: 16 / 9;
    background: var(--marvis-deep);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--marvis-mute);
    margin: 0 auto var(--space-2xl);
    max-width: 880px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.demo-frame .placeholder {
    text-align: center;
    color: var(--cream);
}

.demo-frame .placeholder .triangle {
    font-size: 4rem;
    color: var(--accent-primary);
}

.bullets {
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
    list-style: none;
}

.bullets li {
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-md);
    color: var(--marvis-base);
}

.bullets li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

/* Code blocks */
.codeblock {
    background: var(--marvis-deep);
    color: #E2E8F0;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    line-height: 1.6;
    overflow-x: auto;
    margin: var(--space-lg) 0;
}

.codeblock .comment { color: #64748B; }
.codeblock .prompt  { color: var(--accent-mute); }
.codeblock .success { color: var(--state-full); }

/* About */
.about-box {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.about-box p {
    margin-bottom: var(--space-md);
    color: var(--marvis-base);
    font-size: var(--text-lg);
    line-height: 1.7;
}

.about-box .sign {
    text-align: right;
    color: var(--marvis-deep);
    font-style: italic;
    margin-top: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: var(--space-4xl);
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--marvis-deep);
    color: var(--cream);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

.footer-col h5 {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--marvis-mute);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    color: var(--cream);
    font-size: var(--text-sm);
}

.footer-col a:hover { color: var(--accent-mute); }

/* Contact form */
.contact-block {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-2xl);
}

.contact-block h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.contact-block .help {
    color: var(--marvis-mute);
    margin-bottom: var(--space-lg);
    font-size: var(--text-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-field label {
    display: block;
    font-size: var(--text-xs);
    color: var(--marvis-mute);
    margin-bottom: var(--space-xs);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    color: var(--cream);
    font-family: inherit;
    font-size: var(--text-sm);
    transition: border-color var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 0;
    border-color: var(--accent-mute);
    background: rgba(255, 255, 255, 0.08);
}

.form-field textarea { min-height: 100px; resize: vertical; }

.form-submit {
    background: var(--accent-primary);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    border: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.form-status {
    margin-top: var(--space-md);
    font-size: var(--text-sm);
}

.form-status.success { color: var(--state-full); }
.form-status.error   { color: #FCA5A5; }

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: var(--text-sm);
    color: var(--marvis-mute);
}

.footer-bottom .legal { color: var(--marvis-mute); }
.footer-bottom .legal a { color: var(--cream); }

/* ============================================
   ROUTE-SPECIFIC
   ============================================ */
.page-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    text-align: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.page-hero .lede {
    font-size: var(--text-lg);
    color: var(--marvis-base);
    max-width: 640px;
    margin: 0 auto;
}

.prose {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: var(--space-2xl) 0;
}

.prose h2 {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--marvis-deep);
    letter-spacing: -0.01em;
}

.prose h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--marvis-deep);
}

.prose p,
.prose li {
    color: var(--marvis-base);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.prose ul, .prose ol {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.prose blockquote {
    border-left: 3px solid var(--accent-mute);
    padding-left: var(--space-md);
    color: var(--marvis-base);
    font-style: italic;
    margin: var(--space-lg) 0;
}

/* Blog list */
.post-list {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.post-card {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.06);
    margin-bottom: var(--space-md);
    transition: all var(--transition-fast);
}

.post-card:hover {
    border-color: var(--accent-mute);
    box-shadow: var(--shadow-md);
}

.post-card .meta {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--marvis-mute);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--marvis-deep);
    margin-bottom: var(--space-sm);
}

.post-card .excerpt {
    color: var(--marvis-base);
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
}

.post-card a.read-more {
    font-size: var(--text-sm);
    font-weight: 500;
}

/* OSS / Community */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) { .channel-grid { grid-template-columns: 1fr; } }

.channel {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.channel h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--marvis-deep);
}

.channel .status {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--state-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.channel .status.coming { color: var(--state-partial); }

.channel p {
    font-size: var(--text-sm);
    color: var(--marvis-base);
    margin-bottom: var(--space-md);
}

/* Misc */
.text-mono { font-family: var(--font-mono); }
.text-mute { color: var(--marvis-mute); }
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* 404 */
.error-page {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
}

.error-page h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-md);
}

.error-page p {
    color: var(--marvis-base);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}
