.roadmap-page {
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 26%);
}

.roadmap-hero {
    padding: 72px 0 32px;
}

.roadmap-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.roadmap-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(60, 184, 230, 0.12);
    color: #1681ad;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.roadmap-hero-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.04;
    color: #0f172a;
}

.roadmap-hero-copy p {
    margin: 0;
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #475569;
}

.roadmap-hero-stats {
    display: grid;
    gap: 14px;
}

.roadmap-stat-card {
    padding: 24px 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.roadmap-stat-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: #0f172a;
}

.roadmap-stat-card span {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-weight: 600;
}

.roadmap-section {
    padding: 8px 0 72px;
}

.roadmap-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin: 0 0 22px;
}

.roadmap-section-head h2 {
    margin: 8px 0 0;
    color: #0f172a;
    font-size: 1.9rem;
    line-height: 1.15;
}

.roadmap-section-head p {
    margin: 0;
    max-width: 520px;
    color: #64748b;
    line-height: 1.75;
}

.roadmap-section-kicker {
    display: inline-block;
    color: #1681ad;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.roadmap-subsection {
    margin-top: 44px;
}

.roadmap-list {
    display: grid;
    gap: 18px;
}

.roadmap-entry {
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.roadmap-entry.is-next {
    border-style: dashed;
    background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.roadmap-entry-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.roadmap-entry-meta h2 {
    margin: 8px 0 8px;
    font-size: 1.4rem;
    line-height: 1.25;
    color: #0f172a;
}

.roadmap-entry-index {
    display: inline-block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.roadmap-entry-date {
    color: #64748b;
    font-size: 0.96rem;
    font-weight: 600;
}

.roadmap-entry-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(60, 184, 230, 0.12);
    color: #1681ad;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.roadmap-entry.is-next .roadmap-entry-status {
    background: rgba(15, 23, 42, 0.06);
    color: #475569;
}

.roadmap-entry-summary {
    margin: 16px 0 0;
    color: #334155;
    font-size: 1rem;
    line-height: 1.75;
}

.roadmap-entry-items {
    margin: 18px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
    color: #475569;
    line-height: 1.7;
}

.roadmap-empty {
    padding: 48px 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    text-align: center;
    color: #64748b;
}

.roadmap-empty i {
    font-size: 40px;
    color: #3cb8e6;
    margin-bottom: 12px;
}

.roadmap-empty h2 {
    margin: 0 0 8px;
    color: #0f172a;
}

.roadmap-empty p {
    margin: 0;
}

.roadmap-empty.is-soft {
    background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
    border-style: dashed;
}

@media (max-width: 940px) {
    .roadmap-hero-inner {
        grid-template-columns: 1fr;
    }

    .roadmap-section-head {
        flex-direction: column;
        align-items: stretch;
    }
}

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

    .roadmap-entry,
    .roadmap-stat-card {
        border-radius: 20px;
    }

    .roadmap-entry-head {
        flex-direction: column;
    }

    .roadmap-entry-status {
        white-space: normal;
    }
}
