/* Extracted from pages/corp.html */
.corp-wrap { max-width: 900px; margin: 0 auto; padding: 0 1.5rem 5rem; }

/* Hero */
.corp-hero { padding: 3rem 0 2rem; border-bottom: 2px solid var(--border); margin-bottom: 2.5rem; }
.corp-hero h1 { font-size: 2.2rem; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.corp-hero .subtitle { font-size: 1.05rem; color: var(--text-dim); line-height: 1.7; max-width: 640px; }
.corp-hero .frame-line { font-size: 0.78rem; color: var(--text-faint); font-family: var(--font-mono); margin-top: 1rem; letter-spacing: 0.04em; }

/* Urgency banner */
.urgency-banner {
    border: 2px solid var(--border); margin: 0 0 2.5rem;
    display: grid; grid-template-columns: 1fr 1fr; background: var(--surface-2);
}
.urgency-col { padding: 1.25rem; }
.urgency-col:first-child { border-right: 2px solid var(--border); }
.urgency-date {
    font-family: var(--font-display); font-weight: 900; font-size: 2rem;
    letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.3rem;
}
.urgency-label {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 0.4rem;
}
.urgency-col p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; margin: 0; }

/* Assessment tiers */
.tier-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border: 2px solid var(--border); margin: 2.5rem 0;
}
.tier-col { padding: 1.5rem; border-right: 2px solid var(--border); }
.tier-col:last-child { border-right: none; }
.tier-col.featured { background: var(--surface-2); }
.tier-label {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 0.5rem;
}
.tier-col h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.tier-price {
    font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700;
    margin: 0.5rem 0 0.75rem;
}
.tier-col ul { list-style: none; padding: 0; margin: 0; }
.tier-col li {
    color: var(--text-dim); font-size: 0.82rem; padding: 0.3rem 0 0.3rem 1rem;
    position: relative; line-height: 1.5;
}
.tier-col li::before {
    content: "+"; position: absolute; left: 0; color: var(--green); font-weight: 700;
}
.tier-col .tier-note { font-size: 0.75rem; color: var(--text-faint); margin-top: 0.75rem; padding-top: 0.5rem; border-top: 1px solid var(--border); }

/* Void Model Card */
.vmc-section { margin: 2.5rem 0; }
.vmc-section h2 { margin-bottom: 0.75rem; }

/* Hard decline */
.decline-block {
    border: 2px solid var(--border); margin: 2.5rem 0;
    display: grid; grid-template-columns: 1fr 1fr;
}
.decline-col { padding: 1.25rem; }
.decline-col:first-child { border-right: 2px solid var(--border); }
.decline-col h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.decline-col p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.55; margin: 0; }
.decline-col .score-tag {
    display: inline-block; font-family: var(--font-mono); font-size: 0.72rem;
    font-weight: 700; padding: 0.15rem 0.5rem; margin-bottom: 0.5rem;
}
.score-certified { border: 1px solid var(--green); color: var(--green); }
.score-declined { border: 1px solid var(--kill, #cc0000); color: var(--kill, #cc0000); }

/* Sectors */
.sectors-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border: 2px solid var(--border); margin: 1.5rem 0;
}
.sector-cell {
    padding: 1rem 1.25rem; border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.sector-cell:nth-child(3n) { border-right: none; }
.sector-cell:nth-last-child(-n+3) { border-bottom: none; }
.sector-cell h4 { font-size: 0.82rem; margin-bottom: 0.25rem; }
.sector-cell p { font-size: 0.75rem; color: var(--text-dim); line-height: 1.45; margin: 0; }
.sector-cell .eu-flag { font-size: 0.65rem; color: var(--kill, #cc0000); font-weight: 700; }

/* Payment */
.payment-strip {
    border: 2px solid var(--border); padding: 1.5rem; margin: 2.5rem 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.payment-strip h3 { grid-column: 1 / -1; margin-bottom: 0; }

/* CTA */
.corp-cta {
    border: 2px solid var(--border); padding: 2rem; text-align: center;
    margin: 2.5rem 0; background: var(--surface-2);
}
.corp-cta h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.corp-cta p { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 1.25rem; max-width: 540px; margin-left: auto; margin-right: auto; }

.section-divider { border-top: 2px solid var(--border); padding-top: 2rem; margin-top: 2.5rem; }

@media (max-width: 768px) {
    .urgency-banner { grid-template-columns: 1fr; }
    .urgency-col:first-child { border-right: none; border-bottom: 2px solid var(--border); }
    .tier-strip { grid-template-columns: 1fr; }
    .tier-col { border-right: none; border-bottom: 2px solid var(--border); }
    .tier-col:last-child { border-bottom: none; }
    .decline-block { grid-template-columns: 1fr; }
    .decline-col:first-child { border-right: none; border-bottom: 2px solid var(--border); }
    .sectors-grid { grid-template-columns: 1fr; }
    .sector-cell { border-right: none; }
    .sector-cell:last-child { border-bottom: none; }
    .payment-strip { grid-template-columns: 1fr; }
}
