.montserrat-400 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #030303;
    color: #ffffff;
}

.hero {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-lockup {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 1.4vw, 1.25rem);
    color: #ffffff;
}

.logo-mark {
    flex: 0 0 auto;
    width: clamp(2.8rem, 5vw, 4.2rem);
    height: auto;
}

.logo-wordmark {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.hero-stack {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

footer {
    flex: 0 0 auto;
    padding: 1rem;
    font-size: 14px;
    max-width: 1200px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .logo-lockup {
        gap: 0.7rem;
    }
}