:root {
    color-scheme: light;
    --blue: #1488bd;
    --blue-dark: #075276;
    --blue-deep: #082f46;
    --gold: #f3c748;
    --cream: #f6f0e6;
    --paper: #fffdf8;
    --ink: #14232c;
    --ink-soft: #50616a;
    --line: rgb(20 35 44 / 14%);
    --page: min(100% - 2rem, 94rem);
    --radius: clamp(1.25rem, 2.7vw, 2.75rem);
    --motion-fast: 180ms;
    --motion-medium: 420ms;
    --motion-scene: 820ms;
    --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-scene: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-emphasized: cubic-bezier(0.16, 1, 0.3, 1);
    --scene-header-offset: 5.4rem;
    --scene-top-gap: 2rem;
    --section-space: clamp(10rem, 20vw, 20rem);
    --section-bridge: clamp(6rem, 10vw, 10rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.4rem;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
}

body {
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgb(255 255 255 / 34%) 1px, transparent 1px) 0 0 / 5rem 5rem,
        #e7e3dc;
}

img {
    display: block;
    max-width: 100%;
}

a { color: inherit; }

a:focus-visible {
    outline: 3px solid #e46627;
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #fff;
    background: var(--blue-deep);
    transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 2px solid rgb(20 35 44 / 10%);
    background: rgb(0 44 75 / 90%);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(0.8rem, 2vw, 2.25rem);
    width: 100%;
    min-height: 5.15rem;
    margin-inline: auto;
    padding-inline: clamp(2rem, 5vw, 5.5rem);
}

.brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand img {
    width: clamp(11rem, 15vw, 15rem);
    height: auto;
}

.brand span {
    padding: 0.38rem 0.55rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.variant-nav {
    display: flex;
    justify-content: center;
    gap: 0.15rem;
}

.variant-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.63rem 0.72rem;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease, background-color 160ms ease;
}

.variant-nav a span {
    color: var(--blue-dark);
    font-variant-numeric: tabular-nums;
}

.variant-nav a:hover,
.variant-nav a[aria-current="true"] {
    color: var(--ink);
    background: #ece7dc;
}

.header-actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    min-width: 0;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    padding: 0.66rem 2.35rem;
    color: var(--paper);
    border: 1px solid var(--paper);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.header-button--primary {
    border-color: var(--paper);
    color: var(--blue-dark);
    background: var(--paper);
}

.header-button--primary:hover {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--blue);
}

.header-button--quiet:hover {
    border-color: var(--paper);
    background: var(--blue-dark);
    color: var(--paper);
}

main { overflow: clip; }



.placeholder-page main {
    width: min(100% - 2rem, 75rem);
    margin-inline: auto;
    padding-block: clamp(3rem, 8vw, 7rem);
}

.placeholder-page h1 {
    margin: 0 0 1rem;
    color: var(--blue-deep);
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.placeholder-page p {
    color: var(--ink-soft);
    font-size: 1.1rem;
}

.placeholder-page a {
    color: var(--blue-dark);
    font-weight: 800;
}

.variant-section {
    padding: clamp(1.25rem, 3vw, 2.75rem) 0 clamp(4rem, 8vw, 8rem);
    scroll-margin-top: 0.5rem;
}

.variant-section + .variant-section { border-top: 1px solid rgb(20 35 44 / 10%); }

.variant-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem 2rem;
    width: var(--page);
    margin: 0 auto clamp(1rem, 2vw, 1.5rem);
}

.variant-meta p {
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(0.74rem, 1vw, 0.88rem);
}

.variant-meta p:first-child {
    color: var(--ink);
    font-weight: 850;
}

.variant-meta p:first-child span {
    margin-right: 0.65rem;
    color: var(--blue-dark);
    font-size: 0.75em;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: clamp(40rem, 56vw, 50rem);
    margin-inline: auto;
    overflow: hidden;
    box-shadow: 0 28px 80px rgb(20 35 44 / 14%);
}

.hero h2,
.hero p { margin-top: 0; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
    color: var(--blue-dark);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.8rem;
    height: 2px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
}

.hero-copy {
    max-width: 39rem;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.62;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 3.4rem;
    padding: 0.9rem 1.2rem;
    border-radius: 0.55rem;
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button span,
.text-link span {
    font-size: 1.2em;
    transition: transform 160ms ease;
}

.button:hover,
.text-link:hover { transform: translateY(-2px); }
.button:hover span,
.text-link:hover span { transform: translate(3px, -2px); }

.button--primary {
    color: #fff;
    background: var(--blue-dark);
    box-shadow: 0 13px 30px rgb(7 82 118 / 23%);
}

.button--primary:hover { background: var(--blue-deep); }

.button--gold {
    color: var(--blue-deep);
    background: var(--gold);
    box-shadow: 0 13px 30px rgb(0 0 0 / 20%);
}

.button--gold:hover { background: #ffda65; }

.text-link {
    max-width: 100%;
    border: 1px solid currentColor;
    color: var(--blue-dark);
    background: transparent;
}

.text-link:hover { color: var(--ink); }

.text-link--light { border-color: #fff; color: #fff; }
.text-link--light:hover { color: var(--gold); }

.eyebrow--light { color: #d9eef6; }
.eyebrow--gold { color: var(--gold); }

/* 01 — Editorial Connection */

.hero-editorial {
    container: hero / inline-size;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
    background: linear-gradient(135deg, #f8e8df 0 46%, #f3efe7 46% 100%);
}

.hero-editorial::before {
    position: absolute;
    top: -24%;
    left: -17%;
    z-index: 0;
    width: clamp(34rem, 53vw, 53rem);
    aspect-ratio: 1.16;
    border-radius: 58% 42% 62% 38% / 42% 58% 44% 56%;
    background: rgb(255 255 255 / 74%);
    content: "";
}

.hero-editorial::after {
    position: absolute;
    inset: 1rem;
    z-index: 2;
    border: 1px solid rgb(20 35 44 / 11%);
    border-radius: calc(var(--radius) - 0.55rem);
    pointer-events: none;
    content: "";
}

.hero-editorial__ghost {
    position: absolute;
    top: 50%;
    left: 46%;
    z-index: 0;
    margin: 0;
    color: transparent;
    font-size: clamp(7rem, 14vw, 14rem);
    font-weight: 950;
    letter-spacing: -0.08em;
    line-height: 0.75;
    -webkit-text-stroke: 1px rgb(7 82 118 / 12%);
    transform: translate(-50%, -52%) rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
}

.hero-editorial__content {
    position: relative;
    z-index: 4;
    align-self: center;
    padding: clamp(2.5rem, 3.4vw, 3.75rem) 0 clamp(1.8rem, 2.5vw, 2.5rem) clamp(2rem, 5vw, 5.5rem);
}

.hero-editorial__details { max-width: 34rem; }

.section-shell > *,
.hero-editorial > *,
.hero-editorial__content > *,
.footer-links > * { min-width: 0; }

.hero-editorial :is(h1, h2) {
    max-width: 10.5ch;
    margin: 0 0 clamp(1.25rem, 2vw, 1.8rem);
    font-size: clamp(3.15rem, 5.7vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.072em;
    line-height: 0.84;
}

.hero-editorial :is(h1, h2) span {
    display: block;
    margin-top: 0.18em;
    color: var(--blue-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.69em;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.hero-editorial__content .hero-copy { max-width: 34rem; }

.hero-editorial__visual {
    position: relative;
    z-index: 3;
    align-self: end;
    height: min(37rem, 37vw);
    min-height: 31rem;
    margin: clamp(1rem, 3vw, 3rem) -2rem 0 -3rem;
}

.hero-editorial__visual picture,
.hero-editorial__visual img {
    width: 100%;
    height: 100%;
}

.hero-editorial__visual img {
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 25px 25px rgb(20 35 44 / 16%));
}

.hero-editorial__rail {
    position: relative;
    z-index: 5;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.5rem);
    padding: 1.2rem clamp(2rem, 5vw, 5.5rem) 2.35rem;
    border: 1px solid rgb(20 35 44 / 9%);
    color: var(--ink);
    background: rgb(255 253 248 / 90%);
    box-shadow: 0 15px 40px rgb(55 43 35 / 7%);
    backdrop-filter: blur(12px);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.hero-stat + .hero-stat {
    padding-left: clamp(1rem, 2vw, 2rem);
    border-left: 1px solid var(--line);
}

.hero-stat svg {
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 auto;
    padding: 0.58rem;
    border-radius: 50%;
    color: var(--blue-dark);
    background: #e1f0f4;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.hero-stat p {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
    margin: 0;
}

.hero-stat strong {
    color: var(--blue-dark);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}

.hero-stat p > span {
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.3;
}

.scroll-cue {
    position: absolute;
    right: 2rem;
    bottom: calc(100% + 0.8rem);
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.45rem;
    border: 1px solid rgb(20 35 44 / 9%);
    border-radius: 999px;
    color: var(--blue-dark);
    background: rgb(255 253 248 / 90%);
    box-shadow: 0 12px 30px rgb(55 43 35 / 10%);
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.scroll-cue > span {
    max-width: 0;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
    color: var(--blue-dark);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1;
    opacity: 0;
    text-transform: uppercase;
    white-space: nowrap;
    transition: max-width 220ms ease, margin-right 220ms ease, opacity 160ms ease;
}

.scroll-cue svg {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.68rem;
    border: 1px solid rgb(7 82 118 / 25%);
    border-radius: 50%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 160ms ease, background-color 160ms ease;
}

.scroll-cue:hover svg {
    background: #e1f0f4;
}

.scroll-cue:hover > span,
.scroll-cue:focus-visible > span {
    max-width: 8rem;
    margin-right: 0.55rem;
    margin-left: 0.55rem;
    opacity: 1;
}

.hero-rail-date {
    position: absolute;
    right: clamp(2rem, 5vw, 5.5rem);
    bottom: 0.55rem;
    padding: 0;
    color: var(--ink-soft);
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: right;
}

/* 02 — Living Canvas */

.hero-canvas {
    display: grid;
    grid-template-columns: minmax(27rem, 1.12fr) minmax(22rem, 0.88fr);
    align-items: center;
    padding: clamp(2rem, 4vw, 4.5rem);
    background:
        radial-gradient(circle at 8% 16%, rgb(255 255 255 / 80%) 0 5%, transparent 5.2%),
        linear-gradient(135deg, #f8e8df 0 46%, #f3efe7 46% 100%);
}

.hero-canvas::after {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgb(20 35 44 / 12%);
    border-radius: calc(var(--radius) - 0.55rem);
    pointer-events: none;
    content: "";
}

.hero-canvas__number {
    position: absolute;
    top: -0.15em;
    right: 0.04em;
    z-index: 0;
    margin: 0;
    color: rgb(255 255 255 / 54%);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(10rem, 22vw, 23rem);
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.1em;
    line-height: 0.85;
    pointer-events: none;
}

.hero-canvas__visual {
    position: relative;
    z-index: 2;
    align-self: stretch;
    min-height: 37rem;
}

.hero-canvas__visual picture,
.hero-canvas__visual img {
    width: 100%;
    height: 100%;
}

.hero-canvas__visual img {
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 25px 25px rgb(81 56 43 / 12%));
}

.hero-canvas__orbit {
    position: absolute;
    top: 6%;
    left: 2%;
    z-index: 3;
    width: 8.2rem;
    height: 8.2rem;
    border: 1px solid rgb(20 35 44 / 25%);
    border-radius: 50%;
    color: var(--blue-dark);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 8.2rem;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transform: rotate(-14deg);
}

.hero-canvas__quote {
    position: absolute;
    right: 2%;
    bottom: 3%;
    z-index: 4;
    width: min(17rem, 48%);
    margin: 0;
    padding: 1.15rem 1.25rem;
    border-radius: 0 1.25rem 1.25rem 1.25rem;
    color: #fff;
    background: var(--blue-deep);
    box-shadow: 0 18px 45px rgb(20 35 44 / 20%);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.45;
}

.hero-canvas__quote span {
    float: left;
    margin: -0.15em 0.12em -0.3em 0;
    color: var(--gold);
    font-size: 3em;
    line-height: 1;
}

.hero-canvas__content {
    position: relative;
    z-index: 3;
    padding: clamp(1rem, 3vw, 3rem);
}

.hero-canvas h2 {
    max-width: 9ch;
    margin: 0 0 1.4rem;
    font-size: clamp(4rem, 6.5vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.78;
}

.hero-canvas h2 em {
    color: var(--blue-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.hero-canvas__trust {
    max-width: 30rem;
    margin: clamp(1.8rem, 3vw, 2.8rem) 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgb(20 35 44 / 16%);
    color: var(--ink-soft);
    font-size: 0.76rem;
    line-height: 1.5;
}

.hero-canvas__trust strong { color: var(--blue-dark); }

/* 03 — Bridge Split */

.hero-bridge {
    display: grid;
    grid-template-columns: minmax(24rem, 0.95fr) minmax(25rem, 1.05fr);
    grid-template-rows: 1fr auto;
    color: #fff;
    background: var(--blue-deep);
}

.hero-bridge__blue,
.hero-bridge__gold {
    position: absolute;
    inset-block: 0;
}

.hero-bridge__blue {
    left: 0;
    width: 66%;
    background:
        linear-gradient(135deg, rgb(255 255 255 / 4%) 25%, transparent 25%) 0 0 / 4rem 4rem,
        var(--blue-deep);
}

.hero-bridge__gold {
    right: 0;
    width: 34%;
    background: var(--gold);
}

.hero-bridge__word {
    position: absolute;
    top: 50%;
    right: -0.19em;
    z-index: 1;
    margin: 0;
    color: rgb(8 47 70 / 11%);
    font-size: clamp(5rem, 9.8vw, 10.5rem);
    font-weight: 950;
    letter-spacing: -0.08em;
    line-height: 0.75;
    transform: translateY(-50%) rotate(-90deg);
    white-space: nowrap;
}

.hero-bridge__content {
    position: relative;
    z-index: 4;
    align-self: center;
    padding: clamp(3rem, 5vw, 5.5rem) 0 clamp(2.5rem, 4vw, 4rem) clamp(2rem, 5vw, 5.5rem);
}

.hero-bridge h2 {
    max-width: 9ch;
    margin: 0 0 1.5rem;
    font-size: clamp(3.7rem, 6.4vw, 6.8rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.85;
}

.hero-bridge h2 span {
    display: block;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.hero-bridge .hero-copy {
    max-width: 32rem;
    color: rgb(255 255 255 / 76%);
}

.hero-bridge__visual {
    position: relative;
    z-index: 3;
    align-self: end;
    height: min(47rem, 53vw);
    min-height: 37rem;
    margin: 1rem -4rem 0 -7rem;
}

.hero-bridge__visual picture,
.hero-bridge__visual img {
    width: 100%;
    height: 100%;
}

.hero-bridge__visual img {
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 28px 25px rgb(0 0 0 / 24%));
}

.hero-bridge__proof {
    position: relative;
    z-index: 5;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
    margin: 0 1rem 1rem;
    padding: 1rem clamp(1rem, 3vw, 2rem);
    color: var(--ink);
    background: rgb(255 253 248 / 94%);
    backdrop-filter: blur(10px);
}

.hero-bridge__proof p {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin: 0;
}

.hero-bridge__proof strong {
    color: var(--blue-dark);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.hero-bridge__proof span,
.hero-bridge__proof small {
    color: var(--ink-soft);
    font-size: 0.68rem;
}

.hero-bridge__proof small { justify-self: end; }

/* 04 — Future Joy */

.hero-future {
    display: grid;
    grid-template-columns: minmax(24rem, 1fr) minmax(22rem, 0.82fr);
    grid-template-rows: 1fr auto;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 68% 22%, rgb(28 142 191 / 70%) 0 21%, transparent 21.2%),
        #241f46;
}

.hero-future__stripe {
    position: absolute;
    top: -20%;
    right: 18%;
    z-index: 0;
    width: 8rem;
    height: 145%;
    background: var(--gold);
    transform: rotate(10deg);
}

.hero-future__aside {
    position: absolute;
    top: 50%;
    right: 0.65rem;
    z-index: 4;
    margin: 0;
    color: rgb(255 255 255 / 58%);
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.22em;
    transform: translate(42%, -50%) rotate(90deg);
}

.hero-future__content {
    position: relative;
    z-index: 4;
    padding: clamp(3rem, 6vw, 6.5rem) 0 clamp(2.5rem, 4vw, 4rem) clamp(2rem, 6vw, 6.5rem);
}

.hero-future h2 {
    max-width: 9.5ch;
    margin: 0 0 1.5rem;
    font-size: clamp(3.6rem, 6.7vw, 7.2rem);
    font-weight: 900;
    letter-spacing: -0.078em;
    line-height: 0.82;
}

.hero-future h2 span {
    display: block;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.9;
}

.hero-future .hero-copy {
    max-width: 32rem;
    color: rgb(255 255 255 / 76%);
}

.hero-future__visual {
    position: relative;
    z-index: 3;
    align-self: end;
    height: min(47rem, 54vw);
    min-height: 37rem;
    margin: 1rem 1.5rem 0 -3rem;
}

.hero-future__visual::before {
    position: absolute;
    right: 2%;
    bottom: 8%;
    left: 8%;
    z-index: -1;
    height: 70%;
    border: 2px solid rgb(255 255 255 / 22%);
    border-radius: 50% 50% 1rem 1rem;
    content: "";
}

.hero-future__visual picture,
.hero-future__visual img {
    width: 100%;
    height: 100%;
}

.hero-future__visual img {
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 26px 24px rgb(0 0 0 / 28%));
}

.hero-future__sticker {
    position: absolute;
    top: 17%;
    right: -0.5rem;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 8.5rem;
    aspect-ratio: 1;
    margin: 0;
    border: 2px solid var(--blue-deep);
    border-radius: 50%;
    color: var(--blue-deep);
    background: var(--gold);
    box-shadow: 0.55rem 0.55rem 0 var(--blue);
    font-size: 0.83rem;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(8deg);
}

.hero-future__footer {
    position: relative;
    z-index: 5;
    grid-column: 1 / -1;
    margin: 0 1rem 1rem;
    padding: 1rem 1.25rem;
    color: var(--blue-deep);
    background: var(--gold);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.hero-future__footer span {
    margin-inline: 0.8rem;
    color: var(--blue-dark);
}

@media (max-width: 74rem) {
    .brand span { display: none; }
    .nav-shell { padding-inline: 3rem; }

    .hero-editorial {
        grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
    }

    .hero-editorial__content { padding-left: 3rem; }
    .hero-editorial__visual { margin-left: -2rem; }

    .hero-editorial__rail { gap: 0; padding-inline: 3rem; }
    .hero-rail-date { right: 3rem; }

    .hero-stat { gap: 0.55rem; }

    .hero-stat svg {
        width: 2.3rem;
        height: 2.3rem;
        padding: 0.5rem;
    }

    .hero-stat strong { font-size: 1.3rem; }
    .hero-stat p > span { font-size: 0.62rem; }

    .hero-canvas {
        grid-template-columns: minmax(23rem, 1fr) minmax(20rem, 0.9fr);
        padding-inline: 2rem;
    }

    .hero-canvas__content { padding-inline: 1rem; }

    .hero-bridge__content,
    .hero-future__content { padding-left: 3rem; }

    .hero-bridge__visual { margin-left: -5rem; }
    .hero-future__visual { margin-left: -2rem; }
}

@media (max-width: 60rem) {
    .nav-shell {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.5rem 1rem;
        padding-inline: 3rem;
        padding-block: 0.65rem;
    }

    .header-actions { grid-column: 2; }

    .variant-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        order: 3;
        overflow-x: auto;
        padding-bottom: 0.1rem;
        scrollbar-width: none;
    }

    .variant-nav::-webkit-scrollbar { display: none; }

    .hero-editorial {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto auto;
    }

    .hero-editorial__content { display: contents; }

    .hero-editorial__intro {
        position: relative;
        z-index: 4;
        grid-row: 1;
        padding: 3rem 3rem 0;
    }

    .hero-editorial__details {
        position: relative;
        z-index: 4;
        grid-row: 3;
        max-width: none;
        padding: 0 3rem 3rem;
    }

    .hero-editorial :is(h1, h2) { max-width: 12ch; }

    .hero-editorial__visual {
        grid-row: 2;
        width: min(45rem, 94%);
        height: min(35rem, 68vw);
        min-height: 29rem;
        margin: -1.5rem auto -1rem;
    }

    .hero-editorial__ghost {
        top: 46%;
        left: 7%;
        font-size: clamp(6rem, 18vw, 10rem);
        transform: translateY(-50%) rotate(-90deg);
        transform-origin: left center;
    }

    .hero-editorial__rail { grid-row: 4; }

    .hero-editorial__rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .hero-stat:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .hero-stat:nth-child(n + 3) {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--line);
    }

    .scroll-cue {
        position: static;
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 0.85rem;
    }

    .hero-canvas {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

    .hero-canvas__content {
        grid-row: 1;
        padding: 0;
    }

    .hero-canvas h2 { max-width: 12ch; }

    .hero-canvas__visual {
        grid-row: 2;
        width: min(48rem, 100%);
        min-height: 35rem;
        margin: -1rem auto 0;
    }

    .hero-canvas__number {
        top: auto;
        right: 2%;
        bottom: 0;
    }

    .hero-bridge,
    .hero-future {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .hero-bridge__blue {
        width: 100%;
        height: 56%;
    }

    .hero-bridge__gold {
        top: auto;
        width: 100%;
        height: 48%;
    }

    .hero-bridge__content,
    .hero-future__content {
        padding: 3rem 3rem 0;
    }

    .hero-bridge h2,
    .hero-future h2 { max-width: 11ch; }

    .hero-bridge__visual {
        grid-row: 2;
        width: min(48rem, 108%);
        height: min(44rem, 78vw);
        min-height: 33rem;
        margin: -1rem -4% 0;
    }

    .hero-bridge__proof { grid-row: 3; }

    .hero-bridge__word {
        top: auto;
        right: 0;
        bottom: 17%;
        transform: rotate(-90deg);
        transform-origin: right bottom;
    }

    .hero-future__visual {
        grid-row: 2;
        width: min(40rem, 94%);
        height: min(46rem, 85vw);
        min-height: 36rem;
        margin: -1rem auto 0;
    }

    .hero-future__stripe {
        top: auto;
        right: 12%;
        bottom: 0;
        height: 62%;
    }

    .hero-future__footer { grid-row: 3; }
}

@media (max-width: 47.99rem) {
    :root { --page: min(100% - 1rem, 94rem); }

    html { scroll-padding-top: 5.4rem; }
    body { background: #e7e3dc; }

    .nav-shell { padding-inline: clamp(12px, 4vw, 20px); }

    .brand img { width: clamp(128px, 34vw, 156px); }

    .header-actions { gap: 0.3rem; }

    .header-button {
        min-height: 2.4rem;
        padding: 0.58rem 0.82rem;
        font-size: 0.7rem;
    }

    .variant-nav a {
        padding: 0.5rem 0.36rem;
        font-size: 0.69rem;
    }

    .variant-section {
        padding-top: 1rem;
        padding-bottom: 4rem;
    }

    .variant-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.3rem;
        padding-inline: 0.25rem;
    }

    .variant-meta p:last-child { display: none; }

    .hero {
        min-height: 0;
        border-radius: 1.2rem;
    }

    .hero::after { inset: 0.6rem; }

    .hero-copy {
        font-size: 1rem;
        line-height: 1.56;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button,
    .text-link { width: 100%; }

    .hero-editorial {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
    }

    .hero-editorial::before {
        top: -3.5rem;
        left: -16rem;
        width: 36rem;
    }

    .hero-editorial__intro { display: contents; }

    .hero-editorial :is(h1, h2) {
        position: relative;
        z-index: 4;
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        width: 76%;
        max-width: 15rem;
        margin: 0;
        padding: 2.25rem 0 2.6rem 1.25rem;
        font-size: clamp(2.55rem, 12.6vw, 3.25rem);
        line-height: 0.86;
        text-shadow: 0 1px 1px rgb(255 253 248 / 70%), 0 0 16px rgb(255 253 248 / 58%);
    }

    .hero-editorial :is(h1, h2) span {
        font-size: 0.66em;
        line-height: 1;
    }

    .hero-editorial__visual {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        justify-self: end;
        width: 150%;
        height: clamp(18rem, 82vw, 21rem);
        min-height: 0;
        margin: -0.75rem -55% -1.2rem 0;
    }

    .hero-editorial__ghost { display: none; }

    .hero-editorial__details {
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 60px 0 10px 0.7rem;
        padding: 1.2rem 1.2rem 1.4rem;
        border: 1px solid rgb(20 35 44 / 9%);
        border-radius: 1rem;
        background: rgb(255 253 248 / 93%);
        box-shadow: 0 18px 42px rgb(55 43 35 / 10%);
        backdrop-filter: blur(10px);
    }

    .hero-editorial__rail {
        grid-column: 1 / -1;
        grid-row: 3;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem 0;
        margin: 0;
        padding: 1rem 1.25rem;
    }

    .hero-stat {
        align-items: flex-start;
        gap: 0.55rem;
    }

    .hero-stat + .hero-stat { padding-left: 0.75rem; }

    .hero-stat svg {
        width: 2.1rem;
        height: 2.1rem;
        padding: 0.45rem;
    }

    .hero-stat strong { font-size: 1.25rem; }
    .hero-stat p > span { font-size: 0.59rem; }

    .scroll-cue {
        grid-column: 1 / -1;
        justify-content: center;
        justify-self: stretch;
        width: max-content;
        margin: 0.75rem auto 0;
        padding: 0.35rem;
        border: 0;
        border-radius: 50%;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero-rail-date {
        position: static;
        grid-column: 1 / -1;
        justify-self: end;
        margin-top: 0.35rem;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .hero-canvas { padding: 2.3rem 1.25rem 0.75rem; }

    .hero-canvas h2 {
        font-size: clamp(3rem, 13.2vw, 4.6rem);
        line-height: 0.8;
    }

    .hero-canvas__visual {
        width: 118%;
        min-height: min(30rem, 108vw);
        margin: -0.5rem -9% 0;
    }

    .hero-canvas__orbit {
        top: 8%;
        left: 8%;
        width: 6.4rem;
        height: 6.4rem;
        font-size: 0.47rem;
        line-height: 6.4rem;
    }

    .hero-canvas__quote {
        right: 7%;
        bottom: 0;
        width: 14rem;
        font-size: 0.8rem;
    }

    .hero-canvas__trust { margin-bottom: 0; }

    .hero-bridge__content,
    .hero-future__content { padding: 2.3rem 1.25rem 0; }

    .hero-bridge h2,
    .hero-future h2 {
        font-size: clamp(3.15rem, 15.6vw, 5rem);
        line-height: 0.85;
    }

    .hero-future h2 { font-size: clamp(2.7rem, 12.3vw, 4rem); }

    .hero-bridge__blue { height: 58%; }
    .hero-bridge__gold { height: 46%; }

    .hero-bridge__visual {
        width: 124%;
        height: min(34rem, 119vw);
        min-height: 26rem;
        margin: 0 -12%;
    }

    .hero-bridge__proof {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin: 0 0.6rem 0.6rem;
        padding: 0.9rem;
    }

    .hero-bridge__proof p {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.1rem;
    }

    .hero-bridge__proof small { display: none; }

    .hero-bridge__word {
        bottom: 14%;
        font-size: 5.3rem;
    }

    .hero-future__visual {
        width: 104%;
        height: min(37rem, 132vw);
        min-height: 30rem;
        margin: 0 -2%;
    }

    .hero-future__sticker {
        top: 16%;
        right: 3%;
        width: 6.7rem;
        font-size: 0.68rem;
    }

    .hero-future__stripe {
        right: 10%;
        width: 5rem;
    }

    .hero-future__aside { display: none; }

    .hero-future__footer {
        margin: 0 0.6rem 0.6rem;
        padding-inline: 0.75rem;
        font-size: 0.57rem;
        line-height: 1.5;
    }

    .hero-future__footer span { margin-inline: 0.25rem; }
}

@media (max-width: 22rem) {
    .brand img { width: 115.2px; }

    .header-button {
        padding-inline: 0.55rem;
        font-size: 0.65rem;
    }

    .hero-editorial :is(h1, h2) {
        width: 78%;
        font-size: 2.35rem;
    }

    .hero-editorial__visual { height: 17rem; }

    .hero-canvas h2,
    .hero-bridge h2,
    .hero-future h2 { font-size: 2.95rem; }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-editorial::before {
        animation: editorial-blob 30s ease-in-out infinite alternate;
    }

    .hero-editorial__visual img {
        animation: editorial-drift 36s ease-in-out infinite;
    }

    .hero-canvas__visual img,
    .hero-bridge__visual img,
    .hero-future__visual img { animation: editorial-breathe 9s ease-in-out infinite; }

    @keyframes editorial-blob {
        0% {
            border-radius: 58% 42% 62% 38% / 42% 58% 44% 56%;
            transform: translate3d(0, 0, 0) scale(1);
        }
        50% {
            border-radius: 48% 52% 43% 57% / 55% 45% 60% 40%;
            transform: translate3d(0.45rem, 0.2rem, 0) scale(1.025);
        }
        100% {
            border-radius: 63% 37% 52% 48% / 47% 62% 38% 53%;
            transform: translate3d(-0.25rem, 0.45rem, 0) scale(0.985);
        }
    }

    @keyframes editorial-drift {
        0%, 100% { transform: translate3d(-0.06rem, 0.03rem, 0); }
        50% { transform: translate3d(0.08rem, -0.04rem, 0); }
    }

    @keyframes editorial-breathe {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-0.35rem); }
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Complete landing page */

.primary-nav {
    display: flex;
    justify-content: center;
    gap: clamp(0.15rem, 0.6vw, 0.75rem);
}

.primary-nav a {
    position: relative;
    padding: 0.75rem 0.55rem;
    color: var(--ink-soft);
    font-size: 0.77rem;
    font-weight: 760;
    text-decoration: none;
}

.primary-nav a::after {
    position: absolute;
    right: 0.55rem;
    bottom: 0.45rem;
    left: 0.55rem;
    height: 2px;
    background: var(--blue);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section-shell {
    width: var(--page);
    margin-inline: auto;
}

.content-section {
    position: relative;
    padding-block: clamp(5.5rem, 10vw, 10rem);
    scroll-margin-top: 0;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1.1rem;
    color: var(--blue-dark);
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 1.8rem;
    height: 2px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
}

.section-kicker--light { color: #dff3f9; }

.content-section h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(3.25rem, 6.3vw, 6.4rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.86;
    text-wrap: balance;
}

.content-section h2 em,
.final-cta h2 em {
    color: var(--blue-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.72em;
    font-weight: 600;
    letter-spacing: -0.055em;
}

.section-heading > p:not(.section-kicker),
.process-heading > p,
.training-copy > p:not(.section-kicker),
.trust-copy > p:not(.section-kicker),
.faq-heading > p:not(.section-kicker),
.final-cta__copy > p:not(.section-kicker) {
    margin: clamp(1.5rem, 3vw, 2.3rem) 0 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.72;
    text-wrap: pretty;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 2rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid currentColor;
    color: var(--blue-dark);
    font-size: 0.82rem;
    font-weight: 850;
    text-decoration: none;
}

.inline-link span { transition: transform 160ms ease; }
.inline-link:hover span { transform: translate(0.2rem, -0.15rem); }

.organic-frame {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #d7e7eb;
    border-radius: clamp(1.2rem, 2.5vw, 2.4rem);
    box-shadow: 0 24px 58px rgb(20 35 44 / 14%);
}

.organic-frame picture,
.organic-frame img {
    width: 100%;
    height: 100%;
}

.organic-frame img {
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
    will-change: transform;
}

/* Concept */

.concept-section {
    padding-top: clamp(4rem, 7vw, 7rem);
    background: var(--paper);
}

.concept-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 8rem);
}

.section-heading--sticky {
    position: sticky;
    top: 8rem;
    padding-top: clamp(1rem, 5vw, 5rem);
}

.concept-section h2 { max-width: 9ch; }
.concept-section h2 em { display: block; }

.concept-visual { padding-top: clamp(1rem, 3vw, 3rem); }

.concept-visual .organic-frame {
    aspect-ratio: 1.34;
    min-height: 30rem;
}

.concept-visual img { object-position: 50% center; }

.image-stamp {
    position: absolute;
    right: 0;
    bottom: 4rem;
    z-index: 2;
    padding: 0.8rem 1.2rem;
    color: var(--blue-deep);
    background: var(--gold);
    font-size: clamp(0.62rem, 1vw, 0.78rem);
    font-weight: 900;
    letter-spacing: 0.18em;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

.pillars {
    display: grid;
    grid-template-columns: minmax(12rem, 0.3fr) minmax(0, 1.7fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: clamp(5rem, 9vw, 9rem);
    padding-top: clamp(2rem, 4vw, 3.5rem);
    border-top: 1px solid var(--line);
}

.pillars__intro h3 {
    margin: 0 0 0.7rem;
    color: var(--blue-deep);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    letter-spacing: -0.045em;
}

.pillars__intro p {
    max-width: 18rem;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.86rem;
    line-height: 1.55;
}

.pillar-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.55rem, 1vw, 0.9rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.pillar-list li {
    position: relative;
    display: flex;
    min-height: 14rem;
    flex-direction: column;
    padding: clamp(1rem, 1.8vw, 1.35rem);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: linear-gradient(155deg, #fffdf8 0 72%, #f0eade 72% 100%);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pillar-list li::after {
    position: absolute;
    right: -1.2rem;
    bottom: -1.2rem;
    width: 3.8rem;
    aspect-ratio: 1;
    border: 1px solid rgb(7 82 118 / 13%);
    border-radius: 50%;
    content: "";
}

.pillar-list li:hover {
    border-color: rgb(7 82 118 / 30%);
    box-shadow: 0 18px 36px rgb(20 35 44 / 9%);
    transform: translateY(-0.3rem);
}

.pillar-number {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid rgb(7 82 118 / 24%);
    border-radius: 50%;
    color: var(--blue-dark);
    background: #e4f0f3;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.pillar-list li:nth-child(even) .pillar-number {
    border-radius: 0.75rem;
    color: var(--blue-deep);
    background: #f2d97d;
}

.pillar-list li > div {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.pillar-list strong {
    font-size: clamp(0.88rem, 1.05vw, 1.02rem);
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.pillar-list small {
    margin-top: 0.45rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    line-height: 1.35;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-ready .pillar-list li:nth-child(1) { transition-delay: 40ms; }
    .reveal-ready .pillar-list li:nth-child(2) { transition-delay: 120ms; }
    .reveal-ready .pillar-list li:nth-child(3) { transition-delay: 200ms; }
    .reveal-ready .pillar-list li:nth-child(4) { transition-delay: 280ms; }
    .reveal-ready .pillar-list li:nth-child(5) { transition-delay: 360ms; }
}

/* Impact */

.impact-section {
    overflow: clip;
    color: #fff;
    background: var(--blue-deep);
    border-radius: 0;
    margin-top: -1px;
}

.impact-transition {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    height: clamp(4.5rem, 8vw, 8rem);
    background: linear-gradient(135deg, #f8e8df 0 46%, #f3efe7 46% 100%);
    clip-path: ellipse(78% 70% at 50% 0%);
    filter: drop-shadow(0 1rem 1.35rem rgb(3 32 48 / 16%));
    pointer-events: none;
}

.impact-section::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(145deg, rgb(20 136 189 / 26%), transparent 68%);
    content: "";
}

.impact-orbit {
    position: absolute;
    border: 1px solid rgb(255 255 255 / 11%);
    border-radius: 50%;
}

.impact-orbit--one {
    top: -15rem;
    right: -8rem;
    width: 42rem;
    height: 42rem;
}

.impact-orbit--two {
    top: -7rem;
    right: 0;
    width: 23rem;
    height: 23rem;
}

.impact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 0 clamp(2rem, 6vw, 7rem);
}

.impact-copy { position: relative; z-index: 2; }
.impact-copy h2 { max-width: 8ch; }
.impact-copy h2 em { display: block; color: var(--gold); }

.impact-copy > p:not(.section-kicker) {
    max-width: 35rem;
    margin: 2rem 0 0;
    color: #d9e8ee;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.7;
}

.impact-figure {
    position: relative;
    height: clamp(34rem, 48vw, 48rem);
    align-self: end;
    isolation: isolate;
}

.impact-blob,
.impact-figure__layer {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.impact-blob,
.impact-figure__clipped {
    clip-path: polygon(11% 42%, 73% 34%, 95% 46%, 90% 91%, 19% 96%, 5% 58%);
}

.impact-blob {
    z-index: 0;
    background: var(--gold);
    filter: drop-shadow(0 24px 30px rgb(0 0 0 / 16%));
}

.impact-figure__clipped { z-index: 1; }

.impact-figure__escape {
    z-index: 2;
    clip-path: inset(0 0 52% 0);
}

.impact-figure picture,
.impact-figure img {
    width: 100%;
    height: 100%;
}

.impact-figure img {
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 24px 30px rgb(0 0 0 / 22%));
    transform: translate3d(0, var(--parallax-y, 0), 0);
}

@media (prefers-reduced-motion: no-preference) {
    .impact-blob,
    .impact-figure__clipped {
        animation: impact-organic-morph 12s ease-in-out infinite alternate;
        will-change: clip-path;
    }

    @keyframes impact-organic-morph {
        0%, 100% { clip-path: polygon(11% 42%, 73% 34%, 95% 46%, 90% 91%, 19% 96%, 5% 58%); }
        50% { clip-path: polygon(8% 45%, 77% 31%, 96% 49%, 87% 94%, 16% 92%, 7% 54%); }
    }
}

.benefit-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgb(255 255 255 / 17%);
}

.benefit-grid article {
    min-height: 13rem;
    padding: clamp(1.5rem, 3vw, 2.7rem);
    border-right: 1px solid rgb(255 255 255 / 17%);
}

.benefit-grid article:last-child { border-right: 0; }
.benefit-grid article > span { color: var(--gold); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.15em; }
.benefit-grid h3 { margin: 1.25rem 0 0.75rem; font-size: clamp(1.15rem, 1.7vw, 1.5rem); letter-spacing: -0.035em; }
.benefit-grid p { margin: 0; color: #cfe1e8; font-size: 0.86rem; line-height: 1.65; }

/* Full-width encounter film */

.film-section {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: clamp(30rem, 56.25vw, 67.5rem);
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: var(--blue-deep);
}

.film-section::before,
.film-section::after {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 4;
    content: "";
    pointer-events: none;
}

.film-section::before {
    top: -1px;
    height: clamp(3.5rem, 7vw, 7rem);
    background: var(--blue-deep);
    clip-path: ellipse(76% 100% at 28% 0%);
}

.film-section::after {
    bottom: -1px;
    height: clamp(3.8rem, 8vw, 8rem);
    background: var(--paper);
    clip-path: ellipse(76% 100% at 72% 100%);
}

.film-section__video,
.film-section__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.film-section__video {
    z-index: 0;
    object-fit: cover;
    object-position: center;
}

.film-section__shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgb(5 32 47 / 86%) 0%, rgb(5 32 47 / 38%) 58%, rgb(5 32 47 / 14%) 100%),
        linear-gradient(0deg, rgb(5 32 47 / 66%) 0%, transparent 50%);
}

.film-section__content {
    position: relative;
    z-index: 2;
    padding-block: clamp(8rem, 17vw, 16rem) clamp(8rem, 13vw, 13rem);
}

.film-section__content h2 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(3.25rem, 6.3vw, 6.4rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.86;
    text-wrap: balance;
}

.film-section__content h2 em {
    display: block;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.film-section__content > p:not(.section-kicker) {
    max-width: 38rem;
    margin: 1.8rem 0 0;
    color: #e1edf1;
    font-size: clamp(0.96rem, 1.2vw, 1.1rem);
    line-height: 1.72;
    text-wrap: pretty;
}

.film-toggle {
    position: absolute;
    right: max(1rem, calc((100% - min(100% - 2rem, 94rem)) / 2));
    bottom: clamp(5.5rem, 9vw, 9rem);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 2.9rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgb(255 255 255 / 42%);
    border-radius: 999px;
    color: #fff;
    background: rgb(8 47 70 / 72%);
    box-shadow: 0 0.7rem 2rem rgb(0 0 0 / 18%);
    font: inherit;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(9px);
    cursor: pointer;
}

.film-toggle:hover { background: rgb(8 47 70 / 92%); }
.film-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.film-toggle__status {
    position: relative;
    width: 0.95rem;
    height: 0.95rem;
    flex: 0 0 auto;
}

.film-toggle__status::before {
    position: absolute;
    top: 0.07rem;
    left: 0.18rem;
    width: 0;
    height: 0;
    border-top: 0.41rem solid transparent;
    border-bottom: 0.41rem solid transparent;
    border-left: 0.62rem solid var(--gold);
    content: "";
}

.film-toggle[aria-pressed="true"] .film-toggle__status::before,
.film-toggle[aria-pressed="true"] .film-toggle__status::after {
    position: absolute;
    top: 0.08rem;
    width: 0.24rem;
    height: 0.8rem;
    border: 0;
    background: var(--gold);
    content: "";
}

.film-toggle[aria-pressed="true"] .film-toggle__status::before { left: 0.14rem; }
.film-toggle[aria-pressed="true"] .film-toggle__status::after { right: 0.14rem; }

.film-section.is-unavailable .film-toggle { display: none; }

/* Process */

.process-section { background: #efe9df; }

.process-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
    align-items: end;
    gap: clamp(2rem, 8vw, 9rem);
}

.process-heading h2 { max-width: 12ch; }
.process-heading h2 em { color: var(--blue-dark); }
.process-heading > p { margin-bottom: 0.4rem; }

.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
    align-items: start;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-top: clamp(4rem, 7vw, 7rem);
}

.process-photo {
    aspect-ratio: 0.91;
    min-height: 39rem;
    clip-path: polygon(0 0, calc(100% - 3.5rem) 0, 100% 8%, 100% 92%, calc(100% - 3.5rem) 100%, 0 100%);
}

.process-photo img { object-position: center; }

.photo-note {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem 2.7rem;
    color: #fff;
    background: linear-gradient(transparent, rgb(8 47 70 / 88%));
}

.photo-note span {
    margin-bottom: 0.45rem;
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.photo-note strong { max-width: 22rem; font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.14; }

.process-steps {
    position: relative;
    z-index: 2;
    margin: 0 0 0 -3.8rem;
    padding: 0 0 0 4.8rem;
    background: linear-gradient(90deg, transparent 0 3.1rem, #efe9df 3.1rem);
    list-style: none;
}

.process-steps li {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    align-items: center;
    gap: 1.4rem;
    padding: clamp(1.6rem, 3vw, 2.3rem) 0;
    border-top: 1px solid rgb(20 35 44 / 18%);
}

.process-steps li:last-child { border-bottom: 1px solid rgb(20 35 44 / 18%); }

.step-number {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    place-items: center;
    border: 1px solid rgb(7 82 118 / 25%);
    border-radius: 50%;
    color: var(--blue-dark);
    font-family: inherit;
    font-size: 0.92rem;
    font-style: normal;
    font-weight: 850;
    box-shadow: 0 0 0 0.55rem #efe9df;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.process-steps li:hover .step-number { color: #fff; background: var(--blue-dark); transform: rotate(-8deg); }
.process-steps h3 { margin: 0 0 0.55rem; color: var(--blue-deep); font-size: clamp(1.25rem, 2vw, 1.65rem); letter-spacing: -0.04em; }
.process-steps p { max-width: 37rem; margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.65; }

/* Training */

.training-section {
    overflow: clip;
    background: linear-gradient(135deg, #f7e6db 0 48%, #f4efe6 48% 100%);
}

.training-swoop {
    position: absolute;
    top: -26rem;
    left: -18rem;
    width: 58rem;
    height: 58rem;
    border: 1px solid rgb(7 82 118 / 10%);
    border-radius: 50%;
}

.training-swoop::after {
    position: absolute;
    inset: 8rem;
    border: 1px solid rgb(7 82 118 / 10%);
    border-radius: inherit;
    content: "";
}

.training-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
    align-items: center;
    gap: clamp(3rem, 9vw, 10rem);
}

.training-copy h2 { max-width: 10ch; }
.training-copy h2 em { color: var(--blue-dark); }

.check-list {
    display: grid;
    gap: 0.9rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
}

.check-list li::before {
    position: absolute;
    top: -0.05rem;
    left: 0;
    display: grid;
    width: 1.35rem;
    height: 1.35rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    content: "✓";
    font-size: 0.72rem;
}

.training-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 2.3rem;
}

.training-actions .inline-link { margin-top: 0; }

.handoff-note {
    display: block;
    margin-top: 1rem;
    color: var(--ink-soft);
    font-size: 0.68rem;
    line-height: 1.4;
}

.course-card {
    position: relative;
    padding: clamp(1.6rem, 4vw, 3rem);
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 1.4rem;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgb(20 136 189 / 50%), transparent 39%),
        var(--blue-deep);
    box-shadow: 0 35px 70px rgb(8 47 70 / 26%);
    transform: rotate(1.5deg);
    transition: transform 300ms ease;
}

.course-card:hover { transform: rotate(0); }

.course-card::after {
    position: absolute;
    inset: 0.7rem;
    border: 1px solid rgb(255 255 255 / 13%);
    border-radius: 0.95rem;
    pointer-events: none;
    content: "";
}

.course-card__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
    color: #cae7f2;
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.course-card__top span:last-child {
    padding: 0.36rem 0.62rem;
    border: 1px solid rgb(255 255 255 / 25%);
    border-radius: 999px;
}

.course-card__label { margin: 0 0 0.6rem; color: #cae7f2; font-size: 0.76rem; font-weight: 750; }
.course-card__price { display: flex; align-items: baseline; gap: 0.55rem; color: var(--gold); font-size: clamp(3.8rem, 6vw, 6rem); letter-spacing: -0.07em; line-height: 0.9; }
.course-card__price small { color: #fff; font-size: 0.2em; letter-spacing: 0; }

.course-card__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
    align-items: center;
    gap: clamp(1rem, 2vw, 1.75rem);
}

.course-card__summary .course-card__price { flex-wrap: wrap; row-gap: 0.65rem; }
.course-card__summary .course-card__price small { white-space: nowrap; }
.course-card__certificate {
    display: block;
    width: 100%;
    max-width: 11rem;
    height: auto;
    justify-self: center;
    background: #fff;
    box-shadow: 0 0.85rem 1.5rem rgb(0 0 0 / 30%), 0 0.15rem 0.4rem rgb(0 0 0 / 18%);
    transform: rotate(6deg);
}

.course-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.3rem;
    border-top: 1px solid rgb(255 255 255 / 17%);
    border-left: 1px solid rgb(255 255 255 / 17%);
}

.course-facts > div {
    display: flex;
    min-height: 5.6rem;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    border-right: 1px solid rgb(255 255 255 / 17%);
    border-bottom: 1px solid rgb(255 255 255 / 17%);
}

.course-facts strong { color: #fff; font-size: 1.05rem; hyphens: auto; }
.course-facts span { margin-top: 0.25rem; color: #bcd5df; font-size: 0.67rem; }
.course-facts__certificate { grid-column: 1 / -1; }

.course-card__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}
.course-card__actions > .button { width: auto; max-width: 100%; }

/* The homepage funding card adapts to its own column width. */
.course-card.course-card--funding {
    container: funding-card / inline-size;
    width: 100%;
    min-width: 0;
    padding: clamp(16px, 4vw, 48px);
}

.funding-scanner {
    padding: 1rem;
    border: 1px solid rgb(255 255 255 / 17%);
    border-radius: 0.8rem;
    background: linear-gradient(135deg, rgb(20 136 189 / 14%), rgb(8 47 70 / 35%));
}

.funding-scanner [hidden] { display: none !important; }
.funding-scanner__heading { display: flex; align-items: flex-start; gap: 0.85rem; }
.funding-scanner__heading > div { min-width: 0; }
.funding-scanner__marker { width: 2.8rem; height: 2.8rem; flex: 0 0 auto; color: var(--gold); }
.funding-scanner h3 { margin: 0; color: #fff; font-size: 1.18rem; line-height: 1.25; }
.funding-scanner__heading p { margin: 0.45rem 0 0; color: #d5e8f0; font-size: 0.83rem; line-height: 1.45; }

/* Both states occupy the same box, including during loading and errors. */
.funding-scanner__slot { position: relative; height: 7rem; margin-top: 1rem; }
.funding-scanner__form,
.funding-scanner__result { position: absolute; inset: 0; margin: 0; }
.funding-scanner__form { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: 1fr 1fr; gap: 0.5rem; }
.funding-scanner__input { position: relative; display: flex; min-width: 0; }
.funding-scanner__input svg {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    width: 1.35rem;
    height: 1.35rem;
    color: #50616a;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transform: translateY(-50%);
    pointer-events: none;
}
.funding-scanner input {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 0.65rem 0.55rem 0.65rem 2.5rem;
    border: 1px solid #afc6d1;
    border-radius: 0.45rem;
    color: var(--ink);
    background: #f6f9fc;
    font: inherit;
    font-size: 1rem;
}
.funding-scanner input::placeholder { color: #5a6c78; opacity: 1; }
.funding-scanner__form > .button {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 0.6rem;
    border: 0;
    font-family: inherit;
    font-size: 0.87rem;
    cursor: pointer;
}
.funding-scanner__result {
    --funding-result-border: #8dbccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.35rem 0.5rem 0.85rem;
    border: 1px solid var(--funding-result-border);
    border-radius: 0.45rem;
    background: rgb(255 255 255 / 7%);
}
.funding-scanner__result[data-state="success"] { --funding-result-border: #a8dfb5; background: rgb(168 223 181 / 10%); }
.funding-scanner__result[data-state="empty"] { --funding-result-border: #f0abab; background: rgb(240 171 171 / 10%); }
.funding-scanner__result p {
    min-width: 0;
    max-height: 100%;
    margin: 0;
    overflow-y: auto;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.35;
    scrollbar-width: thin;
}
.funding-scanner__reset {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    margin-left: auto;
    padding: 10px;
    border: 1px solid var(--funding-result-border);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    cursor: pointer;
}
.funding-scanner__reset:hover { background: rgb(255 255 255 / 14%); }
.funding-scanner__reset svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.funding-scanner input:focus-visible,
.funding-scanner button:focus-visible,
.funding-scanner__result p:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.funding-scanner__fallback { margin: 1rem 0 0; font-size: 0.83rem; line-height: 1.45; }

.course-card--funding .course-facts {
    margin-top: 1.1rem;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 17%);
    border-radius: 0.8rem;
}
.course-card--funding .course-facts > div {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    border: 0;
}
.course-card--funding .course-facts > div + div { border-top: 1px solid rgb(255 255 255 / 17%); }
.course-card--funding .course-facts > div:nth-child(2n + 3) { border-left: 1px solid rgb(255 255 255 / 17%); }
.course-card--funding .course-facts > div > div { min-width: 0; }
.course-card--funding .course-facts strong { display: block; font-size: 0.96rem; line-height: 1.25; }
.course-card--funding .course-facts span { display: block; font-size: 0.7rem; line-height: 1.4; }
.course-facts__icon {
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 auto;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.course-facts__icon .icon-accent { stroke: var(--gold); }
.course-card--funding .course-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 1rem;
    margin-top: 1.4rem;
}
.course-card--funding .course-card__price {
    display: flex;
    min-height: 3.4rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.15rem;
    font-size: 2.8rem;
    font-variant-numeric: tabular-nums;
}
.course-card__price-value { white-space: nowrap; }
.course-card--funding .course-card__price small { display: block; margin: 0; font-size: 0.75rem; line-height: 1; white-space: nowrap; }
.course-card--funding .course-card__actions > .button { width: 100%; min-width: 0; padding-inline: 0.65rem; font-size: 0.88rem; }

@container funding-card (min-width: 28rem) {
    .funding-scanner__slot { height: 3.75rem; }
    .funding-scanner__form { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); grid-template-rows: 1fr; }
    .course-card--funding .course-card__actions { grid-template-columns: minmax(0, 1fr) auto; }
    .course-card--funding .course-card__price { flex-direction: row; align-items: baseline; justify-content: flex-start; gap: 0.5rem; font-size: 3.8rem; }
    .course-card--funding .course-card__price small { font-size: 0.8rem; }
    .course-card--funding .course-card__actions > .button { padding-inline: 1.2rem; }
}

@container funding-card (max-width: 24rem) {
    .funding-scanner { padding: 0.85rem; }
    .funding-scanner__heading { gap: 0.65rem; }
    .funding-scanner__marker { width: 2.2rem; height: 2.2rem; }
    .funding-scanner h3 { font-size: 1.05rem; }
    .course-card--funding .course-facts { grid-template-columns: minmax(0, 1fr); }
    .course-card--funding .course-facts > div { min-height: 5.25rem; padding: 0.85rem; }
    .course-card--funding .course-facts > div:nth-child(2n + 3) { border-left: 0; }
    .course-card--funding .course-card__actions { gap: 0.65rem; }
    .course-card--funding .course-card__actions > .button { font-size: 0.8rem; }
}

/* Keep enlarged text usable when the card is only a few em wide. */
@container funding-card (max-width: 16rem) {
    .funding-scanner { padding: 12px; }
    .funding-scanner__heading { flex-direction: column; gap: 10px; }
    .funding-scanner__marker { width: 32px; height: 32px; }
    .funding-scanner__result { gap: 8px; padding: 8px; }
    .funding-scanner__input svg { left: 10px; width: 22px; height: 22px; }
    .funding-scanner input { padding-inline: 40px 8px; }
    .course-card--funding .course-facts > div { gap: 12px; padding: 12px; }
    .course-facts__icon { width: 32px; height: 32px; }
    .course-card--funding .course-card__actions { grid-template-columns: minmax(0, 1fr); }
}

.course-card__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.4rem;
}

.course-card__footer svg {
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 auto;
    padding: 0.55rem;
    border-radius: 50%;
    color: var(--gold);
    background: rgb(255 255 255 / 8%);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.course-card__footer p { display: flex; min-width: 0; flex-direction: column; margin: 0; }
.course-card__footer strong { font-size: 0.75rem; }
.course-card__footer span { margin-top: 0.25rem; color: #bcd5df; font-size: 0.64rem; }

.completion-note { position: relative; margin-top: clamp(4rem, 7vw, 7rem); }

.completion-note > div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    max-width: 70rem;
    margin-inline: auto;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgb(7 82 118 / 15%);
    border-radius: 1rem;
    background: rgb(255 253 248 / 68%);
    backdrop-filter: blur(10px);
}

.completion-note > div > span {
    display: grid;
    width: 3.4rem;
    height: 3.4rem;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-deep);
    background: var(--gold);
    font-size: 1.3rem;
}

.completion-note p { margin: 0; color: var(--ink-soft); font-size: 0.86rem; line-height: 1.6; }
.completion-note strong { color: var(--blue-deep); }

/* Trust */

.trust-section { overflow: clip; background: var(--paper); }

.trust-grid {
    display: grid;
    grid-template-columns: minmax(20rem, 0.82fr) minmax(28rem, 1.18fr);
    align-items: start;
    gap: clamp(3rem, 9vw, 10rem);
}

.trust-copy {
    position: sticky;
    top: 8rem;
}

.trust-copy h2 { max-width: 12ch; }
.trust-copy h2 em { color: var(--blue-dark); }

.portrait-collage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: clamp(0.7rem, 2vw, 1.5rem);
}

.portrait-card {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    margin: 0;
    padding: 0.55rem 0.55rem 1rem;
    border: 1px solid transparent;
    color: inherit;
    background: #eee8de;
    box-shadow: 0 24px 50px rgb(20 35 44 / 15%);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 240ms ease;
}

.portrait-card:nth-child(1) { transform: translateY(1.3rem) rotate(-3deg); }
.portrait-card:nth-child(2) { transform: translateY(-1.5rem) rotate(2deg); }
.portrait-card:nth-child(3) { transform: translateY(1rem) rotate(4deg); }
.portrait-card:hover { z-index: 2; transform: translateY(-0.6rem) rotate(0); }
.portrait-card[aria-expanded="true"] {
    z-index: 2;
    border-color: var(--blue);
    box-shadow: 0 26px 54px rgb(8 47 70 / 22%);
    transform: translateY(-0.6rem) rotate(0);
}

.portrait-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.03);
}

.portrait-card__caption { display: flex; flex-direction: column; padding: 0.85rem 0.35rem 0; }
.portrait-card__caption strong { color: var(--blue-deep); font-size: clamp(0.72rem, 1vw, 0.88rem); line-height: 1.2; }
.portrait-card__caption span { margin-top: 0.25rem; color: var(--ink-soft); font-size: 0.62rem; font-weight: 700; }

.advisor-teaser {
    display: -webkit-box;
    min-height: 3.8rem;
    margin: 0.85rem 0.35rem 0;
    overflow: hidden;
    color: var(--ink-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.7rem;
    font-style: italic;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.advisor-card__action {
    align-self: flex-start;
    margin: auto 0.35rem 0;
    padding-top: 0.85rem;
    border-bottom: 1px solid currentColor;
    color: var(--blue-dark);
    font-size: 0.65rem;
    font-weight: 850;
}

.advisor-statement {
    grid-column: 1 / -1;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.4rem, 3vw, 2.4rem);
    border-left: 4px solid var(--gold);
    border-radius: 0 1.2rem 1.2rem 0;
    background: #f3eee4;
    box-shadow: 0 20px 45px rgb(20 35 44 / 10%);
}

.advisor-statement[hidden] { display: none; }

@media (prefers-reduced-motion: no-preference) {
    .advisor-statement:not([hidden]) {
        animation: advisor-statement-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes advisor-statement-in {
        from { opacity: 0; transform: translate3d(0, 0.8rem, 0); }
        to { opacity: 1; transform: translate3d(0, 0, 0); }
    }
}

.advisor-statement__identity {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.advisor-statement__identity strong {
    color: var(--blue-deep);
    font-size: 1.05rem;
}

.advisor-statement__identity span {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.4;
}

.advisor-statement blockquote {
    margin: 1.25rem 0 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.96rem, 1.35vw, 1.12rem);
    line-height: 1.68;
}

.photo-credit {
    margin: 1rem 0 0;
    color: var(--ink-soft);
    font-size: 0.62rem;
    font-weight: 750;
}

/* Full-width quote */

.quote-section {
    position: relative;
    isolation: isolate;
    min-height: 46rem;
    padding-block: clamp(7rem, 11vw, 11rem);
    overflow: clip;
    color: #fff;
    background: var(--blue-deep);
    scroll-margin-top: 0;
}

.quote-section::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgb(8 47 70 / 91%) 0%, rgb(8 47 70 / 78%) 46%, rgb(8 47 70 / 38%) 100%),
        linear-gradient(0deg, rgb(8 47 70 / 45%), transparent 55%);
    content: "";
}

.quote-section::before {
    position: absolute;
    top: 0;
    right: -5%;
    left: -5%;
    z-index: 0;
    height: clamp(2.8rem, 5vw, 5rem);
    background: var(--paper);
    clip-path: ellipse(68% 100% at 32% 0%);
    content: "";
    pointer-events: none;
}

.quote-section__media,
.quote-section__media img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.quote-section__media img {
    object-fit: cover;
    object-position: center top;
}

.quote-section__bottom-curve {
    position: absolute;
    right: -5%;
    bottom: -1px;
    left: -5%;
    z-index: 0;
    height: clamp(3.5rem, 7vw, 7rem);
    background: var(--blue-deep);
    clip-path: ellipse(78% 100% at 50% 100%);
    pointer-events: none;
}

.quote-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(22rem, 1.08fr) minmax(20rem, 0.92fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 9rem);
}

.quote-section__quote {
    margin: 0;
    padding: clamp(1.6rem, 3.5vw, 3.2rem);
    border: 1px solid rgb(255 255 255 / 24%);
    border-left: 5px solid var(--gold);
    border-radius: 0 1.4rem 1.4rem 0;
    background: rgb(8 47 70 / 72%);
    box-shadow: 0 28px 70px rgb(0 0 0 / 24%);
    backdrop-filter: blur(10px);
}

.quote-section__quote p {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.7vw, 4rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.05;
    text-wrap: balance;
}

.quote-section__quote cite {
    display: block;
    margin-top: 1.6rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.5;
}

.quote-section__context {
    padding: clamp(1.4rem, 3vw, 2.4rem);
    border-radius: 1.2rem;
    color: #e2eef2;
    background: rgb(8 47 70 / 58%);
    backdrop-filter: blur(8px);
}

.quote-section__context p {
    margin: 0;
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    line-height: 1.75;
    text-wrap: pretty;
}

.quote-section__context p + p { margin-top: 1.2rem; }

/* Participant feedback */

.testimonials-section {
    overflow: hidden;
    background: var(--paper);
}

.testimonials-heading { max-width: 74rem; }
.testimonials-heading h2 { max-width: 11ch; }
.testimonials-heading h2 em { display: block; }

.testimonials-heading > p:not(.section-kicker) {
    max-width: 48rem;
    margin: 1.8rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(0.96rem, 1.2vw, 1.08rem);
    line-height: 1.7;
}

.testimonial-marquee {
    width: 100%;
    margin-top: clamp(3rem, 6vw, 5rem);
    overflow: hidden;
    outline-offset: -4px;
}

.testimonial-track {
    display: flex;
    width: max-content;
    animation: testimonial-marquee 58s linear infinite;
    will-change: transform;
}

.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track { animation-play-state: paused; }

.testimonial-group {
    display: flex;
    gap: 1rem;
    padding-right: 1rem;
}

.testimonial-card {
    display: flex;
    width: clamp(17.5rem, 27vw, 25rem);
    min-height: 17rem;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    padding: clamp(1.4rem, 2.4vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: #f4efe6;
    box-shadow: 0 18px 42px rgb(20 35 44 / 9%);
}

.testimonial-card blockquote {
    margin: 0;
    color: var(--blue-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.02rem, 1.4vw, 1.22rem);
    font-style: italic;
    line-height: 1.55;
}

.testimonial-card figcaption {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.testimonial-avatar {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue-dark);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.testimonial-card figcaption > span:last-child { display: flex; flex-direction: column; }
.testimonial-card figcaption strong { color: var(--ink); font-size: 0.72rem; }
.testimonial-card figcaption small { margin-top: 0.2rem; color: var(--ink-soft); font-size: 0.64rem; }

@keyframes testimonial-marquee {
    to { transform: translateX(-50%); }
}

/* Shaped section transitions */

.process-section::before,
.training-section::before,
.testimonials-section::before,
.faq-section::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
    height: clamp(2.6rem, 5vw, 5rem);
    content: "";
    pointer-events: none;
}

.process-section::before {
    background: var(--blue-deep);
    clip-path: polygon(0 0, 100% 0, 100% 16%, 72% 67%, 37% 24%, 0 76%);
}

.training-section::before {
    background: #efe9df;
    clip-path: ellipse(68% 100% at 34% 0%);
}

.testimonials-section::before {
    height: clamp(5rem, 9vw, 8.5rem);
    background: linear-gradient(135deg, #f7e6db 0 48%, #f4efe6 48% 100%);
    clip-path: ellipse(78% 100% at 34% 0%);
}

.faq-section::before {
    background: var(--paper);
    clip-path: ellipse(72% 100% at 67% 0%);
}

.process-section > .section-shell,
.training-section > .section-shell,
.testimonials-section > .section-shell,
.faq-section > .section-shell { position: relative; z-index: 1; }

/* FAQ */

.faq-section { background: #e7e3dc; }

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr);
    grid-template-areas: "heading list" "contact list";
    grid-template-rows: auto 1fr;
    align-items: start;
    column-gap: clamp(3rem, 8vw, 9rem);
}

.faq-heading { grid-area: heading; }
.faq-list { grid-area: list; }
.faq-grid > .faq-contact { grid-area: contact; }

.faq-heading { position: sticky; top: 8rem; }
.faq-heading h2 { max-width: 8ch; }
.faq-heading h2 em { display: block; color: var(--blue-dark); }

.faq-contact {
    display: flex;
    flex-direction: column;
    margin-top: 2.5rem;
    padding: 1.3rem 1.4rem;
    border-left: 3px solid var(--gold);
    background: rgb(255 253 248 / 62%);
}

.faq-contact h3 {
    margin: 0;
    color: var(--blue-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 3.6rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1;
}
.faq-contact > p { margin: 0.8rem 0 0.35rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.faq-contact a { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.45rem; color: var(--blue-deep); font-size: 1.1rem; font-weight: 850; text-decoration: none; }
.faq-contact a > span:last-child { min-width: 0; }
.faq-contact__icon { flex: 0 0 auto; font-size: 1.1rem; font-weight: 400; text-decoration: none; }
.faq-contact small { margin-top: 0.2rem; color: var(--ink-soft); font-size: 0.68rem; }

.faq-contact__team {
    display: flex;
    align-items: center;
    margin: 1rem 0 0.65rem;
    padding: 0;
    list-style: none;
}

.faq-contact__team li {
    flex: 0 0 min(5.25rem, calc((100% + 5rem) / 5));
    aspect-ratio: 1;
    overflow: hidden;
    border: 3px solid #f5f1e9;
    border-radius: 50%;
}
.faq-contact__team li + li { margin-left: -1.25rem; }
.faq-contact__team img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    /* Crop inside the supplied photographs' white borders. */
    transform: scale(1.1);
}

.team-placeholders {
    display: flex;
    align-items: center;
    margin: 1rem 0 0.65rem;
    padding-left: 0.3rem;
}

.team-placeholders span {
    display: grid;
    width: 3.4rem;
    height: 3.4rem;
    place-items: center;
    margin-left: -0.3rem;
    border: 3px solid #f1ece3;
    border-radius: 50%;
    color: var(--blue-deep);
    background: #d8e8ed;
    font-size: 0.48rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
}

.team-placeholders span:nth-child(2) { background: #f1dca1; }
.team-placeholders span:nth-child(3) { background: #e7d4ca; }

.faq-contact .faq-contact__mail {
    margin-top: 0.75rem;
    color: var(--blue-dark);

    font-weight: 750;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.faq-contact__mail > span:last-child {
    text-decoration: none;
    text-underline-offset: 0.18rem;
}

.faq-list { border-top: 1px solid rgb(20 35 44 / 20%); }
.faq-list details { border-bottom: 1px solid rgb(20 35 44 / 20%); }

.faq-list summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.4rem;
    align-items: center;
    gap: 1rem;
    min-height: 5.7rem;
    padding: 1rem 0;
    color: var(--blue-deep);
    cursor: pointer;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgb(7 82 118 / 25%);
    border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.75rem;
    height: 1px;
    background: var(--blue-dark);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open]:not([data-faq-expanded="false"]) summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details[open]:not([data-faq-expanded="false"]) summary { color: var(--blue); }
.faq-answer { display: flow-root; }

.faq-list details p {
    max-width: 48rem;
    margin: 0;
    padding: 0 4rem 1.7rem 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.72;
}

/* Final CTA and footer */

.final-cta {
    position: relative;
    min-height: 46rem;
    overflow: clip;
    color: #fff;
    background:
        radial-gradient(circle at 78% 45%, rgb(20 136 189 / 45%), transparent 31%),
        var(--blue-deep);
}

.final-cta::before,
.final-cta::after {
    position: absolute;
    right: -6%;
    left: -6%;
    z-index: 1;
    height: clamp(3.5rem, 7vw, 6rem);
    content: "";
    pointer-events: none;
}

.final-cta::before {
    top: -1px;
    background: #e7e3dc;
    clip-path: ellipse(68% 100% at 29% 0%);
}

.final-cta::after {
    bottom: -1px;
    background: var(--paper);
    clip-path: ellipse(72% 100% at 71% 100%);
}

.final-cta__word {
    position: absolute;
    top: 50%;
    left: 0;
    color: transparent;
    font-size: clamp(7rem, 17vw, 18rem);
    font-weight: 950;
    letter-spacing: -0.075em;
    line-height: 0.8;
    -webkit-text-stroke: 1px rgb(255 255 255 / 11%);
    transform: translate(-5%, -50%);
    white-space: nowrap;
}

.final-cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(22rem, 1.05fr) minmax(24rem, 0.95fr);
    align-items: center;
    min-height: 46rem;
    gap: clamp(2rem, 6vw, 7rem);
}

.final-cta__copy { position: relative; z-index: 3; padding-block: 5rem; }
.final-cta__copy h2 { max-width: 10ch; }
.final-cta__copy h2 em { color: var(--gold); }
.final-cta__copy > p:not(.section-kicker) { max-width: 39rem; color: #d9e8ee; }
.final-cta__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 2.2rem; }

.final-cta__figure {
    position: relative;
    z-index: 2;
    align-self: end;
    height: min(43rem, 48vw);
}

.final-cta__figure::before {
    position: absolute;
    inset: 18% -8% -2% 1%;
    border-radius: 63% 37% 46% 54% / 42% 60% 40% 58%;
    background: var(--gold);
    content: "";
    transform: rotate(8deg);
}

.final-cta__figure picture,
.final-cta__figure img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.final-cta__figure img {
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 24px 30px rgb(0 0 0 / 23%));
    transform: translate3d(0, var(--parallax-y, 0), 0);
}

/* The mask and yellow backdrop share the exact same lower contour. */
.final-cta__figure--clipped::before { display: none; }
.final-cta__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: var(--gold);
}
.final-cta__figure--clipped picture {
    display: block;
    clip-path: url(#final-people-crop);
}

.site-footer { color: var(--ink); background: var(--paper); }

.footer-grid {
    display: grid;
    grid-template-columns: minmax(10rem, 0.85fr) minmax(0, 4.15fr);
    gap: clamp(2rem, 3vw, 3rem);
    padding-block: clamp(4rem, 7vw, 7rem);
}

.footer-brand .brand img { width: min(14rem, 100%); }

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
    gap: 2rem;
}

.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links strong { margin-bottom: 1.1rem; color: var(--blue-deep); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-links a { padding-block: 0.35rem; color: var(--ink-soft); font-size: 0.8rem; text-decoration: none; }
.footer-links a:hover { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 0.2rem; }
.footer-info address,
.footer-info p { margin: 0; color: var(--ink-soft); font-size: 0.8rem; font-style: normal; line-height: 1.85; }
.footer-info address a { padding: 0; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.66rem;
}

/* Conversion-led narrative additions */

.site-header .primary-nav a { color: #d9e8ee; }
.site-header .primary-nav a:hover { color: #fff; }
.site-header .primary-nav a::after { background: var(--gold); }

.hero-editorial .eyebrow { margin-bottom: 1rem; }

.hero-scroll-cue {
    position: absolute;
    right: clamp(1.5rem, 3vw, 3rem);
    bottom: clamp(1.25rem, 2.5vw, 2.5rem);
    z-index: 8;
}

.hero-rail-note {
    position: absolute;
    bottom: 0.48rem;
    left: clamp(2rem, 5vw, 5.5rem);
    max-width: min(49rem, 62vw);
    color: var(--ink-soft);
    font-size: 0.57rem;
    line-height: 1.3;
}

.story-section {
    overflow: clip;
    background: var(--paper);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(26rem, 1.08fr) minmax(22rem, 0.92fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 9rem);
}

.story-visual {
    aspect-ratio: 1.42;
    min-height: 31rem;
}

.story-visual img { object-position: center; }

.story-copy h2 { max-width: 10ch; }
.story-copy h2 em { display: block; }

.story-copy > p:not(.section-kicker),
.credibility-copy > p:not(.section-kicker),
.detail-heading > p:not(.section-kicker) {
    margin: clamp(1.5rem, 3vw, 2.3rem) 0 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.72;
    text-wrap: pretty;
}

.story-points {
    display: grid;
    gap: 0;
    margin: 2.1rem 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.story-points li {
    display: grid;
    grid-template-columns: minmax(8.5rem, 0.72fr) minmax(0, 1.28fr);
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.story-points strong {
    color: var(--blue-deep);
    font-size: 0.83rem;
}

.story-points span {
    color: var(--ink-soft);
    font-size: 0.78rem;
    line-height: 1.5;
}

/* Kennzahlen */

.metrics-section {
    position: relative;
    padding: 0 0 clamp(5rem, 8vw, 8rem);
    background: var(--paper);
    scroll-margin-top: 5.4rem;
}

.metrics-panel {
    overflow: hidden;
    border: 1px solid rgb(7 82 118 / 14%);
    border-radius: clamp(1.15rem, 2.4vw, 2rem);
    background:
        radial-gradient(circle at 92% 8%, rgb(243 199 72 / 24%) 0 8rem, transparent 8.1rem),
        linear-gradient(135deg, #f8eee6, #e7f0f1);
    box-shadow: 0 22px 55px rgb(20 35 44 / 9%);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: clamp(1.4rem, 3vw, 2.5rem);
}

.metric-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-width: 0;
    gap: clamp(0.65rem, 1.2vw, 1rem);
    padding-inline: clamp(0.35rem, 1.7vw, 1.6rem);
}

.metric-item + .metric-item { border-left: 1px solid var(--line); }

.metric-item svg {
    width: clamp(2.4rem, 3.5vw, 3rem);
    height: clamp(2.4rem, 3.5vw, 3rem);
    flex: 0 0 auto;
    padding: 0.62rem;
    border-radius: 50%;
    color: var(--blue-dark);
    background: rgb(255 253 248 / 82%);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    box-shadow: 0 8px 20px rgb(20 35 44 / 8%);
}

.metric-item p {
    display: flex;
    flex: 1 1 7em;
    min-width: 0;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
}

.metric-item strong {
    color: var(--blue-deep);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    letter-spacing: -0.045em;
    line-height: 1;
    white-space: normal;
}

.metric-item p > span {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.metrics-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding: 1rem clamp(1.75rem, 4.5vw, 4.5rem);
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
}

.metrics-meta small {
    max-width: 50rem;
    font-size: 0.68rem;
    line-height: 1.45;
}

.metrics-meta time {
    flex: 0 0 auto;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.03em;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.support-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border: 1px solid rgb(20 35 44 / 13%);
    border-radius: 1.25rem;
    background: rgb(255 253 248 / 74%);
}

.support-card::after {
    position: absolute;
    right: -4rem;
    bottom: -5rem;
    width: 13rem;
    aspect-ratio: 1;
    border: 1px solid rgb(7 82 118 / 11%);
    border-radius: 50%;
    content: "";
}

.support-card--help {
    border-color: rgb(7 82 118 / 19%);
    background: #e3eff1;
}

.support-card__label {
    margin: 0 0 1rem;
    color: var(--blue-dark);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.support-card h3 {
    margin: 0;
    color: var(--blue-deep);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    letter-spacing: -0.045em;
}

.support-card ul {
    display: grid;
    gap: 0.8rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.support-card li {
    position: relative;
    z-index: 1;
    padding-left: 1.65rem;
    color: var(--ink-soft);
    font-size: 0.86rem;
    line-height: 1.5;
}

.support-card li::before {
    position: absolute;
    top: 0.48rem;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--gold);
    content: "";
}

.support-card--help li::before { background: var(--blue); }

.decision-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: clamp(4rem, 7vw, 7rem);
}

.decision-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(1.4rem, 2.8vw, 2.2rem);
    border: 1px solid rgb(7 82 118 / 15%);
    border-radius: 1.1rem;
    background: rgb(255 253 248 / 72%);
}

.decision-card__number {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-deep);
    background: var(--gold);
    font-size: 0.75rem;
    font-weight: 900;
}

.decision-card h3 {
    margin: 1.3rem 0 0;
    color: var(--blue-deep);
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    letter-spacing: -0.035em;
}

.decision-card p {
    margin: 0.9rem 0 0;
    color: var(--ink-soft);
    font-size: 0.84rem;
    line-height: 1.65;
}

.decision-card .inline-link {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 1.4rem;
}

.testimonials-static {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.testimonials-static .testimonial-card {
    width: auto;
    min-width: 0;
    min-height: 16rem;
}

.testimonials-static .testimonial-card:nth-child(2) { background: #e5f0f2; }
.testimonials-static .testimonial-card:nth-child(3) { background: #f7e6db; }

.credibility-panel {
    display: grid;
    grid-template-columns: minmax(20rem, 1.16fr) minmax(18rem, 0.84fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 9rem);
    margin-top: clamp(4.5rem, 8vw, 8rem);
    padding: clamp(2rem, 5vw, 4.5rem);
    border-radius: clamp(1.4rem, 3vw, 2.5rem);
    color: #fff;
    background:
        radial-gradient(circle at 88% 18%, rgb(20 136 189 / 43%), transparent 34%),
        var(--blue-deep);
    box-shadow: 0 28px 70px rgb(8 47 70 / 19%);
}

.credibility-panel .section-kicker { color: #dff3f9; }
.credibility-copy h2 { max-width: 12ch; }
.credibility-copy h2 em { color: var(--gold); }
.credibility-copy > p:not(.section-kicker) { color: #d5e6ec; }

.credibility-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.credibility-facts > div {
    display: flex;
    min-height: 8rem;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 1rem;
    background: rgb(255 255 255 / 6%);
}

.credibility-facts strong {
    color: var(--gold);
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.credibility-facts span {
    margin-top: 0.55rem;
    color: #d5e6ec;
    font-size: 0.71rem;
    line-height: 1.45;
}

.credibility-facts .button {
    grid-column: 1 / -1;
    color: var(--blue-deep);
    background: var(--gold);
    box-shadow: none;
}

/* Press and supporters */

.press-section {
    overflow: hidden;
    background: #e7e3dc;
}

.press-section::before,
.supporters-section::before {
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    z-index: 0;
    height: clamp(3.6rem, 7vw, 7rem);
    content: "";
    pointer-events: none;
}

.press-section::before {
    background: var(--paper);
    clip-path: ellipse(76% 100% at 30% 0%);
}

.supporters-section::before {
    background: #e7e3dc;
    clip-path: ellipse(70% 100% at 72% 0%);
}

.press-section > .section-shell,
.supporters-section > .section-shell {
    position: relative;
    z-index: 1;
}

.press-heading,
.supporters-heading { max-width: 74rem; }

.press-heading h2,
.supporters-heading h2 { max-width: 11ch; }

.press-heading h2 em,
.supporters-heading h2 em { display: block; }

.press-heading > p:not(.section-kicker),
.supporters-heading > p:not(.section-kicker) {
    max-width: 46rem;
    margin: 1.8rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(0.96rem, 1.2vw, 1.08rem);
    line-height: 1.7;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.press-card {
    display: flex;
    min-height: 30rem;
    flex-direction: column;
    padding: clamp(1.4rem, 2.4vw, 2.2rem);
    border: 1px solid rgb(8 47 70 / 12%);
    border-radius: clamp(1.1rem, 2vw, 1.8rem);
    background: var(--paper);
    box-shadow: 0 1.2rem 3.5rem rgb(8 47 70 / 8%);
}

.press-card--featured {
    color: #fff;
    background: var(--blue-deep);
}

.press-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.press-card--featured .press-card__meta {
    border-color: rgb(255 255 255 / 18%);
    color: #d5e6ec;
}

.press-card h3 {
    margin: 1.5rem 0 0;
    color: var(--blue-deep);
    font-size: clamp(1.25rem, 1.7vw, 1.6rem);
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.press-card--featured h3 { color: #fff; }

.press-card blockquote {
    margin: auto 0;
    padding-top: 1rem;
}

.press-card blockquote p {
    margin: 0;
    color: var(--blue-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.2vw, 2.1rem);
    font-style: italic;
    line-height: 1.18;
}

.press-card--featured blockquote p { color: var(--gold); }

.press-card cite {
    display: block;
    margin-top: 1.1rem;
    color: var(--ink-soft);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    text-align: right;
}

.press-card--featured cite { color: #d5e6ec; }

.press-card > a {
    align-self: flex-start;
    margin-top: 2.2rem;
    border-bottom: 1px solid currentColor;
    color: var(--blue-dark);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.press-card--featured > a { color: #fff; }

.supporters-section {
    overflow: hidden;
    background: var(--paper);
}

.supporter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.supporter-logo {
    display: grid;
    min-height: 9rem;
    place-items: center;
    padding: clamp(1rem, 2vw, 1.6rem);
    border: 0;
    border-radius: 0;
    background: transparent;
    transition: transform 180ms ease;
}

.supporter-logo:hover {
    transform: translateY(-0.2rem);
}

.supporter-logo img {
    width: auto;
    max-width: 100%;
    max-height: 4.7rem;
    object-fit: contain;
}

.supporters-more { margin-top: 2rem; }

.cta-note {
    display: block;
    max-width: 37rem;
    margin-top: 1.1rem;
    color: #c5dae2;
    font-size: 0.68rem;
    line-height: 1.5;
}

/* Fortbildung detail page */

.training-detail-page { background: var(--paper); }

.detail-hero {
    position: relative;
    overflow: clip;
    background: linear-gradient(135deg, #f8e8df 0 46%, #f3efe7 46% 100%);
}

.detail-hero::before {
    position: absolute;
    top: -18rem;
    left: -15rem;
    width: 45rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgb(255 255 255 / 65%);
    content: "";
}

.detail-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(24rem, 0.92fr) minmax(28rem, 1.08fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 8rem);
    min-height: 46rem;
    padding-block: clamp(4rem, 8vw, 8rem);
}

.detail-hero-copy h1 {
    max-width: 11ch;
    margin: 0;
    color: var(--ink);
    font-size: clamp(3.35rem, 6.4vw, 6.6rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.88;
    text-wrap: balance;
}

.detail-hero-copy h1 em {
    display: block;
    margin-top: 0.12em;
    color: var(--blue-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.72em;
    font-weight: 600;
    letter-spacing: -0.055em;
}

.detail-hero-copy > p:not(.section-kicker) {
    max-width: 39rem;
    margin: 1.8rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.7;
}

.detail-hero-visual {
    aspect-ratio: 1.18;
    border-radius: 55% 45% 48% 52% / 44% 54% 46% 56%;
}

.detail-hero-visual img { object-position: center; }

.detail-facts {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -2rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: rgb(255 253 248 / 94%);
    box-shadow: 0 22px 55px rgb(20 35 44 / 12%);
    backdrop-filter: blur(12px);
}

.detail-facts > div {
    display: flex;
    min-height: 8rem;
    flex-direction: column;
    justify-content: center;
    padding: 1.35rem;
    border-right: 1px solid var(--line);
}

.detail-facts > div:last-child { border-right: 0; }
.detail-facts strong { color: var(--blue-deep); font-size: clamp(1.25rem, 2vw, 1.75rem); letter-spacing: -0.04em; }
.detail-facts span { margin-top: 0.45rem; color: var(--ink-soft); font-size: 0.73rem; line-height: 1.45; }

.detail-section { background: var(--paper); }
.detail-section--tint { background: #efe9df; }
.detail-section--blue { color: #fff; background: var(--blue-deep); }

.detail-heading { max-width: 64rem; }
.detail-heading h2 { max-width: 12ch; }
.detail-heading h2 em { display: block; }
.detail-section--blue .detail-heading h2 em { color: var(--gold); }
.detail-section--blue .detail-heading > p:not(.section-kicker) { color: #d5e6ec; }

.fit-grid,
.outcome-grid,
.module-grid,
.registration-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.fit-card,
.outcome-card,
.module-card,
.registration-card {
    min-width: 0;
    padding: clamp(1.4rem, 2.8vw, 2.2rem);
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: #fffdf8;
}

.fit-card h3,
.outcome-card h3,
.module-card h3,
.registration-card h3 {
    margin: 0;
    color: var(--blue-deep);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    letter-spacing: -0.04em;
}

.fit-card p,
.outcome-card p,
.module-card p,
.registration-card p {
    margin: 0.9rem 0 0;
    color: var(--ink-soft);
    font-size: 0.86rem;
    line-height: 1.65;
}

.fit-card--wide { grid-column: span 2; }
.fit-card--accent { background: #e5f0f2; }

.outcome-card {
    position: relative;
    padding-top: 4.6rem;
    color: #fff;
    border-color: rgb(255 255 255 / 15%);
    background: rgb(255 255 255 / 6%);
}

.outcome-card::before {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border: 0.38rem solid var(--gold);
    border-radius: 50%;
    content: "";
}

.outcome-card h3 { color: #fff; }
.outcome-card p { color: #d5e6ec; }

.module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.module-card {
    display: grid;
    grid-template-columns: 3.4rem minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.module-card > span {
    display: grid;
    width: 3.4rem;
    height: 3.4rem;
    place-items: center;
    border-radius: 1rem;
    color: var(--blue-deep);
    background: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
}

.module-card:nth-child(even) > span { background: #cfe7ee; }

.detail-support-grid {
    display: grid;
    grid-template-columns: minmax(24rem, 1fr) minmax(22rem, 0.9fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 9rem);
}

.detail-support-copy h2 { max-width: 12ch; }

.detail-support-visual {
    aspect-ratio: 1.16;
}

.detail-support-visual img { object-position: center; }

.registration-card {
    display: flex;
    min-height: 15rem;
    flex-direction: column;
}

.registration-card > span {
    color: var(--blue-dark);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.detail-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* Progressive motion */

@media (prefers-reduced-motion: no-preference) {
    .reveal-ready [data-reveal] {
        opacity: 0;
        transform: translate3d(0, 2.2rem, 0);
        transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal-ready [data-reveal="left"] { transform: translate3d(-2.2rem, 0, 0); }
    .reveal-ready [data-reveal="right"] { transform: translate3d(2.2rem, 0, 0); }
    .reveal-ready [data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 74rem) {
    .primary-nav { gap: 0; }
    .primary-nav a { padding-inline: 0.4rem; font-size: 0.71rem; }
    .concept-grid { gap: 3.5rem; }
    .pillar-list li { padding-inline: 0.7rem; }
    .training-grid,
    .trust-grid { gap: 4rem; }
    .process-layout { gap: 2rem; }
}

@media (max-width: 64rem) {
    .primary-nav { display: none; }

    .concept-grid,
    .process-heading,
    .process-layout,
    .training-grid,
    .trust-grid,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .concept-grid > *,
    .process-layout > *,
    .training-grid > *,
    .trust-grid > *,
    .faq-grid > *,
    .footer-grid > * { min-width: 0; }

    .section-heading--sticky,
    .faq-heading { position: static; }

    .section-heading--sticky { padding-top: 0; }
    .concept-section h2 { max-width: 11ch; }
    .concept-visual .organic-frame { min-height: 0; }

    .pillars { grid-template-columns: 1fr; }
    .pillar-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .impact-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }

    .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .metric-item { padding-block: 1.1rem; }
    .metric-item:nth-child(3) { border-left: 0; }
    .metric-item:nth-child(n + 3) { border-top: 1px solid var(--line); }

    .process-heading { gap: 1rem; }
    .process-heading > p { max-width: 40rem; }
    .process-layout { gap: 3rem; }
    .process-photo { aspect-ratio: 1.35; min-height: 0; clip-path: none; }
    .process-steps { margin-left: 0; padding-left: 0; background: none; }

    .training-copy > p:not(.section-kicker),
    .trust-copy > p:not(.section-kicker) { max-width: 45rem; }

    .trust-copy { position: static; }

    .course-card { max-width: 42rem; margin-inline: auto; }
    .portrait-collage { max-width: 46rem; margin: 2rem auto 0; }
    .quote-grid { grid-template-columns: 1fr; }
    .quote-section__quote { max-width: 52rem; }
    .quote-section__context { max-width: 44rem; margin-left: auto; }
    .faq-list { margin-top: 1rem; }

    .final-cta__inner { grid-template-columns: minmax(20rem, 1.1fr) minmax(18rem, 0.9fr); }
}

@media (max-width: 64rem) and (prefers-reduced-motion: no-preference) {
    .reveal-ready [data-reveal="left"],
    .reveal-ready [data-reveal="right"] { transform: translate3d(0, 2.2rem, 0); }
    .reveal-ready [data-reveal].is-visible { transform: translate3d(0, 0, 0); }
}

@media (max-width: 47.99rem) {
    .content-section { padding-block: clamp(4.5rem, 18vw, 7rem); }

    .content-section h2,
    .final-cta h2 {
        font-size: clamp(2.7rem, 13vw, 4.3rem);
        line-height: 0.91;
    }

    .section-kicker { font-size: 0.61rem; }

    .concept-grid { gap: 2rem; }
    .concept-visual { padding-top: 0; }
    .concept-visual .organic-frame { aspect-ratio: 0.95; }
    .concept-visual img { object-position: 56% center; }
    .image-stamp { bottom: 3rem; }

    .pillars { gap: 2rem; margin-top: 4rem; }
    .pillar-list { grid-template-columns: 1fr; gap: 0.7rem; }
    .pillar-list li {
        display: grid;
        grid-template-columns: 3rem minmax(0, 1fr);
        align-items: center;
        min-height: 0;
        gap: 1rem;
        padding: 1rem;
    }
    .pillar-list li > div { margin-top: 0; }
    .pillar-list small { margin-top: 0.2rem; }

    .quote-section { min-height: 0; padding-block: 5.5rem; }
    .quote-section::after {
        background: linear-gradient(0deg, rgb(8 47 70 / 88%), rgb(8 47 70 / 69%));
    }
    .quote-grid { gap: 2rem; }
    .quote-section__quote { padding: 1.35rem; }
    .quote-section__quote p { font-size: clamp(1.85rem, 9.2vw, 2.8rem); }
    .quote-section__context { margin-left: 0; padding: 1.3rem; }

    .testimonials-heading h2 { max-width: 10ch; }
    .testimonial-card { width: min(18rem, calc(100vw - 2.5rem)); min-height: 16rem; }

    .content-section.impact-section {
        padding-top: clamp(7.5rem, 24vw, 9rem);
        border-radius: 0;
    }
    .impact-grid { grid-template-columns: 1fr; }
    .impact-copy h2 { max-width: 9ch; }
    .impact-figure { height: 29rem; margin-top: 1rem; }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 17%); }
    .benefit-grid article:last-child { border-bottom: 0; }

    .metrics-section { padding-bottom: clamp(4.5rem, 15vw, 6rem); }
    .metrics-grid { grid-template-columns: 1fr; padding: 0.75rem 1rem; }
    .metric-item { padding: 1rem 0.25rem; }
    .metric-item + .metric-item {
        border-top: 1px solid var(--line);
        border-left: 0;
    }
    .metrics-meta {
        align-items: flex-start;
        flex-direction: column;
        padding: 1rem 1.25rem 1.2rem;
    }

    .process-heading h2 { max-width: 11ch; }
    .process-photo { aspect-ratio: 0.93; }
    .photo-note { padding: 4rem 1.5rem 2.3rem; }
    .process-steps li { grid-template-columns: 3.3rem minmax(0, 1fr); gap: 0.8rem; }
    .step-number { width: 2.7rem; height: 2.7rem; }

    .training-grid { gap: 3.5rem; }
    .training-actions { align-items: stretch; flex-direction: column; }
    .training-actions .inline-link { align-self: flex-start; }
    .course-card { padding: 1.4rem; border-radius: 1rem; transform: none; }
    .course-card__top { margin-bottom: 2.7rem; }
    .course-card__price { font-size: 4.2rem; }
    .course-facts > div { min-height: 5rem; padding: 0.8rem; }
    .completion-note > div { grid-template-columns: 1fr; }

    .portrait-collage { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
    .portrait-card:nth-child(1),
    .portrait-card:nth-child(2),
    .portrait-card:nth-child(3) { transform: none; }
    .portrait-card:nth-child(3) { grid-column: 1 / -1; width: calc(50% - 0.6rem); justify-self: center; }

    .faq-contact { margin-top: 1.8rem; }
    .faq-list summary { min-height: 5.2rem; font-size: 0.98rem; }
    .faq-list details p { padding-right: 0.5rem; }

    .final-cta { min-height: 0; }
    .final-cta__inner { grid-template-columns: 1fr; min-height: 0; }
    .final-cta__copy { padding: 5rem 0 0; }
    .final-cta__actions { align-items: stretch; flex-direction: column; }
    .final-cta__figure { height: 28rem; margin-top: -1rem; }
    .final-cta__figure::before { inset: 22% -18% 0 6%; }

    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.3rem 1.5rem; }
    .footer-info { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 22rem) {
    .content-section h2,
    .final-cta h2 { font-size: 2.5rem; }
    .course-card__price { font-size: 3.6rem; }
    .course-facts span { font-size: 0.61rem; }
    .portrait-card { padding: 0.4rem 0.4rem 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    .organic-frame img,
    .impact-figure img,
    .final-cta__figure img { transform: none; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    .testimonial-marquee { overflow-x: auto; }
    .testimonial-track { animation: none; transform: none; }
    .testimonial-group[aria-hidden="true"] { display: none; }
}

@media (forced-colors: active) {
    .organic-frame { clip-path: none; }
    .section-kicker::before,
    .faq-list summary span::before,
    .faq-list summary span::after { background: CanvasText; }
    .impact-section,
    .final-cta,
    .course-card { border: 1px solid CanvasText; }
}

@media (max-width: 64rem) {
    .story-grid,
    .credibility-panel,
    .detail-hero-grid,
    .detail-support-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .story-grid { gap: 3rem; }
    .story-visual { min-height: 0; }
    .story-copy h2 { max-width: 12ch; }

    .decision-grid,
    .testimonials-static,
    .fit-grid,
    .outcome-grid,
    .registration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .decision-card:last-child,
    .testimonials-static .testimonial-card:last-child,
    .outcome-card:last-child,
    .registration-card:last-child { grid-column: 1 / -1; }

    .detail-hero-grid { min-height: 0; }
    .detail-hero-visual { max-width: 48rem; }
    .detail-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .detail-facts > div:nth-child(2) { border-right: 0; }
    .detail-facts > div:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

@media (max-width: 47.99rem) {
    .hero-editorial__intro .eyebrow {
        position: absolute;
        top: 1.45rem;
        left: 1.25rem;
        z-index: 5;
        margin: 0;
        font-size: 0.54rem;
    }

    .hero-editorial :is(h1, h2) { padding-top: 4.35rem; }

    .hero-editorial__details { padding-bottom: 4.6rem; }

    .hero-scroll-cue {
        right: 0.9rem;
        bottom: 0.8rem;
        justify-self: auto;
        width: auto;
        margin: 0;
    }

    .hero-rail-note {
        position: static;
        grid-column: 1 / -1;
        max-width: none;
        margin-top: 0.9rem;
        padding-top: 0.8rem;
        border-top: 1px solid var(--line);
    }

    .hero-rail-date {
        position: static;
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 0.35rem;
    }

    .story-visual { aspect-ratio: 0.94; }
    .story-visual img { object-position: 58% center; }
    .story-points li { grid-template-columns: 1fr; gap: 0.3rem; }

    .support-cards,
    .decision-grid,
    .testimonials-static,
    .credibility-facts,
    .fit-grid,
    .outcome-grid,
    .module-grid,
    .registration-grid,
    .detail-facts { grid-template-columns: 1fr; }

    .decision-card:last-child,
    .testimonials-static .testimonial-card:last-child,
    .outcome-card:last-child,
    .registration-card:last-child,
    .fit-card--wide { grid-column: auto; }

    .support-card,
    .decision-card,
    .fit-card,
    .outcome-card,
    .module-card,
    .registration-card { border-radius: 0.95rem; }

    .testimonials-static .testimonial-card { min-height: 0; }

    .credibility-panel {
        gap: 2.5rem;
        padding: 1.5rem;
        border-radius: 1.2rem;
    }

    .credibility-facts > div { min-height: 6.5rem; }

    .detail-hero-grid { gap: 2.5rem; padding-block: 3.5rem 5rem; }
    .detail-hero-copy h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
    .detail-hero-visual { aspect-ratio: 0.94; }
    .detail-facts { margin-top: -1.5rem; }
    .detail-facts > div,
    .detail-facts > div:nth-child(2) { min-height: 6.5rem; border-right: 0; border-top: 1px solid var(--line); }
    .detail-facts > div:first-child { border-top: 0; }

    .module-card { grid-template-columns: 3rem minmax(0, 1fr); gap: 0.9rem; }
    .module-card > span { width: 3rem; height: 3rem; }

    .detail-cta-row { align-items: stretch; flex-direction: column; }
}

@media (forced-colors: active) {
    .support-card,
    .decision-card,
    .credibility-panel,
    .detail-facts,
    .fit-card,
    .outcome-card,
    .module-card,
    .registration-card { border: 1px solid CanvasText; }
}

@media (max-width: 64rem) {
    .press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .press-card:last-child { grid-column: 1 / -1; min-height: 24rem; }
    .supporter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 47.99rem) {
    .film-section { min-height: 42rem; }

    .film-section__video { object-position: 58% center; }

    .film-section__shade {
        background:
            linear-gradient(0deg, rgb(5 32 47 / 90%) 0%, rgb(5 32 47 / 38%) 68%, rgb(5 32 47 / 18%) 100%);
    }

    .film-section__content { padding-block: 8rem 10rem; }
    .film-section__content h2 { font-size: clamp(2.7rem, 13vw, 4.3rem); }
    .film-section__content > p:not(.section-kicker) { max-width: 31rem; }

    .film-toggle {
        right: auto;
        bottom: 5.4rem;
        left: 1rem;
    }

    .press-heading h2,
    .supporters-heading h2 { max-width: 10ch; }

    .press-grid { grid-template-columns: 1fr; }
    .press-card,
    .press-card:last-child { grid-column: auto; min-height: 25rem; }

    .supporter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .supporter-logo { min-height: 7.5rem; padding: 0.9rem; }
    .supporter-logo img { max-height: 3.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    .supporter-logo { transition: none; }
    .supporter-logo:hover { transform: none; }
}

@media (forced-colors: active) {
    .film-section,
    .press-card,
    .supporter-logo { border: 1px solid CanvasText; }

    .film-section__shade { background: transparent; }
}

/* Targeted landing-page polish */

.landing-page .hero-section {
    position: relative;
    z-index: 3;
    padding: clamp(0.65rem, 1.35vw, 1.25rem) clamp(0.65rem, 1.35vw, 1.25rem) 0;
}

.landing-page .hero {
    border-radius: var(--radius);
}

.landing-page .impact-section {
    margin-top: clamp(-4rem, -4vw, -2.75rem);
    padding-top: clamp(12rem, 16vw, 16rem);
}

.impact-transition {
    z-index: 0;
    height: clamp(13rem, 19vw, 19rem);
    background:
        radial-gradient(ellipse 82% 86% at 50% -8%, rgb(255 253 248 / 94%) 0 31%, rgb(213 231 235 / 88%) 52%, transparent 73%),
        linear-gradient(180deg, #e7e3dc 0%, #a9ced9 42%, var(--blue-deep) 100%);
    clip-path: none;
    filter: none;
}

.impact-transition::after {
    position: absolute;
    top: 43%;
    right: max(1.5rem, calc((100% - min(100% - 2rem, 94rem)) / 2));
    left: max(1.5rem, calc((100% - min(100% - 2rem, 94rem)) / 2));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(8 47 70 / 24%) 18% 82%, transparent);
    content: "";
}

.benefit-heading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: clamp(0.5rem, 2vw, 1.5rem) 0 1rem;
    color: #dff3f9;
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.benefit-heading::after {
    height: 1px;
    flex: 1 1 auto;
    background: rgb(255 255 255 / 17%);
    content: "";
}

.film-controls {
    position: absolute;
    right: max(1rem, calc((100% - min(100% - 2rem, 94rem)) / 2));
    bottom: clamp(5.5rem, 9vw, 9rem);
    z-index: 5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.film-controls .film-toggle {
    position: static;
}

.film-sound-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.58rem;
    min-height: 2.9rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgb(255 255 255 / 42%);
    border-radius: 999px;
    color: #fff;
    background: rgb(8 47 70 / 72%);
    box-shadow: 0 0.7rem 2rem rgb(0 0 0 / 18%);
    font: inherit;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(9px);
    cursor: pointer;
}

.film-sound-toggle:hover { background: rgb(8 47 70 / 92%); }
.film-sound-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.film-sound-toggle svg {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--gold);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.film-sound-toggle svg path:first-child { fill: var(--gold); stroke: none; }
.film-sound-toggle__waves,
.film-sound-toggle__mute { transition: opacity 160ms ease; }
.film-sound-toggle__waves { opacity: 0; }
.film-sound-toggle[aria-pressed="true"] .film-sound-toggle__waves { opacity: 1; }
.film-sound-toggle[aria-pressed="true"] .film-sound-toggle__mute { opacity: 0; }
.film-section.is-unavailable .film-controls { display: none; }

.story-visual--editorial {
    position: relative;
    isolation: isolate;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.story-visual--editorial::before {
    position: absolute;
    inset: clamp(1.6rem, 3vw, 2.6rem) clamp(-1.65rem, -1.5vw, -1rem) clamp(-1.35rem, -1.3vw, -0.8rem) clamp(2rem, 4vw, 4rem);
    z-index: 0;
    background: linear-gradient(145deg, #d9ebef, #bddce4);
    clip-path: polygon(0 0, calc(100% - 4.75rem) 0, 100% 4.75rem, 100% 100%, 0 100%);
    content: "";
}

.story-visual--editorial::after {
    position: absolute;
    top: clamp(-1.3rem, -1.2vw, -0.75rem);
    left: clamp(-1.3rem, -1.2vw, -0.75rem);
    z-index: 0;
    width: 38%;
    height: 46%;
    border-top: 1px solid rgb(7 82 118 / 34%);
    border-left: 1px solid rgb(7 82 118 / 34%);
    content: "";
}

.story-visual--editorial picture {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 4.75rem) 0, 100% 4.75rem, 100% 100%, 0 100%);
    box-shadow: 0 24px 58px rgb(20 35 44 / 14%);
}

.story-visual--editorial .image-stamp {
    right: -1.65rem;
    bottom: 2.1rem;
    z-index: 2;
    transform: none;
}

.concept-visual {
    position: relative;
    isolation: isolate;
    padding: clamp(1.7rem, 3vw, 2.8rem) clamp(0.7rem, 1.4vw, 1.4rem) clamp(1rem, 2vw, 2rem) clamp(2rem, 4vw, 4rem);
}

.concept-visual::before {
    position: absolute;
    inset: 0 0 clamp(2rem, 4vw, 4rem) clamp(0.6rem, 1.2vw, 1.2rem);
    z-index: 0;
    border: 1px solid rgb(7 82 118 / 24%);
    background:
        linear-gradient(90deg, rgb(207 231 238 / 82%) 0 23%, transparent 23%),
        rgb(255 253 248 / 48%);
    clip-path: polygon(7% 0, 100% 0, 100% 86%, 89% 100%, 0 100%, 0 8%);
    content: "";
}

.concept-visual::after {
    position: absolute;
    bottom: clamp(0.4rem, 1vw, 0.8rem);
    left: 0;
    z-index: 0;
    width: clamp(4.5rem, 8vw, 7rem);
    height: clamp(1rem, 1.8vw, 1.5rem);
    background: var(--gold);
    content: "";
}

.concept-visual .concept-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
    background: #d7e7eb;
    clip-path: polygon(7% 0, 100% 0, 100% 86%, 89% 100%, 0 100%, 0 8%);
    box-shadow: 0 24px 58px rgb(20 35 44 / 14%);
}

.process-section {
    padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.process-section::before {
    background: var(--paper);
    clip-path: ellipse(72% 100% at 31% 0%);
}

.metrics-section { background: #efe9df; }

.testimonial-marquees {
    display: grid;
    gap: 1rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.testimonial-marquee {
    margin-top: 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgb(7 82 118 / 25%) transparent;
}

.testimonial-marquee.is-ready {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.testimonial-track {
    display: flex;
    width: max-content;
    animation: none;
    will-change: auto;
}

.testimonial-marquee.is-ready .testimonial-track {
    animation: testimonial-marquee 64s linear infinite;
    will-change: transform;
}

.testimonial-marquee--reverse.is-ready .testimonial-track {
    animation-direction: reverse;
    animation-duration: 70s;
}

.testimonial-marquee.is-ready:hover .testimonial-track,
.testimonial-marquee.is-ready:focus .testimonial-track,
.testimonial-marquee.is-ready:focus-within .testimonial-track,
.testimonial-marquee.is-ready.is-interacting .testimonial-track {
    animation-play-state: paused;
}

.testimonial-group {
    display: flex;
    gap: 1rem;
    padding-right: 1rem;
}

/* Practice stories use an equal photo/content split on larger screens. */
.testimonials-heading--practice h2 { max-width: none; }
.testimonials-heading--practice h2 em { display: inline; }

.testimonials-heading--practice > .testimonials-subline {
    max-width: none;
    margin-top: 1.25rem;
    color: var(--blue-deep);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
}

.testimonials-heading--practice > .testimonials-subline + p { margin-top: 1rem; }

.testimonial-group .testimonial-card--practice {
    display: grid;
    flex: 0 0 auto;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    width: min(22rem, calc(100vw - 2.5rem));
    height: 38rem;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 1.2rem;
    background: #fff;
    box-shadow: 0 6px 20px rgb(20 35 44 / 7%);
}

.testimonial-card__photo {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.testimonial-card__body {
    display: grid;
    grid-template-rows: 2.625rem 2.5rem 7rem 2.75rem;
    align-content: space-between;
    min-width: 0;
    padding: 1.125rem 1.25rem;
}

.testimonial-card__body h3 {
    margin: 0;
    color: var(--blue-deep);
    font-size: 1.05rem;
    font-weight: 750;
    line-height: 1.25;
    text-wrap: balance;
}

.testimonial-card__location {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin: 0;
    color: #68737a;
    font-size: 0.8rem;
    line-height: 1.5;
}

.testimonial-card__location svg { flex: 0 0 auto; margin-top: 0.1rem; }

.testimonial-card--practice blockquote {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    color: var(--blue-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.22;
}

.testimonial-card__link {
    justify-self: end;
}

.testimonial-card__media {
    position: relative;
    min-height: 0;
    margin: 0;
    overflow: hidden;
}

.testimonial-card--practice .testimonial-card__credit {
    position: absolute;
    display: block;
    inset: auto 0 0;
    margin: 0;
    padding: 1.75rem 0.8rem 0.65rem;
    color: #fff;
    background: linear-gradient(transparent, rgb(0 0 0 / 72%));
    font-size: 0.7rem;
    line-height: 1.35;
    text-align: right;
    text-shadow: 0 1px 2px rgb(0 0 0 / 55%);
}

.testimonial-motion-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    margin-top: 1.5rem;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 0.45rem;
    color: var(--blue-dark);
    background: transparent;
    font: inherit;
    font-size: 0.8rem;
    cursor: pointer;
}

.testimonial-motion-toggle[hidden] { display: none; }
.testimonial-motion-toggle:hover { background: #fff; }
.testimonial-motion-toggle:focus-visible,
.testimonial-marquee:focus-visible { outline: 3px solid #e46627; outline-offset: -3px; }

.testimonial-marquees.is-paused .testimonial-track { animation-play-state: paused; }

/* Keyboard users reach every original article in normal document order. */
.testimonial-marquee.is-ready:has(:focus-visible),
.testimonial-marquee.is-ready:focus-visible {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
}

.testimonial-marquee.is-ready:has(:focus-visible) .testimonial-track,
.testimonial-marquee.is-ready:focus-visible .testimonial-track {
    animation: none;
    transform: none;
}

.testimonial-marquee:not(.is-loop-slider):has(:focus-visible) .testimonial-group[aria-hidden="true"],
.testimonial-marquee:not(.is-loop-slider):focus-visible .testimonial-group[aria-hidden="true"] { display: none; }

.supporter-marquee {
    width: 100%;
    margin-top: clamp(3rem, 6vw, 5rem);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgb(7 82 118 / 25%) transparent;
}

.supporter-marquee.is-ready {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.supporter-track {
    display: flex;
    width: max-content;
}

.supporter-marquee.is-ready .supporter-track {
    animation: supporter-marquee 82s linear infinite reverse;
    will-change: transform;
}

.supporter-marquee.is-ready:hover .supporter-track,
.supporter-marquee.is-ready:focus .supporter-track,
.supporter-marquee.is-ready:focus-within .supporter-track,
.supporter-marquee.is-ready.is-interacting .supporter-track {
    animation-play-state: paused;
}

.supporter-group {
    display: flex;
    gap: 0.8rem;
    padding-right: 0.8rem;
}

.supporter-group .supporter-logo {
    width: clamp(10rem, 13vw, 12.5rem);
    min-height: 8rem;
    flex: 0 0 auto;
}

@keyframes supporter-marquee {
    to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 64rem) {
    .landing-page .impact-section {
        margin-top: -2.75rem;
        padding-top: clamp(10rem, 18vw, 12rem);
    }

    .impact-transition { height: clamp(11rem, 22vw, 14rem); }

    .story-visual--editorial::before {
        inset: 2rem -0.8rem -1rem 3rem;
    }

    .story-visual--editorial .image-stamp { right: -0.8rem; }

    .concept-visual {
        max-width: 54rem;
        padding-right: 1rem;
    }
}

@media (max-width: 47.99rem) {
    .landing-page .hero-section { padding: 0.5rem 0.5rem 0; }
    .landing-page .hero { border-radius: 1.2rem; }

    .landing-page .impact-section {
        margin-top: -1.5rem;
        padding-top: clamp(8.5rem, 28vw, 10rem);
    }

    .impact-transition {
        height: clamp(9rem, 34vw, 11rem);
        background:
            radial-gradient(ellipse 112% 82% at 50% -6%, rgb(255 253 248 / 94%) 0 29%, rgb(213 231 235 / 88%) 54%, transparent 74%),
            linear-gradient(180deg, #e7e3dc 0%, #9fc8d5 45%, var(--blue-deep) 100%);
    }

    .impact-transition::after { top: 46%; right: 1rem; left: 1rem; }

    .benefit-heading {
        align-items: flex-start;
        margin-top: 0;
        font-size: 0.61rem;
        line-height: 1.45;
    }

    .benefit-heading::after { margin-top: 0.43rem; }

    .film-controls {
        right: auto;
        bottom: 5.2rem;
        left: 1rem;
        justify-content: flex-start;
    }

    .film-controls .film-toggle,
    .film-sound-toggle {
        min-height: 2.7rem;
        padding: 0.68rem 0.8rem;
        font-size: 0.61rem;
    }

    .story-visual--editorial::before {
        inset: 1rem -0.35rem -0.75rem 1rem;
        clip-path: polygon(0 0, calc(100% - 2.75rem) 0, 100% 2.75rem, 100% 100%, 0 100%);
    }

    .story-visual--editorial::after {
        top: -0.55rem;
        left: -0.35rem;
        width: 43%;
        height: 34%;
    }

    .story-visual--editorial picture {
        clip-path: polygon(0 0, calc(100% - 2.75rem) 0, 100% 2.75rem, 100% 100%, 0 100%);
    }

    .story-visual--editorial .image-stamp {
        right: -0.35rem;
        bottom: 1rem;
        padding: 0.65rem 0.8rem;
    }

    .concept-visual {
        padding: 0.85rem 0 1.1rem 0.85rem;
    }

    .concept-visual::before {
        inset: 0 0 1.4rem 0;
        clip-path: polygon(5% 0, 100% 0, 100% 91%, 91% 100%, 0 100%, 0 5%);
    }

    .concept-visual::after {
        bottom: 0.35rem;
        width: 4.4rem;
        height: 0.85rem;
    }

    .concept-visual .concept-frame {
        clip-path: polygon(5% 0, 100% 0, 100% 91%, 91% 100%, 0 100%, 0 5%);
    }

    .process-section { padding-bottom: 3.75rem; }

    .testimonial-marquees { gap: 0.75rem; }
    .testimonial-group { gap: 0.75rem; padding-right: 0.75rem; }
    .testimonial-group .testimonial-card { width: min(22rem, calc(100vw - 2.5rem)); }

    .supporter-group { gap: 0.65rem; padding-right: 0.65rem; }
    .supporter-group .supporter-logo { width: 9.5rem; min-height: 6.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-marquee,
    .testimonial-marquee.is-ready,
    .supporter-marquee,
    .supporter-marquee.is-ready {
        width: var(--page);
        margin-inline: auto;
        overflow: visible;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .testimonial-track,
    .testimonial-marquee.is-ready .testimonial-track,
    .supporter-track,
    .supporter-marquee.is-ready .supporter-track {
        display: block;
        width: auto;
        animation: none;
        transform: none;
        will-change: auto;
    }

    .testimonial-group {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        padding: 0;
    }

    .testimonial-group .testimonial-card { width: auto; }

    .supporter-group {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.8rem;
        padding: 0;
    }

    .supporter-group .supporter-logo { width: auto; }

    [data-marquee-group][aria-hidden="true"] { display: none; }
}

@media (max-width: 47.99rem) and (prefers-reduced-motion: reduce) {
    .testimonial-group,
    .supporter-group { grid-template-columns: 1fr; }

    .testimonial-group .testimonial-card,
    .supporter-group .supporter-logo { width: auto; }
}

@media (forced-colors: active) {
    .story-visual--editorial picture,
    .concept-visual .concept-frame { clip-path: none; border: 1px solid CanvasText; }

    .story-visual--editorial::before,
    .story-visual--editorial::after,
    .concept-visual::before,
    .concept-visual::after,
    .impact-transition::after { display: none; }

    .film-sound-toggle { border: 1px solid ButtonText; }
}

/* Editorial story layouts */
.landing-page .impact-section {
    margin-top: 0;
    padding-top: clamp(7rem, 10vw, 10rem);
}

.impact-transition,
.impact-section::before {
    display: none;
}

.story-section,
.concept-section {
    padding-block: clamp(7.5rem, 12vw, 12rem);
    background: var(--paper);
}

.story-grid,
.concept-grid {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 0;
}

.story-visual,
.concept-visual,
.concept-visual .organic-frame {
    min-height: 0;
    aspect-ratio: auto;
}

.story-visual,
.concept-visual {
    position: sticky;
    top: calc(var(--scene-header-offset) + 0.75rem);
    height: clamp(30rem, calc(100dvh - var(--scene-header-offset) - 1.5rem), 54rem);
    align-self: start;
}

.story-visual--editorial,
.story-visual--editorial picture,
.concept-visual,
.concept-visual .concept-frame {
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #d7e7eb;
    box-shadow: none;
    clip-path: none;
}

.story-visual--editorial::before,
.story-visual--editorial::after,
.concept-visual::before,
.concept-visual::after,
.story-visual--editorial .image-stamp,
.concept-visual .image-stamp {
    display: none;
}

.story-visual--editorial picture,
.concept-visual .concept-frame {
    display: block;
    width: 100%;
    height: 100%;
    animation: none !important;
}

.concept-visual .concept-frame {
    min-height: 0;
}

.story-visual--editorial img,
.concept-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
    will-change: auto;
}

.story-copy,
.concept-section .section-heading--sticky {
    position: static;
    top: auto;
    align-self: center;
    width: min(100%, 48rem);
    padding: clamp(3rem, 7vw, 8rem);
}

.story-copy {
    justify-self: start;
}

.concept-section .section-heading--sticky {
    justify-self: end;
}

.process-section::before,
.training-swoop {
    display: none;
}

.process-photo {
    overflow: hidden;
    border-radius: clamp(1rem, 2vw, 1.6rem);
    clip-path: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-ready .process-steps li:nth-child(1) { transition-delay: 0ms; }
    .reveal-ready .process-steps li:nth-child(2) { transition-delay: 110ms; }
    .reveal-ready .process-steps li:nth-child(3) { transition-delay: 220ms; }
    .reveal-ready .process-steps li:nth-child(4) { transition-delay: 330ms; }
}

.training-section {
    display: flex;
    flex-direction: column;
    background: #efe9df;
}

.training-grid { order: 1; }

.training-metrics {
    order: 2;
    margin-top: clamp(5rem, 9vw, 9rem);
    background: var(--paper);
    animation: none !important;
}

.training-section .decision-grid { order: 3; }

@media (max-width: 56rem) {
    .story-grid,
    .concept-grid {
        grid-template-columns: 1fr;
    }

    .story-visual,
    .concept-visual {
        position: relative;
        top: auto;
        height: auto;
        min-height: clamp(22rem, 72vw, 36rem);
    }

    .concept-visual .organic-frame {
        min-height: clamp(22rem, 72vw, 36rem);
    }

    .story-copy,
    .concept-section .section-heading--sticky {
        width: var(--page);
        justify-self: center;
        padding: clamp(3.5rem, 10vw, 6rem) 0 0;
    }

    .concept-visual {
        margin-top: clamp(3.5rem, 10vw, 6rem);
    }
}

@media (min-width: 56.01rem) and (max-height: 42rem) {
    .story-visual,
    .concept-visual {
        position: relative;
        top: auto;
        height: clamp(28rem, 52vw, 38rem);
    }
}

/* With enlarged text, give the headline and photograph their own rows.
   The container's em unit follows the reader's font size, unlike viewport breakpoints. */
@media (max-width: 47.99rem) {
    @container hero (max-width: 18em) {
        .hero-editorial :is(h1, h2) { width: 100%; max-width: none; padding: 2rem 1rem 1rem; hyphens: auto; }
        .hero-editorial__visual { grid-row: 2; width: 100%; height: auto; aspect-ratio: 1600 / 1307; margin: 0; }
        .hero-editorial__details { grid-row: 3; }
    }
}

/* Persistent section controls. Leave reading/focus room above their bottom edge. */
.has-section-nav {
    --section-nav-space: calc(72px + env(safe-area-inset-bottom, 0px));
    scroll-padding-bottom: var(--section-nav-space);
}

.has-section-nav .site-footer { padding-bottom: var(--section-nav-space); }
.has-section-nav .hero-scroll-cue { right: auto; left: 50%; transform: translateX(-50%); }

.section-nav {
    position: fixed;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 60;
    display: flex;
    gap: 2px;
    padding: 4px;
    border: 1px solid rgb(255 253 248 / 65%);
    border-radius: 999px;
    background: var(--blue-deep);
    box-shadow: 0 4px 18px rgb(8 47 70 / 22%);
}

.section-nav[hidden] { display: none; }

.section-nav button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--paper);
    background: transparent;
    cursor: pointer;
}

.section-nav button:hover:not(:disabled) { color: var(--blue-deep); background: var(--gold); }
.section-nav button:disabled { opacity: 0.35; cursor: default; }
.section-nav button:focus-visible { outline: 3px solid var(--gold); outline-offset: 1px; }
.section-nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (forced-colors: active) {
    .section-nav { background: Canvas; border-color: CanvasText; }
    .section-nav button { color: ButtonText; }
    .section-nav button:disabled { color: GrayText; opacity: 1; }
    .section-nav button:focus-visible { outline-color: Highlight; }
}

/* Shared section rhythm: the eyebrow is the single scroll destination. */
html {
    /* Links request smooth motion explicitly; native hash navigation must not
       start a second animation before the shared anchor handler runs. */
    scroll-behavior: auto;
    scroll-padding-top: calc(var(--scene-header-offset) + var(--scene-top-gap));
}

@media (min-width: 48rem) {
    :root { --scene-top-gap: 3rem; }
}

@media (min-width: 64rem) {
    :root { --scene-top-gap: var(--scene-header-offset); }
}

/* scenes.js owns passage through transition space. Native proximity snapping
   cannot distinguish reading content from the deliberately generous padding. */

[data-scene-anchor] { scroll-margin: 0; }

/* A flow marker still has a valid position when optional video controls hide. */
.scene-content-end { display: block; height: 0; }

/* Decorative overflow must not become a separate scroll container. */
.landing-page [data-scroll-scene] { overflow: clip; }

/* Heading coordinates must not move during a reveal animation. */
.reveal-ready [data-reveal]:has([data-scene-anchor]) {
    opacity: 1;
    transform: none;
    transition: none;
}

.landing-page .hero-section {
    padding-bottom: clamp(2rem, 4vw, 4rem);
    background:
        linear-gradient(180deg, transparent calc(100% - 10rem), #e7e3dc),
        linear-gradient(115deg, #e7e3dc 5%, #ece5de 48%, #dfe7e6 100%);
    scroll-margin-top: 0 !important;
}

/* Crossfade two nearby palettes without repainting a moving full-screen gradient.
   Both fade back to the section bridge's original color along the bottom edge. */
.landing-page .hero-section::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, transparent calc(100% - 10rem), #e7e3dc),
        linear-gradient(245deg, #e7e3dc 5%, #e2e5e9 48%, #eee3d8 100%);
    opacity: 0;
    pointer-events: none;
    content: "";
}

@media (prefers-reduced-motion: no-preference) {
    .landing-page .hero-section::before {
        animation: hero-background-shift 18s ease-in-out infinite alternate;
    }
}

@keyframes hero-background-shift {
    from { opacity: 0; }
    to { opacity: 0.85; }
}

.landing-page .hero-editorial {
    max-width: 1600px;
    min-height: calc(100svh - var(--scene-header-offset) - clamp(0.65rem, 1.35vw, 1.25rem));
}

/* Let the section fill wide screens while the centered card follows its content. */
@media (min-width: 1640px) {
    .landing-page .hero-section {
        display: grid;
        place-items: center;
        min-height: calc(100svh - var(--scene-header-offset));
        padding-block: clamp(1.25rem, 3vw, 3rem);
    }

    .landing-page .hero-editorial {
        width: 100%;
        min-height: 0;
        padding-block: clamp(2.5rem, 3vw, 3.5rem);
    }

    .landing-page .hero-editorial__content { padding-block: 0; }
    .landing-page .hero-editorial__visual {
        align-self: center;
        margin-block: 0;
    }
}

.content-section,
.landing-page .impact-section,
.story-section,
.concept-section,
.final-cta {
    padding-block: var(--section-space);
}

/* Each bridge joins the actual edge colors. A shallow curve lives entirely
   inside this block, so it cannot cover content or leave clipped remnants. */
.section-transition {
    position: relative;
    height: var(--section-bridge);
    overflow: hidden;
    background: var(--transition-from);
    pointer-events: none;
}

.section-transition::before {
    position: absolute;
    inset: -1px;
    background: var(--transition-to);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath d='M0 42C400 42 800 140 1440 100V160H0Z' fill='white'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    content: "";
}

.section-transition:nth-of-type(even)::before { transform: scaleX(-1); }

/* Retire the overlapping shapes formerly painted onto section edges. */
.process-section::before,
.training-section::before,
.testimonials-section::before,
.faq-section::before,
.press-section::before,
.supporters-section::before,
.final-cta::before,
.final-cta::after { display: none; }

.impact-grid,
.training-grid,
.final-cta__inner { align-items: start; }

.faq-heading { position: static; }

.story-copy,
.concept-section .section-heading--sticky {
    align-self: start;
    padding-top: 0;
    padding-bottom: 0;
}

.story-visual,
.concept-visual {
    top: calc(var(--scene-header-offset) + var(--scene-top-gap));
    height: clamp(28rem, calc(100svh - var(--scene-header-offset) - var(--scene-top-gap) - 2rem), 54rem);
}

.section-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.training-section > .section-actions { order: 4; }

.film-section {
    align-content: start;
    padding-block: var(--section-space);
}

.film-section__content { padding-block: 0; }
.film-section > .section-actions { align-self: start; }

/* Fade the moving footage to the same blue used by both neighboring bridges. */
.film-section::before,
.film-section::after {
    height: clamp(4rem, 8vw, 8rem);
    clip-path: none;
    background: linear-gradient(var(--blue-deep), transparent);
}

.film-section::after { background: linear-gradient(transparent, var(--blue-deep)); }
.film-section > .film-controls {
    position: relative;
    inset: auto;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.final-cta__inner { min-height: 0; }
.final-cta__copy { padding-block: 0; }

@media (max-width: 56rem) {
    .story-copy { grid-row: 1; }
    .story-visual { grid-row: 2; margin-top: 3.5rem; }
    .story-visual,
    .concept-visual { top: auto; height: auto; }
}

@media (max-width: 47.99rem) {
    .section-actions { align-items: flex-start; flex-direction: column; }
    .section-actions .button { max-width: 100%; }
}

@media (forced-colors: active) {
    .section-transition { background: Canvas; }
    .section-transition::before { display: none; }
}

@media print {
    .section-nav { display: none; }
    .has-section-nav .site-footer { padding-bottom: 0; }
    .section-transition { display: none; }
    .content-section,
    .landing-page .impact-section,
    .film-section,
    .final-cta { padding-block: 2rem; }
}

/* Keep the central subject in the right-hand photograph clear of the copy fade. */
.landing-page .impact-grid { position: static; }
.landing-page .impact-copy { min-height: clamp(32rem, 43vw, 42rem); padding-bottom: 3rem; }
.landing-page .impact-section::before { display: none; }

.impact-photo {
    position: absolute;
    inset: var(--section-space) 0 auto auto;
    width: min(62%, 64rem);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    pointer-events: none;
}

.impact-photo picture,
.impact-photo img { display: block; width: 100%; height: 100%; }
.impact-photo img { object-fit: cover; object-position: center; }

.impact-photo::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #082f46, rgb(8 47 70 / 65%) 8%, transparent 26%),
        linear-gradient(0deg, #082f46, transparent 22%),
        linear-gradient(180deg, #082f46, transparent 12%);
    content: "";
}

.landing-page .impact-section .benefit-heading,
.landing-page .impact-section .benefit-grid { position: relative; z-index: 1; }
.landing-page .impact-section .benefit-heading { margin-top: 3rem; }
.landing-page .story-visual--editorial img { object-position: 50% 45%; }
.landing-page .concept-visual img { object-position: 50% 50%; }

/* The press collection scrolls only on user input. */
.press-slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}
.press-slider-controls[hidden] { display: none; }
.press-slider-buttons { display: flex; flex: 0 0 auto; gap: 0.5rem; }
.press-slider-buttons button {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue-deep);
    background: var(--paper);
    font: inherit;
    font-size: 1.3rem;
    cursor: pointer;
}
.press-slider-buttons button:hover:not(:disabled) { color: #fff; background: var(--blue-dark); }
.press-slider-buttons button:disabled { opacity: 0.35; cursor: default; }
.press-slider-buttons button:focus-visible { outline: 3px solid #e46627; outline-offset: 3px; }
.press-slider-buttons button[hidden] { display: none; }

.press-slider {
    display: flex;
    width: 100%;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-block: 1.5rem 3.8rem;
    padding-inline: clamp(0.5rem, 1vw, 1rem);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(0.5rem, 1vw, 1rem);
    scrollbar-width: none;
}
.press-slider::-webkit-scrollbar { display: none; }
.press-slider.is-draggable { cursor: grab; }
.press-slider.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.press-slider.is-dragging a { cursor: grabbing; }
.press-slider:focus-visible { outline: 3px solid #e46627; outline-offset: 4px; }

.press-slider .press-card {
    position: relative;
    isolation: isolate;
    flex: 0 0 auto;
    width: min(26rem, 86vw);
    min-width: 0;
    min-height: 32rem;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 0.3rem 1rem rgb(8 47 70 / 5%);
    transform: translateY(0);
}
.press-slider .press-card--featured {
    transform: translateY(-0.7rem);
    box-shadow: 0 1.5rem 2.5rem rgb(8 47 70 / 23%), 0 0.5rem 0.8rem rgb(8 47 70 / 10%);
}
.press-card__thumbnail {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.1) rotate(-3deg);
    filter: blur(2px);
    opacity: 0.2;
    pointer-events: none;
}
.press-slider .press-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgb(255 253 248 / 28%), rgb(255 253 248 / 78%));
    content: "";
    pointer-events: none;
}
.press-slider .press-card::after { transition: opacity 160ms ease; }
.press-slider .press-card--featured::after { opacity: 0; }
.press-slider .press-card h3,
.press-slider .press-card__meta,
.press-slider .press-card blockquote p,
.press-slider .press-card cite { transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease; }
.press-slider .press-card {
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease,
        transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.press-slider .press-card__meta { flex-wrap: wrap; gap: 0.45rem 1rem; }
.press-slider .press-card__meta span { max-width: 19ch; }
.press-slider .press-card > .press-card__button,
.testimonial-card__link {
    align-self: flex-end;
    min-height: 2.75rem;
    gap: 0.7rem;
    padding: 0.65rem 1rem;
    border: 0;
    color: #fff;
    background: var(--blue-dark);
    font-size: 0.78rem;
    transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.press-slider .press-card > .press-card__button:hover,
.testimonial-card__link:hover { background: var(--blue-deep); }
.press-slider .press-card--featured > .press-card__button { color: var(--blue-deep); background: #fff; }
.press-slider .press-card--featured > .press-card__button:hover { background: var(--gold); }

/* Identical sponsors, staggered over two opposite-moving rows. */
.supporter-marquees { display: grid; gap: 0.8rem; margin-top: 2rem; mix-blend-mode: multiply; }
.supporter-marquees .supporter-marquee { margin-top: 0; }
.supporter-marquee--reverse.is-ready .supporter-track { animation-direction: normal; }
.supporter-marquees.is-paused .supporter-track { animation-play-state: paused; }
.supporter-logo img { filter: grayscale(1); opacity: 0.5; mix-blend-mode: multiply; }
.supporter-logo--dark-source img { filter: grayscale(1) brightness(5) invert(1); }

.supporter-marquee.is-ready:has(:focus-visible),
.supporter-marquee.is-ready:focus-visible {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
}
.supporter-marquee.is-ready:has(:focus-visible) .supporter-track,
.supporter-marquee.is-ready:focus-visible .supporter-track { animation: none; transform: none; }
.supporter-marquee:has(:focus-visible) [aria-hidden="true"],
.supporter-marquee:focus-visible [aria-hidden="true"] { display: none; }
.supporter-marquee:focus-visible { outline: 3px solid #e46627; outline-offset: -3px; }

@media (max-width: 47.99rem) {
    .landing-page .impact-copy { min-height: 0; padding-bottom: 0; }
    .impact-photo {
        position: relative;
        inset: auto;
        width: 100vw;
        height: clamp(23rem, 90vw, 34rem);
        margin: 2rem calc(50% - 50vw) 0;
    }
    .impact-photo img { object-position: 50% 50%; }
    .impact-photo::after { background: linear-gradient(180deg, #082f46, transparent 22%, transparent 70%, #082f46); }
    .landing-page .impact-section .benefit-heading { margin-top: 2rem; }
    .press-slider .press-card { padding: 1.3rem; }
    .press-slider .press-card blockquote { padding-top: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
    .supporter-marquees .supporter-marquee--reverse { display: none; }
}

/* Keep the existing stacked tablet layout; phones put the questions first. */
@media (max-width: 64rem) {
    .faq-grid {
        grid-template-areas: "heading" "contact" "list";
        grid-template-rows: auto auto auto;
    }
    .faq-grid > .faq-list { margin-top: calc(clamp(3rem, 8vw, 9rem) + 1rem); }
}

@media (max-width: 47.99rem) {
    .landing-page .hero-section { padding-top: 0; padding-inline: 0; }
    .film-section {
        --film-blue-tail: 25svh;
        padding-bottom: calc(var(--section-space) + var(--film-blue-tail));
    }
    .film-section__content { padding-bottom: 33svh; }
    .film-section > .film-controls { margin-top: 0; }
    .film-section__video,
    .film-section__shade { height: calc(100% - var(--film-blue-tail)); }
    .film-section::after {
        height: calc(clamp(4rem, 8vw, 8rem) + var(--film-blue-tail));
        background: linear-gradient(to top, var(--blue-deep) var(--film-blue-tail), transparent);
    }
    .landing-page .hero-editorial {
        width: 100%;
        min-height: 0;
        border-radius: 0;
        box-shadow: none;
        /* Fade the extended white area into the section's actual background. */
        -webkit-mask-image: linear-gradient(#000 calc(100% - 4.5rem), transparent);
        mask-image: linear-gradient(#000 calc(100% - 4.5rem), transparent);
    }
    .landing-page .hero-editorial::after { display: none; }
    .landing-page .hero-editorial :is(h1, h2) {
        align-self: start;
        width: 84%;
        max-width: 18rem;
        padding-top: 2.25rem;
    }
    .landing-page .hero-editorial__visual {
        margin-top: 8.25rem;
        margin-right: -50%;
        transform: translate(-10%, 10%);
    }
    .landing-page .hero-editorial__details {
        width: 100%;
        margin-inline: 0;
        padding-bottom: 6rem;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: var(--paper);
        backdrop-filter: none;
    }
    .landing-page .hero-editorial__details::before {
        position: absolute;
        inset: auto 0 100%;
        height: 3.5rem;
        background: linear-gradient(rgb(255 253 248 / 0), var(--paper));
        pointer-events: none;
        content: "";
    }
    .landing-page .hero-actions { display: none; }
    .landing-page #fortbildung .training-copy > .training-actions,
    .landing-page #fortbildung .training-copy > .handoff-note { display: none; }
    .course-card__actions > .button { width: 100%; }

    .testimonial-group .testimonial-card--practice {
        height: auto;
        min-height: 0;
        grid-template-rows: 6.5rem minmax(9.75rem, auto);
        border-radius: 0.85rem;
    }
    .testimonial-card--practice .testimonial-card__body {
        grid-template-rows: auto minmax(2.625rem, 1fr) auto;
        gap: 0.3rem;
        padding: 0.65rem 0.9rem;
    }
    .testimonial-card--practice .testimonial-card__body h3 { font-size: 0.95rem; line-height: 1.2; }
    .testimonial-card--practice .testimonial-card__location { display: none; }
    .testimonial-card--practice blockquote {
        align-self: start;
        max-height: 2.5em;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        font-size: 1.05rem;
        line-height: 1.25;
    }
    .testimonial-card--practice .testimonial-card__credit { padding: 1rem 0.6rem 0.4rem; }
    .testimonial-card--practice .testimonial-card__link {
        width: auto;
        min-height: 2.75rem;
        padding: 0.55rem 0.85rem;
        font-size: 0.8rem;
    }

    .faq-grid {
        grid-template-areas: "heading" "list" "contact";
        row-gap: 2rem;
    }
    .faq-grid > .faq-list,
    .faq-grid > .faq-contact { margin-top: 0; }

    /* With enlarged text, retain the existing separate image row. */
    @container hero (max-width: 18em) {
        .landing-page .hero-editorial :is(h1, h2) { width: 100%; max-width: none; padding: 2rem 1rem 1rem; }
        .landing-page .hero-editorial__visual { margin: 0; transform: none; }
    }
}

@media print {
    .press-slider-controls, .supporters-controls { display: none; }
    .press-slider { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
    .press-slider .press-card { break-inside: avoid; }
    .supporter-marquees .supporter-marquee--reverse { display: none; }
}

/* Enhanced rails use native horizontal scrolling; animation never competes with input. */
.testimonial-marquee.is-loop-slider,
.supporter-marquee.is-loop-slider,
.press-slider.is-loop-slider {
    display: block;
    width: 100%;
    margin-inline: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    scroll-snap-type: none;
    overflow-anchor: none;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y pinch-zoom;
    cursor: grab;
}
.is-loop-slider::-webkit-scrollbar { display: none; }
.is-loop-slider.is-dragging,
.is-loop-slider.is-dragging a { cursor: grabbing; user-select: none; }
.is-loop-slider .slider-track {
    display: flex;
    width: max-content;
    animation: none !important;
    transform: none !important;
    will-change: auto;
}
.is-loop-slider .slider-group,
.is-loop-slider .slider-group[data-slider-copy] {
    display: flex;
    flex: 0 0 auto;
    width: max-content;
    gap: var(--slider-gap, 1rem);
    padding: 0 var(--slider-gap, 1rem) 0 0;
}
.testimonial-marquee.is-loop-slider {
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.supporter-marquee.is-loop-slider {
    --slider-gap: 0.8rem;
    padding-block: 0.25rem;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.is-loop-slider .testimonial-group .testimonial-card--practice { width: min(22rem, calc(100vw - 2.5rem)); }
.is-loop-slider .supporter-group .supporter-logo { width: clamp(10rem, 13vw, 12.5rem); }
.is-loop-slider:focus-visible,
.is-loop-slider:has(:focus-visible) { mask-image: none; }
.is-loop-slider:focus-visible { outline: 3px solid #e46627; outline-offset: -3px; }

@media (max-width: 47.99rem) {
    .testimonial-marquee.is-loop-slider { --slider-gap: 0.75rem; }
    .testimonial-group .testimonial-card--practice,
    .is-loop-slider .testimonial-group .testimonial-card--practice { width: min(16rem, calc(100vw - 2.5rem)); }
    .supporter-marquee.is-loop-slider { --slider-gap: 0.65rem; }
    .is-loop-slider .supporter-group .supporter-logo { width: 9.5rem; }
    .impact-photo { aspect-ratio: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .press-slider .press-card,
    .press-slider .press-card::after,
    .press-slider .press-card * { transition: none; }
}

@media print {
    .is-loop-slider .slider-group[data-slider-copy] { display: none; }
    .testimonial-marquee.is-loop-slider,
    .supporter-marquee.is-loop-slider,
    .press-slider.is-loop-slider { overflow: visible; mask-image: none; }
    .is-loop-slider .slider-track { width: 100%; }
    .is-loop-slider .slider-group { display: grid; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .is-loop-slider .slider-group > * { width: auto; }
    .supporter-marquees .supporter-marquee--reverse { display: none; }
}
