* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #061a3a,
        #0b3c8c
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.container {
    padding: 20px;
    width: 100%;
}

.card {
    max-width: 760px;
    margin: auto;
    background: rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* LOGO */
.logo {
    max-width: 380px;
    width: 100%;
    margin-bottom: 18px;
}

/* TAGLINE */
.tagline {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* DIVIDER */
.divider {
    width: 90px;
    height: 4px;
    background: #f7931e;
    margin: 28px auto;
    border-radius: 20px;
}

/* MESSAGE */
.message {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* TEAM */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.member h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f7931e;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.member p {
    font-size: 1.05rem;
    font-weight: 500;
}

.member a {
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
}

.member a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* FOOTER */
.footer {
    font-size: 0.85rem;
    opacity: 0.75;
}

/* MOBILE */
@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }

    .card {
        padding: 35px 22px;
    }
}
