/* ============================================================
   HERO
============================================================ */
#hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 104px 0 72px;   /* top clears the fixed nav */
    /* Subtle depth: a soft green glow up top fading to white — pulls the
       eye to the headline without introducing any new colors. */
    background:
        radial-gradient(120% 80% at 50% 0%, var(--green-10) 0%, rgba(16,185,129,0) 55%),
        var(--white);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-10);
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--green-15);
    margin-bottom: 28px;
}

.hero-badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2.2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

#hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    line-height: 1.12;
    margin-bottom: 26px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}


.hero-subtitle {
    font-size: 1.175rem;
    color: var(--midgrey);
    max-width: 880px;
    margin: 0 auto 52px;
    line-height: 1.68;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-trust {
    font-size: 0.82rem;
    color: #9ca3af;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero visual: automation canvas */
.hero-visual {
    margin-top: 68px;
    position: relative;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.hero-visual-frame {
    background: var(--wash);
    border-radius: var(--radius-xl);
    border: 1px solid var(--whitegrey);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 32px 24px;
}

.canvas-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lightgrey);
    margin-bottom: 24px;
    text-align: left;
}

.canvas-nodes {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.canvas-node {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--whitegrey);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-sm);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--base);
    white-space: nowrap;
}

.canvas-node-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.canvas-connector {
    color: var(--lightgrey);
    flex-shrink: 0;
}

.canvas-connector svg { width: 18px; height: 18px; }

.canvas-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 0.78rem;
    color: var(--lightgrey);
}
