/* ── Features page — warm light, cinematic layout ── */

body.features-page {
    background: #FAF7F2;
    color: #1A1510;
    overflow-x: hidden;
}

/* ── Nav: current-page indicator ── */
body.features-page .nav-link-current {
    color: #1A1510;
    font-weight: 500;
}
body.features-page .nav-link-current::after {
    content: '';
    display: block;
    height: 1px;
    background: #C4622D;
    margin-top: 2px;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Shared eyebrow ── */
.fp-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C4622D;
    margin-bottom: 20px;
    display: block;
}

/* ── PAGE INTRO (replaces hero) ── */
.fp-page-intro {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 48px 52px;
    text-align: center;
}

.fp-page-intro .fp-eyebrow { margin-bottom: 20px; }

.fp-page-h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #1A1510;
    margin-bottom: 18px;
}

.fp-page-h1 em {
    font-style: italic;
    color: #C4622D;
}

.fp-page-sub {
    font-size: 16px;
    color: #6B5E52;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── CHAPTER NAV strip ── */
.fp-chapter-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #E2D9CE;
    border-bottom: 1px solid #E2D9CE;
    background: #FAF7F2;
}

.fp-chapter-link {
    flex: 1;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 22px 24px;
    text-decoration: none;
    border-right: 1px solid #E2D9CE;
    transition: background 0.15s;
    text-align: center;
}
.fp-chapter-link:last-child { border-right: none; }
.fp-chapter-link:hover { background: #F0EBE3; }

.fp-chapter-num {
    font-family: 'Fraunces', serif;
    font-size: 12px;
    font-weight: 300;
    color: #C4622D;
    letter-spacing: 0.05em;
}

.fp-chapter-title {
    font-size: 13px;
    font-weight: 600;
    color: #1A1510;
}

.fp-chapter-sub {
    font-size: 11px;
    color: #A89888;
}

/* ── FEATURE SECTIONS — cinematic ── */
.fp-section {
    padding: 120px 48px;
    text-align: center;
    border-top: 1px solid #E2D9CE;
}

.fp-section-alt {
    background: #F0EBE3;
}

.fp-section-label { margin-bottom: 20px; }

.fp-section-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #1A1510;
    max-width: 800px;
    margin: 0 auto 20px;
}

.fp-section-h2 em {
    font-style: italic;
    color: #C4622D;
}

.fp-section-body {
    font-size: 17px;
    color: #6B5E52;
    max-width: 520px;
    margin: 0 auto 72px;
    line-height: 1.75;
}

/* the visual centrepiece of each section */
.fp-visual {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

/* subtle shadow glow under each mockup */
.fp-visual::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 10%;
    right: 10%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(26,21,16,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Pillar grid below each visual ── */
.fp-section-pillars {
    max-width: 880px;
    margin: 72px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
    text-align: left;
}

.fp-pillar {
    padding: 24px 0;
    border-top: 1px solid #E2D9CE;
}

.fp-pillar-title {
    font-size: 13px;
    font-weight: 600;
    color: #1A1510;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fp-pillar-title::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C4622D;
    flex-shrink: 0;
}

.fp-pillar-body {
    font-size: 13px;
    color: #6B5E52;
    line-height: 1.65;
}

/* ── MOCKUP CHROME — light app UI matching homepage style ── */
.mock-window {
    background: #FDFCFB;
    border: 1px solid #E2D9CE;
    box-shadow: 0 2px 24px rgba(26,21,16,0.08), 0 1px 4px rgba(26,21,16,0.04);
    overflow: hidden;
    font-family: 'Geist', ui-sans-serif, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.mock-window-bar {
    padding: 10px 16px;
    background: #F0EBE3;
    border-bottom: 1px solid #E2D9CE;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mock-window-dots { display: flex; gap: 5px; }
.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mock-dot-r { background: #FF5F57; }
.mock-dot-y { background: #FFBD2E; }
.mock-dot-g { background: #28C840; }

.mock-window-title {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #A89888;
    font-family: 'Geist', sans-serif;
    letter-spacing: 0.01em;
}

/* ── MOCKUP 1: Allocation Policy ── */
.alloc-mock-body { padding: 0; }

.alloc-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #E2D9CE;
    background: #F0EBE3;
}

.alloc-header-title {
    font-size: 13px;
    font-weight: 600;
    color: #1A1510;
}

.alloc-header-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: #DCFCE7;
    border: 1px solid rgba(22,163,74,0.2);
    color: #15803D;
    display: flex;
    align-items: center;
    gap: 5px;
}
.alloc-header-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16A34A;
    display: block;
    box-shadow: 0 0 4px rgba(22,163,74,0.5);
}

.alloc-col-headers {
    display: grid;
    grid-template-columns: 1fr 120px 200px;
    padding: 8px 24px;
    background: #FDFCFB;
    border-bottom: 1px solid #E2D9CE;
}

.alloc-col-headers span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #A89888;
}

.alloc-row-dark {
    display: grid;
    grid-template-columns: 1fr 120px 200px;
    align-items: center;
    padding: 13px 24px;
    border-bottom: 1px solid #E2D9CE;
    transition: background 0.12s;
}
.alloc-row-dark:last-child { border-bottom: none; }
.alloc-row-dark:hover { background: #F0EBE3; }

.alloc-role-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.alloc-role-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.alloc-role-name { font-size: 13px; font-weight: 500; color: #1A1510; }
.alloc-role-tier { font-size: 11px; color: #A89888; margin-top: 1px; }

.alloc-budget-col {
    font-family: 'Geist Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #1A1510;
}

.alloc-providers-col { display: flex; gap: 5px; flex-wrap: wrap; }

.alloc-pill {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border: 1px solid #E2D9CE;
    color: #6B5E52;
    background: #F0EBE3;
    white-space: nowrap;
}
.alloc-pill-ai {
    background: #DCFCE7;
    border-color: rgba(22,163,74,0.2);
    color: #15803D;
}

.alloc-mock-footer {
    padding: 12px 24px;
    border-top: 1px solid #E2D9CE;
    display: flex;
    gap: 24px;
    background: #FDFCFB;
}

.alloc-footer-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #6B5E52;
}
.alloc-footer-chip-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #DCFCE7;
    border: 1px solid rgba(22,163,74,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #15803D;
    flex-shrink: 0;
}

/* ── MOCKUP 2: Gateway / Enforcement ── */
.gw-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 36px 40px 32px;
    background: #FDFCFB;
    border-bottom: 1px solid #E2D9CE;
    overflow-x: auto;
}

.gw-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.gw-node-box {
    padding: 10px 16px;
    border: 1px solid #E2D9CE;
    background: #F0EBE3;
    font-size: 12px;
    font-weight: 600;
    color: #1A1510;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
}

.gw-node-box.gw-stipend {
    border-color: rgba(22,163,74,0.3);
    background: #DCFCE7;
    color: #15803D;
    box-shadow: none;
}

.gw-node-box.gw-provider {
    border-color: #E2D9CE;
    background: #fff;
    color: #1A1510;
}

.gw-node-label {
    font-size: 10px;
    color: #A89888;
    text-align: center;
    line-height: 1.4;
    max-width: 100px;
}

.gw-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    flex-shrink: 0;
}

.gw-arrow-line {
    height: 1px;
    width: 60px;
    background: #E2D9CE;
    position: relative;
}
.gw-arrow-line::after {
    content: '›';
    position: absolute;
    right: -5px;
    top: -8px;
    font-size: 12px;
    color: #A89888;
    line-height: 1;
}

.gw-arrow-check {
    font-size: 10px;
    color: #15803D;
    white-space: nowrap;
    background: #DCFCE7;
    border: 1px solid rgba(22,163,74,0.2);
    padding: 2px 7px;
}

.gw-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: #E2D9CE;
}

.gw-step-cell {
    background: #FDFCFB;
    padding: 20px 18px;
}

.gw-step-num {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 300;
    color: #E2D9CE;
    line-height: 1;
    margin-bottom: 10px;
}

.gw-step-name {
    font-size: 12px;
    font-weight: 600;
    color: #1A1510;
    margin-bottom: 6px;
    line-height: 1.3;
}

.gw-step-desc {
    font-size: 11px;
    color: #6B5E52;
    line-height: 1.55;
}

.gw-step-tag {
    display: inline-block;
    margin-top: 8px;
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    color: #15803D;
    background: #DCFCE7;
    border: 1px solid rgba(22,163,74,0.2);
    padding: 2px 6px;
}

/* Terminal code blocks stay dark — code is universally dark */
.gw-terminal-section {
    padding: 22px 24px;
    background: #1A1510;
    border-top: 1px solid #E2D9CE;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.gw-terminal-col-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.25);
    margin-bottom: 12px;
}

.gw-code {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    line-height: 1.7;
    color: rgba(250,247,242,0.55);
}

.gc-dim  { color: rgba(250,247,242,0.25); }
.gc-key  { color: #93C5FD; }
.gc-str  { color: #86EFAC; }
.gc-num  { color: #FCD34D; }
.gc-err  { color: #FCA5A5; }
.gc-ok   { color: #4ADE80; }

/* ── MOCKUP 3: Finance Report ── */
.finance-mock-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #E2D9CE;
    background: #F0EBE3;
}

.finance-mock-title {
    font-size: 13px;
    font-weight: 600;
    color: #1A1510;
}

.finance-mock-actions { display: flex; gap: 8px; }

.finance-btn {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border: 1px solid #E2D9CE;
    background: #fff;
    color: #6B5E52;
    cursor: pointer;
    transition: background 0.12s;
}
.finance-btn:hover { background: #F0EBE3; }
.finance-btn.finance-btn-primary {
    background: #C4622D;
    border-color: #C4622D;
    color: #fff;
}
.finance-btn.finance-btn-primary:hover { opacity: 0.88; }

.finance-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #E2D9CE;
}

.finance-kpi {
    padding: 18px 20px;
    border-right: 1px solid #E2D9CE;
}
.finance-kpi:last-child { border-right: none; }

.finance-kpi-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #A89888;
    margin-bottom: 6px;
}

.finance-kpi-value {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 300;
    color: #1A1510;
    line-height: 1;
    margin-bottom: 4px;
}

.finance-kpi-delta { font-size: 11px; color: #A89888; }
.finance-kpi-delta.pos { color: #C4622D; }
.finance-kpi-delta.ok  { color: #16A34A; }

.finance-rows-header {
    display: grid;
    grid-template-columns: 1fr 130px 1fr 90px;
    padding: 8px 24px;
    background: #F0EBE3;
    border-bottom: 1px solid #E2D9CE;
    gap: 12px;
}
.finance-rows-header span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #A89888;
}

.finance-row {
    display: grid;
    grid-template-columns: 1fr 130px 1fr 90px;
    align-items: center;
    padding: 12px 24px;
    border-bottom: 1px solid #E2D9CE;
    gap: 12px;
    transition: background 0.1s;
}
.finance-row:last-child { border-bottom: none; }
.finance-row:hover { background: #F0EBE3; }

.finance-row-team { font-size: 13px; font-weight: 500; color: #1A1510; }
.finance-row-cc   { font-family: 'Geist Mono', monospace; font-size: 11px; color: #A89888; }
.finance-row-spend { font-family: 'Geist Mono', monospace; font-size: 13px; font-weight: 600; color: #1A1510; }

.finance-row-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}
.finance-bar-track-d {
    flex: 1;
    height: 4px;
    background: #E2D9CE;
    overflow: hidden;
}
.finance-bar-fill-d { height: 100%; background: #C4622D; }
.finance-bar-fill-d.ok   { background: #16A34A; }
.finance-bar-fill-d.warn { background: #D97706; }
.finance-bar-pct { font-size: 11px; color: #A89888; width: 30px; text-align: right; flex-shrink: 0; }

.finance-status-pill {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    background: #DCFCE7;
    border: 1px solid rgba(22,163,74,0.2);
    color: #15803D;
    display: inline-block;
}

.finance-provider-strip {
    padding: 14px 24px;
    border-top: 1px solid #E2D9CE;
    background: #FDFCFB;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.finance-provider-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Geist', sans-serif;
    font-size: 12px;
}

.finance-provider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.finance-provider-name { color: #6B5E52; }
.finance-provider-amt  { font-weight: 600; color: #1A1510; font-family: 'Geist Mono', monospace; }

.finance-erp-label {
    margin-left: auto;
    font-size: 11px;
    color: #A89888;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.erp-chip {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border: 1px solid #E2D9CE;
    color: #6B5E52;
    background: #F0EBE3;
}

/* ── STATS STRIP ── */
.fp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #E2D9CE;
    max-width: 960px;
    margin: 80px auto 0;
    text-align: left;
}

.fp-stat {
    padding: 32px 28px;
    border-right: 1px solid #E2D9CE;
}
.fp-stat:last-child { border-right: none; }

.fp-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 300;
    color: #1A1510;
    line-height: 1;
    margin-bottom: 10px;
}

.fp-stat-label {
    font-size: 13px;
    color: #6B5E52;
    line-height: 1.5;
}

/* ── CAPABILITIES ── */
.fp-caps {
    padding: 120px 48px;
    background: #F0EBE3;
    border-top: 1px solid #E2D9CE;
    text-align: center;
}

.fp-caps-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #1A1510;
    max-width: 600px;
    margin: 0 auto 64px;
}
.fp-caps-h2 em { font-style: italic; color: #C4622D; }

.fp-caps-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #E2D9CE;
    text-align: left;
}

.fp-cap-cell {
    background: #FAF7F2;
    padding: 32px 28px;
    transition: background 0.15s;
}
.fp-cap-cell:hover { background: #F0EBE3; }

.fp-cap-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #E2D9CE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #A89888;
}

.fp-cap-name {
    font-size: 14px;
    font-weight: 600;
    color: #1A1510;
    margin-bottom: 10px;
}

.fp-cap-desc {
    font-size: 13px;
    color: #6B5E52;
    line-height: 1.65;
}

/* ── CTA — dark closer ── */
.fp-cta {
    padding: 160px 48px;
    text-align: center;
    background: #1A1510;
    position: relative;
    overflow: hidden;
}

.fp-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center bottom, rgba(196,98,45,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.fp-cta .fp-eyebrow { color: #C4622D; }

.fp-cta-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #FAF7F2;
    max-width: 760px;
    margin: 0 auto 20px;
}
.fp-cta-h2 em { font-style: italic; color: #C4622D; }

.fp-cta-sub {
    font-size: 17px;
    color: rgba(250,247,242,0.4);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

/* ── CTA / hero shared action row ── */
.fp-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.btn-fp-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C4622D;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 14px 30px;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
}
.btn-fp-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-fp-ghost {
    font-size: 13px;
    font-weight: 500;
    color: rgba(250,247,242,0.45);
    text-decoration: none;
    transition: color 0.15s;
}
.btn-fp-ghost:hover { color: #FAF7F2; }


/* ── Utility classes ── */
.fp-hidden { display: none; }

/* Stagger delays */
.delay-1 { transition-delay: .06s; }
.delay-2 { transition-delay: .12s; }
.delay-3 { transition-delay: .18s; }
.delay-4 { transition-delay: .24s; }
.delay-5 { transition-delay: .30s; }

.cap-delay-1 { transition-delay: .05s; }
.cap-delay-2 { transition-delay: .10s; }
.cap-delay-3 { transition-delay: .15s; }
.cap-delay-4 { transition-delay: .20s; }
.cap-delay-5 { transition-delay: .25s; }

/* Role indicator colours */
.alloc-ind-principal { background: #16A34A; box-shadow: 0 0 4px rgba(22,163,74,.4); }
.alloc-ind-senior    { background: #16A34A; }
.alloc-ind-mid       { background: #D97706; }
.alloc-ind-product   { background: #3B82F6; }
.alloc-ind-design    { background: #8B5CF6; }
.alloc-ind-support   { background: #E2D9CE; }

/* Misc mockup helpers */
.alloc-pill-dim      { color: #A89888; font-size: 10px; }
.alloc-pill-restricted { border-color: #E2D9CE; color: #A89888; background: #FDFCFB; }
.fp-inline-code      { font-family: 'Geist Mono', monospace; font-size: 11px; opacity: .7; }
.gw-arrow-rtl        { transform: scaleX(-1); }
.gw-arrow-rtl .gw-arrow-check { transform: scaleX(-1); }
.mock-window-spacer  { width: 50px; }

/* Bar widths */
.bar-w-85 { width: 85%; }
.bar-w-91 { width: 91%; }
.bar-w-77 { width: 77%; }
.bar-w-80 { width: 80%; }

/* Finance status variants */
.finance-status-pill-warn {
    background: #FEF3C7;
    border-color: rgba(217,119,6,0.25);
    color: #92400E;
}

/* Provider dots */
.provider-dot-openai    { background: #10A37F; }
.provider-dot-anthropic { background: #C4622D; }
.provider-dot-google    { background: #D97706; }

/* Form label helper */
.label-optional { font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ── Footer social links (explicit override for specificity) ── */
body.features-page .footer-social { display: flex; gap: 20px; align-items: center; }

body.features-page .footer-social-link,
body.features-page .footer-social-link:link,
body.features-page .footer-social-link:visited {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
}
body.features-page .footer-social-link:hover { color: rgba(255,255,255,0.6); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .fp-page-intro { padding: 52px 24px 36px; }
    .fp-chapter-nav { flex-direction: column; }
    .fp-chapter-link { max-width: 100%; width: 100%; border-right: none; border-bottom: 1px solid #E2D9CE; }
    .fp-chapter-link:last-child { border-bottom: none; }
    .fp-section { padding: 80px 24px; }
    .fp-section-pillars { grid-template-columns: 1fr; gap: 0; }
    .gw-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .finance-kpis { grid-template-columns: repeat(2, 1fr); }
    .fp-stats { grid-template-columns: repeat(2, 1fr); }
    .fp-caps { padding: 80px 24px; }
    .fp-caps-grid { grid-template-columns: 1fr 1fr; }
    .fp-cta { padding: 100px 24px; }
    .alloc-col-headers,
    .alloc-row-dark { grid-template-columns: 1fr 90px; }
    .alloc-providers-col { display: none; }
    .finance-rows-header,
    .finance-row { grid-template-columns: 1fr 90px 1fr; }
    .finance-row > div:last-child { display: none; }
}
