/* ==========================================================
   VARIABLES
========================================================== */
:root {
    --black: #000000;
    --white: #ffffff;
    --highlight: #dc4433;

    --font-main: "HPGroteskEB", Arial, Helvetica, sans-serif;
    --font-body: Arial, Helvetica, sans-serif;

    --container-x: clamp(1.25rem, 4vw, 5rem);
    --nav-offset: clamp(1rem, 2vw, 2rem);
    --transition-slow: 900ms cubic-bezier(.19, 1, .22, 1);
    --transition-fast: 250ms ease;
}

/* ==========================================================
   FONT
========================================================== */
@font-face {
    font-family: "HPGroteskEB";
    src:
        url("/fonts/HKGrotesk-ExtraBold.woff2") format("woff2"),
        url("/fonts/HKGrotesk-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================
   RESET / BASE
========================================================== */
* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

::selection {
    color: var(--black);
    background: var(--highlight);
}

/* ==========================================================
   LAYOUT
========================================================== */
.site-slides {
    position: relative;
    z-index: 2;
}

.slide {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    isolation: isolate;
}

.slide-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding-right: var(--container-x);
    padding-left: var(--container-x);
}

.slide-container--intro {
    padding-top: clamp(4rem, 8vh, 6rem);
    padding-bottom: clamp(5rem, 10vh, 8rem);
}


.slide-container > .row.min-vh-100 {
    flex: 1 1 auto;
    width: 100%;
    min-height: auto !important;
    padding-top: clamp(2.25rem, 4vh, 4rem);
    padding-bottom: clamp(2.25rem, 4vh, 4rem);
}

.slide-intro .slide-container > .row.min-vh-100 {
    padding-top: clamp(3rem, 7vh, 5rem);
    padding-bottom: clamp(5rem, 9vh, 7rem);
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */
.eyebrow {
    margin: 0 0 1.25rem;
    color: var(--highlight);
    font-family: var(--font-main);
    font-size: clamp(.8rem, 1vw, 1rem);
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
}

.display-title {
    margin: 0;
    font-family: var(--font-main);
    font-size: clamp(3.25rem, 8.1vw, 7.55rem);
    font-weight: 800;
    letter-spacing: -.075em;
    line-height: .78;
    text-transform: uppercase;
}

.display-title--intro {
    font-size: clamp(3.8rem, 10.8vw, 9.6rem);
}

.display-title span{
	color: var(--highlight);
}


.lead-copy {
    margin: 0;
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 4.7vw, 4.8rem);
    letter-spacing: -.06em;
    line-height: .9;
}

.body-copy {
    margin: 0;
    max-width: 46rem;
    color: rgba(255,255,255,.82);
    font-size: clamp(1rem, 1.35vw, 1.35rem);
    line-height: 1.48;
}

.body-copy--border {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-top: clamp(1rem, 2vw, 1.5rem);
    border-top: 1px solid rgba(255,255,255,.28);
}

.copy-stack {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2.5rem);
}

.max-copy {
    max-width: 52rem;
}

.highlight {
    color: var(--highlight);
}

/* ==========================================================
   COMPONENTS
========================================================== */
.intro-image,
.intro-overlay {
    position: absolute;
    inset: 0;
}

.intro-image {
    z-index: 0;
    display: block;
    overflow: hidden;
    transform: scale(1.02);
}

.intro-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.25) 52%, rgba(0,0,0,.66)),
        linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.02) 55%);
}

.stat-block {
    display: grid;
    max-width: 42rem;
    padding-top: clamp(1rem, 2vw, 1.75rem);
    border-top: 2px solid var(--highlight);
    gap: .75rem;
}

.stat-block strong {
    color: var(--highlight);
    font-family: var(--font-main);
    font-size: clamp(3.8rem, 10.8vw, 9.6rem);
    letter-spacing: -.08em;
    line-height: .72;
}

.stat-block span {
    max-width: 35rem;
    color: rgba(255,255,255,.82);
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.4;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem clamp(1rem, 3vw, 2rem);
    margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    min-height: 3.2rem;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.9);
    font-family: var(--font-main);
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    letter-spacing: -.03em;
    line-height: 1.05;
    text-transform: uppercase;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.05rem;
    width: .8rem;
    height: .8rem;
    background: var(--highlight);
}

.keyword-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(1.5rem, 4vw, 3.5rem);
    border-top: 1px solid rgba(255,255,255,.28);
    border-left: 1px solid rgba(255,255,255,.28);
}

.keyword-grid article {
    min-height: clamp(12rem, 18vw, 18rem);
    padding: clamp(1rem, 1.55vw, 1.35rem);
    border-right: 1px solid rgba(255,255,255,.28);
    border-bottom: 1px solid rgba(255,255,255,.28);
}

.keyword-grid span,
.keyword-grid strong {
    display: block;
    font-family: var(--font-main);
    text-transform: uppercase;
}

.keyword-grid span {
    margin-bottom: clamp(2rem, 5vw, 4rem);
    color: var(--highlight);
    font-size: .9rem;
}

.keyword-grid strong {
    font-size: clamp(1.25rem, 1.85vw, 2.05rem);
    letter-spacing: -.06em;
    line-height: .86;
}

.keyword-grid p {
    margin: 1rem 0 0;
    color: rgba(255,255,255,.72);
    font-size: .98rem;
    line-height: 1.35;
}

.scroll-indicator {
    position: absolute;
    right: var(--container-x);
    bottom: clamp(4.25rem, 10vh, 7rem);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
}

.scroll-indicator i {
    display: block;
    width: 1px;
    height: 3.5rem;
    background: rgba(255,255,255,.45);
    overflow: hidden;
}

.scroll-indicator i::before {
    content: "";
    display: block;
    width: 1px;
    height: 1.25rem;
    background: var(--highlight);
    animation: scrollLine 1.6s ease-in-out infinite;
}

.slide-nav {
    position: fixed;
    top: 50%;
    right: var(--nav-offset);
    z-index: 20;
    display: grid;
    gap: .8rem;
    transform: translateY(-50%);
}

.slide-nav__dot {
    position: relative;
    width: .75rem;
    height: .75rem;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;
    background: transparent;
    transition: var(--transition-fast);
}

.slide-nav__dot span {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    width: max-content;
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(.5rem);
    transition: var(--transition-fast);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.slide-nav__dot:hover,
.slide-nav__dot.is-active {
    border-color: var(--highlight);
    background: var(--highlight);
}

.slide-nav__dot:hover span {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ==========================================================
   BACKGROUND SHAPES
========================================================== */
.geometric-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    display: block;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.045);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
    transition: transform var(--transition-slow), opacity var(--transition-slow), width var(--transition-slow), height var(--transition-slow);
    will-change: transform;
}

.shape-1 { width: 28vw; height: 18vw; }
.shape-2 { width: 18vw; height: 42vw; }
.shape-3 { width: 45vw; height: 9vw; }
.shape-4 { width: 16vw; height: 16vw; border-color: color-mix(in srgb, var(--highlight) 55%, transparent); background: color-mix(in srgb, var(--highlight) 4%, transparent); }
.shape-5 { width: 9vw; height: 55vw; }

body.slide-1 .shape-1 { opacity: .35; transform: translate(68vw, 10vh) rotate(8deg) scale(1); }
body.slide-1 .shape-2 { opacity: .18; transform: translate(8vw, 24vh) rotate(-12deg) scale(.9); }
body.slide-1 .shape-3 { opacity: .16; transform: translate(35vw, 78vh) rotate(-4deg) scale(.9); }
body.slide-1 .shape-4 { opacity: .2; transform: translate(78vw, 65vh) rotate(21deg) scale(1.1); }
body.slide-1 .shape-5 { opacity: .12; transform: translate(2vw, -10vh) rotate(28deg) scale(.85); }

body.slide-2 .shape-1 { opacity: .32; transform: translate(7vw, 9vh) rotate(-8deg) scale(.85); }
body.slide-2 .shape-2 { opacity: .22; transform: translate(76vw, 3vh) rotate(10deg) scale(.8); }
body.slide-2 .shape-3 { opacity: .28; transform: translate(42vw, 30vh) rotate(4deg) scale(1.05); }
body.slide-2 .shape-4 { opacity: .32; transform: translate(68vw, 70vh) rotate(-18deg) scale(.9); }
body.slide-2 .shape-5 { opacity: .13; transform: translate(23vw, 62vh) rotate(-34deg) scale(.75); }

body.slide-3 .shape-1 { opacity: .22; transform: translate(60vw, 61vh) rotate(18deg) scale(.85); }
body.slide-3 .shape-2 { opacity: .28; transform: translate(4vw, 49vh) rotate(6deg) scale(.88); }
body.slide-3 .shape-3 { opacity: .34; transform: translate(20vw, 5vh) rotate(-12deg) scale(.95); }
body.slide-3 .shape-4 { opacity: .36; transform: translate(84vw, 18vh) rotate(8deg) scale(.8); }
body.slide-3 .shape-5 { opacity: .14; transform: translate(47vw, 10vh) rotate(33deg) scale(.7); }

body.slide-4 .shape-1 { opacity: .3; transform: translate(2vw, 70vh) rotate(10deg) scale(.8); }
body.slide-4 .shape-2 { opacity: .2; transform: translate(80vw, 25vh) rotate(-18deg) scale(.95); }
body.slide-4 .shape-3 { opacity: .38; transform: translate(14vw, 19vh) rotate(0deg) scale(1.12); }
body.slide-4 .shape-4 { opacity: .3; transform: translate(56vw, 64vh) rotate(28deg) scale(1); }
body.slide-4 .shape-5 { opacity: .16; transform: translate(67vw, -4vh) rotate(-28deg) scale(.78); }

/* ==========================================================
   ANIMATIONS
========================================================== */
@keyframes scrollLine {
    0% { transform: translateY(-120%); }
    100% { transform: translateY(320%); }
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 1199.98px) {
    .keyword-grid {
        grid-template-columns: 1fr;
    }

    .keyword-grid article {
        min-height: auto;
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-snap-type: y proximity;
    }

    .slide-container {
        padding-top: clamp(5rem, 12vh, 8rem);
        padding-bottom: clamp(4rem, 10vh, 7rem);
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .slide-nav {
        right: 1rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --container-x: 1.15rem;
    }

    .display-title {
        font-size: clamp(3.35rem, 18vw, 6rem);
    }

    .lead-copy {
        font-size: clamp(2rem, 11vw, 4rem);
    }

    .slide-nav {
        display: none;
    }

    .scroll-indicator {
        left: var(--container-x);
        right: auto;
    }

    .shape-1 { width: 62vw; height: 40vw; }
    .shape-2 { width: 34vw; height: 78vw; }
    .shape-3 { width: 82vw; height: 18vw; }
    .shape-4 { width: 38vw; height: 38vw; }
    .shape-5 { width: 20vw; height: 88vw; }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    .shape {
        animation-duration: 36s;
    }

    .resource-main-link {
        animation-duration: 3.2s;
    }
}

/* ==========================================================
   EXTENDED SLIDE COMPONENTS
========================================================== */
.method-list {
    display: grid;
    gap: 0;
    max-width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.28);
}

.method-list article {
    display: grid;
    min-width: 0;
    grid-template-columns: 3.25rem minmax(14rem, .82fr) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    padding: clamp(1rem, 2.2vw, 1.75rem) 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
}

.method-list span,
.press-list time {
    color: var(--highlight);
    font-family: var(--font-main);
    font-size: .85rem;
    line-height: 1;
    text-transform: uppercase;
}

.method-list h3 {
    margin: 0;
    font-family: var(--font-main);
    font-size: clamp(1.35rem, 2.35vw, 2.65rem);
    letter-spacing: -.06em;
    line-height: .9;
    text-transform: uppercase;
}

.method-list p {
    margin: 0;
    max-width: 34rem;
    min-width: 0;
    color: rgba(255,255,255,.74);
    font-size: clamp(.95rem, 1.2vw, 1.15rem);
    line-height: 1.42;
}

.statement-card,
.resource-card,
.contact-block {
    padding: clamp(1.25rem, 3vw, 2.5rem);
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.025);
    backdrop-filter: blur(6px);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.28);
    border-left: 1px solid rgba(255,255,255,.28);
}

.partner-grid article {
    display: flex;
    min-height: clamp(10rem, 18vw, 16rem);
    align-items: flex-end;
    padding: clamp(1rem, 1.55vw, 1.35rem);
    border-right: 1px solid rgba(255,255,255,.28);
    border-bottom: 1px solid rgba(255,255,255,.28);
}

.partner-grid span {
    font-family: var(--font-main);
    font-size: clamp(1.4rem, 3vw, 3.4rem);
    letter-spacing: -.06em;
    line-height: .9;
    text-transform: uppercase;
}

.contact-email {
    display: inline-block;
    margin-bottom: clamp(4.25rem, 10vh, 7rem);
    color: var(--highlight);
    font-family: var(--font-main);
    font-size: clamp(2.1rem, 5vw, 5.5rem);
    letter-spacing: -.07em;
    line-height: .85;
    text-decoration: none;
}

.contact-email:hover,
.text-link:hover {
    color: var(--white);
}

.text-link {
    display: inline-flex;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    padding-bottom: .2rem;
    border-bottom: 2px solid var(--highlight);
    color: var(--highlight);
    font-family: var(--font-main);
    font-size: clamp(1.2rem, 2vw, 2rem);
    letter-spacing: -.04em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.press-list {
    display: grid;
    border-top: 1px solid rgba(255,255,255,.28);
}

.press-list article {
    border-bottom: 1px solid rgba(255,255,255,.22);
}

.press-list article a {
    display: grid;
    grid-template-columns: minmax(7rem, 10rem) 1fr;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: baseline;
    padding: clamp(.9rem, 1.8vw, 1.4rem) 0;
    color: var(--white);
    text-decoration: none;
}

.press-list article a:hover span {
    color: var(--highlight);
}

.press-list span {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.55vw, 1.85rem);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.12;
    text-transform: none;
}

.press-list b {
    font-family: var(--font-main);
    font-weight: 800;
    text-transform: uppercase;
}


.logo-grid {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

 .funding-logo-grid {
    grid-template-columns: 1fr 1fr 2fr;
    align-items: stretch;
}

.partner-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 70rem);
}

.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(7.5rem, 11vw, 11rem);
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
}

.logo-card--square {
    aspect-ratio: 1 / 1;
}

.logo-card--wide {
    aspect-ratio: 2 / 1;
}

.logo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.resource-main-link {
    display: inline-block;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--white);
    text-decoration: none;
}

.resource-main-link:hover {
    color: var(--highlight);
}

body.slide-5 .shape-1 { opacity: .28; transform: translate(72vw, 8vh) rotate(-16deg) scale(.75); }
body.slide-5 .shape-2 { opacity: .22; transform: translate(9vw, 66vh) rotate(22deg) scale(.8); }
body.slide-5 .shape-3 { opacity: .34; transform: translate(30vw, 15vh) rotate(8deg) scale(1.18); }
body.slide-5 .shape-4 { opacity: .3; transform: translate(78vw, 73vh) rotate(-28deg) scale(.75); }
body.slide-5 .shape-5 { opacity: .18; transform: translate(51vw, 43vh) rotate(36deg) scale(.82); }

body.slide-6 .shape-1 { opacity: .22; transform: translate(7vw, 13vh) rotate(20deg) scale(.9); }
body.slide-6 .shape-2 { opacity: .24; transform: translate(72vw, 54vh) rotate(-12deg) scale(.72); }
body.slide-6 .shape-3 { opacity: .31; transform: translate(39vw, 77vh) rotate(3deg) scale(1); }
body.slide-6 .shape-4 { opacity: .42; transform: translate(56vw, 18vh) rotate(16deg) scale(1.12); }
body.slide-6 .shape-5 { opacity: .13; transform: translate(18vw, -5vh) rotate(-25deg) scale(.78); }

body.slide-7 .shape-1 { opacity: .27; transform: translate(60vw, 65vh) rotate(-6deg) scale(.95); }
body.slide-7 .shape-2 { opacity: .2; transform: translate(5vw, 34vh) rotate(14deg) scale(.86); }
body.slide-7 .shape-3 { opacity: .38; transform: translate(14vw, 9vh) rotate(-5deg) scale(.92); }
body.slide-7 .shape-4 { opacity: .36; transform: translate(82vw, 16vh) rotate(32deg) scale(.82); }
body.slide-7 .shape-5 { opacity: .15; transform: translate(43vw, 48vh) rotate(-38deg) scale(.7); }

body.slide-8 .shape-1 { opacity: .34; transform: translate(10vw, 69vh) rotate(8deg) scale(.75); }
body.slide-8 .shape-2 { opacity: .18; transform: translate(86vw, 1vh) rotate(-10deg) scale(.95); }
body.slide-8 .shape-3 { opacity: .35; transform: translate(48vw, 28vh) rotate(0deg) scale(1.08); }
body.slide-8 .shape-4 { opacity: .44; transform: translate(68vw, 66vh) rotate(-18deg) scale(1); }
body.slide-8 .shape-5 { opacity: .14; transform: translate(2vw, 8vh) rotate(26deg) scale(.74); }

body.slide-9 .shape-1 { opacity: .25; transform: translate(69vw, 12vh) rotate(19deg) scale(.8); }
body.slide-9 .shape-2 { opacity: .26; transform: translate(13vw, 51vh) rotate(-18deg) scale(.86); }
body.slide-9 .shape-3 { opacity: .32; transform: translate(22vw, 78vh) rotate(-2deg) scale(1.12); }
body.slide-9 .shape-4 { opacity: .4; transform: translate(52vw, 13vh) rotate(6deg) scale(.84); }
body.slide-9 .shape-5 { opacity: .17; transform: translate(78vw, 49vh) rotate(29deg) scale(.78); }

body.slide-10 .shape-1 { opacity: .18; transform: translate(2vw, 2vh) rotate(-10deg) scale(.9); }
body.slide-10 .shape-2 { opacity: .24; transform: translate(75vw, 30vh) rotate(11deg) scale(.75); }
body.slide-10 .shape-3 { opacity: .42; transform: translate(9vw, 69vh) rotate(5deg) scale(1.2); }
body.slide-10 .shape-4 { opacity: .36; transform: translate(84vw, 72vh) rotate(24deg) scale(.8); }
body.slide-10 .shape-5 { opacity: .15; transform: translate(44vw, -8vh) rotate(-31deg) scale(.7); }

@media (max-width: 991.98px) {
    .method-list article,
    .press-list article a {
        grid-template-columns: 1fr;
    }

    .partner-grid,
    .partner-logo-grid,
    .funding-logo-grid {
        grid-template-columns: 1fr 1fr;
        width: calc(100% - 2rem);
        margin-right: auto;
        margin-left: auto;
    }

    .funding-logo-grid .logo-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .partner-logo-grid,
    .funding-logo-grid {
        grid-template-columns: 1fr 1fr;
        width: calc(100% - 2rem);
    }

    .funding-logo-grid .logo-card--wide {
        grid-column: span 2;
    }
}


.slide-project .keyword-grid strong {
    overflow-wrap: anywhere;
}

.slide-how .col-xl-7 {
    min-width: 0;
    overflow: hidden;
}

.slide-partners .display-title {
    max-width: 72rem;
}

.slide-partners .partner-logo-grid {
    margin-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 1200px) {
    .slide-project .lead-copy {
        font-size: clamp(2.6rem, 4.8vw, 5.1rem);
    }

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

    .slide-how .slide-container > .row.min-vh-100 {
        padding-right: clamp(2.5rem, 4vw, 4rem);
    }
}

@media (min-width: 1200px) {
    .resources-title { font-size: clamp(3rem, 7vw, 6.75rem); }
    .slide-how .display-title { font-size: clamp(3.8rem, 8.6vw, 8.2rem); }
}


/* ==========================================================
   REFINEMENTS
========================================================== */
.intro-tagline {
    margin: clamp(.8rem, 1.4vw, 1.2rem) 0 0;
    color: var(--highlight);
    font-family: var(--font-main);
    font-size: clamp(1.25rem, 2.4vw, 2.4rem);
    letter-spacing: .055em;
    line-height: .95;
    text-transform: uppercase;
}

.slide-intro .slide-container > .row.min-vh-100 {
    padding-top: clamp(2rem, 5vh, 4rem);
    padding-bottom: clamp(4rem, 8vh, 6rem);
}

.resource-card {
    position: relative;
    max-width: 56rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.resource-main-link {
    position: relative;
    padding-right: clamp(2.25rem, 4vw, 3.25rem);
    animation: linkPulse 1.45s ease-in-out infinite;
}

.resource-main-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: .15em;
    width: clamp(1.6rem, 3vw, 2.35rem);
    height: clamp(1.6rem, 3vw, 2.35rem);
    background: currentColor;
    clip-path: polygon(18% 0, 92% 52%, 58% 60%, 76% 100%, 58% 100%, 41% 63%, 18% 84%);
    transform: rotate(-12deg);
}

@keyframes linkPulse {
    0%, 100% { color: var(--white); opacity: 1; }
    50% { color: var(--highlight); opacity: .72; }
}

@media (min-width: 1200px) {
    h2.display-title,
    .display-title {
        font-size: clamp(3.1rem, 7.8vw, 7.2rem);
    }

    .display-title--intro {
        font-size: clamp(4.1rem, 11vw, 10rem);
    }

    .lead-copy {
        font-size: clamp(1.8rem, 4.35vw, 4.5rem);
    }

    .stat-block strong {
        font-size: clamp(3.8rem, 10.2vw, 9rem);
    }

    .keyword-grid strong {
        font-size: clamp(1.15rem, 1.65vw, 1.85rem);
    }
}

@media (max-width: 767.98px) {
    .scroll-indicator {
        bottom: clamp(3rem, 8vh, 4.5rem);
    }

    .resource-card {
        margin-top: clamp(1.75rem, 8vw, 2.75rem);
    }
}

/* ==========================================================
   CUSTOM SLIDE TIMELINE ANIMATIONS
========================================================== */
.slide-intro .intro-image {
    opacity: .72;
    transition: opacity 1200ms ease, transform 2400ms cubic-bezier(.16, 1, .3, 1);
}

.slide-intro.is-active-slide .intro-image {
    opacity: 1;
    transform: scale(1.045);
}

.js body.has-custom-reveals .reveal-item {
    opacity: 0;
    transition-property: opacity, transform, filter;
    transition-duration: 760ms;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform-origin: center;
    filter: blur(.35rem);
}

.js body.has-custom-reveals .reveal-up {
    transform: translate3d(0, 2.6rem, 0) scale(.985);
}

.js body.has-custom-reveals .reveal-down {
    transform: translate3d(0, -2.2rem, 0) scale(.985);
}

.js body.has-custom-reveals .reveal-left {
    transform: translate3d(2.8rem, 0, 0) scale(.985);
}

.js body.has-custom-reveals .reveal-right {
    transform: translate3d(-2.8rem, 0, 0) scale(.985);
}

.js body.has-custom-reveals .reveal-zoom {
    transform: scale(.86);
}

.js body.has-custom-reveals .reveal-item.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.js body.has-custom-reveals .scroll-indicator.reveal-item {
    transition-duration: 620ms;
}

.js body.has-custom-reveals .logo-card.reveal-item,
.js body.has-custom-reveals .keyword-grid article.reveal-item {
    transition-duration: 700ms;
}

.resource-main-link {
    will-change: color, opacity, text-shadow, transform;
    animation: resourceLinkPulse 2.4s cubic-bezier(.16, 1, .3, 1) infinite;
}

@keyframes resourceLinkPulse {
    0%, 100% {
        color: var(--white);
        opacity: 1;
        text-shadow: 0 0 0 color-mix(in srgb, var(--highlight) 0%, transparent);
        transform: scale(1);
    }
    45% {
        color: var(--highlight);
        opacity: .95;
        text-shadow: 0 0 1.15rem color-mix(in srgb, var(--highlight) 45%, transparent);
        transform: scale(1.015);
    }
    62% {
        color: var(--highlight);
        transform: scale(.995);
    }
}

.shape {
    animation: shapeBreath 18s ease-in-out infinite alternate;
}

.shape-2 { animation-duration: 23s; }
.shape-3 { animation-duration: 27s; }
.shape-4 { animation-duration: 21s; }
.shape-5 { animation-duration: 25s; }

@keyframes shapeBreath {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.65); }
}

@media (max-width: 767.98px) {
    html {
        scroll-behavior: auto;
    }

    .slide {
        scroll-snap-stop: normal;
    }

    .js body.has-custom-reveals .reveal-item {
        transition-duration: 480ms;
        filter: blur(.12rem);
    }

    .js body.has-custom-reveals .reveal-up {
        transform: translate3d(0, 1.45rem, 0) scale(.992);
    }

    .js body.has-custom-reveals .reveal-down {
        transform: translate3d(0, -1.2rem, 0) scale(.992);
    }

    .js body.has-custom-reveals .reveal-left {
        transform: translate3d(1.35rem, 0, 0) scale(.992);
    }

    .js body.has-custom-reveals .reveal-right {
        transform: translate3d(-1.35rem, 0, 0) scale(.992);
    }

    .js body.has-custom-reveals .reveal-zoom {
        transform: scale(.94);
    }


    .intro-image img {
        object-position: center top;
    }

    .slide-intro .intro-image {
        transform: scale(1.015);
        transition-duration: 700ms, 1200ms;
    }

    .slide-intro.is-active-slide .intro-image {
        transform: scale(1.035);
    }

    .resource-main-link {
        animation-duration: 2.05s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js body.has-custom-reveals .reveal-item {
        transition-duration: 360ms !important;
        transition-timing-function: ease-out !important;
        filter: none !important;
    }

    .js body.has-custom-reveals .reveal-up {
        transform: translate3d(0, .8rem, 0) scale(.995) !important;
    }

    .js body.has-custom-reveals .reveal-down {
        transform: translate3d(0, -.8rem, 0) scale(.995) !important;
    }

    .js body.has-custom-reveals .reveal-left {
        transform: translate3d(.85rem, 0, 0) scale(.995) !important;
    }

    .js body.has-custom-reveals .reveal-right {
        transform: translate3d(-.85rem, 0, 0) scale(.995) !important;
    }

    .js body.has-custom-reveals .reveal-zoom {
        transform: scale(.975) !important;
    }

    .js body.has-custom-reveals .reveal-item.is-revealed {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) scale(1) !important;
    }
}



/* ==========================================================
   SURVEY SLIDE
========================================================== */

.slide-survey .display-title {
    max-width: 54rem;
}

.survey-card {
    max-width: 46rem;
    padding: clamp(1.5rem, 3vw, 3rem);
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.035);
    backdrop-filter: blur(8px);
}

.survey-lead {
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    color: var(--highlight);
}

.survey-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.survey-meta span {
    display: flex;
    align-items: center;
    min-height: 4.75rem;
    padding: .85rem;
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    font-family: var(--font-main);
    font-size: clamp(.9rem, 1vw, 1.05rem);
    letter-spacing: -.03em;
    line-height: .95;
    text-transform: uppercase;
}

.survey-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(1.75rem, 3vw, 2.75rem);
    padding: 1rem 1.35rem .95rem;
    border: 2px solid var(--highlight);
    color: var(--black);
    background: var(--highlight);
    font-family: var(--font-main);
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    letter-spacing: -.04em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.survey-button:hover {
    color: var(--highlight);
    background: transparent;
    transform: translateY(-.12rem);
}

@media (max-width: 991.98px) {
    .survey-card {
        margin-top: clamp(2rem, 6vw, 3rem);
    }

    .survey-meta {
        grid-template-columns: 1fr;
    }

    .survey-meta span {
        min-height: auto;
    }
}




