html, body {
    overflow-x: hidden;
    overflow-y: auto;
}
.home-page {
    display: flex;
    flex-direction: column;
    min-height: calc(var(--vh, 1vh) * 100);
    background: #ffffff;
}
/* ── Hero ────────────────────────────────── */
.hero-section {
    padding: 40px 0 0;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 56px 56px 64px;
    width: 44%;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}
@media (max-width: 900px) {
    .hero-text-col {
        width: 100%;
        padding: 40px 32px;
        background: rgba(255, 255, 255, 0.92);
    }
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #0f172a;
    margin: 0 0 22px;
}
.hero-title span {
    color: #475569;
}
.hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 36px;
    max-width: 400px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-launch-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.18);
}
.btn-launch-hero:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}
.btn-launch-hero svg {
    transition: transform 0.15s;
}
.btn-launch-hero:hover svg {
    transform: translateX(3px);
}
.hero-note {
    font-size: 0.8rem;
    color: #94a3b8;
}
.hero-canvas-col {
    flex: 1;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}
@media (max-width: 900px) {
    .hero-section {
        position: relative;
    }
    .hero-canvas-col {
        position: absolute;
        inset: 0;
        z-index: 1;
    }
    .hero-text-col {
        position: relative;
        z-index: 2;
    }
}
#home-canvas-container {
    width: 100%;
    height: 100%;
}
#home-canvas-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
.hero-canvas-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}
