* {
    box-sizing: border-box;
}

:root {
    --bg: #fffdf3;
    --surface: #ffffff;
    --surface-soft: #f7f3df;
    --text: #1a1c1c;
    --muted: #686456;
    --olive: #675f1e;
    --olive-dark: #514a10;
    --border: rgba(103, 95, 30, 0.16);
    --shadow: 0 22px 60px rgba(45, 41, 16, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at 82% 5%,
            rgba(235, 219, 116, 0.17),
            transparent 28rem
        ),
        var(--bg);
    color: var(--text);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

a {
    color: inherit;
}

.public-shell {
    min-height: 100vh;
}

.public-nav {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    font-family:
        Manrope,
        Inter,
        sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.025em;
}

.public-brand-mark {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--olive);
    color: #fffdf3;
}

.public-brand-mark svg {
    width: 22px;
    height: 22px;
}

.public-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.public-link {
    padding: 10px 13px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.public-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 10px;
    background: var(--olive);
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background .18s ease,
        transform .18s ease;
}

.public-button:hover {
    background: var(--olive-dark);
    transform: translateY(-1px);
}

.hero {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 92px 0 74px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(340px, .88fr);
    gap: 74px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--olive);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family:
        Manrope,
        Inter,
        sans-serif;
    font-size: clamp(44px, 6vw, 74px);
    line-height: .99;
    letter-spacing: -.055em;
}

.hero-copy {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, .68);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.operation-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.operation-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--border);
}

.operation-head strong {
    font-family:
        Manrope,
        Inter,
        sans-serif;
    font-size: 14px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eff5dc;
    color: #445218;
    font-size: 10px;
    font-weight: 800;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #65751e;
}

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

.metric {
    padding: 15px;
    border: 1px solid rgba(103, 95, 30, .11);
    border-radius: 12px;
    background: #fffef9;
}

.metric span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.metric strong {
    font-family:
        Manrope,
        Inter,
        sans-serif;
    font-size: 22px;
}

.progress {
    margin-top: 17px;
}

.progress-copy {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.progress-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #eeeade;
}

.progress-fill {
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: var(--olive);
}

.section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 76px 0;
}

.section-header {
    max-width: 760px;
}

.section-header h2 {
    margin: 0;
    font-family:
        Manrope,
        Inter,
        sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.section-header p {
    margin: 17px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.capability-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.capability {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, .76);
}

.capability-number {
    display: inline-grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--olive);
    font-size: 11px;
    font-weight: 800;
}

.capability h3 {
    margin: 40px 0 9px;
    font-family:
        Manrope,
        Inter,
        sans-serif;
    font-size: 17px;
}

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

.entity-section {
    padding-bottom: 100px;
}

.entity-card {
    padding: clamp(26px, 5vw, 52px);
    border-radius: 22px;
    background: #1f211c;
    color: #fefcf2;
}

.entity-card .eyebrow {
    color: #ddd58f;
}

.entity-card h2 {
    max-width: 700px;
    margin: 0;
    font-family:
        Manrope,
        Inter,
        sans-serif;
    font-size: clamp(28px, 4vw, 43px);
    letter-spacing: -.035em;
}

.entity-card p {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(254, 252, 242, .72);
    font-size: 15px;
    line-height: 1.8;
}

.public-footer {
    border-top: 1px solid var(--border);
}

.public-footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0 38px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.public-footer strong {
    color: var(--text);
}

@media (max-width: 850px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }

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

@media (max-width: 600px) {
    .public-nav {
        width: min(100% - 28px, 1180px);
    }

    .public-link {
        display: none;
    }

    .hero,
    .section,
    .public-footer-inner {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        gap: 40px;
        padding: 54px 0 52px;
    }

    .hero h1 {
        font-size: 43px;
    }

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

    .public-footer-inner {
        flex-direction: column;
    }
}

/* STAGE8F_U1B_AUTHORITY */

.public-nav-expanded {
    min-height: 78px;
}

.public-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px 15px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--olive);
}

.footer-note {
    max-width: 360px;
}

.entity-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 28px;
}

.entity-links a {
    color: #f3e99b;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.page-hero {
    padding: 88px 20px 66px;
}

.page-hero-inner {
    width: min(900px, 100%);
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    margin: 0;
    font-family:
        Manrope,
        Inter,
        sans-serif;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.page-intro {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.content-wrap,
.faq-wrap {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0 82px;
}

.content-section {
    padding: 38px 0;
    border-top: 1px solid var(--border);
}

.content-section:last-child {
    border-bottom: 1px solid var(--border);
}

.content-section h2,
.faq-item h2 {
    max-width: 720px;
    margin: 0 0 15px;
    font-family:
        Manrope,
        Inter,
        sans-serif;
    font-size: clamp(24px, 3vw, 33px);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.content-section p,
.faq-item p {
    max-width: 780px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.content-list {
    display: grid;
    gap: 9px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.content-list li {
    position: relative;
    padding: 13px 16px 13px 43px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: rgba(255, 255, 255, .7);
    color: var(--text);
    font-size: 13px;
    font-weight: 650;
}

.content-list li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    color: var(--olive);
    font-weight: 900;
}

.faq-wrap {
    display: grid;
    gap: 12px;
}

.faq-item {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, .76);
}

.faq-item h2 {
    font-size: 20px;
}

.authority-cta {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto 100px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #f7f3df;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.authority-cta h2 {
    margin: 0;
    font-family:
        Manrope,
        Inter,
        sans-serif;
    font-size: 27px;
    letter-spacing: -.025em;
}

.authority-cta p:not(.eyebrow) {
    max-width: 570px;
    margin: 9px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .public-nav-links {
        display: none;
    }
}

@media (max-width: 700px) {
    .page-hero {
        padding-top: 58px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .authority-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-footer-inner {
        align-items: flex-start;
    }
}
