:root {
    --header-height: 80px;
    --color-primary: #00342b;
    --color-secondary: #00639a;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

.site-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: var(--header-height);
    background: rgba(248, 250, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(191, 201, 196, 0.5);
    box-shadow: 0 1px 12px rgba(0, 52, 43, 0.04);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(248, 250, 247, 0.97);
    box-shadow: 0 4px 24px rgba(0, 52, 43, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .site-header__inner {
        padding: 0 64px;
    }
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.site-brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
}

.site-brand__text {
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    line-height: 1;
}

.site-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .site-nav {
        display: flex;
    }
}

.site-nav__link {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 16px;
    color: #3f4945;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav__link:hover {
    color: var(--color-secondary);
}

.site-nav__link.is-active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header__cta {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 9999px;
    background: #51b2fe;
    color: #00436a;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.site-header__cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .site-header__cta {
        display: inline-flex;
    }
}

.site-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
}

@media (min-width: 768px) {
    .site-menu-btn {
        display: none;
    }
}

.site-mobile-menu {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    background: rgba(248, 250, 247, 0.98);
    border-top: 1px solid rgba(191, 201, 196, 0.4);
}

.site-mobile-menu.is-open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
}

.site-mobile-menu__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .site-mobile-menu {
        display: none;
    }
}

.site-mobile-menu__link {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #3f4945;
    text-decoration: none;
    padding: 8px 0;
}

.site-mobile-menu__link.is-active {
    color: var(--color-primary);
}

.site-mobile-menu__cta {
    margin-top: 8px;
    text-align: center;
    padding: 12px 24px;
    border-radius: 9999px;
    background: #51b2fe;
    color: #00436a;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

/* ── Main ── */
.site-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ── Footer ── */
.site-footer {
    width: 100%;
    background: #e1e3e0;
    margin-top: auto;
}

.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .site-footer__inner {
        padding: 64px;
        grid-template-columns: 2fr 1fr;
    }
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-footer__logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
}

.site-footer__logo span {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.site-footer__copy {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #3f4945;
}

.site-footer__heading {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__links a {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #3f4945;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: var(--color-secondary);
}

/* ── Shared utilities ── */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.fill-icon {
    font-variation-settings: 'FILL' 1;
}
.text-balance {
    text-wrap: balance;
}
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.shadow-level-1 {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
}
.shadow-level-2 {
    box-shadow: 0px 12px 32px rgba(0, 77, 64, 0.08);
}
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0px 12px 32px rgba(0, 77, 64, 0.08);
}

/* Premium CTA band */
.site-cta {
    padding: 96px 20px;
    background: #afefdd;
}

@media (min-width: 768px) {
    .site-cta {
        padding: 96px 64px;
    }
}

.site-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.site-cta__title {
    font-family: Inter, sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}

.site-cta__text {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #00201a;
}

.site-cta__pillars {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #004d40;
}

.site-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

@media (min-width: 640px) {
    .site-cta__actions {
        flex-direction: row;
    }
}

.site-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 9999px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.site-cta__btn--primary {
    background: var(--color-primary);
    color: #fff;
}

.site-cta__btn--primary:hover {
    opacity: 0.9;
}

.site-cta__btn--outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.site-cta__btn--outline:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ── Featured Conference ── */
.conference-spotlight {
    position: relative;
    z-index: 10;
    margin-top: -58px;
    margin-bottom: -26px;
    padding: 0 20px;
}

.conference-spotlight__inner {
    position: relative;
    max-width: 1160px;
    min-height: 184px;
    margin: 0 auto;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    border: 1px solid rgba(175, 239, 221, 0.25);
    border-radius: 20px;
    color: #ffffff;
    background:
        radial-gradient(circle at 92% 10%, rgba(81, 178, 254, 0.18), transparent 30%),
        linear-gradient(120deg, #00342b 0%, #004d40 68%, #065043 100%);
    box-shadow: 0 22px 52px rgba(0, 52, 43, 0.2);
}

.conference-spotlight__inner::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(175, 239, 221, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(175, 239, 221, 0.035),
        0 0 0 64px rgba(175, 239, 221, 0.025);
    pointer-events: none;
}

.conference-spotlight__date {
    width: 112px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(175, 239, 221, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.conference-spotlight__date strong {
    margin: 2px 0;
    font-family: Inter, sans-serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.conference-spotlight__date span {
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #afefdd;
}

.conference-spotlight__month {
    color: #96ccff !important;
}

.conference-spotlight__content {
    position: relative;
    z-index: 1;
}

.conference-spotlight__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-family: Inter, sans-serif;
    font-size: 11px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #afefdd;
}

.conference-spotlight__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #51b2fe;
    box-shadow: 0 0 0 4px rgba(81, 178, 254, 0.16);
}

.conference-spotlight__content h2 {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.conference-spotlight__name {
    margin: 6px 0 14px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #afefdd;
}

.conference-spotlight__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.conference-spotlight__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #eff7f4;
}

.conference-spotlight__meta .material-symbols-outlined {
    font-size: 18px;
    color: #96ccff;
}

.conference-spotlight__focus {
    position: relative;
    z-index: 1;
    width: 220px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 28px;
    border-left: 1px solid rgba(175, 239, 221, 0.22);
}

.conference-spotlight__focus span {
    padding: 7px 10px;
    border: 1px solid rgba(175, 239, 221, 0.2);
    border-radius: 9999px;
    font-family: Inter, sans-serif;
    font-size: 11px;
    line-height: 14px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.conference-spotlight__focus p {
    width: 100%;
    margin: 5px 0 0;
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 0.035em;
    color: #afefdd;
}

@media (max-width: 900px) {
    .conference-spotlight__inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .conference-spotlight__focus {
        grid-column: 1 / -1;
        width: auto;
        padding: 18px 0 0;
        border-top: 1px solid rgba(175, 239, 221, 0.2);
        border-left: 0;
    }

    .conference-spotlight__focus p {
        width: auto;
        margin: 7px 0 0 4px;
    }
}

@media (max-width: 600px) {
    .conference-spotlight {
        margin-top: -42px;
        margin-bottom: -34px;
    }

    .conference-spotlight__inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .conference-spotlight__date {
        width: 100%;
        height: auto;
        min-height: 72px;
        flex-direction: row;
        gap: 7px;
    }

    .conference-spotlight__date strong {
        font-size: 25px;
    }

    .conference-spotlight__focus {
        grid-column: auto;
    }
}

/* ── Cardiometabolic Approach Carousel ── */
.approach-carousel__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.approach-carousel__controls {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.approach-carousel__button {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bfc9c4;
    border-radius: 50%;
    background: #ffffff;
    color: #00342b;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 52, 43, 0.06);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.approach-carousel__button:hover:not(:disabled) {
    transform: translateY(-2px);
    color: #ffffff;
    background: #004d40;
    border-color: #004d40;
}

.approach-carousel__button:focus-visible {
    outline: 3px solid rgba(81, 178, 254, 0.35);
    outline-offset: 3px;
}

.approach-carousel__button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

.approach-carousel {
    position: relative;
}

.approach-carousel__viewport {
    overflow: hidden;
    max-width: 820px;
    padding: 8px 4px 24px;
    margin: -8px auto -24px;
}

.approach-carousel__track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.approach-slide {
    position: relative;
    flex: 0 0 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    overflow: hidden;
    border: 1px solid #e1e7e3;
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(175, 239, 221, 0.35), transparent 42%),
        #ffffff;
    box-shadow: 0 10px 30px rgba(0, 52, 43, 0.065);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.approach-slide:hover {
    transform: translateY(-4px);
    border-color: #c4d7d0;
}

.approach-slide:focus-visible {
    outline: 3px solid rgba(81, 178, 254, 0.38);
    outline-offset: -4px;
}

.approach-slide__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: auto;
}

.approach-slide__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 27px;
    color: #004d40;
    background: #e3f4ef;
    border: 1px solid #c9e5dc;
    transition: transform 0.3s ease, background 0.3s ease;
}

.approach-slide:hover .approach-slide__icon {
    transform: translateY(-2px);
    background: #d5eee7;
}

.approach-slide__number {
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #707975;
}

.approach-slide__title {
    margin: 32px 0 8px;
    font-family: Inter, sans-serif;
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #00342b;
}

.approach-slide__text {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    max-width: 580px;
    font-size: 17px;
    line-height: 27px;
    color: #3f4945;
}

.approach-carousel__dots {
    min-height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.approach-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 9999px;
    background: #bfc9c4;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.approach-carousel__dot.is-active {
    width: 28px;
    background: #004d40;
}

.approach-carousel__dot:focus-visible {
    outline: 3px solid rgba(81, 178, 254, 0.35);
    outline-offset: 3px;
}

@media (max-width: 639px) {
    .approach-carousel__heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 32px;
    }

    .approach-carousel__controls {
        align-self: flex-end;
    }

    .approach-slide {
        min-height: 230px;
        padding: 28px;
    }

    .approach-slide__title {
        font-size: 21px;
        line-height: 29px;
    }

    .approach-slide__text {
        font-size: 15px;
        line-height: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .approach-carousel__track {
        transition: none;
    }
}

/* ── Disease Pathway Card ── */
.pathway-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(191, 201, 196, 0.7);
    box-shadow: 0 18px 48px rgba(0, 52, 43, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.pathway-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(0, 52, 43, 0.11);
}

.pathway-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pathway-card__icon-wrap {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    border-radius: 14px;
    background: #e7f6f1;
    border: 1px solid #cce8df;
}

.pathway-card__icon {
    font-size: 25px;
    color: #004d40;
}

.pathway-card__eyebrow {
    display: block;
    margin-bottom: 3px;
    font-family: Inter, sans-serif;
    font-size: 11px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #00639a;
}

.pathway-card__title {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.02em;
    color: #00342b;
    margin: 0;
}

.pathway {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 42px;
    padding: 22px;
    margin: 0;
    list-style: none;
    counter-reset: pathway;
    background: #f7f9f7;
    border-radius: 14px;
    border: 1px solid #e4e9e6;
    position: relative;
}

.pathway__step {
    counter-increment: pathway;
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #26332f;
    background: #ffffff;
    border: 1px solid #e1e7e3;
    box-shadow: 0 2px 8px rgba(0, 52, 43, 0.035);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.pathway__step::after {
    content: 'arrow_forward';
    position: absolute;
    top: 50%;
    right: -34px;
    z-index: 2;
    transform: translateY(-50%);
    font-family: 'Material Symbols Outlined';
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #5f746d;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
    pointer-events: none;
}

/* Snake the sequence across rows so every arrow remains easy to follow. */
.pathway__step:nth-child(3) {
    grid-column: 2;
}

.pathway__step:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.pathway__step:nth-child(5) {
    grid-column: 1;
}

.pathway__step:nth-child(6) {
    grid-column: 2;
}

.pathway__step:nth-child(2)::after,
.pathway__step:nth-child(4)::after {
    content: 'arrow_downward';
    top: auto;
    right: 50%;
    bottom: -24px;
    transform: translateX(50%);
}

.pathway__step:nth-child(3)::after {
    content: 'arrow_back';
    right: auto;
    left: -34px;
}

.pathway__step:last-child::after {
    display: none;
}

.pathway__step::before {
    content: counter(pathway, decimal-leading-zero);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #065043;
    background: #dff3ed;
}

.pathway__step:hover {
    transform: translateY(-1px);
    border-color: #a9cfc4;
}

.pathway__label {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    color: inherit;
}

.pathway__step--end {
    background: #004d40;
    color: #ffffff;
    border-color: #004d40;
    box-shadow: 0 6px 16px rgba(0, 77, 64, 0.16);
}

.pathway__step--end::before {
    color: #00342b;
    background: #afefdd;
}

.pathway__step--end:hover {
    background: #00342b;
    border-color: #00342b;
}

.pathway-card__note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 0;
    padding: 14px 16px;
    border-left: 3px solid #51b2fe;
    border-radius: 0 8px 8px 0;
    background: #f4f9fd;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 21px;
    color: #3f4945;
}

.pathway-card__note .material-symbols-outlined {
    margin-top: 1px;
    flex: 0 0 auto;
    font-size: 19px;
    color: #00639a;
}

@media (max-width: 640px) {
    .pathway-card {
        padding: 24px 20px;
    }

    .pathway {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 28px;
    }

    .pathway__step:nth-child(n) {
        grid-column: 1;
        grid-row: auto;
    }

    .pathway__step:nth-child(n)::after {
        content: 'arrow_downward';
        display: block;
        top: auto;
        right: 50%;
        bottom: -24px;
        left: auto;
        transform: translateX(50%);
    }

    .pathway__step:last-child::after {
        display: none;
    }
}

/* ── 5-Year Roadmap Timeline ── */
.roadmap-section {
    padding: 96px 20px;
    background: linear-gradient(135deg, #f2f4f1 0%, #eceeec 50%, #e7e9e6 100%);
    border-top: 1px solid rgba(191, 201, 196, 0.5);
    border-bottom: 1px solid rgba(191, 201, 196, 0.5);
    --roadmap-bg: #eceeec;
}

@media (min-width: 768px) {
    .roadmap-section {
        padding: 96px 64px;
    }
}

.roadmap-section__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.roadmap-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.roadmap-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: #cee5ff;
    color: #004a75;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.roadmap-section__title {
    font-family: Inter, sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #00342b;
    margin-bottom: 12px;
}

.roadmap-section__subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #3f4945;
}

.roadmap {
    position: relative;
    padding: 0 8px;
}

.roadmap__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.roadmap__col {
    display: grid;
    align-items: center;
    justify-items: start;
    position: relative;
    padding: 0 0 32px 48px;
}

.roadmap__col::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #7b4d9e, #51b2fe);
    border-radius: 2px;
    z-index: 0;
}

.roadmap__col:last-child::before {
    bottom: 50%;
}

.roadmap__card-slot {
    width: 100%;
    grid-row: 1;
}

.roadmap__card-slot--empty {
    display: none;
}

.roadmap__card {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    text-align: left;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #191c1b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

.roadmap__card--lavender { background: #e8dff5; }
.roadmap__card--blue     { background: #d6e4f0; }
.roadmap__card--teal     { background: #c5e8e3; }
.roadmap__card--green    { background: #d4ecd9; }
.roadmap__card--rose     { background: #f5d9e4; }

.roadmap__card-sub {
    display: block;
    margin-top: 6px;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #3f4945;
}

.roadmap__connector {
    display: none;
}

.roadmap__dot-wrap {
    position: absolute;
    left: 0;
    top: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--roadmap-bg);
    border-radius: 50%;
}

.roadmap__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #7b4d9e;
    box-shadow: 0 0 0 4px rgba(123, 77, 158, 0.15);
}

.roadmap__year {
    position: absolute;
    left: 44px;
    top: 8px;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00342b;
    letter-spacing: 0.02em;
    z-index: 2;
}

/* Desktop: horizontal alternating timeline */
@media (min-width: 900px) {
    .roadmap {
        padding: 32px 0 16px;
    }

    .roadmap__grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
        align-items: stretch;
        position: relative;
    }

    /* Horizontal track — sits only behind the dots */
    .roadmap__grid::before {
        content: '';
        position: absolute;
        left: 10%;
        right: 10%;
        height: 6px;
        top: calc(50% - 14px);
        transform: translateY(-50%);
        background: linear-gradient(90deg, #7b4d9e, #9b59b6, #51b2fe);
        border-radius: 9999px;
        z-index: 0;
        pointer-events: none;
    }

    .roadmap__col {
        display: grid;
        grid-template-rows: 1fr 24px 32px 22px 24px 1fr;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 0;
        min-height: 300px;
    }

    .roadmap__col::before {
        display: none;
    }

    .roadmap__card-slot--top {
        grid-row: 1;
        align-self: end;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        min-height: 88px;
        width: 100%;
    }

    .roadmap__card-slot--bottom {
        grid-row: 6;
        align-self: start;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        min-height: 88px;
        width: 100%;
    }

    .roadmap__card-slot--empty {
        display: flex;
        visibility: hidden;
        pointer-events: none;
    }

    .roadmap__connector {
        display: block;
        width: 2px;
        height: 100%;
        min-height: 20px;
        background: repeating-linear-gradient(
            to bottom,
            #707975 0,
            #707975 4px,
            transparent 4px,
            transparent 8px
        );
        z-index: 1;
    }

    .roadmap__connector--down { grid-row: 2; }
    .roadmap__connector--up   { grid-row: 5; }

    .roadmap__dot-wrap {
        position: relative;
        left: auto;
        top: auto;
        grid-row: 3;
        align-self: center;
        justify-self: center;
        width: 28px;
        height: 28px;
        background: var(--roadmap-bg);
        z-index: 2;
    }

    .roadmap__year {
        position: relative;
        left: auto;
        top: auto;
        grid-row: 4;
        align-self: start;
        justify-self: center;
        margin-top: 0;
        font-size: 14px;
        font-weight: 700;
        padding: 2px 10px;
        background: var(--roadmap-bg);
        border-radius: 6px;
        z-index: 2;
    }

    .roadmap__card {
        max-width: 100%;
        text-align: center;
    }
}
