.outcomes-section {
    padding: 6.5rem 1.5rem;
    background: #f4eee6;
    border-top: 1px solid rgba(231, 222, 211, 0.95);
    border-bottom: 1px solid rgba(231, 222, 211, 0.95);
}

.outcomes-container {
    width: min(100%, 72rem);
    margin: 0 auto;
}

.outcomes-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.15rem;
    color: #6e6258;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.outcomes-eyebrow::before {
    width: 1.75rem;
    height: 1px;
    background: #9d724e;
    content: "";
}

.outcomes-heading {
    max-width: 58rem;
    margin: 0;
    color: #15110f;
    font-size: clamp(2.4rem, 5vw, 4.75rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-wrap: balance;
}

.outcomes-lede {
    max-width: 47rem;
    margin: 1.5rem 0 0;
    color: #5d554d;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.7;
    text-wrap: pretty;
}

.evidence-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3.25rem;
}

.benchmark-figure,
.result-card,
.stack-card,
.stack-layers,
.pilot-panel {
    border: 1px solid rgba(218, 207, 195, 0.92);
    background: rgba(255, 252, 247, 0.96);
    box-shadow: 0 28px 70px -52px rgba(52, 40, 31, 0.32);
}

.benchmark-figure {
    overflow: hidden;
    margin: 0;
    border-radius: 1.75rem;
}

.benchmark-figure-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid rgba(218, 207, 195, 0.8);
}

.benchmark-figure-label {
    color: #28211d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.benchmark-figure-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #596056;
    font-size: 0.75rem;
    font-weight: 600;
}

.benchmark-figure-status::before {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: #65745c;
    box-shadow: 0 0 0 4px rgba(101, 116, 92, 0.12);
    content: "";
}

.benchmark-figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #ffffff;
    object-fit: contain;
}

.benchmark-figure figcaption {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.2rem 1.25rem 1.35rem;
    color: #6b625b;
    font-size: 0.82rem;
    line-height: 1.55;
}

.benchmark-link {
    flex: 0 0 auto;
    color: #181310;
    font-weight: 700;
    text-decoration: none;
}

.benchmark-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.result-rail {
    display: grid;
    gap: 1rem;
}

.result-card {
    display: grid;
    min-height: 10rem;
    padding: 1.4rem;
    border-radius: 1.4rem;
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.result-card:hover {
    transform: translateY(-3px);
    border-color: rgba(157, 114, 78, 0.56);
    box-shadow: 0 32px 70px -48px rgba(52, 40, 31, 0.4);
}

.result-card-kicker {
    color: #81756a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.result-card strong {
    align-self: end;
    margin-top: 1rem;
    color: #17120f;
    font-size: clamp(2.15rem, 4vw, 3.25rem);
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.result-card-copy {
    margin-top: 0.65rem;
    color: #665d55;
    font-size: 0.9rem;
    line-height: 1.45;
}

.evidence-note {
    margin: 1.35rem 0 0;
    color: #756c64;
    font-size: 0.8rem;
    line-height: 1.6;
}

.stack-section {
    padding: 6.5rem 1.5rem;
    background: #fbf8f3;
}

.stack-header {
    display: grid;
    gap: 1.5rem;
}

.stack-header .outcomes-lede {
    margin-top: 0;
}

.stack-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.stack-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1.5rem;
}

.stack-card.is-prosgrow {
    overflow: hidden;
    border-color: rgba(70, 58, 49, 0.75);
    background: linear-gradient(145deg, #17120f 0%, #261d18 100%);
    color: #fffaf4;
}

.stack-card.is-prosgrow::after {
    position: absolute;
    right: -4rem;
    bottom: -5rem;
    width: 12rem;
    height: 12rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(220, 185, 146, 0.18), transparent 68%);
    content: "";
}

.stack-card-index {
    display: block;
    margin-bottom: 2.25rem;
    color: #8c8075;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.stack-card.is-prosgrow .stack-card-index {
    color: #c8b6a4;
}

.stack-card h3 {
    margin: 0;
    color: #1a1512;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.stack-card.is-prosgrow h3 {
    color: #fffaf4;
}

.stack-card p {
    position: relative;
    z-index: 1;
    margin: 0.85rem 0 0;
    color: #675e56;
    font-size: 0.93rem;
    line-height: 1.65;
}

.stack-card.is-prosgrow p {
    color: #d4c8bd;
}

.stack-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.25rem;
}

.stack-tag {
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(226, 209, 192, 0.2);
    border-radius: 999px;
    background: rgba(255, 248, 240, 0.06);
    color: #eaded2;
    font-size: 0.7rem;
    font-weight: 600;
}

.stack-layers {
    display: grid;
    gap: 0;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 1.5rem;
}

.stack-package-label {
    margin: 2rem 0 0;
    color: #675e56;
    font-size: 0.85rem;
    font-weight: 650;
}

.stack-layer {
    padding: 1.25rem 1.35rem;
    border-top: 1px solid rgba(218, 207, 195, 0.82);
}

.stack-layer:first-child {
    border-top: 0;
}

.stack-layer span {
    display: block;
    margin-bottom: 0.4rem;
    color: #9a795e;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.stack-layer strong {
    display: block;
    color: #27201c;
    font-size: 0.92rem;
}

.stack-capacity {
    display: grid;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1.5rem;
    border: 1px solid #ddc9b3;
    border-radius: 1.5rem;
    background: #f4eadc;
}

.stack-capacity h3 {
    margin: 0;
    color: #27201c;
    font-size: 1.5rem;
    letter-spacing: -0.035em;
}

.stack-capacity p {
    max-width: 32rem;
    margin: 0.75rem 0 0;
    color: #675e56;
    font-size: 0.93rem;
    line-height: 1.65;
}

.stack-capacity-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 0;
}

.stack-capacity-metrics dt {
    color: #675e56;
    font-size: 0.75rem;
    line-height: 1.5;
}

.stack-capacity-metrics dd {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0.5rem 0 0;
    color: #825937;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.stack-capacity-metrics dd span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
}

.calculator-section {
    padding: 6.5rem 1.5rem;
    background: #f0e9e0;
}

.calculator-shell {
    overflow: hidden;
    width: min(100%, 72rem);
    margin: 0 auto;
    border: 1px solid rgba(103, 82, 67, 0.7);
    border-radius: 2rem;
    background:
        radial-gradient(circle at 10% 40%, rgba(154, 180, 132, 0.1), transparent 45%),
        linear-gradient(145deg, #12100e 0%, #1d1713 60%, #15110f 100%);
    box-shadow: 0 46px 90px -52px rgba(28, 20, 15, 0.68);
    color: #fffaf4;
}

.calculator-intro {
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(229, 211, 194, 0.12);
}

.calculator-intro .outcomes-eyebrow { color: #cbb9a8; margin: 0 0 1rem; }
.calculator-intro .outcomes-eyebrow::before { background: #d29b6d; }
.calculator-intro h2 {
    margin: 0;
    color: #fffaf4;
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.08;
    text-wrap: balance;
}

.calculator-grid { display: grid; }
.calculator-form, .calculator-results { min-width: 0; padding: 1.5rem; }
.calculator-results { background: rgba(255, 250, 244, 0.025); }
.calculator-result-label { color: #c8bcb0; font-size: .85rem; font-weight: 600; }
.calculator-result-value {
    display: block;
    margin-top: .8rem;
    color: #e3efd8;
    font-size: clamp(3.5rem, 6.8vw, 6.75rem);
    font-weight: 750;
    letter-spacing: -.065em;
    line-height: 1;
    overflow-wrap: anywhere;
    font-variant-numeric: tabular-nums;
}
.calculator-monthly { margin: .8rem 0 1rem; color: #c9bdb2; font-size: 1rem; line-height: 1.5; }
.calculator-monthly strong { color: #fffaf4; font-size: 1.3rem; font-weight: 650; }
.calculator-savings-badge { display: inline-flex; padding: .4rem .7rem; border: 1px solid rgba(179, 206, 155, .25); border-radius: 999px; background: rgba(179, 206, 155, .08); color: #c8dfb6; font-size: .72rem; font-weight: 600; }

.calculator-bars { display: grid; gap: 1rem; margin-top: 2rem; }
.calculator-bar-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .3rem 1rem; margin-bottom: .45rem; color: #bfb3a8; font-size: .75rem; }
.calculator-bar-meta strong { color: #eee4d8; font-weight: 600; overflow-wrap: anywhere; }
.calculator-bar-track { overflow: hidden; height: .45rem; border-radius: 999px; background: rgba(255, 250, 244, .09); }
.calculator-bar-fill { width: 100%; height: 100%; border-radius: inherit; background: #ae896a; transition: width 200ms ease; }
.calculator-bar-fill.is-modeled { background: #bdd3ac; }

.calculator-form { display: flex; flex-direction: column; justify-content: center; border-top: 1px solid rgba(229, 211, 194, .12); }
.calculator-subtitle { margin: 0 0 1.5rem; font-size: 1.1rem; font-weight: 650; letter-spacing: -.02em; }
.calculator-field { margin-top: 1.5rem; }
.calculator-field:first-of-type { margin-top: 0; }
.calculator-field label, .calculator-field-label { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .65rem; color: #d0c5ba; font-size: .85rem; font-weight: 550; }
.calculator-field-label label { margin-bottom: 0; }
.calculator-field output { color: #f0b785; font-size: 1.25rem; font-weight: 700; }
.calculator-input-wrap { display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; border: 1px solid rgba(224, 206, 190, .25); border-radius: .75rem; background: rgba(5, 5, 5, .24); }
.calculator-input-wrap:focus-within { border-color: #e6b082; box-shadow: 0 0 0 3px rgba(210, 155, 109, .16); }
.calculator-input-wrap > span { flex: 0 0 auto; color: #a99a8b; font-size: 1.25rem; }
.calculator-input-wrap > span:last-child { font-size: .7rem; }
.calculator-control { width: 100%; min-width: 0; padding: 0; border: 0; border-radius: 0; outline: 0; background: transparent; color: #fffaf4; font: inherit; font-size: clamp(1.15rem, 2.2vw, 1.6rem); font-variant-numeric: tabular-nums; }
.calculator-control:focus-visible { outline: 0; }
.calculator-range { display: block; width: 100%; height: 1.6rem; margin: 0; accent-color: #d39b6d; }
.calculator-range-scale { display: flex; justify-content: space-between; margin-top: .2rem; color: #a99c90; font-size: .68rem; }
.calculator-assumption-note { margin: .6rem 0 0; color: #a99c90; font-size: .75rem; line-height: 1.5; }
.calculator-error { margin: .55rem 0 0; color: #f2aa9e; font-size: .75rem; line-height: 1.5; }
.calculator-error:empty { display: none; }
.calculator-cta { display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 3.1rem; margin-top: 1.8rem; padding: .8rem 1rem; border-radius: .8rem; background: #f4e9dd; color: #17120f; font-size: .85rem; font-weight: 700; text-decoration: none; text-align: center; transition: transform 160ms ease, background 160ms ease; }
.calculator-cta:hover { transform: translateY(-2px); background: #fff; }
.calculator-live-note { margin: .75rem 0 0; color: #a99c90; font-size: .7rem; text-align: center; }
.calculator-footnote { padding: 1.2rem 1.5rem; border-top: 1px solid rgba(229, 211, 194, .12); color: #a99c90; font-size: .72rem; line-height: 1.6; }
.calculator-footnote > p { margin: 0; }
.calculator-details { margin-top: .45rem; }
.calculator-details summary { width: fit-content; color: #d1bca8; cursor: pointer; }
.calculator-details p { max-width: 55rem; margin: .7rem 0 0; }

@media (min-width: 900px) {
    .calculator-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
    .calculator-form { border-top: 0; border-left: 1px solid rgba(229, 211, 194, .12); }
    .calculator-intro { padding: 2rem 2.5rem; }
    .calculator-form, .calculator-results { padding: 2.5rem; }
    .calculator-footnote { padding: 1.2rem 2.5rem; }
}

.pilot-section {
    padding: 6.5rem 1.5rem;
    background: #fbf8f3;
}

.pilot-panel {
    width: min(100%, 72rem);
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-radius: 2rem;
}

.pilot-header {
    max-width: 62rem;
}

.pilot-header .outcomes-heading {
    font-size: clamp(2.35rem, 5vw, 4.35rem);
}

.pilot-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.pilot-step {
    padding: 1.25rem;
    border: 1px solid rgba(218, 207, 195, 0.86);
    border-radius: 1.25rem;
    background: #f8f3ec;
}

.pilot-step span {
    color: #967359;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.pilot-step h3 {
    margin: 1.15rem 0 0;
    color: #1b1613;
    font-size: 1.15rem;
    font-weight: 750;
    letter-spacing: -0.025em;
}

.pilot-step p,
.pilot-list {
    margin: 0.6rem 0 0;
    color: #695f57;
    font-size: 0.87rem;
    line-height: 1.6;
}

.pilot-list {
    display: grid;
    gap: 0.5rem;
    padding: 0;
    list-style: none;
}

.pilot-list li {
    position: relative;
    padding-left: 1.2rem;
}

.pilot-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #967359;
    content: "\2713";
    font-weight: 800;
}

.pilot-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.pilot-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.8rem 1.25rem;
    border-radius: 0.85rem;
    background: #17120f;
    color: #fffaf4;
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease;
}

.pilot-button:hover {
    transform: translateY(-2px);
    background: #2a211c;
}

.pilot-actions small {
    color: #81766c;
    font-size: 0.72rem;
    line-height: 1.5;
}

@media (min-width: 720px) {
    .outcomes-section,
    .stack-section,
    .calculator-section,
    .pilot-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .pilot-panel {
        padding: 2.5rem;
    }

    .stack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stack-layers {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .stack-layer {
        border-top: 0;
        border-left: 1px solid rgba(218, 207, 195, 0.82);
    }

    .stack-layer:first-child {
        border-left: 0;
    }

    .stack-capacity {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 2rem;
    }

    .pilot-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pilot-actions {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .evidence-grid {
        grid-template-columns: minmax(0, 1.65fr) minmax(18rem, 0.75fr);
        align-items: stretch;
    }

}

@media (prefers-reduced-motion: reduce) {
    .result-card,
    .calculator-bar-fill,
    .calculator-cta,
    .pilot-button {
        transition: none;
    }
}
