:root {
    --bg: #16151c;
    --fg: #bdc8cc;
    --accent: #ffffff;
    --social-bg: #2a2933;
    --social-bg-hover: #3a3946;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: var(--bg);
    color: var(--fg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero__content {
    max-width: 720px;
}

.hero__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 9px;
    color: var(--accent);
}

.hero__text {
    margin: 0 0 2.5rem;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero__socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--social-bg);
    color: var(--fg);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social:hover,
.social:focus-visible {
    background: var(--social-bg-hover);
    color: var(--accent);
    transform: translateY(-2px);
    outline: none;
}

.social svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}