@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-cyrillic-400-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-cyrillic-500-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-cyrillic-600-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-cyrillic-700-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-cyrillic-800-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

:root {
    --teal: #159da2;
    --teal-dark: #087d83;
    --teal-soft: #eaf7f8;
    --teal-pale: #f4fbfb;
    --red: #d6162b;
    --red-dark: #b91022;
    --navy: #16356c;
    --navy-soft: #496080;
    --ink: #1c3154;
    --muted: #61718c;
    --line: #d9e8eb;
    --surface: #ffffff;
    --page: #ffffff;
    --section: #f6fbfc;
    --shadow-sm: 0 8px 24px rgba(16, 59, 84, .08);
    --shadow-md: 0 18px 48px rgba(16, 59, 84, .12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shell: min(1240px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--page);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.is-locked {
    overflow: hidden;
}

img, video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input {
    font: inherit;
}

button {
    color: inherit;
}

h1, h2, h3, p {
    margin-top: 0;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

[hidden] {
    display: none !important;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 130;
    background: #fff;
}

.header-brand-row {
    background: #fff;
    border-bottom: 1px solid rgba(217, 232, 235, .78);
}

.header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    min-width: 0;
    display: flex;
    align-items: center;
    color: inherit;
    line-height: 1;
}

.brand-symbol {
    flex: 0 0 auto;
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.brand-word {
    margin-left: 20px;
    color: var(--navy);
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -1.25px;
    white-space: nowrap;
}

.brand-word span {
    color: var(--red);
}

.brand-word span:first-child {
    color: var(--teal);
}

.brand-divider {
    width: 1px;
    height: 54px;
    margin-inline: 34px;
    background: #d5e0e4;
}

.brand-caption {
    color: #5c6c82;
    font-size: 15px;
    line-height: 1.42;
    font-weight: 400;
    white-space: nowrap;
}

.desktop-nav-shell {
    position: sticky;
    z-index: 120;
    top: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(217, 232, 235, .96);
    box-shadow: 0 9px 24px rgba(16, 59, 84, 0);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background-color .25s ease;
}

.desktop-nav-shell.is-stuck {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 9px 24px rgba(16, 59, 84, .08);
}

.desktop-nav {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 48px);
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease, background-color .2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a.is-active {
    color: var(--teal-dark);
}

.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a.is-active::after {
    transform: scaleX(1);
}

.desktop-nav .nav-search {
    min-width: 148px;
    gap: 10px;
    padding-inline: 24px;
    color: var(--teal-dark);
    background: var(--teal-soft);
    border-radius: 999px;
}

.desktop-nav .nav-search::after {
    display: none;
}

.desktop-nav .nav-search:hover, .desktop-nav .nav-search:focus-visible, .desktop-nav .nav-search.is-active {
    color: #fff;
    background: var(--teal);
}

.desktop-nav .nav-search i {
    font-size: 21px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button, .menu-button, .dialog-close, .text-button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.icon-button, .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--navy);
    font-size: 20px;
}

.icon-button:hover, .menu-button:hover {
    background: var(--teal-soft);
}

.menu-button {
    display: none;
}

.header-login {
    min-height: 48px;
    padding-inline: 22px;
    border-radius: 10px;
    font-size: 14px;
}

.header-login i {
    font-size: 20px;
}

.mobile-nav, .mobile-nav-backdrop {
    display: none;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.1px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid rgba(21, 157, 162, .28);
    outline-offset: 3px;
}

.button-primary {
    color: #fff;
    background: var(--teal);
    box-shadow: 0 9px 22px rgba(21, 157, 162, .2);
}

.button-primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 13px 28px rgba(21, 157, 162, .27);
}

.button-secondary {
    color: var(--navy);
    background: #fff;
    border-color: #b7cbd1;
}

.button-secondary:hover {
    border-color: var(--teal);
}

.button-danger {
    color: #fff;
    background: var(--red);
    box-shadow: 0 10px 24px rgba(214, 22, 43, .2);
}

.button-danger:hover {
    background: var(--red-dark);
}

.button-compact {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 11px;
}

.hero {
    background: #eef9fa;
    overflow: hidden;
}

.hero-grid {
    min-height: 480px;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: clamp(36px, 6vw, 84px);
    padding-block: 64px;
}

.hero-copy {
    padding-left: 4px;
}

.hero h1 {
    margin-bottom: 8px;
    color: var(--teal);
    font-size: clamp(48px, 5.6vw, 78px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -4px;
}

.hero h1 span {
    color: var(--red);
}

.hero-subtitle {
    color: #294565;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.38;
    font-weight: 500;
}

.hero-lead {
    max-width: 485px;
    margin: 28px 0 30px;
    color: var(--navy);
    font-size: clamp(17px, 1.65vw, 22px);
    line-height: 1.38;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.video-feature {
    padding: 18px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.video-kicker {
    margin-bottom: 14px;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
}

.video-frame {
    overflow: hidden;
    border-radius: 14px;
    background: #eaf5f6;
    box-shadow: 0 12px 32px rgba(20, 62, 91, .16);
}

.video-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.benefits {
    padding-block: 26px;
    background: #fff;
    border-bottom: 1px solid #e5eff1;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
}

.benefit {
    min-width: 0;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 13px 10px 15px;
    color: var(--navy-soft);
    background: linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
    border: 1px solid #e2eef0;
    border-radius: 16px;
    text-align: center;
    font-size: 10.5px;
    line-height: 1.36;
    font-weight: 700;
}

.benefit img {
    flex: 0 0 auto;
    width: 82px;
    height: 82px;
    object-fit: contain;
    filter: drop-shadow(0 8px 10px rgba(20, 62, 91, .08));
}

.new-materials-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    color: #fff;
    background: radial-gradient(circle at 8% 0%, rgba(43, 210, 205, .26), transparent 33%),
    radial-gradient(circle at 94% 100%, rgba(214, 22, 43, .16), transparent 32%),
    linear-gradient(125deg, #112d5e 0%, #153e6e 53%, #08767a 100%);
}

.new-materials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 62%);
    mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.new-materials-section .shell {
    position: relative;
    z-index: 1;
}

.new-materials-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 34px;
}

.new-materials-heading > div:first-child {
    max-width: 760px;
}

.new-materials-heading h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(44px, 5vw, 68px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -3.2px;
}

.new-materials-heading h2 span {
    color: #ff5c6d;
}

.new-materials-heading p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 15px;
    line-height: 1.65;
}

.new-materials-navigation {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 4px;
}

.new-materials-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-width: 72px;
    margin-right: 8px;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.new-materials-counter b {
    color: #fff;
    font-size: 18px;
}

.new-materials-control {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .32);
}

.new-materials-control:hover {
    color: var(--navy);
    background: #fff;
    border-color: #fff;
}

.round-control:disabled {
    opacity: .34;
    cursor: default;
    transform: none;
}

.round-control:disabled:hover {
    color: inherit;
    background: inherit;
    border-color: inherit;
    transform: none;
}

.new-materials-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.new-materials-track::-webkit-scrollbar {
    display: none;
}

.new-materials-track.is-dragging {
    scroll-snap-type: none;
    cursor: grabbing;
    user-select: none;
}

.new-materials-track.is-dragging * {
    pointer-events: none;
}

.new-material-slide {
    min-width: 0;
    min-height: 420px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    scroll-snap-align: start;
    overflow: hidden;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 28px;
    /* box-shadow: 0 30px 70px rgba(2, 22, 54, .28); */
    backdrop-filter: blur(12px);
    transition: border 0.3s ease;
}

.new-materials-track a:hover .new-material-slide {
    border: 1px solid #a8d4d7
}

.new-material-preview {
    position: relative;
    min-height: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    align-self: center;
    margin: 22px;
    background: #eaf5f6;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(2, 20, 49, .18);
}

.new-material-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-material-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px 48px 50px 26px;
}

.new-material-number {
    margin: 0 0 22px;
    color: #71dedb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.new-material-copy h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(28px, 3vw, 30px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.6px;
}

.new-material-description {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.68;
}

.new-material-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.new-material-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    font-weight: 700;
}

.new-material-meta i {
    color: #70ddda;
    font-size: 20px;
}

.new-material-status {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.new-material-status i {
    color: #ff7b89;
    font-size: 20px;
}

.new-material-status i.public {
    color: #7bffb0
}

.new-materials-progress {
    position: relative;
    height: 18px;
    margin-top: 24px;
    cursor: pointer;
    touch-action: none;
}

.new-materials-progress::before {
    content: "";
    position: absolute;
    inset: 8px 0 auto;
    height: 2px;
    background: rgba(255, 255, 255, .18);
}

.new-materials-progress span {
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #70dedb;
    transform-origin: left center;
    transition: width .2s ease, transform .12s linear;
}

.new-materials-progress:focus-visible {
    outline: 2px solid rgba(112, 222, 219, .72);
    outline-offset: 3px;
}

.team-section {
    padding: 72px 0;
    background: #fff;
    overflow: hidden;
}

.team-heading {
    position: relative;
    z-index: 2;
}

.team-heading h2 {
    margin-bottom: 6px;
    color: var(--teal);
    font-size: clamp(36px, 4.3vw, 60px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
}

.team-heading h2 span:not(.red-dot) {
    color: var(--red);
}

.red-dot {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin: 0 16px 7px 0;
    border-radius: 50%;
    background: var(--red);
}

.team-heading p {
    margin: 0 0 -36px 44px;
    color: var(--navy);
    font-size: 16px;
    line-height: 1.5;
}

.team-stage {
    position: relative;
    min-height: 650px;
    margin-top: 0;
    background: #fff;
}

.leader-copy {
    position: absolute;
    z-index: 3;
    top: 245px;
    left: 14px;
    width: 330px;
}

.role-label {
    display: inline-block;
    margin-bottom: 22px;
    padding: 10px 18px;
    color: var(--teal);
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 700;
}

.leader-copy h3 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.24;
    font-weight: 800;
    letter-spacing: -.8px;
}

.leader-copy p, .expert-orbit p {
    color: #425979;
    font-size: 11px;
    line-height: 1.55;
}

.portrait-ring {
    border: 1px solid #75cbd0;
    border-radius: 50%;
    padding: 10px;
    background: rgba(255, 255, 255, .72);
}

.portrait-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #168f94;
}

.leader-portrait {
    position: absolute;
    z-index: 2;
    top: 114px;
    left: 365px;
    width: 380px;
    height: 380px;
    padding: 16px;
}

.expert-orbit {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 18px;
}

.expert-photo {
    flex: 0 0 auto;
    width: 144px;
    height: 144px;
    padding: 8px;
}

.expert-orbit h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.expert-orbit p {
    margin-bottom: 0;
}

.expert-one {
    top: 20px;
    left: 760px;
    width: 455px;
}

.expert-two {
    top: 205px;
    left: 885px;
    width: 345px;
}

.expert-three {
    top: 405px;
    left: 705px;
    width: 410px;
}

.expert-four {
    top: 510px;
    left: 350px;
    width: 445px;
}

.expert-two .expert-photo, .expert-three .expert-photo, .expert-four .expert-photo {
    width: 128px;
    height: 128px;
}

.expert-two h3, .expert-three h3, .expert-four h3 {
    font-size: 18px;
}

.section {
    padding: 42px 0;
}

.formats {
    background: #f5fafb;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin-bottom: 0;
    color: var(--navy);
    font-size: clamp(26px, 2.5vw, 36px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.7px;
}

.section-caption {
    margin-bottom: 5px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.section-heading > a, .text-button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 0;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

.section-heading > a:hover, .text-button:hover {
    color: var(--teal-dark);
}

.compact-heading {
    margin-bottom: 17px;
}

.material-finder {
    overflow: hidden;
    padding-block: 72px;
    background: #f1f9fa;
}

.finder-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
}

.finder-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 56px;
}

.finder-intro .section-caption {
    grid-column: 1 / -1;
}

.finder-heading-copy {
    min-width: 0;
}

.finder-heading-copy h2 {
    max-width: 780px;
    margin: 0 0 16px;
    color: var(--navy);
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2.6px;
}

.finder-heading-copy p {
    max-width: 720px;
    margin: 0;
    color: var(--navy-soft);
    font-size: 14px;
    line-height: 1.65;
}

.finder-total {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    margin: 0 0 2px;
    padding-left: 28px;
    border-left: 1px solid #cce1e4;
}

.finder-total strong {
    color: var(--red);
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.finder-total span {
    color: var(--navy);
    font-size: 10px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.finder-workspace {
    min-width: 0;
}

.material-search-field {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    color: var(--teal);
    background: #fff;
    border: 1px solid #9fd1d5;
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(16, 59, 84, .09);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.material-search-field:focus-within {
    background: #fff;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(21, 157, 162, .11);
}

.material-search-field > i {
    flex: 0 0 auto;
    font-size: 24px;
}

.material-search-field input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    color: var(--ink);
    background: transparent;
    font-size: 15px;
    font-weight: 500;
}

.material-search-field input::placeholder {
    color: #7b8da5;
    opacity: 1;
}

.material-search-field input::-webkit-search-decoration,
.material-search-field input::-webkit-search-cancel-button,
.material-search-field input::-webkit-search-results-button,
.material-search-field input::-webkit-search-results-decoration {
    display: none;
    -webkit-appearance: none;
}

.material-search-field button {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--navy-soft);
    background: #eaf4f5;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.material-search-field button:hover {
    color: #fff;
    background: var(--teal);
}

.search-status {
    margin: 14px 2px 0;
    color: var(--muted);
    font-size: 11px;
}

.search-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-top: 15px;
    border-top: 1px solid #d9e7e9;
}

.search-result {
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 15px 2px;
    border-bottom: 1px solid #e1ecee;
}

.search-result-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--teal);
    background: var(--teal-soft);
    border-radius: 9px;
    font-size: 17px;
}

.search-result-copy {
    min-width: 0;
}

.search-result-copy small {
    display: block;
    margin-bottom: 3px;
    color: var(--teal-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.search-result-copy strong {
    display: block;
    overflow: hidden;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result > i {
    color: #93a5b7;
    font-size: 15px;
    transition: color .2s ease, transform .2s ease;
}

.search-result:hover .search-result-copy strong {
    color: var(--teal-dark);
}

.search-result:hover > i {
    color: var(--teal);
    transform: translate(2px, -2px);
}

.search-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 24px 4px 4px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.article-section {
    margin-block: 70px;
    background: #fff;
}

.article-banner {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #eef7f8;
    box-shadow: var(--shadow-sm);
}

.article-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    position: relative;
    z-index: 1;
    width: min(54%, 620px);
    padding: 54px;
}

.article-content > span {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 13px;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, .92);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.article-content h2 {
    margin-bottom: 24px;
    color: var(--navy);
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.5px;
}

.registered-mark {
    position: relative;
    top: -.28em;
    font-size: .48em;
    line-height: 0;
    vertical-align: baseline;
}

.learning-path {
    margin-block: 70px;
    background: #fff;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid #cfe3e6;
    border-radius: var(--radius-md);
}

.path-step {
    position: relative;
    min-height: 182px;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 26px 24px;
    background: #fff;
}

.path-step:not(:last-child) {
    border-right: 1px solid #d6e8ea;
}

.path-step > span {
    position: absolute;
    top: 14px;
    right: 18px;
    color: #cce7e9;
    font-size: 26px;
    font-weight: 800;
}

.path-step > img {
    width: 104px;
    height: 104px;
    object-fit: contain;
    filter: drop-shadow(0 11px 14px rgba(20, 62, 91, .09));
}

.path-step h3 {
    margin-bottom: 5px;
    color: var(--teal-dark);
    font-size: 17px;
    font-weight: 800;
}

.path-step p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.content-section {
    margin-block: 70px;
    background: #fff;
}

.content-section.tint {
    background: var(--section);
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card-grid-four {
    grid-template-columns: repeat(4, 1fr);
}

.card-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.material-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e0ebed;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(19, 67, 91, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    border-color: #9ed3d6;
    box-shadow: var(--shadow-md);
}

.material-card[hidden] {
    display: none;
}

.card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.5 / 1;
    background: #e9f3f4;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.material-card:hover .card-media img {
    transform: scale(1.035);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(14, 47, 72, .18);
    transform: translate(-50%, -50%);
}

.play-button i {
    margin-left: 2px;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 20px;
}

.meta {
    margin-bottom: 9px;
    color: var(--teal);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.card-body h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.42;
    font-weight: 800;
}

.card-body p {
    margin: auto 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.compact-card .card-body h3 {
    font-size: 13px;
}

.case-media {
    aspect-ratio: 1.72 / 1;
}

.card-link {
    margin-top: auto;
    padding-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 800;
}

.survey-cta {
    margin-block: 70px;
}

.survey-panel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 28px 34px;
    background: var(--teal-soft);
    border: 1px solid #cee7e9;
    border-radius: var(--radius-md);
}

.survey-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--teal);
    border-radius: 50%;
    font-size: 30px;
}

.survey-panel h2 {
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
}

.survey-panel p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    background: #fff;
    border-top: 1px solid #e2ecee;
}

.footer-top {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}

.footer-meta span, .footer-meta a {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.footer-meta span:last-child {
    margin-block: 1rem;
}

.footer-meta img {
    width: 150px;
    margin-left: auto;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.disclaimer {
    padding: 44px 0 48px;
    color: var(--navy);
    border-top: 1px solid #e6edef;
    text-align: center;
    font-size: clamp(24px, 2.6vw, 35px);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -.8px;
}

@media (max-width: 1180px) {
    .header-inner {
        min-height: 72px;
    }

    .brand-symbol {
        width: 58px;
        height: 58px;
    }

    .brand-word {
        margin-left: 16px;
        font-size: 27px;
    }

    .brand-divider {
        height: 48px;
        margin-inline: 24px;
    }

    .brand-caption {
        font-size: 13px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .desktop-nav a {
        font-size: 12.5px;
    }

    .desktop-nav .nav-search {
        min-width: 132px;
        padding-inline: 20px;
    }

    .team-stage {
        min-height: 730px;
    }

    .leader-portrait {
        left: 315px;
    }

    .expert-one {
        left: 660px;
    }

    .expert-two {
        left: 730px;
    }

    .expert-three {
        top: 430px;
        left: 650px;
    }

    .expert-four {
        top: 575px;
        left: 330px;
    }
}

@media (max-width: 980px) {
    :root {
        --shell: min(100% - 36px, 860px);
    }

    html {
        scroll-padding-top: 78px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .site-header {
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, .97);
        border-bottom: 1px solid rgba(217, 232, 235, .9);
        box-shadow: 0 6px 20px rgba(16, 59, 84, .07);
        backdrop-filter: blur(18px);
    }

    .header-brand-row {
        position: relative;
        z-index: 3;
        background: rgba(255, 255, 255, .97);
        border-bottom: 0;
    }

    .header-inner {
        min-height: 72px;
        gap: 14px;
    }

    .brand {
        margin-right: auto;
    }

    .brand-symbol {
        width: 46px;
        height: 46px;
    }

    .brand-word {
        margin-left: 12px;
        font-size: 20px;
        letter-spacing: -.7px;
    }

    .brand-divider, .brand-caption {
        display: none;
    }

    .desktop-nav-shell {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-login {
        min-height: 40px;
        padding-inline: 15px;
        font-size: 12px;
    }

    .header-login i {
        font-size: 18px;
    }

    .menu-button {
        display: grid;
    }

    .mobile-nav {
        position: absolute;
        z-index: 3;
        top: 100%;
        right: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 22px;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        padding: 10px max(24px, calc((100% - min(100% - 36px, 860px)) / 2)) 24px;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 18px 34px rgba(16, 59, 84, .13);
    }

    .mobile-nav a {
        min-height: 54px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 4px;
        color: var(--navy);
        border-bottom: 1px solid #e5eef0;
        font-size: 14px;
        font-weight: 650;
    }

    .mobile-nav a:hover, .mobile-nav a:focus-visible, .mobile-nav a.is-active {
        color: var(--teal-dark);
    }

    .mobile-nav a:first-child {
        color: var(--teal-dark);
    }

    .mobile-nav a:first-child i {
        font-size: 20px;
    }

    .mobile-nav-backdrop {
        position: fixed;
        z-index: 2;
        inset: 72px 0 0;
        display: block;
        width: 100%;
        padding: 0;
        border: 0;
        background: rgba(17, 37, 63, .34);
        cursor: default;
        backdrop-filter: blur(2px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-block: 54px;
    }

    .hero-copy {
        max-width: 660px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .benefit-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit {
        min-height: 144px;
    }

    .team-heading p {
        margin-bottom: 26px;
    }

    .team-stage {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 26px;
        background-position: center;
        border: 1px solid #e2eff0;
        border-radius: var(--radius-md);
    }

    .leader-copy, .leader-portrait, .expert-orbit {
        position: static;
        width: auto;
    }

    .leader-copy {
        grid-column: 1 / -1;
        max-width: 680px;
    }

    .leader-copy h3 {
        font-size: 30px;
    }

    .leader-portrait {
        grid-column: 1 / -1;
        justify-self: center;
        width: 300px;
        height: 300px;
    }

    .expert-orbit {
        align-items: flex-start;
        padding: 18px;
        background: rgba(255, 255, 255, .92);
        border: 1px solid #e2ecee;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
    }

    .expert-photo, .expert-two .expert-photo, .expert-three .expert-photo, .expert-four .expert-photo {
        width: 98px;
        height: 98px;
    }

    .expert-orbit h3, .expert-two h3, .expert-three h3, .expert-four h3 {
        font-size: 16px;
    }

    .expert-orbit p {
        font-size: 10px;
    }

    .card-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-content {
        width: 62%;
        padding: 42px;
    }

    .path-grid {
        grid-template-columns: 1fr;
    }

    .path-step:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid #d6e8ea;
    }
}

@media (max-width: 680px) {
    :root {
        --shell: calc(100% - 28px);
    }

    html {
        scroll-padding-top: 74px;
    }

    body {
        font-size: 15px;
    }

    .header-inner {
        min-height: 66px;
        gap: 8px;
    }

    .brand-symbol {
        width: 42px;
        height: 42px;
    }

    .brand-word {
        margin-left: 8px;
        font-size: 17px;
    }

    .header-login {
        min-height: 36px;
        padding-inline: 11px;
        font-size: 11px;
    }

    .header-login i {
        display: none;
    }

    .menu-button {
        width: 38px;
        height: 38px;
    }

    .mobile-nav {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 66px);
        padding: 8px 18px 20px;
    }

    .mobile-nav a {
        min-height: 50px;
    }

    .mobile-nav-backdrop {
        inset-block-start: 66px;
    }

    .hero-grid {
        min-height: auto;
        padding-block: 42px;
    }

    .hero h1 {
        font-size: clamp(40px, 12.2vw, 52px);
        letter-spacing: -2.5px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-lead {
        margin-block: 22px;
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .video-feature {
        padding: 12px;
        border-radius: 16px;
    }

    .video-kicker {
        font-size: 12px;
    }

    .benefits {
        padding-block: 20px;
    }

    .benefit-list {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .benefit {
        min-height: 140px;
        padding: 10px 8px 13px;
        font-size: 10px;
    }

    .benefit img {
        width: 78px;
        height: 78px;
    }

    .team-heading h2 {
        font-size: 36px;
        letter-spacing: -1.4px;
    }

    .red-dot {
        width: 11px;
        height: 11px;
        margin: 0 8px 5px 0;
    }

    .team-heading p {
        margin: 0 0 24px;
        font-size: 13px;
    }

    .team-stage {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .leader-copy {
        grid-column: auto;
    }

    .leader-copy h3 {
        font-size: 26px;
    }

    .leader-copy p {
        font-size: 11px;
    }

    .leader-portrait {
        grid-column: auto;
        width: min(250px, 74vw);
        height: min(250px, 74vw);
    }

    .expert-orbit {
        align-items: center;
    }

    .expert-photo, .expert-two .expert-photo, .expert-three .expert-photo, .expert-four .expert-photo {
        width: 86px;
        height: 86px;
    }

    .expert-orbit h3, .expert-two h3, .expert-three h3, .expert-four h3 {
        font-size: 15px;
    }

    .role-label {
        margin-bottom: 15px;
    }

    .section {
        padding-block: 34px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .section-heading > a, .text-button {
        font-size: 0;
    }

    .section-heading > a i, .text-button i {
        font-size: 18px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .material-finder {
        padding-block: 48px;
    }

    .finder-layout {
        gap: 24px;
    }

    .finder-intro {
        grid-template-columns: 1fr;
        align-items: start;
        row-gap: 18px;
    }

    .finder-heading-copy h2 {
        max-width: 520px;
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .finder-heading-copy p {
        max-width: 520px;
    }

    .finder-total {
        margin: 0;
        padding: 16px 0 0;
        border-top: 1px solid #cce1e4;
        border-left: 0;
    }

    .material-search-field {
        min-height: 64px;
        padding-inline: 16px;
        border-radius: 15px;
    }

    .material-search-field > i {
        font-size: 21px;
    }

    .material-search-field input {
        font-size: 13px;
    }

    .search-results {
        grid-template-columns: 1fr;
    }

    .article-banner {
        min-height: 510px;
    }

    .article-banner > img {
        object-position: 66% center;
    }

    .article-content {
        position: absolute;
        inset: auto 0 0;
        width: 100%;
        padding: 28px 22px;
        background: rgba(255, 255, 255, .91);
        backdrop-filter: blur(10px);
    }

    .article-content h2 {
        font-size: 21px;
    }

    .path-step {
        min-height: 142px;
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 12px;
        padding: 20px 18px;
    }

    .path-step > img {
        width: 88px;
        height: 88px;
    }

    .card-grid-four, .card-grid-three {
        grid-template-columns: 1fr;
    }

    .card-media {
        aspect-ratio: 1.65 / 1;
    }

    .card-body h3, .compact-card .card-body h3 {
        font-size: 15px;
    }

    .survey-panel {
        grid-template-columns: auto 1fr;
        padding: 24px;
    }

    .survey-panel .button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .footer-top {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 28px;
    }

    .footer-meta {
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }

    .footer-meta img {
        margin-left: 0;
    }

    .article-section, .learning-path, .content-section, .survey-cta {
        margin-block: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* V2 — editorial experts and varied material formats */
:root {
    --section: #f4fafb;
    --radius-xs: 9px;
    --ease: cubic-bezier(.2, .75, .25, 1);
}

.section {
    padding-block: 62px;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: clamp(30px, 3vw, 43px);
    letter-spacing: -1.4px;
}

.section-note {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5
}

.section-caption {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.team-heading {
    margin-bottom: 40px;
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 470px);
    align-items: end;
    gap: 48px;
}

.team-heading h2 {
    margin: 0 0 16px 0;
    color: var(--teal);
    font-size: clamp(42px, 5.1vw, 70px);
    line-height: .98;
    letter-spacing: -3.6px;
}

.team-heading h2 span {
    color: var(--red);
}

.team-heading p {
    max-width: none;
    margin: 0 0 3px;
    color: var(--navy-soft);
    font-size: 16px;
    line-height: 1.62;
}

.experts-editorial {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.expert-profile {
    position: relative;
    min-width: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 18px 26px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbe9eb;
    border-radius: 18px;
    transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.expert-profile::before {
    content: "";
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 3px;
    background: var(--teal);
    border-radius: 0 0 3px 3px;
    opacity: .72;
}

.expert-profile:hover {
    transform: translateY(-5px);
    border-color: #a8d4d7;
    box-shadow: 0 18px 44px rgba(16, 59, 84, .1);
}

.expert-profile-header {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1ecee;
}

.expert-profile-photo {
    width: 104px;
    height: 104px;
    overflow: hidden;
    background: #eef6f7;
    border: 1px solid #d7e8ea;
    border-radius: 16px;
}

.expert-profile-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .45s var(--ease);
}

.expert-profile:hover .expert-profile-photo img {
    transform: scale(1.025);
}

.expert-profile-title {
    min-width: 0;
}

.expert-profile-title > span {
    display: block;
    margin-bottom: 8px;
    color: var(--teal-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.expert-profile-title h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(18px, 1.4vw, 20px);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -.55px;
}

.expert-profile-bio {
    margin: 19px 0 0;
    color: #516783;
    font-size: 11.5px;
    line-height: 1.62;
}

.formats {
    padding-block: 72px;
}

.path-grid {
    border-radius: 16px;
}

.path-step {
    min-height: 182px;
}

.media-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.media-counter {
    margin-right: 8px;
    color: #8aa0b6;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.media-counter b {
    color: var(--navy);
    font-size: 15px;
}

.round-control {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #ccdde1;
    border-radius: 50%;
    color: var(--navy);
    background: #fff;
    cursor: pointer;
    font-size: 17px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.round-control:hover {
    color: #fff;
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-2px);
}

.round-control:focus-visible {
    outline: 3px solid rgba(21, 157, 162, .22);
    outline-offset: 3px;
}

.video-library {
    background: #fff;
}

.video-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(310px, .72fr);
    gap: 22px;
}

.video-primary {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    min-height: 438px;
    background: var(--navy);
    border-radius: 22px;
}

.video-primary-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #dceff1;
}

.video-primary-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-large {
    width: 66px;
    height: 66px;
    font-size: 20px;
}

.video-primary-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 36px;
    color: #fff;
}

.video-primary-copy .meta {
    color: #69d1d4;
}

.video-primary-copy h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(23px, 2.1vw, 32px);
    line-height: 1.22;
    letter-spacing: -.7px;
}

.video-primary-copy p {
    margin-bottom: 32px;
    color: #c6d5e3;
    font-size: 13px;
    line-height: 1.55;
}

.watch-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 750;
}

.video-playlist {
    display: grid;
    gap: 9px;
    align-content: start;
}

.video-playlist-item {
    min-width: 0;
    min-height: 96px;
    display: grid;
    grid-template-columns: 112px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 9px;
    color: var(--navy);
    background: #fff;
    border: 1px solid #dce8ea;
    border-radius: 13px;
    cursor: pointer;
    text-align: left;
    transition: background-color .2s ease, border-color .2s ease;
}

.video-playlist-item:hover, .video-playlist-item.is-active {
    background: var(--teal-pale);
    border-color: #7fc9ce;
}

.video-playlist-item img {
    width: 112px;
    height: 76px;
    object-fit: cover;
    border-radius: 8px;
}

.video-playlist-item span {
    min-width: 0;
}

.video-playlist-item b {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    line-height: 1.34;
}

.video-playlist-item small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.35;
}

.video-playlist-item > i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--teal);
    border: 1px solid #a8dadd;
    border-radius: 50%;
    font-size: 11px;
}

.interview-section {
    overflow: hidden;
    background: var(--section);
}

.interview-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 32.3%);
    gap: 18px;
    overflow-x: auto;
    padding: 2px 2px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    cursor: grab;
}

.interview-track::-webkit-scrollbar {
    display: none;
}

.interview-slide {
    min-width: 0;
    scroll-snap-align: start;
}

.interview-slide > div {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.55 / 1;
    margin-bottom: 16px;
    background: #dbeff0;
    border-radius: 15px;
}

.interview-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s var(--ease);
}

.interview-slide:hover img {
    transform: scale(1.035);
}

.interview-slide > p {
    margin: 0 0 5px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
}

.interview-slide h3 {
    margin: 0;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.43;
}

.carousel-progress {
    position: relative;
    height: 14px;
    margin-top: 10px;
    cursor: pointer;
    touch-action: none;
}

.carousel-progress::before {
    content: "";
    position: absolute;
    inset: 6px 0 auto;
    height: 2px;
    background: #d9e7e9;
}

.carousel-progress span {
    position: absolute;
    top: 6px;
    left: 0;
    display: block;
    width: 34%;
    height: 2px;
    background: var(--teal);
}

.graphics-section {
    overflow: hidden;
    background: #fff;
}

.graphics-section .shell h2 {
    margin-bottom: 6px;
}

.graphics-heading {
    align-items: flex-end;
}

.graphics-heading-aside {
    display: flex;
    align-items: flex-end;
    gap: 28px;
}

.graphics-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 300px;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 22px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    cursor: grab;
}

.graphics-rail::-webkit-scrollbar {
    display: none;
}

.interview-track.is-dragging,
.graphics-rail.is-dragging {
    scroll-snap-type: none;
    cursor: grabbing;
    user-select: none;
}

.interview-track.is-dragging *,
.graphics-rail.is-dragging * {
    pointer-events: none;
}

.graphic-card {
    min-width: 0;
    scroll-snap-align: start;
    color: var(--navy);
}

.graphic-preview {
    position: relative;
    width: 300px;
    height: 150px;
    overflow: hidden;
    display: block;
    background: #1b8b8e;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 78, 91, .1);
    transition: transform .28s var(--ease), box-shadow .28s ease;
}

.graphic-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: inherit;
    pointer-events: none;
}

.graphic-preview img {
    width: 300px;
    height: 150px;
    object-fit: cover;
}

.graphic-number {
    position: absolute;
    top: 14px;
    left: 14px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 28px;
    color: #fff;
    background: rgba(10, 74, 78, .34);
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    backdrop-filter: blur(8px);
}

.graphic-open {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(7, 57, 62, .18);
    font-size: 18px;
    transition: color .2s ease, transform .25s var(--ease);
}

.graphic-copy {
    display: block;
    min-height: 102px;
    padding: 17px 4px 0;
}

.graphic-copy small {
    display: block;
    margin-bottom: 7px;
    color: var(--teal);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.graphic-copy strong {
    display: block;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.graphic-card:hover .graphic-preview, .graphic-card:focus-visible .graphic-preview {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(16, 78, 91, .16);
}

.graphic-card:hover .graphic-open, .graphic-card:focus-visible .graphic-open {
    color: #fff;
    background: var(--navy);
    transform: rotate(6deg);
}

.graphic-card:focus-visible {
    outline: 0;
}

.graphics-progress {
    position: relative;
    height: 14px;
    cursor: pointer;
    touch-action: none;
}

.graphics-progress::before {
    content: "";
    position: absolute;
    inset: 6px 0 auto;
    height: 2px;
    background: #d9e7e9;
}

.graphics-progress span {
    position: absolute;
    top: 6px;
    left: 0;
    display: block;
    width: 24%;
    height: 2px;
    background: var(--teal);
    transform-origin: left center;
    transition: width .2s ease, transform .12s linear;
}

.carousel-progress:focus-visible,
.graphics-progress:focus-visible {
    outline: 2px solid rgba(21, 157, 162, .45);
    outline-offset: 3px;
}

.cases-section {
    background: var(--section);
}

.cases-section .shell h2 {
    margin-bottom: 6px;
}

.case-journal {
    border-top: 1px solid #bcd8dc;
}

.case-row {
    min-height: 178px;
    display: grid;
    grid-template-columns: 82px 240px 1fr 48px;
    align-items: center;
    gap: 28px;
    padding: 22px 10px;
    border-bottom: 1px solid #cfe0e3;
}

.case-number {
    color: var(--teal);
    font-size: 35px;
    font-weight: 300;
    letter-spacing: -1.8px;
}

.case-row > img {
    width: 240px;
    height: 132px;
    object-fit: cover;
    border-radius: 12px;
}

.case-row > div > span {
    display: block;
    margin-bottom: 8px;
    color: var(--teal-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.case-row h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.28;
    letter-spacing: -.4px;
}

.case-row p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.case-row > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--teal);
    border: 1px solid #9ed2d6;
    border-radius: 50%;
}

.case-row:hover > i {
    color: #fff;
    background: var(--teal);
}

.theses-section {
    background: #fff;
}

.theses-section .shell h2 {
    margin-bottom: 6px;
}

.thesis-shelf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #c9dce0;
}

.thesis-row {
    min-height: 148px;
    display: grid;
    grid-template-columns: 94px 54px 1fr auto;
    align-items: center;
    gap: 17px;
    padding: 18px 22px 18px 0;
    border-bottom: 1px solid #d5e4e6;
}

.thesis-row:nth-child(odd) {
    padding-right: 30px;
    border-right: 1px solid #d5e4e6;
}

.thesis-row:nth-child(even) {
    padding-left: 30px;
}

.thesis-row > img {
    width: 94px;
    height: 76px;
    object-fit: cover;
    border-radius: 8px;
}

.document-mark {
    display: grid;
    place-items: center;
    color: var(--red);
}

.document-mark i {
    font-size: 36px;
}

.thesis-row small {
    display: block;
    margin-bottom: 6px;
    color: var(--teal);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.thesis-row h3 {
    margin: 0;
    color: var(--navy);
    font-size: 16px;
    line-height: 1.35;
}

.thesis-row > i {
    color: var(--teal);
    font-size: 20px;
}

.thesis-row:hover h3 {
    color: var(--teal-dark);
}

@media (max-width: 1180px) {
    .experts-editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-primary {
        grid-template-columns: 1.15fr .85fr;
    }

    .video-primary-copy {
        padding: 34px 28px;
    }

    .video-playlist-item {
        grid-template-columns: 90px 1fr auto;
    }

    .video-playlist-item img {
        width: 90px;
        height: 66px;
    }
}

@media (max-width: 980px) {
    .split-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .finder-layout {
        gap: 26px;
    }

    .finder-heading-copy h2 {
        max-width: 700px;
    }

    .finder-heading-copy p {
        max-width: 700px;
    }

    .video-showcase {
        grid-template-columns: 1fr;
    }

    .video-playlist {
        grid-auto-flow: column;
        grid-auto-columns: minmax(280px, 46%);
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .video-playlist-item {
        scroll-snap-align: start;
    }

    .interview-track {
        grid-auto-columns: minmax(290px, 47%);
    }

    .case-row {
        grid-template-columns: 60px 190px 1fr 42px;
        gap: 20px;
    }

    .case-row > img {
        width: 190px;
        height: 118px;
    }

    .thesis-shelf {
        grid-template-columns: 1fr;
    }

    .thesis-row:nth-child(odd), .thesis-row:nth-child(even) {
        padding: 18px 0;
        border-right: 0;
    }
}

@media (max-width: 680px) {
    .section {
        padding-block: 44px;
    }

    .formats.material-finder {
        padding-block: 48px;
    }

    .section-heading {
        align-items: center;
        margin-bottom: 22px;
    }

    .section-heading h2 {
        font-size: 29px;
        letter-spacing: -1px;
    }

    .team-section {
        padding: 48px 0;
    }

    .team-heading {
        margin-bottom: 26px;
    }

    .team-heading h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .team-heading p {
        font-size: 13px;
    }

    .experts-editorial {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .expert-profile {
        min-height: 0;
        padding: 18px;
        border-radius: 14px;
    }

    .expert-profile::before {
        right: 18px;
        left: 18px;
    }

    .expert-profile-header {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 14px;
        padding-bottom: 15px;
    }

    .expert-profile-photo {
        width: 82px;
        height: 82px;
        border-radius: 12px;
    }

    .expert-profile-title > span {
        margin-bottom: 6px;
        font-size: 8px;
    }

    .expert-profile-title h3 {
        font-size: 17px;
    }

    .expert-profile-bio {
        margin-top: 14px;
        font-size: 10.5px;
        line-height: 1.52;
    }

    .finder-heading-copy h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .search-results {
        grid-template-columns: 1fr;
    }

    .media-controls {
        margin-left: auto;
    }

    .media-counter {
        display: none;
    }

    .round-control {
        width: 38px;
        height: 38px;
    }

    .video-primary {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .video-primary-media {
        aspect-ratio: 1.52 / 1;
    }

    .video-primary-copy {
        padding: 27px 22px 30px;
    }

    .video-primary-copy h3 {
        font-size: 23px;
    }

    .video-primary-copy p {
        margin-bottom: 22px;
    }

    .video-playlist {
        grid-auto-columns: 86%;
    }

    .video-playlist-item {
        grid-template-columns: 94px 1fr auto;
    }

    .video-playlist-item img {
        width: 94px;
    }

    .interview-track {
        grid-auto-columns: 86%;
    }

    .graphics-heading-aside {
        gap: 0;
    }

    .graphics-rail {
        grid-auto-columns: min(300px, 84vw);
        gap: 14px;
    }

    .graphic-preview, .graphic-preview img {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
    }

    .graphic-copy {
        min-height: 96px;
    }

    .case-row {
        min-height: 0;
        grid-template-columns: 46px 1fr 36px;
        gap: 14px;
        padding: 18px 0;
    }

    .case-number {
        font-size: 27px;
    }

    .case-row > img {
        grid-column: 2 / 4;
        grid-row: 1;
        width: 100%;
        height: auto;
        aspect-ratio: 1.85 / 1;
    }

    .case-row > div {
        grid-column: 2;
        grid-row: 2;
    }

    .case-row > i {
        grid-column: 3;
        grid-row: 2;
        width: 36px;
        height: 36px;
    }

    .case-row h3 {
        font-size: 18px;
    }

    .case-row p {
        display: none;
    }

    .thesis-row {
        grid-template-columns: 78px 42px 1fr auto;
        gap: 12px;
    }

    .thesis-row > img {
        width: 78px;
        height: 64px;
    }

    .document-mark i {
        font-size: 32px;
    }

    .thesis-row h3 {
        font-size: 14px;
    }
}

@media (max-width: 980px) {
    .new-materials-heading h2 {
        font-size: 54px;
    }

    .new-material-slide {
        grid-template-columns: minmax(0, 1.08fr) minmax(290px, .92fr);
        min-height: 390px;
    }

    .new-material-preview {
        margin: 21px;
    }

    .new-material-copy {
        padding: 42px 34px 42px 16px;
    }

    .new-material-copy h3 {
        font-size: 30px;
    }
}

@media (max-width: 760px) {
    .new-materials-heading {
        align-items: flex-start;
    }

    .new-material-slide {
        grid-template-columns: 1fr;
    }

    .new-material-preview {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .new-material-copy {
        padding: 30px 30px 34px;
    }

    .new-material-number {
        margin-bottom: 15px;
    }

    .new-material-copy h3 {
        max-width: 560px;
    }

    .new-material-description {
        max-width: 620px;
    }
}

@media (max-width: 680px) {
    .new-materials-section {
        padding: 48px 0
    }

    .new-materials-section::before {
        background-size: 46px 46px;
    }

    .new-materials-heading {
        display: grid;
        gap: 24px;
        margin-bottom: 24px;
    }

    .new-materials-heading h2 {
        margin-bottom: 12px;
        font-size: 43px;
        letter-spacing: -2.2px;
    }

    .new-materials-heading p {
        font-size: 13px;
        line-height: 1.58;
    }

    .new-materials-navigation {
        justify-content: flex-start;
        padding: 0;
    }

    .new-materials-counter {
        min-width: 62px;
    }

    .new-materials-control {
        width: 40px;
        height: 40px;
    }

    .new-material-slide {
        border-radius: 20px;
    }

    .new-material-preview {
        margin: 14px 14px 0;
        border-radius: 14px;
    }

    .new-material-copy {
        padding: 27px 22px 30px;
    }

    .new-material-copy h3 {
        margin-bottom: 15px;
        font-size: 28px;
    }

    .new-material-description {
        margin-bottom: 22px;
        font-size: 13px;
    }

    .new-material-meta {
        display: grid;
        gap: 10px;
    }

    .new-material-meta span {
        font-size: 13px;
    }

    .new-material-status {
        margin-top: 20px;
        font-size: 14px;
    }

    .new-materials-progress {
        margin-top: 18px;
    }
}

/* V13 — lightweight, one-time reveal motion */
@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes reveal-soft {
    from {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes reveal-scale {
    from {
        opacity: 0;
        transform: translate3d(0, 14px, 0) scale(.985);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes reveal-media {
    from {
        transform: scale(1.025);
    }
    to {
        transform: scale(1);
    }
}

@keyframes reveal-play {
    0% {
        opacity: 0;
        transform: translate(-50%, -42%) scale(.84);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes refresh-video-image {
    from {
        opacity: .7;
        transform: scale(1.018);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes refresh-video-copy {
    from {
        opacity: 0;
        transform: translate3d(10px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.motion-ready .reveal-item {
    opacity: 0;
    will-change: opacity, transform;
}

.motion-ready .reveal-item.is-visible {
    animation: reveal-up .62s var(--ease) var(--reveal-delay, 0ms) both;
}

.motion-ready .reveal-item.reveal-soft.is-visible {
    animation-name: reveal-soft;
}

.motion-ready .reveal-item.reveal-scale.is-visible {
    animation-name: reveal-scale;
}

.motion-ready .article-banner.reveal-item.is-visible > img {
    animation: reveal-media .82s var(--ease) var(--reveal-delay, 0ms) both;
}

.motion-ready .reveal-item.is-visible .play-button {
    animation: reveal-play .52s var(--ease) calc(var(--reveal-delay, 0ms) + 180ms) both;
}

.video-primary.is-refreshing .video-primary-media img {
    animation: refresh-video-image .42s var(--ease) both;
}

.video-primary.is-refreshing .video-primary-copy > * {
    animation: refresh-video-copy .36s var(--ease) both;
}

.video-primary.is-refreshing .video-primary-copy > :nth-child(2) {
    animation-delay: 35ms;
}

.video-primary.is-refreshing .video-primary-copy > :nth-child(3) {
    animation-delay: 65ms;
}

.video-primary.is-refreshing .video-primary-copy > :nth-child(4) {
    animation-delay: 90ms;
}

.button i,
.watch-link i,
.case-row > i,
.thesis-row > i {
    transition: transform .24s var(--ease), color .2s ease, background-color .2s ease;
}

.button:hover i,
.button:focus-visible i,
.watch-link:hover i,
.video-primary:focus-visible .watch-link i {
    transform: translate3d(3px, 0, 0);
}

.case-row:hover > i,
.case-row:focus-visible > i {
    transform: translate3d(2px, -2px, 0);
}

.thesis-row:hover > i,
.thesis-row:focus-visible > i {
    transform: translate3d(0, 3px, 0);
}

@media (max-width: 680px) {
    .motion-ready .reveal-item.is-visible {
        animation-duration: .52s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .motion-ready .reveal-item,
    .motion-ready .reveal-item.is-visible {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        will-change: auto !important;
    }

    .video-primary.is-refreshing *,
    .motion-ready .reveal-item.is-visible .play-button,
    .motion-ready .article-banner.reveal-item.is-visible > img {
        animation: none !important;
    }
}
