/* SubmitBee Design System — Modern SaaS, yellow + white */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
    /* Primary — Bee Yellow */
    --yellow: #F5B800;
    --yellow-hover: #E0A800;
    --yellow-dark: #C99A00;
    --yellow-text: #8A6A00;
    --yellow-light: #FFF8E1;
    --yellow-lighter: #FFFBEB;
    --yellow-glow: rgba(245, 184, 0, 0.35);

    /* Surfaces */
    --white: #ffffff;
    --snow: #fafafa;
    --off-white: #f5f5f5;

    /* Text */
    --black: #000000;
    --near-black: #1a1a1a;
    --dark: #404040;
    --mid: #525252;
    --stone: #737373;
    --silver: #a3a3a3;

    /* Borders */
    --border: #e5e5e5;
    --border-dark: #d4d4d4;

    /* Focus */
    --ring: rgba(245, 184, 0, 0.5);

    /* Code (dark theme) */
    --code-bg: #0f0f0f;
    --code-surface: #1a1a1a;
    --code-text: #e4e4e7;
    --code-comment: #6b7280;
    --code-keyword: #F5B800;
    --code-string: #86efac;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-btn: 0 1px 3px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 200ms;
    --duration-slow: 350ms;

    /* Spacing scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
}

/* ==========================================================================
   2. Reset
   ========================================================================== */

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

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

/* ==========================================================================
   2a. Skip Link
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    background: var(--yellow);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.15s var(--ease);
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

img, svg {
    display: block;
    max-width: 100%;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--near-black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1, h2, h3, h4 {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--black);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
}

p {
    color: var(--mid);
    line-height: 1.7;
}

p.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--stone);
}

a {
    color: var(--black);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

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

code, pre {
    font-family: 'SF Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
    font-size: 14px;
}

/* ==========================================================================
   4. Layout
   ========================================================================== */

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 11px 26px;
    border-radius: 9999px;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition:
        background var(--duration) var(--ease),
        border-color var(--duration) var(--ease),
        box-shadow var(--duration) var(--ease);
    user-select: none;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--ring);
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.btn-primary:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
    color: var(--black);
    box-shadow: 0 2px 8px rgba(245, 184, 0, 0.25);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border-color: var(--border-dark);
}

.btn-secondary:hover {
    background: var(--snow);
    border-color: var(--silver);
    color: var(--dark);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--near-black);
    color: var(--white);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 7px 18px;
    font-size: 0.8125rem;
}

/* ==========================================================================
   6. Navigation
   ========================================================================== */

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    max-width: 1120px;
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    letter-spacing: -0.02em;
}

.nav-logo:hover {
    color: var(--black);
}

.nav-logo img {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
    transition: color var(--duration) var(--ease);
}

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

/* Mobile toggle (hamburger) */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background var(--duration) var(--ease);
}

.nav-mobile-toggle:hover {
    background: var(--off-white);
}

.nav-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--near-black);
    border-radius: 1px;
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

/* Active state for hamburger (X shape) */
.nav-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   7. Sections
   ========================================================================== */

.section {
    padding: var(--space-24) 0;
}

.section-alt {
    background: var(--yellow-lighter);
}

/* Hero */
.hero {
    padding: var(--space-24) 0 var(--space-20) 0;
    text-align: center;
}

.hero-accent {
    width: 32px;
    height: 3px;
    background: var(--yellow);
    border-radius: 9999px;
    margin: 0 auto var(--space-4);
}

.hero-subtitle-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--yellow-light);
    color: var(--yellow-text);
    margin-bottom: var(--space-4);
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: -0.04em;
    line-height: 1.05;
    max-width: 800px;
    margin: 0 auto;
}

.hero p.lead {
    font-size: 1.25rem;
    max-width: 560px;
    margin: var(--space-6) auto 0;
    color: var(--stone);
}

.hero .btn {
    margin-top: var(--space-10);
}

/* ==========================================================================
   8. Cards
   ========================================================================== */

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-8);
    transition:
        box-shadow var(--duration-slow) var(--ease),
        border-color var(--duration-slow) var(--ease);
}

.card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--border-dark);
}

/* Feature cards — yellow top accent + larger icon box */
.card-feature {
    border-top: 3px solid var(--yellow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--yellow-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

/* ==========================================================================
   9. Pricing Cards
   ========================================================================== */

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-10);
    text-align: center;
    position: relative;
    transition:
        box-shadow var(--duration-slow) var(--ease),
        border-color var(--duration-slow) var(--ease);
}

.pricing-card:hover {
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border: 2px solid var(--yellow);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured:hover {
    box-shadow: 0 4px 16px rgba(245, 184, 0, 0.12);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.03em;
    line-height: 1;
    margin: var(--space-4) 0;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--stone);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: var(--space-8) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.pricing-card ul li {
    font-size: 0.9375rem;
    color: var(--dark);
}

/* ==========================================================================
   10. Badges / Pills
   ========================================================================== */

.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    background: var(--yellow-light);
    color: var(--near-black);
    letter-spacing: 0.01em;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.badge-yellow {
    background: var(--yellow);
    color: var(--black);
}

.badge-dark {
    background: var(--near-black);
    color: var(--white);
}

.badge-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--border-dark);
}

/* ==========================================================================
   11. Forms / Inputs
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 11px 20px;
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 0.9375rem;
    color: var(--near-black);
    background: var(--white);
    outline: none;
    transition:
        border-color var(--duration) var(--ease),
        box-shadow var(--duration) var(--ease);
}

textarea {
    border-radius: 12px;
    resize: vertical;
    line-height: 1.6;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px var(--yellow-glow);
}

input::placeholder,
textarea::placeholder {
    color: var(--silver);
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: var(--space-2);
}

/* ==========================================================================
   12. Code Blocks
   ========================================================================== */

/* Light code block (original) */
.code-block {
    background: var(--snow);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    overflow-x: auto;
}

.code-block code {
    color: var(--near-black);
    font-size: 14px;
    line-height: 1.7;
}

/* Dark terminal-style code block */
.code-dark {
    background: var(--code-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Note: code-dark title bars are built inline in templates,
   so we no longer generate a ::before pseudo-element here. */

.code-dark code {
    color: var(--code-text);
    font-size: 13px;
    line-height: 1.8;
    display: block;
}

/* Terminal window dots decoration */
.code-dark .dots {
    display: flex;
    gap: 6px;
    margin-bottom: var(--space-4);
}

.code-dark .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.code-dark .dots span:nth-child(1) { background: #ef4444; }
.code-dark .dots span:nth-child(2) { background: #f59e0b; }
.code-dark .dots span:nth-child(3) { background: #22c55e; }

/* Syntax colors for dark code blocks */
.code-dark .keyword { color: var(--code-keyword); }
.code-dark .string { color: var(--code-string); }
.code-dark .comment { color: var(--code-comment); font-style: italic; }

/* ==========================================================================
   13. Grid Utilities
   ========================================================================== */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

/* ==========================================================================
   14. Animations
   ========================================================================== */

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 80ms; }
.fade-in:nth-child(3) { transition-delay: 160ms; }
.fade-in:nth-child(4) { transition-delay: 240ms; }

/* ==========================================================================
   15. Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-stone { color: var(--stone); }
.text-silver { color: var(--silver); }
.text-small { font-size: 14px; }
.text-yellow { color: var(--yellow-text); }

.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

.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); }

.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-prose { max-width: 65ch; }
.w-full { width: 100%; }

/* ==========================================================================
   16. Responsive — Tablet (max-width: 1024px)
   ========================================================================== */

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

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

/* ==========================================================================
   17. Responsive — Mobile (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        letter-spacing: -0.03em;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero {
        padding: var(--space-16) 0 var(--space-12) 0;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p.lead {
        font-size: 1.0625rem;
    }

    .section {
        padding: var(--space-16) 0;
    }

    /* Nav — mobile menu */
    .nav-mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-1);
        z-index: 100;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: var(--space-3) var(--space-4);
        border-radius: 8px;
        font-size: 1rem;
    }

    .nav-links a:hover {
        background: var(--off-white);
    }

    .nav-links a.btn {
        display: flex;
        width: 100%;
        margin-top: var(--space-2);
    }

    .nav {
        position: relative;
    }

    /* Grids — single column on mobile */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Pricing cards stack */
    .pricing-card {
        padding: var(--space-8);
    }

    .container {
        padding: 0 var(--space-5);
    }

    .code-dark pre {
        padding: 12px 16px;
        font-size: 0.75rem;
    }

    .code-dark pre code {
        font-size: 0.75rem;
    }

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

    footer {
        padding: var(--space-8) 0;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   18. Responsive — Small mobile (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p.lead {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .pricing-card .price {
        font-size: 2.5rem;
    }

    .section {
        padding: var(--space-12) 0;
    }

    .hero {
        padding: var(--space-12) 0 var(--space-10) 0;
    }

    .hero-subtitle-pill {
        font-size: 11px;
        padding: 4px 12px;
    }

    .hero-accent {
        width: 24px;
        height: 2px;
    }

    .hero .container > div[style] {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   19. Focus Styles
   ========================================================================== */

a:focus-visible {
    outline: 2px solid var(--yellow-dark);
    outline-offset: 2px;
    border-radius: 4px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px var(--yellow-glow);
}

.nav-mobile-toggle:focus-visible {
    outline: 2px solid var(--yellow-dark);
    outline-offset: 2px;
}

/* ==========================================================================
   20. Auth Pages
   ========================================================================== */

.auth-wrapper {
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-12) var(--space-6);
    background: var(--yellow-lighter);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px 36px;
    box-shadow: var(--shadow-card);
}

.auth-brand {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-6);
    color: var(--black);
    letter-spacing: -0.02em;
}

.auth-heading {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.auth-subtext {
    text-align: center;
    margin-bottom: var(--space-8);
    font-size: 0.9375rem;
}

.auth-card .form-group {
    margin-bottom: 18px;
}

.auth-card .btn {
    width: 100%;
    margin-top: 6px;
    padding: 12px 24px;
    font-size: 1rem;
}

.auth-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-5);
    flex-wrap: wrap;
}

.auth-links a {
    font-size: 14px;
    color: var(--stone);
    text-decoration: none;
}

.auth-links a:hover {
    color: var(--black);
}

.auth-links a strong {
    color: var(--black);
    font-weight: 600;
}

.auth-links a strong:hover {
    text-decoration: underline;
}

.auth-terms {
    margin-top: var(--space-4);
    text-align: center;
    font-size: 12px;
    color: var(--stone);
    line-height: 1.5;
}

.auth-terms a {
    color: var(--stone);
    text-decoration: underline;
}

.auth-trust {
    margin-top: var(--space-6);
    text-align: center;
    font-size: 13px;
    color: var(--stone);
}

.flash-msg {
    background: var(--yellow-light);
    border: 1px solid var(--yellow);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--near-black);
    margin-bottom: var(--space-5);
    text-align: center;
}

/* ==========================================================================
   20a. Thanks / Success Page
   ========================================================================== */

.thanks-wrapper {
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.thanks-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--yellow-light);
    border: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 28px;
    color: var(--yellow-dark);
    line-height: 1;
}

.thanks-wrapper h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-3);
}

.thanks-wrapper p {
    font-size: 1rem;
    color: var(--stone);
    margin-bottom: var(--space-8);
    max-width: 400px;
}

/* ==========================================================================
   20b. Auth Mobile
   ========================================================================== */

@media (max-width: 480px) {
    .auth-card {
        padding: 32px 24px 28px;
        border-radius: 12px;
    }

    .auth-heading {
        font-size: 1.25rem;
    }

    .auth-links {
        flex-direction: column;
        gap: var(--space-3);
    }
}

/* ==========================================================================
   21. Footer
   ========================================================================== */

footer {
    padding: var(--space-12) 0;
    border-top: 1px solid var(--border);
    background: var(--snow);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
    color: var(--black);
}

/* ==========================================================================
   22. Print
   ========================================================================== */

@media print {
    .nav, .nav-mobile-toggle, .btn {
        display: none;
    }

    .section {
        padding: 24px 0;
    }

    body {
        color: #000;
    }
}
