:root {
    --bg: #f5f7fb;
    --card: #ffffff;
    --text: #16202a;
    --muted: #5b6875;
    --line: #e6ebf2;
    --accent: #ddc287;
    --accent-soft: #dbeafe;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
    color: var(--text);
    line-height: 1.6;
}
.footer {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--text);
    font-size: 12px;
}
.footer a {
    color: var(--text);
    text-decoration: none;
}
.page {
    min-height: 100vh;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    width: min(1200px, 100%);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(230, 235, 242, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    min-height: 760px;
}

.left,
.right {
    padding: 48px;
}

.left {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.logo-box {
    width: 96px;
    height: 96px;
    border-radius: 22px;

    color: white;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;

    background: var(--accent);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
}

h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.intro {
    margin: 0;
    color: var(--muted);
    max-width: 40ch;
    font-size: 1rem;
}

.info-list {
    display: grid;
    gap: 16px;
}

.info-item {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.info-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 700;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}
.info-value a {
    color: var(--text);
    text-decoration: none;
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 26px rgba(29, 78, 216, 0.18);
}

.btn-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
}

.right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.section-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
}

.section-header h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    letter-spacing: -0.02em;
}

.section-header p {
    margin: 0;
    color: var(--muted);
    max-width: 48ch;
}

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

.activity {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.activity:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06);
    border-color: #d6e1f0;
}

.activity-number {
    width: 150px;
    height: 40px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--text);
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 16px;
}

.activity h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.activity p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: auto;
}

.stat {
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--line);
}

.stat strong {
    display: block;
    font-size: 1.7rem;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.stat span {
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .left {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 720px) {
    .page {
        padding: 16px;
    }

    .left,
    .right {
        padding: 28px 22px;
    }

    .activities,
    .stats {
        grid-template-columns: 1fr;
    }

    .logo-box {
        width: 78px;
        height: 78px;
        font-size: 1.35rem;
    }
}
