:root {
    --ink: #1e6955;
    --ink2: #2B3039;
    --paper: #FBF9F4;
    --paper2: #F2EEE5;
    --rule: #DDD7C9;
    --rule-ink: #3A404B;
    --mute: #8A8577;
    --mute-ink: #9AA0AB;
    --accent: #1E6F78;
    --accent-d: #124950;
    --accent-l: #8FB9BD;
    --accent-xl: #D5E4E4;
    --flag: #E65F46;
    --flag-l: #E8C39B;
    --neut: #B9B4A6;
    --ice: #D9DCE1;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}


.benchmark-main {
    width: 100%;
    position: relative;
}

.slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0px;
}

.slide>div {
    width: 100%;
}

.slide>div {
    width: 100%;
}

.slide.active {
    transform: none
}

.slide.ink {
    background: rgba(0, 85, 60, .08);
}

.slide {
    background: var(--paper);
    color: var(--ink)
}

.slide .r {
    color: var(--ink2);
}

.eyebrow {
    font-size: clamp(10px, 1.1vw, 13px);
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 20px;
    font-weight: 500;
}

h1.big {
    font-weight: 800;
    font-size: clamp(34px, 6.2vw, 74px);
    line-height: 1.1;
    letter-spacing: -.035em;
    max-width: 16ch;
}

h2.mid {
    font-weight: 700;
    font-size: clamp(26px, 4.4vw, 52px);
    line-height: 1.04;
    letter-spacing: -.02em;
    max-width: 25ch;
}

em {
    font-style: italic;
    color: var(--ink)
}

.slide.ink em {
    color: var(--ink)
}

.slide .r.mono {
    letter-spacing: 1px;
    font-size: 14px;
}

.lede {
    font-size: clamp(15px, 1.9vw, 24px);
    line-height: 1.5;
    color: var(--ink2);
    max-width: 56ch;
    margin-top: 22px;
    margin-bottom: 12px;
}

.lede b {
    color: var(--ink)
}

.stat {
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: .82;
    color: var(--ink);
}

.huge {
    font-size: clamp(90px, 20vw, 240px)
}

.big2 {
    font-size: clamp(60px, 12vw, 150px)
}

.unit {
    color: var(--ink);
    font-size: 4em
}

.flagc {
    color: var(--flag)
}

.slide .r.serif {
    font-size: 24px;
}

.signal {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 44px;
    margin-bottom: 30px
}

.signal i {
    display: block;
    width: 9px;
    background: var(--accent-l);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .5s var(--ease)
}

.signal i:nth-child(3n) {
    background: var(--accent)
}

.slide.active .signal i {
    transform: scaleY(1)
}


.bars {
    margin-top: 30px;
    max-width: 760px
}

.bar {
    display: grid;
    grid-template-columns: clamp(120px, 20vw, 220px) 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px
}

.bar .nm {
    font-size: clamp(11px, 1.4vw, 15px)
}

.bar .tr {
    position: relative;
    height: 14px;
    background: var(--paper2);
    border-radius: 2px;
    overflow: hidden
}

.slide.ink .bar .tr {
    background: var(--rule-ink)
}

.bar .fl {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--ink);
    border-radius: 2px;
    transition: width 1s var(--ease)
}

.bar.flag .fl {
    background: var(--flag)
}

.bar.hi .fl {
    background: #013A29;
}

.slide.ink .bar.hi .fl {
    background: var(--accent-l)
}

.bar .vl {
    font-size: clamp(11px, 1.4vw, 14px);
    font-weight: 500;
    min-width: 46px;
    text-align: right
}

/* opposing */
.oppose {
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 6vw, 90px);
    margin-top: 45px;
    flex-wrap: wrap
}

.oppose .col .n {
    font-weight: 700;
    font-size: clamp(56px, 11vw, 128px);
    line-height: .85;
    letter-spacing: -.03em
}

.oppose .col .lb {
    font-size: clamp(12px, 1.5vw, 16px);
    color: var(--mute);
    margin-top: 12px;
    max-width: 26ch
}

.slide.ink .oppose .col .lb {
    color: var(--mute-ink)
}

.oppose.r span,
.n.flagc span {
    font-weight: 600;
}

.oppose .div {
    width: 1px;
    align-self: stretch;
    background: var(--rule-ink);
    margin-top: 6px
}

/* two cards */
.cards1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
    max-width: 820px
}

.card1 {
    padding: clamp(18px, 2.6vw, 30px);
    border-radius: 5px
}

.card1.dark {
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--rule-ink)
}

.card1.soft {
    background: var(--paper2);
    color: var(--ink)
}

.card1 .k {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.card1.dark .k {
    color: var(--accent-l)
}

.card1.soft .k {
    color: var(--accent)
}

.card1 .cn {
    font-weight: 700;
    font-size: clamp(40px, 7vw, 64px);
    line-height: .85;
    letter-spacing: -.02em
}

.card1 .cn span {
    font-weight: 600;
}

.card1.soft .cd {
    color: #000;
}

.card1 .cd {
    font-size: clamp(13px, 1.5vw, 15px);
    margin-top: 12px;
    line-height: 1.4
}

@media(max-width:640px) {
    .cards1 {
        grid-template-columns: 1fr
    }
}

.fw {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 34px;
    max-width: 960px
}

.fw .st {
    padding: clamp(14px, 2vw, 24px);
    background: var(--paper2);
    border-radius: 5px;
    transition: opacity .5s var(--ease), transform .5s var(--ease)
}

.fw .st.d {
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--rule-ink)
}



.fw .st .sn {
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--accent)
}

.fw .st.d .sn {
    color: var(--accent-l)
}

.fw .st .snm {
    font-weight: 700;
    font-size: clamp(18px, 2.4vw, 26px);
    margin-top: 6px
}

.fw .st .sg {
    font-size: 12px;
    color: var(--mute);
    margin-top: 4px;
    font-style: italic
}

.fw .st.d .sg {
    color: var(--accent-l)
}

.fw .st .sq {
    font-size: clamp(12px, 1.4vw, 14px);
    margin-top: 14px;
    font-style: italic;
    line-height: 1.35;
    color: #000;
}

.st.d .sq {
    color: #fff;
}

.fwline {
    text-align: center;
    margin-top: 16px;
    font-size: clamp(10px, 1.3vw, 13px);
    letter-spacing: .1em;
    color: var(--mute)
}

@media(max-width:760px) {
    .fw {
        grid-template-columns: 1fr 1fr
    }
}

/* radar */
.radarwrap {
    display: flex;
    align-items: center;
    gap: clamp(20px, 5vw, 60px);
    flex-wrap: wrap;
    margin-top: 20px
}

.legend {
    display: flex;
    gap: 22px;
    font-size: 12px;
    color: var(--mute);
    margin-top: 14px
}

.legend i {
    display: inline-block;
    width: 13px;
    height: 8px;
    vertical-align: middle;
    margin-right: 6px
}

/* CTA slide */
.ctarow {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px
}

.ctarow a {
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: 3px;
    text-decoration: none;
    transition: all .16s var(--ease)
}

.ctarow a.solid {
    background: var(--ink);
    color: #fff
}

.ctarow a.solid:hover {
    background: #00704a;
}

.ctarow a.line1 {
    background: #E65F46;
}

.ctarow a.line1:hover {
    background: #cc523c;
}

/* ---------- deck controls ---------- */
.ctrl {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #013A29;
    backdrop-filter: blur(10px);
    border: 1px solid var(--rule-ink);
    border-radius: 40px;
    padding: 6px 14px;
}

.ctrl button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: var(--ice);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .16s var(--ease)
}

.ctrl button:hover {
    border-color: var(--accent-l);
    color: #fff
}

.ctrl button:disabled {
    opacity: .3;
    cursor: default
}

.ctrl .count {
    font-size: 12px;
    color: var(--ice);
    min-width: 52px;
    text-align: center
}

.dots {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: var(--rule-ink);
    cursor: pointer;
    padding: 0;
    transition: all .2s var(--ease)
}

.dots button.on {
    background: var(--ink);
    transform: scale(1.5)
}

@media(max-width:640px) {
    .dots {
        display: none
    }
}

.progress-top {
    position: fixed;
    top: 54px;
    left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 59;
    width: 0;
    transition: width .4s var(--ease)
}

.hint {
    position: fixed;
    bottom: 66px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 55;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mute-ink);
    opacity: 1;
    transition: opacity .5s
}

.hint.hide {
    opacity: 0
}

.below {
    position: fixed;
    inset: 54px 0 0 0;
    background: var(--paper);
    color: var(--ink);
    overflow-y: auto;
    z-index: 40;
    transform: translateY(100%);
    transition: transform .5s var(--ease)
}

.below.open {
    transform: none
}

.below .inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 100px
}

.below h3 {
    font-size: 30px;
    margin-bottom: 20px
}

.below .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 10px
}

.below .item {
    border-top: 2px solid var(--accent);
    padding-top: 14px
}

.below .item h4 {
    font-size: 17px;
    margin-bottom: 6px
}

.below .item p {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.5
}

.below .assets {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-top: 14px
}

.below .asset {
    background: var(--paper2);
    padding: 18px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--ink);
    transition: all .16s
}

.below .asset:hover {
    background: var(--accent-xl)
}

.below .asset .t {
    font-weight: 700;
    font-size: 16px
}

.below .asset .d {
    font-size: 12px;
    color: var(--mute);
    margin-top: 4px
}

.below .close {
    position: sticky;
    top: 0;
    float: right;
    background: var(--ink);
    color: #fff;
    border: 0;
    border-radius: 3px;
    font-size: 11px;
    letter-spacing: .08em;
    padding: 10px 16px;
    cursor: pointer;
    text-transform: uppercase
}

.below .disc {
    font-size: 12px;
    color: var(--mute);
    margin-top: 30px;
    line-height: 1.6;
    clear: both
}

@media(max-width:640px) {

    .below .grid,
    .below .assets {
        grid-template-columns: 1fr
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
        animation: none !important
    }

    .slide .r,
    .fw .st {
        opacity: 1 !important;
        transform: none !important
    }

    .signal i {
        transform: scaleY(1) !important
    }
}

@media screen and (max-width:767px) {
    .slide .r.mono {
        letter-spacing: 0px;
        font-size: 10px;
    }

    .slide .r.serif {
        font-size: 16px;
        margin-top: 12px;
    }

    .oppose {
        flex-wrap: nowrap;
    }

    .card1 {
        padding: 12px;
    }

    .eyebrow {
        margin-bottom: 12px;
    }

    .fw {
        margin-top: 18px;
    }

    .ctrl {
        position: fixed;
        bottom: 110px;
    }

    .ctarow a {
        width: 100%;
        text-align: center;
    }
}
