.main-font {
    font-family: "Instrument Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; 
    font-style: normal;
}

.landing-body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(circle at top, #fdf4ff, #f2ecff 45%, #e5def6);
}

.hero {
    width: min(90vw, 720px);
    background: #ffffff;
    border-radius: 32px;
    padding: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    box-shadow: 0 25px 60px rgba(73, 39, 108, 0.15);
}

.keymeet-logo {
    width: min(80vw, 420px);
    height: auto;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #4b2c60;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f8b3ff, #a184ff);
    margin: 2rem auto;
    border-radius: 999px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    color: #7d6886;
    margin: 0;
}

@media (max-width: 480px) {
    .landing-body {
        padding: 1.5rem;
    }

    .hero {
        border-radius: 24px;
    }
}

.main-nav {
    background-color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none;
    color: #9980a4;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

.nav-link .top-text,
.nav-link .bottom-text {
    display: block;
}

.nav-link .bottom-text {
    font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
    color: #7d6886;
}