/*
 * ClouseRouter - Industrial Luxury Theme
 * Project: Hyper-Structure
 */

:root {
    /* --- Palette: Void & Voltage --- */
    --bg-void: #020203;
    --bg-surface: #0e0e10;
    --bg-surface-glass: rgba(14, 14, 16, 0.7);

    --border-subtle: #1f1f23;
    --border-active: #3a3a40;
    --border-glow: rgba(255, 255, 255, 0.1);

    --accent-cyan: #00f0ff;
    --accent-lime: #d0ff00;
    --accent-violet: #7d5fff;
    --accent-error: #ff2e2e;

    --text-titanium: #ededed;
    --text-steel: #888890;
    --text-muted: #555560;

    /* --- Typography --- */
    --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --font-mono: "JetBrains Mono", "Fira Code", monospace;

    /* --- Spacing & Layout --- */
    --container-width: 1200px;
    --header-height: 72px;
    --grid-gap: 24px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* --- Animation --- */
    --ease-mechanical: cubic-bezier(0.2, 0, 0.2, 1);
    --ease-snap: cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

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

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

body {
    background-color: var(--bg-void);
    color: var(--text-steel);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-titanium);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-mono {
    font-family: var(--font-mono);
}
.text-cyan {
    color: var(--accent-cyan);
}
.text-lime {
    color: var(--accent-lime);
}
.text-violet {
    color: var(--accent-violet);
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* --- Header / Nav --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(2, 2, 3, 0.85);
    backdrop-filter: blur(12px);
}

.nav-shell {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-titanium);
    letter-spacing: -0.01em;
}

.brand-mark {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-steel);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 44px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s var(--ease-mechanical);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text-titanium);
    color: var(--bg-void);
    border-color: var(--text-titanium);
}

.btn-primary:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-titanium);
    border-color: var(--border-active);
}

.btn-secondary:hover {
    border-color: var(--text-titanium);
    background: rgba(255, 255, 255, 0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--text-steel);
    padding: 0 16px;
}

.btn-ghost:hover {
    color: var(--text-titanium);
}

/* --- Hero Section: The Command Center --- */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
    color: var(--text-steel);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item .label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.stat-item .value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-titanium);
}

/* Terminal / Visualizer */
.terminal-window {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2px; /* Inner border gap */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.terminal-window::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-cyan),
        transparent
    );
    opacity: 0.5;
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-subtle);
}

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-controls {
    display: flex;
    gap: 6px;
}

.control-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-active);
}

.terminal-body {
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-steel);
    min-height: 300px;
    max-height: 400px;
    overflow-y: hidden; /* Auto scroll handled by JS */
    position: relative;
}

.log-line {
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
    opacity: 0;
    animation: slideIn 0.3s forwards;
}

.log-time {
    color: var(--text-muted);
}
.log-method {
    color: var(--accent-violet);
}
.log-path {
    color: var(--text-titanium);
}
.log-status {
    color: var(--accent-lime);
}
.log-latency {
    color: var(--text-steel);
}

/* --- Bento Grid Features --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: var(--grid-gap);
    margin-top: 64px;
}

.bento-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s var(--ease-mechanical),
        border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    border-color: var(--border-active);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Card span variations */
.col-span-2 {
    grid-column: span 2;
}
.row-span-2 {
    grid-row: span 2;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-titanium);
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-steel);
}

/* Specific Bento Visuals */
.visual-routing {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    position: relative;
}

/* --- Comparison Section --- */
.comparison-wrapper {
    margin-top: 64px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.comp-col {
    padding: 48px;
}

.comp-col.pain {
    border-right: 1px solid var(--border-subtle);
    background: rgba(255, 46, 46, 0.02);
}

.comp-col.gain {
    background: rgba(0, 240, 255, 0.02);
}

.code-block {
    background: #000;
    padding: 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-top: 24px;
    border: 1px solid var(--border-subtle);
    color: var(--text-steel);
    overflow-x: auto;
}

.code-highlight {
    color: var(--accent-cyan);
}
.code-comment {
    color: var(--text-muted);
    font-style: italic;
}

/* --- 10x Credit Multiplier Pricing --- */
.multiplier-card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 64px;
    overflow: hidden;
}

.multiplier-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.multiplier-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 240, 255, 0.15) 0%,
        rgba(208, 255, 0, 0.05) 40%,
        transparent 70%
    );
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.multiplier-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.multiplier-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

/* Left: Big Number */
.multiplier-hero {
    text-align: center;
}

.multiplier-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 24px;
}

.multiplier-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}

.multiplier-10 {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 700;
    color: var(--text-titanium);
    text-shadow:
        0 0 40px rgba(0, 240, 255, 0.3),
        0 0 80px rgba(0, 240, 255, 0.1);
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%,
    100% {
        text-shadow:
            0 0 40px rgba(0, 240, 255, 0.3),
            0 0 80px rgba(0, 240, 255, 0.1);
    }
    50% {
        text-shadow:
            0 0 60px rgba(0, 240, 255, 0.5),
            0 0 120px rgba(0, 240, 255, 0.2);
    }
}

.multiplier-x {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.multiplier-tagline {
    margin-top: 16px;
    font-size: 1.1rem;
    color: var(--text-steel);
}

/* Center: Visual Transformation */
.multiplier-visual {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.transform-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px 48px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.transform-input,
.transform-output {
    text-align: center;
    min-width: 120px;
}

.transform-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.transform-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-titanium);
    display: block;
    min-width: 100px;
}

.transform-amount.highlight {
    color: var(--accent-lime);
    text-shadow: 0 0 30px rgba(208, 255, 0, 0.4);
}

.transform-arrow {
    flex-shrink: 0;
}

/* Credit Calculator Slider */
.credit-calculator {
    padding: 0 16px;
}

.credit-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(
        90deg,
        var(--border-subtle) 0%,
        var(--accent-cyan) 50%,
        var(--accent-lime) 100%
    );
    appearance: none;
    cursor: pointer;
    outline: none;
}

.credit-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--text-titanium);
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    cursor: grab;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.credit-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

.credit-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
}

.credit-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--text-titanium);
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    cursor: grab;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Right: Examples */
.multiplier-examples {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
}

.example-header {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}

.example-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.example-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.example-item:hover {
    border-color: var(--border-active);
    background: rgba(255, 255, 255, 0.04);
}

.example-item.active {
    border-color: var(--accent-lime);
    background: rgba(208, 255, 0, 0.1);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(208, 255, 0, 0.2);
}

.example-item.active .example-get {
    text-shadow: 0 0 10px rgba(208, 255, 0, 0.5);
}

.example-pay {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-steel);
}

.example-arrow {
    color: var(--text-muted);
}

.example-get {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-lime);
}

/* Footer */
.multiplier-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.multiplier-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-steel);
}

.feature-pill svg {
    color: var(--accent-cyan);
}

.btn-large {
    padding: 0 32px;
    height: 56px;
    font-size: 1rem;
    gap: 12px;
}

.btn-large svg {
    transition: transform 0.2s;
}

.btn-large:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1000px) {
    .multiplier-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .multiplier-10 {
        font-size: 5rem;
    }

    .multiplier-footer {
        flex-direction: column;
        gap: 24px;
    }

    .multiplier-features {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .multiplier-card {
        padding: 32px 24px;
    }

    .transform-flow {
        flex-direction: column;
        gap: 16px;
    }

    .transform-arrow {
        transform: rotate(90deg);
    }

    .feature-pill {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* --- Footer --- */
.site-footer {
    margin-top: 120px;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
    background: var(--bg-surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-brand span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-titanium);
    display: block;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-titanium);
    margin-bottom: 24px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    text-decoration: none;
    color: var(--text-steel);
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-copy {
    border-top: 1px solid var(--border-subtle);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Network Mesh Visualization --- */
.routing-mesh-svg {
    display: block;
    overflow: visible;
}

.pulse-dot {
    filter: drop-shadow(0 0 6px currentColor);
}

.visual-routing {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            ellipse at 40% 50%,
            rgba(0, 240, 255, 0.03) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 30%,
            rgba(125, 95, 255, 0.02) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 70% 80%,
            rgba(208, 255, 0, 0.02) 0%,
            transparent 40%
        );
    border-radius: var(--radius-md);
    padding: 16px;
    margin: -16px;
    margin-top: 16px;
}

/* Scanline effect overlay */
.visual-routing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 240, 255, 0.01) 2px,
        rgba(0, 240, 255, 0.01) 4px
    );
    pointer-events: none;
    border-radius: inherit;
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100px;
    }
}

/* Ensure the large card fills properly */
.bento-card.col-span-2.row-span-2 {
    min-height: 480px;
    background:
        linear-gradient(135deg, rgba(0, 240, 255, 0.02) 0%, transparent 50%),
        var(--bg-surface);
    overflow: hidden;
}

.bento-card.col-span-2.row-span-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-cyan),
        transparent
    );
    opacity: 0.4;
}

.bento-card.col-span-2.row-span-2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(
        ellipse at center bottom,
        rgba(0, 240, 255, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.bento-card.col-span-2.row-span-2 .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Glowing connection lines animation */
.routing-mesh-svg line {
    stroke-linecap: round;
}

/* Particle floating animation enhancement */
.particles circle {
    will-change: transform, opacity;
}

/* Provider node hover glow effect via CSS (won't work on SVG but sets intention) */
.routing-mesh-svg g:hover polygon {
    filter: drop-shadow(0 0 8px currentColor);
}

/* Pulsing effect for the central hub */
@keyframes hubPulse {
    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.6));
    }
}

/* Data stream trail effect */
@keyframes dataTrail {
    0% {
        opacity: 1;
        r: 4;
    }
    100% {
        opacity: 0;
        r: 1;
    }
}

/* --- Animations --- */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cursorPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .col-span-2,
    .row-span-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
    }

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