:root {
    --bg-color: #0A0A0A;
    --surface-color: #141414;
    --surface-hover: #1E1E1E;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --accent: #A855F7;
    --accent-hover: #9333EA;
    --accent-glow: rgba(168, 85, 247, 0.2);
    --red: #FF4D4D;
    --yellow: #FFD23F;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: #0A0A0A;
}

body {
    background-color: transparent !important;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
}

#liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #0A0A0A;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: clamp(40px, 8vw, 60px);
}

.section-header h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism */
.glass-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: var(--font-body);
    min-height: 48px;
    line-height: 1.2;
    text-align: center;
}

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

@media (hover: hover) {
    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(168, 85, 247, 0.3);
    }
}

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

@media (hover: hover) {
    .btn-outline:hover {
        background: var(--surface-hover);
        border-color: var(--text-primary);
    }
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* Icons */
[data-lucide] {
    width: 24px;
    height: 24px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 90%;
    max-width: 500px;
    padding: clamp(28px, 5vw, 40px);
    position: relative;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

@media (hover: hover) {
    .modal-close:hover {
        color: var(--accent);
        transform: rotate(90deg);
    }
}

.modal-content h3 {
    font-size: clamp(1.4rem, 4vw, 1.75rem);
    margin-bottom: 16px;
    color: var(--accent);
}

.modal-content p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.6;
}

.modal-icon {
    width: 60px;
    height: 60px;
    color: var(--accent);
    margin-bottom: 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo-icon {
    color: var(--accent);
}

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

.nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (hover: hover) {
    .nav a:hover {
        color: var(--accent);
    }
}

/* Hero Section */
.hero {
    padding: clamp(110px, 18vw, 160px) 0 clamp(60px, 10vw, 100px);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    display: none;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    margin-bottom: clamp(28px, 5vw, 40px);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Dashboard Mockup */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.dashboard-mockup {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    transform: rotateY(-5deg) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

@media (hover: hover) {
    .dashboard-mockup:hover {
        transform: rotateY(0) rotateX(0);
    }
}

.mockup-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
}

.dots span:nth-child(1) { background-color: var(--red); }
.dots span:nth-child(2) { background-color: var(--yellow); }
.dots span:nth-child(3) { background-color: var(--accent); }

.mockup-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chart-area {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.chart-bar {
    flex: 1;
    background: var(--surface-hover);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.chart-bar.highlight {
    background: linear-gradient(to top, var(--accent), #7E22CE);
}

.automation-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--surface-color);
    border-radius: 12px;
}

.node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.node.highlight {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent);
    border-color: var(--accent);
}

.node.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
    100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

.line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 12px;
    position: relative;
}

.line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--accent);
    animation: flowLine 2s linear infinite;
}

@keyframes flowLine {
    0% { left: -30%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Problem Section */
.problem {
    padding: clamp(60px, 10vw, 100px) 0;
    background: transparent;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--surface-color);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

@media (hover: hover) {
    .problem-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 77, 77, 0.3);
    }
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--surface-hover);
}

.icon-box.red {
    color: var(--red);
    background: rgba(255, 77, 77, 0.1);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* Solution Section */
.solution {
    padding: clamp(70px, 12vw, 120px) 0;
    background: transparent;
}

.solution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.circle-network {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: hidden;
}

.center-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.orbit-node {
    position: absolute;
    width: 64px;
    height: 64px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

@media (hover: hover) {
    .orbit-node:hover {
        color: var(--accent);
        border-color: var(--accent);
        transform: scale(1.1);
    }
}

/* Hardcoded positions for simple orbit look */
.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-3 { top: 50%; left: 0; transform: translateY(-50%); }
.node-4 { top: 50%; right: 0; transform: translateY(-50%); }

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 24px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}

.feature-list li [data-lucide] {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* How it works */
.how-it-works {
    padding: clamp(60px, 10vw, 100px) 0;
    background: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--surface-color);
    padding: 40px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: -10px;
    right: -10px;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    position: relative;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
}

/* Services */
.services {
    padding: clamp(70px, 12vw, 120px) 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 24px;
}

.service-card {
    padding: clamp(28px, 5vw, 40px) clamp(24px, 4vw, 32px);
    transition: var(--transition);
}

@media (hover: hover) {
    .service-card:hover {
        transform: translateY(-5px);
        border-color: rgba(168, 85, 247, 0.3);
    }
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
}

/* Differentiators */
.differentiators {
    padding: clamp(60px, 10vw, 100px) 0;
    background: transparent;
}

.diff-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diff-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.diff-item {
    display: flex;
    gap: 20px;
}

.diff-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-item h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.diff-item p {
    color: var(--text-secondary);
}

.code-window {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.window-header {
    background: var(--surface-hover);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: var(--red); }
.dot.yellow { background: var(--yellow); }
.dot.green { background: var(--accent); }

.window-body {
    padding: 24px;
    background: #080808;
    overflow-x: auto;
}

pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.keyword { color: #ff7b72; }
.class { color: #79c0ff; }
.method { color: #d2a8ff; }
.string { color: #a5d6ff; }
.variable { color: #c9d1d9; }
.property { color: #79c0ff; }
.comment { color: #8b949e; }

/* Proof / Testimonials */
.proof {
    padding: clamp(70px, 12vw, 120px) 0;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: clamp(40px, 8vw, 60px);
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 7vw, 4rem);
    color: var(--accent);
    margin-bottom: 8px;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
    padding: clamp(28px, 5vw, 40px);
}

.stars {
    color: var(--yellow);
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars [data-lucide] {
    width: 20px;
    height: 20px;
}

.quote {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    font-style: italic;
    margin-bottom: 32px;
}

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

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
}

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

/* CTA */
.cta-section {
    padding: clamp(40px, 6vw, 60px) 0 clamp(70px, 12vw, 120px);
    background: transparent;
}

.cta-box {
    position: relative;
    padding: clamp(48px, 8vw, 80px) clamp(24px, 5vw, 40px);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    margin-bottom: clamp(28px, 5vw, 40px);
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(50px, 9vw, 80px) 0 max(24px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border-color);
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 300px;
}

.footer h3 {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

@media (hover: hover) {
    .footer-links a:hover {
        color: var(--accent);
    }
}

.footer-links a {
    padding: 6px 0;
    display: inline-block;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

@media (hover: hover) {
    .social-links a:hover {
        background: var(--accent);
        color: #000;
        border-color: var(--accent);
    }
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.desktop-only {
    display: inline-flex;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
}

@media (hover: hover) {
    .mobile-menu-btn:hover {
        background: var(--surface-hover);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .desktop-only { display: none; }
    .mobile-menu-btn { display: inline-flex; }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 40px;
        z-index: 99;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .nav.active {
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
    }

    .nav a {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.3s;
        padding: 12px 24px;
    }

    .nav.active a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .hero-container, .solution-container, .diff-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: clamp(40px, 8vw, 60px);
        justify-items: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title { max-width: 600px; }

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

    .hero-subtitle {
        margin: 0 auto clamp(28px, 5vw, 40px);
        max-width: 100%;
    }

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

    .feature-list {
        align-items: flex-start;
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .diff-items { text-align: left; }

    .circle-network {
        margin: 40px auto;
        width: min(320px, 80vw);
        height: min(320px, 80vw);
    }

    .center-node { width: clamp(80px, 20vw, 100px); height: clamp(80px, 20vw, 100px); }
    .orbit-node { width: clamp(44px, 12vw, 50px); height: clamp(44px, 12vw, 50px); }
}

@media (max-width: 768px) {
    .header-container { height: 68px; }
    .nav { top: 68px; }
    .nav.active {
        height: calc(100vh - 68px);
        height: calc(100dvh - 68px);
    }

    .problem-grid, .steps-grid, .testimonials, .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p { margin: 20px auto; }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .dashboard-mockup {
        height: clamp(240px, 60vw, 320px);
        transform: none !important;
        margin: 0 auto;
    }

    .mockup-body {
        padding: 18px;
        gap: 18px;
    }

    .chart-area {
        height: 90px;
        gap: 8px;
    }

    .automation-flow {
        padding: 16px;
    }

    .node {
        width: 42px;
        height: 42px;
    }

    .line {
        margin: 0 8px;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container { height: 60px; }
    .nav { top: 60px; }
    .nav.active {
        height: calc(100vh - 60px);
        height: calc(100dvh - 60px);
    }

    .logo { font-size: 1.15rem; gap: 8px; }
    .logo-img { height: 32px; }

    .badge { font-size: 0.8rem; padding: 5px 12px; }

    .hero-actions { width: 100%; }
    .hero-actions .btn { width: 100%; }

    .cta-content .btn { width: 100%; }

    .author { gap: 12px; }
    .avatar { width: 44px; height: 44px; font-size: 1rem; }

    .window-body { padding: 18px; }
    pre { font-size: 0.78rem; }

    .icon-box { width: 48px; height: 48px; }
    .diff-icon { width: 44px; height: 44px; }

    .step-number { font-size: 3rem; }

    .problem-card,
    .step-card {
        padding: 28px 22px;
    }

    .modal-container { width: 92%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .dashboard-mockup {
        transform: none !important;
    }
}
