/* =========================================================
   SCREEN READER UTILITY
   ========================================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   GENERAL REVEAL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.99);
    filter: blur(8px);
    transition: opacity var(--duration-standard) var(--ease-out), transform var(--duration-standard) var(--ease-out), filter var(--duration-standard) var(--ease-out);
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }


/* =========================================================
   EXPERIENCE SEQUENCE — BASE
   ========================================================= */

.experience-sequence {
    position: relative;
    width: 100%;
    overflow: clip;
}

.experience-hex-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    contain: paint;
    --hex-cell-width: 156px;
    --hex-cell-height: 132px;
    --hex-grid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='156' height='132' viewBox='0 0 156 132'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M39 12 78 34v44l-39 22L0 78V34Z' stroke='%2377e6ff' stroke-opacity='.16' stroke-width='1.25'/%3E%3Cpath d='M117 12 156 34v44l-39 22-39-22V34Z' stroke='%2388b6ff' stroke-opacity='.12' stroke-width='1.2'/%3E%3Cpath d='M39 100v22M117 100v22M78 78l39 22M78 78l-39 22M0 34l39-22M156 34l-39-22' stroke='%2377e6ff' stroke-opacity='.08' stroke-width='1.05'/%3E%3Ccircle cx='39' cy='12' r='2.3' fill='%23e7fbff' fill-opacity='.24'/%3E%3Ccircle cx='78' cy='34' r='1.9' fill='%23e7fbff' fill-opacity='.18'/%3E%3Ccircle cx='39' cy='100' r='2.1' fill='%23e7fbff' fill-opacity='.2'/%3E%3Ccircle cx='117' cy='12' r='2.3' fill='%23e7fbff' fill-opacity='.22'/%3E%3Ccircle cx='156' cy='34' r='1.9' fill='%23e7fbff' fill-opacity='.16'/%3E%3Ccircle cx='117' cy='100' r='2.1' fill='%23e7fbff' fill-opacity='.19'/%3E%3C/g%3E%3C/svg%3E");
}

.experience-hex-layer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image: var(--hex-grid);
    background-size: var(--hex-cell-width) var(--hex-cell-height);
    background-position: 0 0;
    filter: drop-shadow(0 0 8px rgba(80, 204, 255, 0.18)) drop-shadow(0 0 18px rgba(55, 137, 255, 0.1));
    mix-blend-mode: screen;
    mask-image: var(--experience-hex-mask, linear-gradient(transparent, transparent));
    -webkit-mask-image: var(--experience-hex-mask, linear-gradient(transparent, transparent));
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    transition: opacity 160ms ease;
}

.experience-hex-layer.has-reveal::before {
    opacity: 1;
}

.experience-sequence__track,
.experience-sequence__sticky {
    position: relative;
    z-index: 1;
}

.experience-sequence__track {
    position: relative;
    min-height: var(--experience-track, auto);
}

.experience-sequence__sticky {
    position: sticky;
    top: var(--public-nav-height, 72px);
    display: grid;
    grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
    grid-template-rows: auto minmax(300px, 1fr) auto;
    column-gap: clamp(56px, 5vw, 96px);
    width: min(1540px, calc(100vw - 96px));
    min-height: calc(100vh - var(--public-nav-height, 72px));
    max-height: calc(100vh - var(--public-nav-height, 72px));
    margin-inline: auto;
    padding-block: clamp(42px, 5vh, 68px);
    box-sizing: border-box;
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 600ms var(--ease-out), transform 700ms var(--ease-out), filter 600ms var(--ease-out);
}


/* =========================================================
   EXPERIENCE HEADER
   ========================================================= */

.experience-sequence__header {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    width: 100%;
    min-width: 0;
    max-width: 430px;
}

    .experience-sequence__header .eyebrow {
        margin: 0 0 18px;
    }

    .experience-sequence__header h2 {
        max-width: 10.5ch;
        margin: 0;
        color: var(--text-primary);
        font-size: clamp(2.7rem, 3.5vw, 4.35rem);
        font-weight: 650;
        line-height: 0.98;
        letter-spacing: -0.045em;
        text-wrap: balance;
    }

    .experience-sequence__header > p:not(.eyebrow) {
        max-width: 38ch;
        margin: 22px 0 0;
        color: var(--text-secondary);
        font-size: clamp(0.95rem, 1vw, 1.08rem);
        line-height: 1.7;
    }

.experience-sequence__guide {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    color: var(--accent-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: opacity 300ms ease, transform 300ms ease;
}

    .experience-sequence__guide::after {
        content: "";
        width: 48px;
        height: 1px;
        background: linear-gradient( 90deg, var(--accent-cyan), transparent );
    }


/* =========================================================
   EXPERIENCE TIMELINE
   ========================================================= */

.experience-sequence__timeline {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    align-self: start;
    width: 34px;
    height: min(31vh, 300px);
    min-height: 230px;
    margin-top: 34px;
}

.experience-sequence__rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-50%);
}

.experience-sequence__rail-fill {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0%;
    background: linear-gradient( 180deg, var(--accent-cyan), var(--accent-blue), var(--accent-violet) );
    box-shadow: 0 0 12px rgba(112, 220, 233, 0.34);
    transition: height 420ms var(--ease-out);
}

.experience-sequence__nodes {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

    .experience-sequence__nodes .experience-progress-node {
        width: 8px;
        height: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 999px;
        background: var(--surface-deep);
        transition: width 240ms ease, height 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
    }

        .experience-sequence__nodes .experience-progress-node.is-complete {
            border-color: rgba(112, 220, 233, 0.55);
            background: rgba(112, 220, 233, 0.42);
        }

        .experience-sequence__nodes .experience-progress-node.is-active {
            width: 13px;
            height: 13px;
            border-color: var(--accent-cyan);
            background: var(--accent-cyan);
            box-shadow: 0 0 0 5px rgba(112, 220, 233, 0.08), 0 0 18px rgba(112, 220, 233, 0.5);
        }


/* =========================================================
   EXPERIENCE CONTENT STAGE
   ========================================================= */

.experience-sequence__stage {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 1040px;
    min-width: 0;
    min-height: clamp(430px, 50vh, 590px);
    isolation: isolate;
}

    .experience-sequence__stage::before {
        content: "";
        position: absolute;
        inset: 3% -2%;
        z-index: -1;
        border: 1px solid rgba(255, 255, 255, 0.055);
        border-radius: 18px;
        background: radial-gradient( circle at 30% 30%, rgba(112, 220, 233, 0.065), transparent 42% ), linear-gradient( 135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008) );
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 28px 90px rgba(0, 0, 0, 0.3);
        pointer-events: none;
    }


/* =========================================================
   EXPERIENCE ENTRY
   ========================================================= */

.experience-entry {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1.12fr);
    column-gap: clamp(42px, 4vw, 72px);
    align-items: center;
    width: 100%;
    min-width: 0;
    padding: clamp(34px, 3vw, 48px) clamp(36px, 3.25vw, 56px);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 20px, -20px) scale(0.985);
    filter: blur(10px);
    transition: opacity 550ms var(--ease-out), transform 650ms var(--ease-out), filter 550ms var(--ease-out), visibility 0s linear 650ms;
}

.experience-entry.has-many-bullets {
    align-items: center;
    column-gap: clamp(30px, 3vw, 56px);
    padding-block: clamp(24px, 2.7vw, 40px);
}

    .experience-entry.is-active,
    .experience-entry.is-entering {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
        transition-delay: 0ms;
    }

    .experience-entry.is-exiting {
        opacity: 0;
        visibility: visible;
        pointer-events: none;
        transform: translate3d(0, -18px, -20px) scale(0.985);
        filter: blur(9px);
    }


/* =========================================================
   EXPERIENCE IDENTITY COLUMN
   ========================================================= */

.experience-entry__identity {
    width: 100%;
    min-width: 0;
    max-width: 390px;
}

.experience-entry__date {
    display: block;
    margin: 0 0 14px;
    color: var(--accent-cyan);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.experience-entry__identity h3 {
    max-width: 14ch;
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.7rem, 2vw, 2.7rem);
    font-weight: 650;
    line-height: 1.03;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.experience-entry__organization {
    margin: 16px 0 0;
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 0.95vw, 1.02rem);
    line-height: 1.65;
}

.experience-entry__current {
    display: inline-flex;
    margin-top: 18px;
    padding: 7px 11px;
    border: 1px solid rgba(112, 220, 233, 0.22);
    border-radius: 999px;
    color: var(--accent-cyan);
    background: rgba(112, 220, 233, 0.06);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   EXPERIENCE TECHNOLOGIES
   ========================================================= */

.experience-entry__technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

    .experience-entry__technologies li {
        padding: 7px 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 999px;
        color: var(--text-secondary);
        background: rgba(255, 255, 255, 0.025);
        font-size: 0.72rem;
        line-height: 1;
    }


/* =========================================================
   EXPERIENCE DESCRIPTION COLUMN
   ========================================================= */

.experience-entry__content {
    width: 100%;
    min-width: 0;
    max-width: 570px;
    padding-left: 0;
}

.experience-entry__summary {
    max-width: 34ch;
    margin: 0 0 20px;
    color: var(--text-primary);
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    line-height: 1.65;
}

.experience-entry.has-many-bullets .experience-entry__summary {
    margin-bottom: 12px;
    font-size: clamp(0.92rem, 0.96vw, 1.04rem);
    line-height: 1.48;
}

.experience-entry__bullets {
    display: grid;
    gap: 13px;
    max-width: 42ch;
    margin: 0;
    padding-left: 22px;
    color: var(--text-secondary);
}

.experience-entry.has-many-bullets .experience-entry__bullets {
    gap: clamp(7px, 1vh, 10px);
}

    .experience-entry__bullets li {
        padding-left: 30px;
        font-size: clamp(0.9rem, 0.95vw, 1rem);
        line-height: 1.65;
    }

    .experience-entry.has-many-bullets .experience-entry__bullets li {
        font-size: clamp(0.8rem, 0.82vw, 0.92rem);
        line-height: 1.42;
    }

        .experience-entry__bullets li::marker {
            color: var(--accent-cyan);
        }


/* =========================================================
   EXPERIENCE STATUS / COUNTER
   ========================================================= */

.experience-sequence__status {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 28px;
    padding-top: 10px;
}

.experience-sequence__counter {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.experience-sequence__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .experience-sequence__dots .experience-progress-node {
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.2);
        transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
    }

        .experience-sequence__dots .experience-progress-node.is-complete {
            background: rgba(112, 220, 233, 0.48);
        }

        .experience-sequence__dots .experience-progress-node.is-active {
            width: 18px;
            background: var(--accent-cyan);
            box-shadow: 0 0 14px rgba(112, 220, 233, 0.45);
        }


/* =========================================================
   EXPERIENCE SCENE STATES
   ========================================================= */

.experience-sequence.is-entering .experience-sequence__sticky {
    opacity: 1;
}

.experience-sequence.is-exiting .experience-sequence__sticky {
    opacity: 0;
    transform: translate3d(0, -26px, -40px) scale(0.985);
    filter: blur(8px);
}


/* =========================================================
   WIDE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {
    .experience-sequence__sticky {
        grid-template-columns: 430px minmax(860px, 1060px);
        justify-content: center;
        column-gap: clamp(78px, 5vw, 110px);
        width: min(1660px, calc(100vw - 120px));
    }

    .experience-sequence__header {
        max-width: 430px;
    }

        .experience-sequence__header h2 {
            max-width: 10.5ch;
            font-size: clamp(3.3rem, 3.65vw, 4.45rem);
        }

    .experience-sequence__stage {
        max-width: none;
        justify-self: stretch;
    }

    .experience-entry {
        grid-template-columns: minmax(320px, 0.9fr) minmax(440px, 1.1fr);
        column-gap: clamp(52px, 4vw, 82px);
    }

    .experience-entry__identity {
        max-width: 410px;
    }

        .experience-entry__identity h3 {
            max-width: 15ch;
            font-size: clamp(1.8rem, 1.9vw, 2.65rem);
        }

    .experience-entry__content {
        max-width: 590px;
    }
}


/* =========================================================
   LARGE / MEDIUM DESKTOP
   ========================================================= */

@media (max-width: 1280px) {
    .experience-sequence__sticky {
        grid-template-columns: minmax(330px, 0.82fr) minmax(610px, 1.45fr);
        grid-template-rows: auto minmax(300px, 1fr) auto;
        column-gap: 44px;
        width: min(1180px, calc(100vw - 48px));
        padding-block: 44px;
    }

    .experience-sequence__header {
        max-width: 410px;
    }

        .experience-sequence__header h2 {
            max-width: 11ch;
            font-size: clamp(2.2rem, 3.5vw, 3.7rem);
        }

    .experience-sequence__timeline {
        height: min(29vh, 275px);
        min-height: 220px;
        margin-top: 30px;
    }

    .experience-sequence__stage {
        min-height: clamp(410px, 48vh, 560px);
    }

    .experience-entry {
        grid-template-columns: minmax(285px, 0.92fr) minmax(330px, 1.08fr);
        column-gap: 34px;
        padding: 32px;
    }

    .experience-entry__identity {
        max-width: 340px;
    }

        .experience-entry__identity h3 {
            max-width: 15ch;
            font-size: clamp(1.55rem, 2vw, 2.35rem);
        }

    .experience-entry__content {
        max-width: 510px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 980px) {
    .experience-sequence {
        overflow: clip;
    }

    .experience-sequence__track {
        min-height: calc(132vh + (var(--experience-count, 1) * 66vh)) !important;
    }

    .experience-sequence__sticky {
        position: sticky;
        top: var(--public-nav-height, 72px);
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "stage"
            "status";
        grid-template-rows: auto minmax(330px, 1fr) auto;
        row-gap: clamp(18px, 3vh, 28px);
        width: min(100% - 40px, 820px);
        min-height: calc(100svh - var(--public-nav-height, 72px));
        max-height: calc(100svh - var(--public-nav-height, 72px));
        padding-block: clamp(28px, 4vh, 44px);
    }

    .experience-sequence__header {
        grid-column: 1;
        grid-row: 1;
        max-width: none;
        width: 100%;
        margin-bottom: 0;
    }

        .experience-sequence__header h2 {
            max-width: 14ch;
            font-size: clamp(2.2rem, 7.6vw, 3.55rem);
        }

        .experience-sequence__header > p:not(.eyebrow) {
            max-width: 48ch;
            margin-top: 16px;
            font-size: 0.95rem;
            line-height: 1.55;
        }

    .experience-sequence__timeline {
        display: none;
    }

    .experience-sequence__stage {
        grid-column: 1;
        grid-row: 2;
        align-self: stretch;
        justify-self: stretch;
        width: 100%;
        max-width: none;
        min-height: clamp(330px, 45svh, 490px);
    }

        .experience-sequence__stage::before {
            inset: 0;
            border-radius: 14px;
        }

    .experience-entry,
    .experience-sequence.is-enhanced .experience-entry {
        position: absolute;
        inset: 0;
        display: grid;
        grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
        gap: clamp(22px, 4vw, 32px);
        margin-bottom: 0;
        padding: 32px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, 16px, -16px) scale(0.985);
        filter: blur(8px);
        transition: opacity 520ms var(--ease-out), transform 620ms var(--ease-out), filter 520ms var(--ease-out), visibility 0s linear 620ms;
    }

    .experience-entry.has-many-bullets,
    .experience-sequence.is-enhanced .experience-entry.has-many-bullets {
        gap: clamp(16px, 3vw, 24px);
        padding: 26px;
    }

    .experience-entry.is-active,
    .experience-entry.is-entering,
    .experience-sequence.is-enhanced .experience-entry.is-active,
    .experience-sequence.is-enhanced .experience-entry.is-entering {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
        transition-delay: 0ms;
    }

    .experience-entry.is-exiting,
    .experience-sequence.is-enhanced .experience-entry.is-exiting {
        opacity: 0;
        visibility: visible;
        pointer-events: none;
        transform: translate3d(0, -14px, -16px) scale(0.985);
        filter: blur(7px);
    }

    .experience-entry__identity {
        max-width: none;
    }

        .experience-entry__identity h3 {
            max-width: none;
        }

    .experience-sequence__status,
    .experience-sequence__guide {
        display: flex;
    }

    .experience-sequence__guide {
        margin-top: 20px;
    }

    .experience-sequence__status {
        grid-column: 1;
        grid-row: 3;
        padding-top: 0;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
    .experience-sequence__sticky {
        width: min(100% - 12px, 660px);
        grid-template-rows: auto minmax(430px, 1fr) auto;
        row-gap: 10px;
        padding-block: 14px;
    }

    .experience-sequence__header {
        width: 100%;
        max-width: none;
        margin-bottom: 0;
    }

        .experience-sequence__header .eyebrow {
            margin-bottom: 10px;
            font-size: 0.68rem;
        }

        .experience-sequence__header h2 {
            max-width: min(100%, 21ch);
            font-size: clamp(1.45rem, 6.7vw, 2.08rem);
            line-height: 0.98;
        }

        .experience-sequence__header > p:not(.eyebrow) {
            max-width: min(100%, 44ch);
            margin-top: 8px;
            font-size: 0.78rem;
            line-height: 1.35;
        }

    .experience-sequence__guide {
        margin-top: 10px;
        font-size: 0.58rem;
        letter-spacing: 0.13em;
    }

    .experience-sequence__guide::after {
        width: 32px;
    }

    .experience-sequence__stage {
        width: 100%;
        min-height: clamp(430px, 62svh, 570px);
    }

    .experience-entry,
    .experience-sequence.is-enhanced .experience-entry {
        grid-template-columns: 1fr;
        align-content: start;
        gap: 10px;
        padding: 18px 16px 24px;
    }

    .experience-entry.has-many-bullets,
    .experience-sequence.is-enhanced .experience-entry.has-many-bullets {
        gap: 8px;
        padding: 16px 15px 24px;
    }

    .experience-entry__identity {
        max-width: none;
    }

        .experience-entry__identity h3 {
            max-width: none;
            font-size: clamp(1.22rem, 5.8vw, 1.72rem);
            line-height: 1;
        }

    .experience-entry__content {
        max-width: none;
        padding-left: 0;
    }

    .experience-entry__summary {
        max-width: none;
        margin-bottom: 8px;
        font-size: 0.78rem;
        line-height: 1.32;
    }

    .experience-entry.has-many-bullets .experience-entry__summary {
        margin-bottom: 6px;
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .experience-entry__bullets {
        max-width: none;
        gap: 5px;
        padding-left: 0;
    }

    .experience-entry__bullets li {
        padding-left: 22px;
        font-size: 0.72rem;
        line-height: 1.26;
    }

    .experience-entry.has-many-bullets .experience-entry__bullets {
        gap: 5px;
    }

    .experience-entry.has-many-bullets .experience-entry__bullets li {
        padding-left: 18px;
        font-size: 0.64rem;
        line-height: 1.18;
    }

    .experience-entry__technologies {
        gap: 4px;
        margin-top: 8px;
    }

    .experience-entry__technologies li {
        padding: 4px 6px;
        font-size: 0.54rem;
        line-height: 1;
    }

    .experience-entry.has-many-bullets .experience-entry__technologies {
        gap: 4px;
        margin-top: 6px;
    }

    .experience-entry.has-many-bullets .experience-entry__technologies li {
        padding: 3px 5px;
        font-size: 0.5rem;
    }

    .experience-entry__date {
        margin-bottom: 7px;
        font-size: 0.6rem;
    }

    .experience-entry__organization {
        margin-top: 7px;
        font-size: 0.72rem;
        line-height: 1.3;
    }
}

@media (max-width: 430px) {
    .experience-sequence__track {
        min-height: calc(150vh + (var(--experience-count, 1) * 78vh)) !important;
    }

    .experience-sequence__sticky {
        width: min(100% - 8px, 430px);
        grid-template-rows: auto minmax(470px, 1fr) auto;
        row-gap: 9px;
        padding-block: 12px;
    }

        .experience-sequence__header h2 {
            max-width: min(100%, 21ch);
            font-size: clamp(1.34rem, 6.3vw, 1.78rem);
        }

        .experience-sequence__header > p:not(.eyebrow) {
            max-width: min(100%, 44ch);
            font-size: 0.76rem;
            line-height: 1.32;
        }

    .experience-sequence__guide {
        margin-top: 9px;
        font-size: 0.54rem;
    }

    .experience-sequence__stage {
        min-height: clamp(470px, 64svh, 610px);
    }

    .experience-entry,
    .experience-sequence.is-enhanced .experience-entry {
        padding: 16px 14px 54px;
    }

    .experience-entry.has-many-bullets,
    .experience-sequence.is-enhanced .experience-entry.has-many-bullets {
        padding: 14px 13px 52px;
    }

        .experience-entry__identity h3 {
            font-size: clamp(1.12rem, 5.25vw, 1.5rem);
        }

    .experience-entry__current {
        margin: 5px 0 10px;
        padding: 4px 7px;
        font-size: 0.54rem;
    }

    .experience-entry__technologies {
        gap: 4px;
    }

        .experience-entry__technologies li {
            padding: 3px 5px;
            font-size: 0.5rem;
        }

    .experience-entry__summary {
        font-size: 0.72rem;
        line-height: 1.26;
    }

    .experience-entry__bullets li {
        font-size: 0.66rem;
        line-height: 1.2;
    }

    .experience-entry.has-many-bullets .experience-entry__summary {
        font-size: 0.66rem;
        line-height: 1.18;
    }

    .experience-entry.has-many-bullets .experience-entry__bullets li {
        font-size: 0.58rem;
        line-height: 1.12;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .skill-group,
    .skill-group::before,
    .project-exhibit,
    .project-exhibit::before,
    .music-panel,
    .music-panel::before,
    .timeline-item,
    .timeline-item::before,
    .skill-group__signal,
    .skill-group li {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cog-gear,
    .hero-background-cog-gear {
        animation: none;
    }

    .hero-coordinate-label {
        display: none;
    }

    .experience-sequence {
        overflow: visible;
    }

    .experience-sequence__track {
        min-height: auto !important;
    }

    .experience-sequence__sticky {
        position: relative;
        top: auto;
        display: block;
        width: min(100% - 40px, 1100px);
        min-height: auto;
        max-height: none;
        margin-inline: auto;
        padding-block: 70px;
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .experience-sequence__header {
        max-width: 700px;
        margin-bottom: 42px;
    }

    .experience-sequence__stage {
        min-height: auto;
    }

        .experience-sequence__stage::before {
            display: none;
        }

    .experience-sequence.is-enhanced .experience-entry,
    .experience-entry {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
        gap: 36px;
        margin-bottom: 24px;
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        filter: none;
        transition: none;
    }

    .experience-entry__identity {
        max-width: none;
    }

        .experience-entry__identity h3 {
            max-width: none;
        }

    .experience-entry__content {
        max-width: none;
    }

    .experience-entry__summary,
    .experience-entry__bullets {
        max-width: none;
    }

    .experience-sequence__timeline,
    .experience-sequence__status,
    .experience-sequence__guide {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) and (max-width: 700px) {
    .experience-sequence.is-enhanced .experience-entry,
    .experience-entry {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================================================
   EXPERIENCE — VISIBLE SCROLL MOUSE CUE
   ========================================================= */

.experience-sequence__guide::after {
    content: none !important;
    display: none !important;
}

.experience-sequence__guide-label {
    min-width: 0;
}

.experience-sequence__guide-line {
    flex: 0 1 58px;
    width: clamp(32px, 5vw, 58px);
    min-width: 28px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            currentColor,
            rgba(112, 220, 233, 0.2) 72%,
            transparent
        );
    box-shadow: 0 0 10px rgba(112, 220, 233, 0.24);
}

.experience-scroll-cue {
    position: relative;
    display: inline-grid;
    flex: 0 0 26px;
    width: 26px;
    height: 42px;
    place-items: start center;
    margin-left: 2px;
    color: #7feaff;
    opacity: 0.88;
    filter:
        drop-shadow(0 0 5px rgba(64, 217, 255, 0.34))
        drop-shadow(0 0 12px rgba(122, 92, 255, 0.16));
    transform: translate3d(0, 0, 0);
    transition:
        color 280ms var(--ease-out),
        opacity 280ms var(--ease-out),
        filter 280ms var(--ease-out),
        transform 280ms var(--ease-out);
}

.experience-scroll-cue__mouse {
    position: relative;
    display: block;
    width: 20px;
    height: 31px;
    border: 1.5px solid currentColor;
    border-radius: 12px;
    background:
        linear-gradient(
            180deg,
            rgba(112, 234, 255, 0.075),
            rgba(122, 92, 255, 0.035)
        );
    box-shadow:
        inset 0 0 10px rgba(80, 225, 255, 0.065),
        0 0 12px rgba(80, 225, 255, 0.14);
    animation:
        experience-scroll-mouse-float 1.8s ease-in-out infinite;
}

.experience-scroll-cue__wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
    transform: translateX(-50%);
    animation:
        experience-scroll-wheel 1.45s cubic-bezier(0.32, 0, 0.2, 1) infinite;
}

.experience-scroll-cue__arrow {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    opacity: 0.78;
    transform: translateX(-50%) rotate(45deg);
    animation:
        experience-scroll-arrow 1.45s ease-in-out infinite;
}

.experience-sequence.is-final .experience-scroll-cue,
.experience-sequence.is-exiting .experience-scroll-cue {
    color: #8fdfff;
    opacity: 1;
    filter:
        drop-shadow(0 0 7px rgba(64, 217, 255, 0.58))
        drop-shadow(0 0 18px rgba(122, 92, 255, 0.34));
    transform: translate3d(2px, 0, 0) scale(1.06);
}

.experience-sequence.is-final .experience-sequence__guide-line,
.experience-sequence.is-exiting .experience-sequence__guide-line {
    background:
        linear-gradient(
            90deg,
            currentColor,
            rgba(122, 92, 255, 0.52) 74%,
            transparent
        );
    box-shadow:
        0 0 10px rgba(62, 215, 255, 0.34),
        0 0 18px rgba(122, 92, 255, 0.14);
}

@keyframes experience-scroll-wheel {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -1px, 0) scaleY(0.72);
    }

    18% {
        opacity: 1;
    }

    62% {
        opacity: 0.95;
    }

    82%,
    100% {
        opacity: 0;
        transform: translate3d(-50%, 10px, 0) scaleY(0.42);
    }
}

@keyframes experience-scroll-arrow {
    0%,
    20% {
        opacity: 0.22;
        transform: translate3d(-50%, -3px, 0) rotate(45deg);
    }

    58% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
        transform: translate3d(-50%, 3px, 0) rotate(45deg);
    }
}

@keyframes experience-scroll-mouse-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 1.5px, 0);
    }
}

@media (max-width: 700px) {
    .experience-sequence__guide {
        gap: 9px;
    }

    .experience-sequence__guide-line {
        flex-basis: 36px;
        width: 36px;
        min-width: 22px;
    }

    .experience-scroll-cue {
        flex-basis: 22px;
        width: 22px;
        height: 36px;
        margin-left: 0;
    }

    .experience-scroll-cue__mouse {
        width: 17px;
        height: 27px;
        border-radius: 10px;
    }

    .experience-scroll-cue__wheel {
        top: 5px;
        height: 6px;
    }

    .experience-scroll-cue__arrow {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 430px) {
    .experience-sequence__guide {
        gap: 7px;
        letter-spacing: 0.095em;
    }

    .experience-sequence__guide-line {
        flex-basis: 24px;
        width: 24px;
        min-width: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .experience-scroll-cue__mouse,
    .experience-scroll-cue__wheel,
    .experience-scroll-cue__arrow {
        animation: none !important;
    }

    .experience-scroll-cue__wheel {
        opacity: 0.9;
    }

    .experience-scroll-cue__arrow {
        opacity: 0.72;
    }
}

