:root {
    --bg-color: #030303;
    --bg-secondary: #0F0F0F;
    --text-primary: #EDEDED;
    --text-secondary: #888888;
    --accent-color: #CCFF00;
    --accent-dim: rgba(204, 255, 0, 0.1);
    --border-color: #333;
    --card-bg: #0A0A0A;
    --card-hover: #111;

    --font-display: 'Rajdhani', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;

    --max-width: 1400px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    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: 50px 50px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

.text-gradient {
    color: var(--accent-color);
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-dim);
}

.btn-primary:hover {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(204, 255, 0, 0.05);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(204, 255, 0, 0.05);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: var(--max-width);
    height: 70px;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 10px),
            calc(100% - 10px) 100%,
            10px 100%,
            0 calc(100% - 10px));
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Menu Active State Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 8rem);
    padding-bottom: 8rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
}

.hero-text::before {
    content: '[ SYSTEM_ONLINE ]';
    display: block;
    font-family: var(--font-mono);
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.hero-subhead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    color: var(--text-secondary);
    border-left: 2px solid var(--accent-color);
    padding-left: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    border: 1px solid var(--border-color);
    background:
        linear-gradient(rgba(204, 255, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(20px 0,
            100% 0,
            100% calc(100% - 20px),
            calc(100% - 20px) 100%,
            0 100%,
            0 20px);
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, #030303 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 3px);
}

.glow-orb {
    display: none;
}

/* Trusted By */
.trusted-by {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    background: var(--bg-secondary);
}

.trusted-by p {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    color: var(--accent-color);
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-secondary);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Features */
.features {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 800px;
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

/* Interactive Tiles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-color);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    background: rgba(20, 20, 20, 0.8);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Technical markers for cards */
.feature-card::after {
    content: '[ DATA_BLOCK ]';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.feature-card>div {
    position: relative;
    z-index: 2;
    width: 100%;
}

.feature-card .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Hide the old complex SVG container for now, or repurpose it */
.feature-card .img-container {
    display: none;
}

.feature-card button {
    display: none;
}

/* Global Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* How It Works */
.how-it-works {
    padding: 8rem 0;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.step-card {
    padding: 2rem;
    border-left: 1px solid var(--border-color);
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.3s ease;
}

.step-card:hover::before {
    height: 100%;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Differentiators */
.differentiators {
    padding: 8rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.check-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.check-icon {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    font-family: var(--font-mono);
}

.check-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.code-block {
    background: #050505;
    padding: 2rem;
    border: 1px solid var(--border-color);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.code-block::before {
    content: 'script.py';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--bg-color);
    padding: 0 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

.code-header {
    display: none;
    /* Remove Mac-style dots */
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

pre {
    overflow-x: auto;
}

.keyword {
    color: var(--accent-color);
}

.string {
    color: #fff;
}

.comment {
    color: #555;
    font-style: italic;
}

/* Use Cases */
.use-cases {
    padding: 8rem 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.case-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
}

.case-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.case-card p {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.stat {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    display: flex;
    align-items: center;
}

.stat::before {
    content: '>';
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--border-color);
    line-height: 1;
}

.quote {
    font-size: 1.1rem;
    font-style: normal;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 300;
}

.author strong {
    display: block;
    color: var(--accent-color);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.author span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Footer */
.footer {
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-logo {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-family: var(--font-mono);
    color: var(--accent-color);
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* Glitch Effect */
@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

.glitch-hover:hover {
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: var(--accent-color);
}

/* Scanline Animation */
@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, transparent, rgba(204, 255, 0, 0.2), transparent);
    animation: scanline 3s linear infinite;
    pointer-events: none;
    z-index: 10;
}

/* Terminal Cursor */
#terminal-output::after {
    content: '▋';
    display: inline-block;
    vertical-align: bottom;
    animation: blink 1s step-end infinite;
    color: var(--accent-color);
    margin-left: 4px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text::before {
        display: inline-block;
        margin-left: 4px;
    }

    .hero-subhead {
        margin-left: auto;
        margin-right: auto;
        border-left: none;
        padding-left: 0;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .section-header {
        text-align: center;
        border-left: none;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid,
    .steps-grid,
    .cases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

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

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

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .navbar.active {
        clip-path: none;
        background: transparent;
        /* Let the full screen menu background take over */
    }

    .nav-links,
    .nav-actions {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        /* Shared base styles */
    }

    /* Specific full screen background for links container which acts as the main menu background */
    .nav-links {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        height: 100vh;
        z-index: 999;
    }

    .nav-actions {
        /* Actions float on top */
        z-index: 1000;
        background: transparent;
        height: auto;
    }

    .nav-links.active,
    .nav-actions.active {
        display: flex;
    }

    .nav-links {
        align-items: center;
        gap: 2rem;
        height: auto;
    }

    .nav-actions {
        top: auto;
        bottom: 0;
        /* Or position it relative to nav-links if we wrap them */
        margin-top: 1rem;
        position: fixed;
        width: 100%;
        padding-bottom: 2rem;
        /* Since we have two separate containers, let's just make nav-links cover the screen and include actions if possible, 
           BUT looking at the HTML structure, they are siblings. 
           Let's style them to stack correctly.
        */
        top: 0;
        left: 0;
        height: 100vh;
        justify-content: center;
        padding-top: 100px;
        /* Space for nav-links above if we shared the container */
        /* Actually, simpler approach: make them share the fullscreen overlay */
    }

    /* Revised Mobile Menu Styles */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        padding-top: 6rem;
        z-index: 1000;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.active a {
        color: #fff;
        opacity: 0.9;
        font-size: 1.5rem;
    }

    .logo {
        position: relative;
        z-index: 1002;
    }

    /* Fixed orphaned lines */

    .nav-actions.active {
        display: none !important;
    }

    .nav-links a {
        font-size: 1.5rem;
    }


    .mobile-menu-btn {
        display: flex;
    }

    /* Stack Grids */
    .features-grid,
    .steps-grid,
    .cases-grid,
    .testimonials-grid,
    .diff-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

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

    .hero {
        padding-top: calc(var(--nav-height) + 2rem);
        padding-bottom: 4rem;
    }

    .diff-grid {
        gap: 3rem;
    }

    .code-block {
        padding: 1rem;
        font-size: 0.8rem;
        overflow-x: auto;
    }
}