.hero,
.authority,
.founder {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.hero { padding: 40px 0 54px; }
.hero h1 { font-size: clamp(3rem, 8vw, 5.9rem); max-width: 10ch; }
.hero__lead { max-width: 56ch; font-size: 1.04rem; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.hero__meta, .proof-strip, .authority ul, .grid-section, .steps ol { padding: 0; margin: 0; list-style: none; }
.hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 620px;
}
.hero__meta li,
.proof-strip span,
.grid-section article,
.brief-card,
.steps li,
.authority ul li,
.founder__form-shell {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero__meta li { padding: 14px 16px; }
.proof-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.proof-strip span { padding: 10px 14px; font-size: 0.92rem; }
.brief-card { padding: 22px; }
.brief-card__label { text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-dark); font-size: 0.74rem; }

.message-band,
.grid-section,
.steps,
.authority,
.founder {
    margin-top: 40px;
}

.message-band {
    padding: 34px;
    background: linear-gradient(135deg, rgba(17, 19, 23, 0.96), rgba(31, 38, 47, 0.9));
    color: #f2eadc;
    border-radius: 28px;
}
.message-band p { color: rgba(242, 234, 220, 0.76); max-width: 70ch; }

.grid-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.grid-section article { padding: 24px; }

.steps { display: grid; gap: 18px; }
.steps ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.steps li { padding: 20px; display: grid; gap: 8px; }
.steps li span { color: var(--muted); line-height: 1.6; }

.authority ul { display: grid; gap: 12px; }
.authority ul li { padding: 18px; }

.founder__form-shell { padding: 22px; }
.founder-form { display: grid; gap: 14px; }
.founder-form label { display: grid; gap: 8px; }
.founder-form input,
.founder-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 14px;
    background: rgba(255,255,255,0.84);
}
.price-tag {
    font-weight: 700;
    color: var(--text);
}

@media (max-width: 960px) {
    .hero,
    .authority,
    .founder,
    .steps ol,
    .grid-section {
        grid-template-columns: 1fr;
    }

    .hero h1 { max-width: none; }
    .hero__meta { grid-template-columns: 1fr; }
}
