* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: inherit;
    background: #0b0b0b;
    color: #f2f2f2;
    line-height: 1.6;
}

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

.roadmap-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

.roadmap-header {
    margin-bottom: 45px;
}

.roadmap-label {
    display: block;
    margin-bottom: 12px;
    font-size: .75rem;
    letter-spacing: .18em;
    opacity: .5;
}

.roadmap-header h1 {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -.04em;
}

.roadmap-header p {
    max-width: 680px;
    margin: 0;
    opacity: .6;
}

.current-status {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1px;
    margin-bottom: 45px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.status-item {
    padding: 25px;
    background: #101010;
}

.status-label {
    display: block;
    margin-bottom: 7px;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .45;
}

.status-value {
    font-size: 1.05rem;
    font-weight: 500;
}

.progress-wrapper {
    margin-bottom: 50px;
}

.progress-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-title,
.progress-value {
    font-size: .9rem;
}

.progress-title {
    opacity: .65;
}

.progress-bar {
    width: 100%;
    height: 5px;
    border-radius: 10px;
    background: rgba(255,255,255,.10);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: #f2f2f2;
    transition: width .7s ease;
}

.dashboard-section {
    margin-bottom: 55px;
}

.dashboard-section h2 {
    margin: 0 0 25px;
    font-size: 1.4rem;
    font-weight: 500;
}

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

.phase-card {
    padding: 25px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
    transition: transform .25s ease, border-color .25s ease;
}

.phase-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.22);
}

.phase-number {
    display: block;
    margin-bottom: 12px;
    font-size: .72rem;
    letter-spacing: .15em;
    opacity: .45;
}

.phase-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.phase-description {
    margin: 0 0 20px;
    font-size: .86rem;
    opacity: .55;
}

.phase-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phase-progress .progress-bar {
    flex: 1;
}

.phase-percent {
    min-width: 38px;
    text-align: right;
    font-size: .8rem;
    opacity: .65;
}

.task-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,.10);
}

.task {
    display: grid;
    grid-template-columns: 70px 1fr 120px 60px;
    gap: 15px;
    align-items: center;
    padding: 17px 5px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.task-id {
    font-size: .72rem;
    opacity: .4;
}

.task-name {
    font-size: .9rem;
}

.task-status {
    font-size: .75rem;
    opacity: .55;
}

.task-progress {
    text-align: right;
    font-size: .75rem;
    opacity: .55;
}

.last-updated {
    margin-top: 50px;
    font-size: .75rem;
    opacity: .35;
}

.error-box {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    opacity: .7;
}

@media (max-width: 700px) {
    .roadmap-container {
        padding: 60px 20px;
    }

    .current-status {
        grid-template-columns: 1fr;
    }

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

    .task {
        grid-template-columns: 50px 1fr 50px;
    }

    .task-status {
        display: none;
    }

    .task-progress {
        text-align: right;
    }
}
