:root {
    --ink: #f7fbf9;
    --muted: #d5e6df;
    --accent: #56d6a7;
    --accent-strong: #f1c45b;
    --panel: rgba(9, 16, 14, 0.72);
    --line: rgba(255, 255, 255, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #101414;
}

a {
    color: var(--accent);
    text-decoration-color: rgba(86, 214, 167, 0.55);
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--accent-strong);
    text-decoration-color: currentColor;
}

.page-shell {
    min-height: 100vh;
}

.hero {
    position: relative;
    min-height: calc(100vh - 128px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(90deg, rgba(9, 16, 14, 0.92) 0%, rgba(9, 16, 14, 0.72) 42%, rgba(9, 16, 14, 0.35) 100%),
        url("assets/cloud-network.png");
    background-size: cover;
    background-position: center;
}

.hero__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.hero__content {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0 64px;
}

h1 {
    margin: 0 0 28px;
    font-size: clamp(3rem, 4vw, 7.5rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 0;
}

.copy {
    width: min(690px, 100%);
    padding-left: 24px;
    border-left: 3px solid var(--accent);
}

p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
}

p + p {
    margin-top: 18px;
}

.contact {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 128px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    border-top: 1px solid var(--line);
}

.contact p {
    color: var(--ink);
}

@media (max-width: 720px) {
    .hero {
        min-height: auto;
    }

    .hero__backdrop {
        background-image:
            linear-gradient(180deg, rgba(9, 16, 14, 0.92) 0%, rgba(9, 16, 14, 0.82) 60%, rgba(9, 16, 14, 0.72) 100%),
            url("../assets/cloud-network.png");
        background-position: 58% center;
    }

    .hero__content {
        padding: 56px 0 44px;
    }

    h1 {
        font-size: clamp(2.6rem, 17vw, 4.6rem);
    }

    .copy {
        padding-left: 16px;
    }

    .contact {
        min-height: 120px;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 24px 0 32px;
    }
}
