/* ── Hero: bold accent banner, centered, EssX style ── */
.landing-hero {
    background: var(--color-accent);
    padding: 120px 32px 100px;
    text-align: center;
}

.landing-hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.landing-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: var(--color-accent-dim);
}

.btn-primary:hover {
    background: rgba(255,255,255,0.92);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);
}

.hero-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 500;
}

.hero-meta span:nth-child(even) {
    color: rgba(255,255,255,0.4);
}

/* ── Sections: wide, left-aligned, spacious ── */
.section {
    padding: 80px 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.section p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 800px;
}

.section p:last-of-type {
    margin-bottom: 20px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent-bright);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color var(--transition);
}

.text-link:hover {
    text-decoration: underline;
}

/* ── Feature row: icon left, text right (EssX style) ── */
.feature-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 48px;
    align-items: start;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
}

.feature-visual svg {
    width: 80px;
    height: 80px;
    stroke-width: 1.5;
}

/* ── Alternating bands ── */
.section--alt {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    max-width: 100%;
    padding: 80px 32px;
}

.section--alt .section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Console demo section ── */
.section--console {
    max-width: 100%;
    padding: 80px 32px;
    background: var(--bg-primary);
}

.section--console .section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section--console .hero-visual {
    margin-top: 32px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ── Utilities ── */
.inline-code {
    display: inline-block;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--color-accent-bright);
    margin-right: 10px;
}

.muted {
    color: var(--text-muted);
    font-size: 13px;
}

/* ── Footer ── */
.landing-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 48px 32px 32px;
    margin-top: 0;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent-bright);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1100px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .landing-hero-content h1 {
        font-size: 44px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-visual {
        width: 140px;
        height: 140px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 80px 20px 70px;
    }

    .landing-hero-content h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section {
        padding: 60px 20px;
    }

    .section h2 {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}