* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f8f4;
    color: #18342e;
}

.hero-demo {
    min-height: calc(100vh - 94px);
    display: grid;
    place-items: center;
    padding: 60px 20px;
}

.hero-demo__content {
    max-width: 760px;
    text-align: center;
}

.hero-demo__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(242, 161, 44, 0.12);
    color: #d98816;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-demo h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.hero-demo p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5e766f;
}