.page-shell {
    display: grid;
    gap: 22px;
}

.sidebar-head {
    margin-bottom: 22px;
}

.sidebar-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.sidebar h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.03em;
    color: var(--text);
}

.sidebar-note {
    margin-top: 18px;
    padding: 14px 14px 0;
    border-top: 1px solid var(--line);
    color: var(--soft);
    font-size: 13px;
    line-height: 1.65;
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: stretch;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(124, 199, 255, 0.10), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.hero-copy {
    min-width: 0;
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: var(--text);
}

.hero p {
    margin: 0;
    max-width: 760px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-end;
    gap: 10px;
}

.hero-badges .status-pill {
    min-height: 40px;
    padding: 0 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.status-pill.neutral {
    border-color: rgba(124, 199, 255, 0.16);
    background: rgba(124, 199, 255, 0.07);
    color: var(--text);
}

.status-pill.warn {
    border-color: rgba(251, 191, 36, 0.24);
    background: rgba(251, 191, 36, 0.09);
    color: #ffe7a2;
}

/* SECTIONS */
.section-block {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card-gradient);
    box-shadow: var(--shadow);
}

.section-head {
    margin-bottom: 18px;
}

.section-head h2 {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
}

.section-head p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

/* STATUS STACK */
.status-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

/* WIDE CARD */
.card.wide {
    grid-column: span 12;
}

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

.plan-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.plan-card.featured {
    border-color: rgba(124, 199, 255, 0.24);
    background:
        radial-gradient(circle at top left, rgba(124, 199, 255, 0.10), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.plan-top {
    margin-bottom: 14px;
}

.plan-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.plan-card h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
}

.plan-description {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.plan-points {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 10px;
}

.plan-points li {
    position: relative;
    padding-left: 18px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.plan-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent-2);
    box-shadow: 0 0 10px rgba(110, 243, 197, 0.28);
}

.plan-actions {
    margin-top: auto;
}

/* PAYMENT STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 999px;
    border: 1px solid rgba(124, 199, 255, 0.22);
    background: rgba(124, 199, 255, 0.08);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.step-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* GUIDANCE */
.guidance-card {
    padding: 18px 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
}

.guidance-list {
    margin: 0 0 14px;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--text);
}

.guidance-list li {
    line-height: 1.7;
    color: var(--muted);
    font-size: 14px;
}

/* FOOTER ACTIONS */
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 8px;
}

/* BUTTON POLISH */
.btn,
.btn-secondary {
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.btn:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.btn:hover {
    box-shadow: 0 12px 30px rgba(124, 199, 255, 0.18);
}

.btn-secondary:hover {
    border-color: rgba(124, 199, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
}

/* INFO ROW POLISH */
.info-row {
    align-items: flex-start;
}

.info-value {
    font-weight: 600;
    color: var(--text);
}

/* EMPTY / SOFT STATES */
.muted-value {
    color: var(--soft);
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        justify-content: flex-start;
    }

    .plans-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {

    .section-block,
    .hero {
        padding: 20px;
        border-radius: 22px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p,
    .section-head p,
    .plan-description,
    .step-card p,
    .guidance-list li,
    .note {
        font-size: 13px;
    }

    .footer-actions,
    .actions,
    .status-stack,
    .hero-badges {
        gap: 10px;
    }

    .btn,
    .btn-secondary {
        width: 100%;
    }
}

.top-header-0 {
    display: none;

}


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

    .card {
        grid-column: span 12;
    }


}

@media (max-width: 980px) {

    .top-header-0 {
        display: block;

    }

}

@media (max-width: 1100px) {
    .hero-badges .status-pill {
        backdrop-filter: inherit;
    }

    .hero {
        background: transparent;
    }

    .plan-card {
        background: transparent;
    }

    .plan-card.featured {
        background: transparent;
    }
}