.page-shell {
    max-width: 1180px;
    margin: 130px auto 70px;
    padding: 0 34px;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
}

.page-kicker {
    color: rgba(255,255,255,0.52);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-hero h1 {
    font-size: 4rem;
    line-height: 1;
    margin: 0 0 18px;
    letter-spacing: 0;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.08rem;
    max-width: 720px;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-button,
.page-button.secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.page-button {
    color: #050505;
    background: #fff;
}

.page-button.secondary {
    color: #fff;
    background: rgba(255,255,255,0.07);
}

.page-section {
    margin-top: 44px;
}

.page-section h2 {
    font-size: 1.45rem;
    margin-bottom: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}

.feature-card,
.project-card,
.doc-panel {
    background: #09090b;
    border: 1px solid rgba(255,255,255,0.075);
    border-radius: 8px;
    padding: 20px;
}

.feature-card h3,
.project-card h3,
.doc-panel h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 1.02rem;
}

.feature-card p,
.project-card p,
.doc-panel p,
.doc-panel li {
    color: var(--text-muted);
    line-height: 1.62;
    font-size: 0.94rem;
}

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

.project-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.project-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.project-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.status-chip {
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.055);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 0.76rem;
    font-weight: 800;
}

.status-chip.live {
    color: #b9ffd4;
    background: rgba(40, 190, 110, 0.12);
    border-color: rgba(40, 190, 110, 0.25);
}

.status-chip.locked {
    color: #ffd3d3;
    background: rgba(230, 80, 80, 0.12);
    border-color: rgba(230, 80, 80, 0.25);
}

.steps {
    counter-reset: step;
    display: grid;
    gap: 12px;
}

.step {
    counter-increment: step;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.075);
    border-radius: 8px;
    background: rgba(255,255,255,0.025);
}

.step::before {
    content: counter(step);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #050505;
    font-weight: 900;
}

.step strong {
    display: block;
    margin-bottom: 5px;
}

.muted-link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 820px) {
    .page-shell {
        margin-top: 110px;
        padding: 0 20px;
    }

    .page-hero,
    .project-card {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 3rem;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.team-card {
    background: #09090b;
    border: 1px solid rgba(255,255,255,0.075);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.team-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.15);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: block;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.team-card h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 1.1rem;
}

.team-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
