/* =============================================
   First Rent Verdict - Modern Design System
   Inspired by: Linear, Vercel, Raycast
   ============================================= */

/* ==================
   1. Design Tokens
   ================== */
:root {
    /* Colors - Soft, Modern Palette */
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f4f4f5;
    --bg-elevated: #ffffff;

    /* Text Colors */
    --text-primary: #18181b;
    --text-secondary: #52525b;
    --text-tertiary: #a1a1aa;
    --text-inverse: #ffffff;

    /* Accent Colors - Modern Gradient Base */
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --accent-gradient-subtle: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);

    /* Semantic Colors */
    --success: #22c55e;
    --success-bg: rgba(34, 197, 94, 0.1);
    --warning: #eab308;
    --warning-bg: rgba(234, 179, 8, 0.1);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.1);

    /* Borders */
    --border-default: #e4e4e7;
    --border-subtle: #f4f4f5;
    --border-focus: #6366f1;

    /* Shadows - Layered for depth */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

    /* 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;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==================
   2. Reset & Base
   ================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==================
   3. Typography
   ================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

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

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

/* ==================
   4. Layout
   ================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-sm {
    max-width: 640px;
}

.container-md {
    max-width: 768px;
}

.container-lg {
    max-width: 1024px;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 60px);
    gap: 0;
}

.split-left {
    background: var(--bg-tertiary);
    padding: var(--space-16);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.split-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.split-right {
    background: var(--bg-secondary);
    padding: var(--space-16);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

    .split-left,
    .split-right {
        padding: var(--space-10) var(--space-6);
    }
}

/* ==================
   5. Header & Footer
   ================== */
/* ==================
   5. Header & Footer
   ================== */
.site-header {
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-4);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-brand {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.header-brand svg {
    width: 20px;
    height: 20px;
}

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

.header-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

@media (max-width: 640px) {
    .header-nav {
        gap: var(--space-3);
    }

    .header-nav a {
        font-size: 0.8rem;
    }

    /* Hide non-essential links on mobile to prevent overflow */
    .header-nav a[href*="methodology"],
    .header-nav a[href*="cities"] {
        display: none;
    }
}

/* ==================
   5.1 Simulation Sticky Bar (Mobile Only)
   ================== */
.sim-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-default);
    padding: var(--space-3) var(--space-4);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    display: none;
    /* Hidden by default, shown via JS */
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.sticky-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sticky-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sticky-status {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.site-footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-default);
    padding: var(--space-8) var(--space-6);
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    transition: color var(--transition-fast);
}

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

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ==================
   6. Cards
   ================== */
.card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card-accent {
    border-left: 3px solid var(--accent-primary);
}

.card-success {
    border-left: 3px solid var(--success);
    background: var(--success-bg);
}

.card-warning {
    border-left: 3px solid var(--warning);
    background: var(--warning-bg);
}

.card-danger {
    border-left: 3px solid var(--danger);
    background: var(--danger-bg);
}

/* ==================
   7. 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-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-inverse);
    box-shadow: var(--shadow-sm), 0 0 0 0 rgba(99, 102, 241, 0);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-tertiary);
    box-shadow: var(--shadow-md);
}

.btn-intent {
    background: var(--bg-secondary);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    font-weight: 700;
}

.btn-intent:hover {
    background: var(--accent-gradient-subtle);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Floating Responsive CTA Bar */
.floating-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.floating-cta-bar .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
        /* Space for the floating bar */
    }
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

/* ==================
   8. Form Elements
   ================== */
.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-select {
    width: 100%;
    padding: var(--space-4);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-input:hover,
.form-select:hover {
    border-color: var(--text-tertiary);
}

/* Checkbox */
.checkbox-group {
    display: flex;
    gap: var(--space-6);
    margin: var(--space-6) 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9375rem;
    color: var(--text-primary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
    border-radius: var(--radius-sm);
}

/* ==================
   9. Badges
   ================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge-subtle {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

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

.badge-warning {
    background: var(--warning-bg);
    color: #a16207;
}

.badge-danger {
    background: var(--danger-bg);
    color: var(--danger);
}

.badge-accent {
    background: var(--accent-gradient-subtle);
    color: var(--accent-primary);
}

/* ==================
   10. Verdict Specific
   ================== */
.verdict-hero {
    text-align: center;
    padding: var(--space-12) 0;
}

.verdict-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

.verdict-text {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.verdict-approved {
    color: var(--success);
}

.verdict-borderline {
    color: var(--warning);
}

.verdict-denied {
    color: var(--danger);
}

.verdict-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-8);
}

/* Safety Gap Card */
.safety-gap-card {
    text-align: center;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
}

.safety-gap-card.approved {
    background: var(--success-bg);
    border: 2px solid var(--success);
}

.safety-gap-card.denied {
    background: var(--danger-bg);
    border: 2px solid var(--danger);
}

.safety-gap-amount {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.safety-gap-action {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==================
   11. Financial Display
   ================== */
.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
}

.financial-item {
    padding: var(--space-5);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.financial-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-1);
}

.financial-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.financial-value-sm {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==================
   12. Hero Section
   ================== */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ==================
   13. Sections
   ================== */
.section {
    padding: var(--space-12) 0;
}

.section-header {
    margin-bottom: var(--space-8);
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-2);
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ==================
   14. Lists
   ================== */
.step-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.step-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-4);
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.step-item:hover {
    border-color: var(--accent-primary);
    background: var(--accent-gradient-subtle);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    color: var(--text-inverse);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==================
   15. Navigation Breadcrumb
   ================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: var(--space-6);
}

.breadcrumb a {
    color: var(--text-tertiary);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--text-primary);
}

.breadcrumb-separator {
    color: var(--border-default);
}

/* ==================
   16. Tags / Chips
   ================== */
.tag-group {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.tag:hover {
    background: var(--accent-gradient-subtle);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ==================
   17. Back Link
   ================== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color var(--transition-fast);
    margin-bottom: var(--space-8);
}

.back-link:hover {
    color: var(--text-primary);
}

/* ==================
   18. Market Radar
   ================== */
.market-radar {
    padding: var(--space-6);
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
}

.radar-track {
    position: relative;
    height: 12px;
    background: var(--border-default);
    border-radius: var(--radius-full);
    margin: var(--space-6) 0;
    overflow: visible;
}

.radar-range {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--success) 0%, var(--warning) 50%, var(--danger) 100%);
    border-radius: var(--radius-full);
    opacity: 0.3;
}

.radar-marker {
    position: absolute;
    top: -4px;
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border: 3px solid var(--bg-secondary);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transform: translateX(-50%);
    transition: left var(--transition-slow);
}

.radar-legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* ==================
   19. Receipts
   ================== */
.receipt {
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.receipt-header {
    padding: var(--space-4) var(--space-5);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-default);
}

.receipt-header h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.receipt-body {
    padding: var(--space-5);
}

.receipt-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.receipt-item:last-child {
    border-bottom: none;
}

.receipt-item-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.receipt-item-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.receipt-item-note {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: var(--space-1);
}

.receipt-total {
    display: flex;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-default);
}

.receipt-total-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.receipt-total-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ==================
   20. 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-tertiary {
    color: var(--text-tertiary);
}

.font-mono {
    font-family: var(--font-mono);
}

.mt-0 {
    margin-top: 0;
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-in {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* ==================
   21. Responsive
   ================== */
@media (max-width: 640px) {
    :root {
        --space-6: 20px;
        --space-8: 28px;
        --space-10: 36px;
        --space-12: 44px;
        --space-16: 56px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: var(--space-3) var(--space-6);
    }

    .financial-grid {
        grid-template-columns: 1fr;
    }
}