:root {
    --nld-black: #090909;
    --nld-white: #ffffff;
    --nld-red: #b31319;
    --nld-grey: #f3f3f1;
    --nld-text: #202020;
    --nld-max-width: 1180px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--nld-white);
    color: var(--nld-text);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}
.nld-page {
    min-height: 100vh;
}

.nld-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #090909 0%, #1b1b1b 100%);
    color: #ffffff;
}

.nld-hero__content {
    width: min(90%, 1180px);
    margin: 0 auto;
}

.nld-hero__eyebrow {
    color: var(--nld-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.nld-hero__title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    margin: 20px 0;
}

.nld-hero__description {
    max-width: 650px;
    font-size: 22px;
    opacity: .9;
}

.nld-button {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 34px;
    background: var(--nld-red);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    transition: .25s;
}

.nld-button:hover{
    transform: translateY(-3px);
}