:root {
    --deep-navy: #0A1F44;
    --royal-blue: #1E5BFF;
    --soft-blue: #4A7DFF;
    --orange: #FF8A00;
    --white: #FFFFFF;
    --light-gray: #F5F7FB;
    --text-dark: #1A1A1A;
    --text-muted: #6B7280;
    --card-bg: #F8FBFF;
    --border-light: rgba(229, 236, 247, 0.9);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--light-gray);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
    cursor: pointer;
}





.update-hero {
    min-height: calc(100vh - 60px);
    padding: 180px 5% 80px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    align-items: center;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-copy {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(30, 91, 255, 0.12);
    color: var(--royal-blue);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.update-hero h1 {
    font-size: clamp(3rem, 4vw, 4.5rem);
    line-height: 1.02;
    max-width: 680px;
}

.update-hero h1 span {
    color: var(--royal-blue);
}

.update-hero p {
    margin: 28px 0 34px;
    max-width: 580px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats div {
    background: var(--white);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 18px 40px rgba(15, 52, 94, 0.08);
    min-width: 180px;
}

.hero-stats strong {
    display: block;
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FB 100%);
    border-radius: 36px;
    padding: 32px;
    width: 100%;
    max-width: 460px;
    border: 1px solid rgba(15, 52, 94, 0.08);
    box-shadow: 0 30px 60px rgba(15, 52, 94, 0.12);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-top span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 700;
}

.status-badge {
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.16);
    color: #166534;
    font-weight: 700;
}

.hero-card h2 {
    font-size: 1.9rem;
    margin-bottom: 18px;
    color: var(--deep-navy);
}

.hero-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.update-highlights {
    padding: 80px 5% 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 44px;
}

.section-heading.small {
    margin-bottom: 38px;
}

.top-label {
    color: var(--royal-blue);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.78rem;
    display: inline-block;
    margin-bottom: 16px;
}

.update-highlights h2,
.career-articles h2 {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    line-height: 1.05;
}

.update-highlights p,
.career-articles p,
.subscribe-card p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.updates-filter {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.update-tab {
    background: var(--white);
    border: 1px solid rgba(15, 52, 94, 0.15);
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    color: var(--deep-navy);
    transition: 0.25s ease;
}

.update-tab.active,
.update-tab:hover {
    background: var(--royal-blue);
    color: var(--white);
    border-color: transparent;
}

.updates-panels {
    display: grid;
}

.updates-panel {
    display: none;
    gap: 24px;
}

.updates-panel.active {
    display: grid;
}

.news-card {
    background: var(--white);
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(15, 52, 94, 0.08);
    box-shadow: 0 24px 50px rgba(15, 52, 94, 0.06);
}

.news-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--deep-navy);
}

.news-card p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.news-card span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--royal-blue);
}

.career-articles {
    padding: 80px 5% 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.article-card {
    background: var(--white);
    border-radius: 30px;
    border: 1px solid rgba(15, 52, 94, 0.08);
    padding: 32px;
    box-shadow: 0 24px 55px rgba(15, 52, 94, 0.06);
}

.article-badge {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(30, 91, 255, 0.1);
    color: var(--royal-blue);
    font-weight: 700;
    margin-bottom: 22px;
}

.article-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.article-card p {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.read-link {
    color: var(--deep-navy);
    font-weight: 700;
}

.subscribe-section {
    padding: 80px 5% 120px;
    max-width: 1280px;
    margin: 0 auto;
}

.subscribe-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FB 100%);
    border-radius: 36px;
    padding: 42px 42px 34px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(15, 52, 94, 0.08);
    box-shadow: 0 30px 60px rgba(15, 52, 94, 0.08);
}

.subscribe-card h2 {
    font-size: 2.6rem;
    margin: 18px 0 20px;
}

.subscribe-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.subscribe-form input {
    flex: 1;
    min-width: 240px;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(15, 52, 94, 0.15);
    background: var(--white);
    color: var(--text-dark);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 5px rgba(30, 91, 255, 0.08);
}

@media (max-width: 1080px) {
    .update-hero {
        grid-template-columns: 1fr;
        padding-top: 140px;
    }
    .hero-visual {
        order: -1;
    }
}

@media (max-width: 860px) {
    .nav-container {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .navbar {
        width: calc(100% - 32px);
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .update-hero h1 {
        font-size: 2.8rem;
    }
    .article-grid {
        grid-template-columns: 1fr;
    }
    .subscribe-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .update-hero {
        padding-top: 120px;
    }
    .navbar {
        padding: 14px 20px;
    }
    .nav-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    .update-filter {
        flex-direction: column;
    }
    .updates-filter {
        justify-content: center;
    }
    .hero-copy,
    .hero-card,
    .subscribe-card {
        width: 100%;
    }
    .hero-card {
        padding: 26px;
    }
}
