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

:root {
    --bg: linear-gradient(90deg, #fef6f0 0%, #fdf2fd 100%);
    --card-bg: #fff;
    --card-shadow: 0 1px 21px rgba(0, 0, 0, 0.08);
    --card-radius: 19px;
    --text-primary: #000;
    --text-secondary: #444;
    --text-muted: #777;
    --accent-pink: #FF48BC;
    --accent-purple: #7C4DFF;
    --accent-cyan: #0ED7FF;
    --accent-red: #FF2A2A;
    --tabbar-height: 72px;
}

html, body {
    width: 100%;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(90deg, #fef6f0 0%, #fdf2fd 100%);
}

body {
    font-family: 'Instrument Sans', 'Inter', sans-serif;
    background: linear-gradient(90deg, #fef6f0 0%, #fdf2fd 100%);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

/* ── Pages / SPA ── */
.page {
    display: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    padding-bottom: 40px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ── Desktop Nav ── */
.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 20px 0;
    background: linear-gradient(90deg, rgba(254, 246, 240, 0.85) 0%, rgba(253, 242, 253, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.tmc-logo {
    width: 101px;
    height: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    opacity: 0.6;
}

.nav-link.active {
    font-weight: 600;
}

.nav-btn {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--card-bg);
    border-radius: 13px;
    padding: 10px 24px;
    box-shadow: 0 1px 12px -4px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s, transform 0.2s;
}

.nav-btn:hover {
    box-shadow: 0 2px 16px -2px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
    padding-top: 160px;
    padding-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Lexend', sans-serif;
    font-size: 52px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1em;
    margin-bottom: 36px;
}

.hero-bold {
    font-weight: 600;
}

.hero-sub {
    font-family: 'Lexend', sans-serif;
    font-size: 23px;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.4em;
    color: var(--text-primary);
    max-width: 58%;
    margin-bottom: 36px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    padding: 10px 32px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ── Page Header ── */
.page-header {
    padding-top: 140px;
    padding-bottom: 40px;
    text-align: center;
}

.page-title {
    font-family: 'Lexend', sans-serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}

.page-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-secondary);
}

/* ── Stats Bar ── */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: var(--card-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 28px 40px;
    max-width: 90%;
    margin: 0 auto 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: 'Lexend', sans-serif;
    font-size: 28px;
    font-weight: 600;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(0, 0, 0, 0.08);
}

/* ── Section Header ── */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 90%;
    width: 100%;
    margin-bottom: -8px;
}

.section-title {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.section-link {
    font-size: 14px;
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.section-link:hover {
    opacity: 0.7;
}

/* ── Card sections ── */
.card-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.info-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 25px 28px;
    box-shadow: var(--card-shadow);
    width: 100%;
    max-width: 90%;
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.tmo-logo-small {
    width: 71px;
    height: auto;
}

.network-icon {
    width: 71px;
    height: 71px;
    object-fit: cover;
    border-radius: 12px;
}

.network-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.network-dot-lg {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
}

.card-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.4em;
}

.card-body {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 1.5em;
    color: var(--text-secondary);
}

/* ── Networks Grid (Home) ── */
.networks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 90%;
    width: 100%;
}

.network-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 20px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.network-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.network-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.network-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.network-card-letter {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.network-card-info h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.network-card-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Network Detail Cards ── */
.network-detail-card .network-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.network-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    background: #f5f5f5;
    color: var(--text-muted);
    margin-top: 4px;
}

.network-stats {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.network-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.network-stat-num {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.network-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ── Highlight Card ── */
.highlight-card {
    background: linear-gradient(135deg, #faf8ff, #fff5fb);
}

.highlight-card-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.highlight-text {
    flex: 1;
}

.highlight-text .card-title {
    margin-bottom: 12px;
}

.highlight-text .card-body {
    margin-bottom: 20px;
}

.highlight-graphic {
    width: 180px;
    flex-shrink: 0;
}

.highlight-graphic svg {
    width: 100%;
    height: auto;
}

/* ── Ops Grid ── */
.ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 90%;
    width: 100%;
}

.ops-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 24px;
    box-shadow: var(--card-shadow);
}

.ops-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.ops-card-icon svg {
    width: 100%;
    height: 100%;
}

.ops-card h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.ops-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ── Leadership ── */
.leadership-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.leader-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
    background: #fafafa;
}

.leader-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leader-avatar span {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.leader-info h3 {
    font-size: 15px;
    font-weight: 600;
}

.leader-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Perks Grid ── */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: #fafafa;
}

.perk-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-icon svg {
    width: 20px;
    height: 20px;
}

.perk span {
    font-size: 14px;
    font-weight: 500;
}

/* ── Role Cards ── */
.role-card {
    transition: transform 0.2s;
}

.role-card:hover {
    transform: translateY(-2px);
}

.role-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.role-card-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.role-card-team {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.role-card-type {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    background: #f0eaff;
    color: var(--accent-purple);
    white-space: nowrap;
}

.role-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

/* ── Roles ── */
.roles-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.role-pill {
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    background: #f5f5f5;
    color: var(--text-secondary);
}

/* ── Nodes List ── */
.nodes-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.node-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.node-row:last-child {
    border-bottom: none;
}

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.node-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.node-region {
    font-size: 15px;
    font-weight: 600;
}

.node-detail {
    font-size: 13px;
    color: var(--text-muted);
}

.node-status {
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    background: #e8f5e9;
    color: #2e7d32;
}

.node-status.new {
    background: #fff3e0;
    color: #e65100;
}

/* ── Privacy Pills ── */
.privacy-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.privacy-pill {
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    background: #e8f5e9;
    color: #2e7d32;
}

/* ── Initiative Card ── */
.initiative-card {
    position: relative;
    border-left: 4px solid var(--accent-pink);
}

.initiative-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 20px;
    background: #FFF0F7;
    color: var(--accent-pink);
    margin-bottom: 10px;
}

/* ── Hire Steps ── */
.hire-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hire-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hire-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hire-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 600;
    flex-shrink: 0;
}

.hire-step-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.hire-step-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ── Role Card Link ── */
.role-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.role-card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.12);
}

.role-card-meta {
    margin-top: 8px;
}

.role-card-pay {
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

/* ── CTA Card ── */
.cta-card {
    text-align: center;
    padding: 40px 28px;
}

.cta-card .card-title {
    margin-bottom: 10px;
}

.cta-card .card-body {
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #000;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 28px;
    border-radius: 14px;
    text-decoration: none;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, border-color 0.2s;
}

.card-cta-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.3);
}

/* ── Desktop Footer ── */
.desktop-footer {
    background: var(--card-bg);
    padding: 14px 0;
}

.footer-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    text-decoration: none;
}

.tmc-logo-footer {
    width: 53px;
    height: auto;
}

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

.footer-links a {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.6;
}

/* ── Mobile Tab Bar ── */
.mobile-tabbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    height: var(--tabbar-height);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-tabbar .tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #999;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.mobile-tabbar .tab svg {
    width: 22px;
    height: 22px;
}

.mobile-tabbar .tab span {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.mobile-tabbar .tab.active {
    color: #000;
}

/* ── Responsive: Mobile (< 810px) ── */
@media (max-width: 809px) {
    .desktop-nav {
        padding: 16px 0;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .nav-right .nav-link {
        display: none;
    }

    .page {
        padding: 0 16px;
        padding-bottom: calc(var(--tabbar-height) + 20px);
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 36px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-sub {
        font-size: 17px;
        max-width: 95%;
    }

    .page-header {
        padding-top: 100px;
        padding-bottom: 28px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .info-card {
        max-width: 100%;
    }

    .section-header {
        max-width: 100%;
        padding: 0 4px;
    }

    .stats-bar {
        max-width: 100%;
        padding: 20px 16px;
        gap: 16px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        height: 28px;
    }

    .networks-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .ops-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card-inner {
        flex-direction: column;
        gap: 20px;
    }

    .highlight-graphic {
        width: 120px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-body {
        font-size: 14px;
    }

    .network-stats {
        gap: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .mobile-tabbar {
        display: flex;
    }

    .desktop-footer {
        display: none;
    }
}

/* ── Responsive: Tablet (810px – 1199px) ── */
@media (min-width: 810px) and (max-width: 1199px) {
    .page {
        padding: 0 48px;
        padding-bottom: 40px;
        max-width: 960px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-sub {
        font-size: 20px;
        max-width: 75%;
    }

    .info-card {
        max-width: 100%;
    }

    .section-header {
        max-width: 100%;
    }

    .stats-bar {
        max-width: 100%;
    }

    .networks-grid {
        max-width: 100%;
    }

    .ops-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-graphic {
        width: 160px;
    }
}

/* ── Responsive: Desktop (1200px – 1599px) ── */
@media (min-width: 1200px) and (max-width: 1599px) {
    .page {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 40px;
        padding-bottom: 40px;
    }

    .nav-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 54px;
    }

    .hero-sub {
        font-size: 22px;
        max-width: 60%;
    }

    .info-card {
        max-width: 100%;
    }

    .section-header {
        max-width: 100%;
    }

    .stats-bar {
        max-width: 100%;
    }

    .networks-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .ops-grid {
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Responsive: Large Desktop (1600px+) ── */
@media (min-width: 1600px) {
    .page {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 60px;
        padding-bottom: 60px;
    }

    .nav-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .footer-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .hero {
        padding-top: 200px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-sub {
        font-size: 24px;
        max-width: 55%;
    }

    .page-header {
        padding-top: 180px;
        padding-bottom: 48px;
    }

    .page-title {
        font-size: 48px;
    }

    .page-subtitle {
        font-size: 20px;
    }

    .info-card {
        max-width: 100%;
        padding: 32px 36px;
    }

    .section-header {
        max-width: 100%;
    }

    .stats-bar {
        max-width: 100%;
        padding: 36px 56px;
        gap: 48px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-divider {
        height: 44px;
    }

    .networks-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ops-grid {
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .card-title {
        font-size: 30px;
    }

    .card-body {
        font-size: 17px;
    }

    .section-title {
        font-size: 28px;
    }

    .card-section {
        gap: 24px;
        margin-bottom: 24px;
    }

    .leadership-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-graphic {
        width: 220px;
    }

    .network-card {
        padding: 24px;
    }

    .ops-card {
        padding: 28px;
    }
}
