:root {
    --bg: #0b1020;
    --surface: #111833;
    --surface-soft: #151d3d;
    --surface-alt: #f6f7fb;
    --card: #ffffff;
    --text: #e8ecff;
    --text-dark: #1a2240;
    --muted: #aeb7d9;
    --accent: #79d18c;
    --accent-strong: #3fa75e;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 50px rgba(5, 9, 24, 0.18);
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(180deg, #09101f 0%, #0e1530 100%);
    color: var(--text);
    line-height: 1.6;
}

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

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

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.section-tight {
    padding-top: 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-highlight {
    background: linear-gradient(135deg, rgba(121, 209, 140, 0.15), rgba(255, 255, 255, 0.05));
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 999;
    background: #fff;
    color: #000;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(9, 16, 31, 0.78);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.brand img {
    width: 62px;
    height: 62px;
}

.brand strong {
    display: block;
    font-size: 1rem;
}

.brand small {
    color: var(--muted);
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
}

.site-nav a[aria-current="page"] {
    color: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0c1b10;
    box-shadow: 0 16px 30px rgba(63, 167, 94, 0.25);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid var(--border);
}

.button-small {
    padding: 0.75rem 1rem;
}

.button-large {
    padding: 1.05rem 1.6rem;
    font-size: 1.05rem;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero {
    padding-top: 4.5rem;
}

.hero-grid,
.highlight-grid,
.split-layout,
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.hero-copy h1,
.page-hero-inner h1,
.section-heading h2,
.highlight-grid h2,
.split-layout h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: 1.05;
}

.lead {
    font-size: 1.12rem;
    color: #d9def6;
    max-width: 60ch;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-card,
.content-card,
.stat-card,
.cta-panel,
.news-card {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border);
}

.hero-card-inner {
    padding: 1.75rem;
}

.card-label {
    margin-top: 0;
    color: var(--accent);
    font-weight: 800;
}

.icon-list,
.footer-links,
.ordered-list {
    margin: 0;
    padding-left: 1.1rem;
}

.stats-grid,
.story-grid,
.cards-grid,
.news-list {
    display: grid;
    gap: 1.25rem;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.story-grid,
.cards-grid {
    grid-template-columns: repeat(3, 1fr);
}

.cards-grid-contacts {
    grid-template-columns: repeat(3, 1fr);
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 1.4rem;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    color: #fff;
}

.stat-card span {
    color: var(--muted);
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading p:last-child {
    max-width: 70ch;
    color: #d7ddfb;
}

.content-card,
.news-card,
.cta-panel {
    background: var(--card);
    color: var(--text-dark);
    padding: 1.6rem;
}

.content-card h3,
.news-card h2,
.timeline-item h3 {
    margin-top: 0;
}

.content-card p,
.news-card p,
.timeline-item p,
.cta-panel p {
    color: #42507c;
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.timeline-year {
    color: var(--accent);
    font-weight: 800;
}

.cta-panel {
    display: grid;
    gap: 1rem;
    align-content: center;
    justify-items: start;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.text-link {
    color: #254eb4;
    font-weight: 700;
}

.page-hero {
    padding-top: 4rem;
}

.page-hero-inner {
    max-width: 78ch;
}

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

.news-card {
    border: 1px solid rgba(26, 34, 64, 0.08);
}

.news-category {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-strong);
}

.checklist-card {
    padding: 1.8rem;
}

.site-footer {
    padding: 4rem 0 2rem;
    background: #080d1a;
    border-top: 1px solid var(--border);
}

.site-footer h2 {
    margin-top: 0;
    font-size: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: var(--muted);
}

.footer-meta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 960px) {
    .hero-grid,
    .highlight-grid,
    .split-layout,
    .footer-grid,
    .story-grid,
    .cards-grid,
    .news-list,
    .stats-grid,
    .cards-grid-contacts {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3.5rem 0;
    }

    .site-nav {
        width: 100%;
    }

    .site-nav a {
        width: auto;
    }

    .hero-copy h1,
    .page-hero-inner h1,
    .section-heading h2,
    .highlight-grid h2,
    .split-layout h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}
