:root {
    --navy: #0c1b2a;
    --blue: #1d4f91;
    --mint: #5fd0c3;
    --sand: #f5f1ea;
    --ink: #18202a;
    --muted: #5f6b7a;
    --card: #ffffff;
    --shadow: 0 24px 60px rgba(12, 27, 42, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Raleway', 'Segoe UI', sans-serif;
    color: var(--ink);
    background: linear-gradient(135deg, #fdfcfb 0%, #f1f4f8 60%, #e9f2f1 100%);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    background: rgba(12, 27, 42, 0.9);
    color: white;
    position: sticky;
    top: 0;
    z-index: 30;
    box-shadow: 0 10px 30px rgba(12, 27, 42, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mint), #7aa6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: transparent; /* keep markup generic; render initials via CSS */
    position: relative;
    font-size: 0; /* hide the literal text node so only ::before is visible */
}

.brand-mark::before {
    content: 'JMCH';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    line-height: 1;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
}

.brand small {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.main {
    padding: 48px 0 72px;
}

.hero {
    background: var(--card);
    border-radius: 28px;
    padding: 48px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(95, 208, 195, 0.22), transparent 55%);
    pointer-events: none;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--navy);
}

.hero p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1.02rem;
}

.hero .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: var(--blue);
    box-shadow: 0 12px 24px rgba(29, 79, 145, 0.2);
}

.button.secondary {
    background: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(12, 27, 42, 0.08);
}

.stat-card strong {
    display: block;
    font-size: 1.6rem;
    color: var(--navy);
}

.section {
    margin-top: 56px;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: var(--card);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 18px 40px rgba(12, 27, 42, 0.08);
    border: 1px solid rgba(12, 27, 42, 0.06);
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--blue);
    background: rgba(29, 79, 145, 0.1);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(12, 27, 42, 0.08);
}

.list li:last-child {
    border-bottom: none;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.site-footer {
    background: var(--navy);
    color: white;
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.highlight {
    background: linear-gradient(120deg, rgba(95, 208, 195, 0.4), rgba(122, 166, 255, 0.3));
    padding: 2px 8px;
    border-radius: 6px;
}

@media (max-width: 960px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 14px;
        background: rgba(12, 27, 42, 0.95);
        padding: 16px;
        position: absolute;
        top: 72px;
        right: 24px;
        border-radius: 16px;
        min-width: 180px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 32px;
    }

    .header-inner {
        flex-wrap: wrap;
    }
}
