/* ==========================================================
   HORMUUD UNIVERSITY
   INDUSTRIAL TRAINING

   CONCEPT:
   CAREER PATHWAY BOARD
   LIGHT MODE / IMAGE FREE
   ========================================================== */


.it-page {
    /* Hormuud University identity */
    --it-green: #148154;
    --it-green-hover: #0F6843;
    --it-green-dark: #0a3420;
    --it-green-soft: #E8F3EE;
    --it-green-soft-2: #F1F5F2;

    --it-blue: #2C85B7;
    --it-blue-dark: #236E98;
    --it-blue-soft: #EAF4F9;

    --it-cream: #F1F5F2;
    --it-paper: #F8FAF9;
    --it-white: #FFFFFF;

    --it-text: #202522;
    --it-text-soft: #606862;
    --it-muted: #7B857E;

    --it-line: #D9E0DC;
    --it-line-dark: #C8D1CB;

    /* Legacy semantic accent slots now use HU secondary blue. */
    --it-gold: var(--it-blue);
    --it-clay: var(--it-blue);

    --it-display: "Fraunces", Georgia, serif;
    --it-body: "Inter", Arial, sans-serif;
    --it-mono: "DM Mono", monospace;

    width: 100%;

    color:
        var(--it-text);

    background:
        var(--it-paper);

    font-family:
        var(--it-body);

    font-size: 17px;
    line-height: 1.7;

    -webkit-font-smoothing:
        antialiased;

    overflow: visible;
}


.it-page *,
.it-page *::before,
.it-page *::after {
    box-sizing: border-box;
}


.it-page button {
    font: inherit;

    -webkit-tap-highlight-color:
        transparent;
}


.it-shell {
    width:
        min(
            1260px,
            calc(100% - 56px)
        );

    margin-inline: auto;
}


.it-svg-library {
    position: absolute;

    width: 0;
    height: 0;

    overflow: hidden;
}


/* ==========================================================
   COMMON
   ========================================================== */

.it-kicker {
    display: block;

    color:
        var(--it-green);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.it-section-index > span {
    color:
        var(--it-gold);

    font-family:
        var(--it-mono);

    font-size: 12px;
}


.it-section-index > p {
    margin:
        10px
        0
        0;

    color:
        var(--it-green);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* ==========================================================
   HERO
   ========================================================== */

.it-hero {
    position: relative;

    overflow: hidden;

    background:
        var(--it-cream);

    border-bottom:
        1px solid
        var(--it-line-dark);
}


.it-hero::before {
    content: "CAREER";

    position: absolute;

    right: -55px;
    top: 95px;

    color:
        rgba(15,104,67,.024);

    font-family:
        var(--it-display);

    font-size:
        clamp(
            160px,
            24vw,
            390px
        );

    font-weight: 600;

    line-height: .78;

    letter-spacing: -.08em;

    pointer-events: none;
}


/* ==========================================================
   HERO TOP
   ========================================================== */

.it-hero-top {
    position: relative;

    z-index: 5;

    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-bottom:
        1px solid
        var(--it-line-dark);
}


.it-brand {
    display: flex;
    align-items: center;

    gap: 12px;
}


.it-brand-mark {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    color:
        #ffffff;

    background:
        var(--it-green);

    font-family:
        var(--it-display);

    font-size: 15px;
    font-weight: 600;
}


.it-brand strong {
    display: block;

    color:
        var(--it-green-dark);

    font-size: 13px;
}


.it-brand small {
    display: block;

    margin-top: 2px;

    color:
        var(--it-muted);

    font-size: 11px;
}


.it-hero-meta {
    display: flex;
    align-items: center;

    gap: 11px;

    color:
        var(--it-muted);
}


.it-hero-meta span {
    font-family:
        var(--it-mono);

    font-size: 10px;
}


.it-hero-meta i {
    width: 40px;
    height: 1px;

    background:
        var(--it-line-dark);
}


/* ==========================================================
   HERO HEADING
   ========================================================== */

.it-hero-heading {
    position: relative;

    z-index: 4;

    display: grid;

    grid-template-columns:
        190px
        minmax(0, 1fr);

    gap: 75px;

    padding:
        82px
        0
        76px;
}


.it-hero-title h1 {
    max-width: 1030px;

    margin:
        16px
        0
        0;

    color:
        var(--it-green-dark);

    font-family:
        var(--it-display);

    font-size:
        clamp(
            64px,
            8.5vw,
            112px
        );

    font-weight: 500;

    line-height: .9;

    letter-spacing: -.06em;
}


.it-hero-title h1 span {
    display: block;

    color:
        var(--it-clay);
}


.it-hero-subrow {
    max-width: 930px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: end;

    gap: 55px;

    margin-top: 38px;
}


.it-hero-subrow p {
    max-width: 630px;

    margin: 0;

    color:
        var(--it-text-soft);

    font-size: 18px;

    line-height: 1.75;
}


.it-enter {
    min-height: 48px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding:
        0
        17px;

    color:
        #ffffff;

    background:
        var(--it-green);

    border:
        1px solid
        var(--it-green);

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;

    transition:
        background
        180ms ease,
        transform
        180ms ease;
}


.it-enter:hover {
    background:
        var(--it-green-hover);

    transform:
        translateY(-2px);
}


.it-enter svg {
    width: 15px;
    height: 15px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
}


/* ==========================================================
   CAREER PATHWAY
   ========================================================== */

.it-pathway {
    position: relative;

    z-index: 5;

    padding:
        45px
        0;

    background:
        var(--it-green-soft);

    border-top:
        1px solid
        #D9E0DC;

    border-bottom:
        1px solid
        #D9E0DC;
}


/* ==========================================================
   PATHWAY HEADER
   ========================================================== */

.it-pathway-header {
    min-height: 82px;

    display: grid;

    grid-template-columns:
        auto
        minmax(200px, 1fr)
        auto;

    align-items: center;

    gap: 35px;

    padding:
        0
        24px;

    background:
        var(--it-white);

    border:
        1px solid
        var(--it-line-dark);

    border-bottom: 0;
}


.it-pathway-origin {
    display: flex;
    align-items: center;

    gap: 13px;
}


.it-pathway-origin--end {
    text-align: right;
}


.it-pathway-origin-number {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    color:
        #ffffff;

    background:
        var(--it-green);

    font-family:
        var(--it-mono);

    font-size: 12px;
}


.it-pathway-origin small {
    display: block;

    color:
        var(--it-muted);

    font-family:
        var(--it-mono);

    font-size: 10px;
}


.it-pathway-origin strong {
    display: block;

    margin-top: 2px;

    color:
        var(--it-green-dark);

    font-size: 14px;
}


.it-pathway-direction {
    display: flex;
    align-items: center;

    gap: 12px;
}


.it-pathway-direction span {
    flex: none;

    color:
        var(--it-muted);

    font-family:
        var(--it-mono);

    font-size: 10px;
}


.it-pathway-direction i {
    height: 1px;

    flex: 1;

    background:
        var(--it-line-dark);
}


/* ==========================================================
   PATHWAY MAIN
   ========================================================== */

.it-pathway-main {
    display: grid;

    grid-template-columns:
        320px
        minmax(0, 1fr);

    min-height: 580px;

    background:
        var(--it-white);

    border:
        1px solid
        var(--it-line-dark);
}


/* ==========================================================
   PATHWAY NAVIGATION
   ========================================================== */

.it-pathway-nav {
    border-right:
        1px solid
        var(--it-line-dark);
}


.it-pathway-step {
    position: relative;

    width: 100%;

    min-height: 96px;

    display: grid;

    grid-template-columns:
        46px
        1fr;

    align-items: center;

    gap: 12px;

    padding:
        14px
        20px;

    text-align: left;

    color:
        var(--it-text-soft);

    background:
        var(--it-white);

    border: 0;

    border-bottom:
        1px solid
        var(--it-line);

    cursor: pointer;

    transition:
        background
        180ms ease,
        padding-left
        240ms
        cubic-bezier(
            .22,
            1,
            .36,
            1
        );
}


.it-pathway-step:last-child {
    border-bottom: 0;
}


.it-pathway-step::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background:
        var(--it-green);

    transform:
        scaleY(0);

    transform-origin:
        center;

    transition:
        transform
        220ms ease;
}


.it-pathway-step:hover,
.it-pathway-step.is-active {
    padding-left: 27px;

    background:
        var(--it-green-soft);
}


.it-pathway-step:hover::before,
.it-pathway-step.is-active::before {
    transform:
        scaleY(1);
}


.it-pathway-step > span {
    color:
        var(--it-gold);

    font-family:
        var(--it-mono);

    font-size: 12px;
}


.it-pathway-step strong {
    display: block;

    color:
        var(--it-green-dark);

    font-size: 15px;
    font-weight: 700;

    line-height: 1.35;
}


.it-pathway-step small {
    display: block;

    margin-top: 4px;

    color:
        var(--it-muted);

    font-size: 12px;

    line-height: 1.4;
}


/* ==========================================================
   FOCUS PANEL
   ========================================================== */

.it-pathway-focus {
    position: relative;

    min-width: 0;

    display: grid;

    grid-template-rows:
        auto
        1fr
        auto;

    overflow: hidden;

    background:
        var(--it-paper);
}


.it-pathway-focus::before {
    content: "PATH";

    position: absolute;

    right: -30px;
    bottom: -55px;

    color:
        rgba(20,129,84,.035);

    font-family:
        var(--it-display);

    font-size: 210px;
    font-weight: 600;

    line-height: .8;

    pointer-events: none;
}


.it-pathway-focus > header {
    position: relative;

    z-index: 2;

    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        0
        30px;

    border-bottom:
        1px solid
        var(--it-line);
}


.it-pathway-focus header > div:first-child {
    display: flex;
    align-items: center;

    gap: 14px;
}


.it-pathway-focus header span,
.it-pathway-focus header strong {
    font-family:
        var(--it-mono);

    font-size: 11px;
}


.it-pathway-focus header span {
    color:
        var(--it-muted);
}


.it-pathway-focus header strong {
    color:
        var(--it-green);
}


.it-pathway-live {
    display: flex;
    align-items: center;

    gap: 8px;
}


.it-pathway-live i {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--it-green);

    box-shadow:
        0
        0
        0
        5px
        rgba(20,129,84,.08);
}


/* ==========================================================
   FOCUS BODY
   ========================================================== */

.it-pathway-focus-body {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        190px
        minmax(0, 1fr);

    align-content: center;

    gap: 55px;

    padding:
        70px
        65px;

    transition:
        opacity
        220ms ease,
        transform
        340ms
        cubic-bezier(
            .22,
            1,
            .36,
            1
        );
}


.it-pathway-focus-body.is-changing {
    opacity: .2;

    transform:
        translateY(12px);
}


.it-pathway-big-number {
    color:
        var(--it-green);

    font-family:
        var(--it-display);

    font-size:
        clamp(
            90px,
            9vw,
            135px
        );

    font-weight: 500;

    line-height: .78;

    letter-spacing: -.07em;
}


.it-pathway-focus-copy > span {
    color:
        var(--it-gold);

    font-family:
        var(--it-mono);

    font-size: 11px;
}


.it-pathway-focus-copy h2 {
    max-width: 650px;

    margin:
        14px
        0
        0;

    color:
        var(--it-green-dark);

    font-family:
        var(--it-display);

    font-size:
        clamp(
            39px,
            4.5vw,
            58px
        );

    font-weight: 500;

    line-height: 1.04;

    letter-spacing: -.04em;
}


.it-pathway-focus-copy p {
    max-width: 680px;

    margin:
        24px
        0
        0;

    color:
        var(--it-text-soft);

    font-size: 17px;

    line-height: 1.8;
}


/* ==========================================================
   PATHWAY FOOTER
   ========================================================== */

.it-pathway-focus > footer {
    position: relative;

    z-index: 3;

    padding:
        20px
        30px
        27px;

    border-top:
        1px solid
        var(--it-line);
}


.it-pathway-progress-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 12px;

    color:
        var(--it-muted);

    font-family:
        var(--it-mono);

    font-size: 10px;
}


.it-pathway-progress {
    position: relative;

    height: 4px;

    background:
        var(--it-line-dark);
}


.it-pathway-progress > i {
    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width:
        calc(100% / 6);

    background:
        var(--it-green);

    transition:
        width
        620ms
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}


.it-pathway-dot {
    position: absolute;

    top: 50%;

    width: 12px;
    height: 12px;

    background:
        var(--it-white);

    border:
        2px solid
        var(--it-line-dark);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    transition:
        background
        180ms ease,
        border-color
        180ms ease,
        transform
        180ms ease;
}


.it-pathway-dot.is-active {
    background:
        var(--it-green);

    border-color:
        var(--it-green);

    transform:
        translate(-50%, -50%)
        scale(1.2);
}


.it-pathway-dot--1 {
    left: 0;
}


.it-pathway-dot--2 {
    left: 20%;
}


.it-pathway-dot--3 {
    left: 40%;
}


.it-pathway-dot--4 {
    left: 60%;
}


.it-pathway-dot--5 {
    left: 80%;
}


.it-pathway-dot--6 {
    left: 100%;
}


/* ==========================================================
   PATHWAY BOTTOM
   ========================================================== */

.it-pathway-bottom {
    min-height: 73px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding:
        0
        23px;

    background:
        var(--it-white);

    border:
        1px solid
        var(--it-line-dark);

    border-top: 0;
}


.it-pathway-bottom > span {
    flex: none;

    display: flex;
    align-items: center;

    gap: 7px;

    color:
        var(--it-gold);

    font-family:
        var(--it-mono);

    font-size: 10px;
}


.it-pathway-bottom strong {
    color:
        var(--it-green-dark);

    font-size: 10px;
    font-weight: 500;
}


.it-pathway-bottom > i {
    height: 1px;

    flex: 1;

    background:
        var(--it-line-dark);
}


/* ==========================================================
   HERO FOOT
   ========================================================== */

.it-hero-foot {
    min-height: 100px;

    display: flex;
    align-items: center;

    gap: 13px;
}


.it-hero-foot span {
    flex: none;

    color:
        var(--it-muted);

    font-family:
        var(--it-mono);

    font-size: 10px;
}


.it-hero-foot i {
    height: 1px;

    flex: 1;

    background:
        var(--it-line-dark);
}


/* ==========================================================
   IMMERSION
   ========================================================== */

.it-immersion {
    padding:
        130px
        0;

    background:
        var(--it-paper);
}


.it-immersion-layout,
.it-outcomes-heading {
    display: grid;

    grid-template-columns:
        minmax(170px, .32fr)
        minmax(0, 1.68fr);

    gap: 90px;
}


.it-immersion-heading h2 {
    max-width: 970px;

    margin:
        16px
        0
        0;

    color:
        var(--it-green-dark);

    font-family:
        var(--it-display);

    font-size:
        clamp(
            46px,
            6vw,
            72px
        );

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.047em;
}


.it-immersion-heading h2 span {
    color:
        var(--it-clay);
}


/* ==========================================================
   IMMERSION COPY
   ========================================================== */

.it-immersion-copy {
    max-width: 920px;

    display: grid;

    grid-template-columns:
        76px
        1fr;

    gap: 26px;

    margin-top: 58px;

    padding-top: 37px;

    border-top:
        1px solid
        var(--it-line-dark);
}


.it-drop-cap {
    color:
        var(--it-green);

    font-family:
        var(--it-display);

    font-size: 78px;

    line-height: .8;
}


.it-immersion-copy p {
    margin: 0;

    color:
        var(--it-text-soft);

    font-size: 17px;

    line-height: 1.88;
}


/* ==========================================================
   TRANSITION DIAGRAM
   ========================================================== */

.it-transition-diagram {
    max-width: 920px;

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto
        1fr
        auto
        1fr
        auto;

    align-items: center;

    gap: 16px;

    margin-top: 65px;
}


.it-transition-diagram div {
    min-width: 110px;
}


.it-transition-diagram span {
    display: block;

    color:
        var(--it-gold);

    font-family:
        var(--it-mono);

    font-size: 10px;
}


.it-transition-diagram strong {
    display: block;

    margin-top: 6px;

    color:
        var(--it-green-dark);

    font-size: 14px;
}


.it-transition-diagram > i {
    height: 1px;

    background:
        var(--it-line-dark);
}


/* ==========================================================
   OUTCOMES
   ========================================================== */

.it-outcomes {
    padding:
        125px
        0
        135px;

    background:
        var(--it-cream);

    border-top:
        1px solid
        var(--it-line);

    border-bottom:
        1px solid
        var(--it-line);
}


.it-outcomes-title h2 {
    max-width: 850px;

    margin:
        15px
        0
        0;

    color:
        var(--it-green-dark);

    font-family:
        var(--it-display);

    font-size:
        clamp(
            43px,
            5vw,
            62px
        );

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -.04em;
}


/* ==========================================================
   WORKBENCH
   ========================================================== */

.it-workbench {
    display: grid;

    grid-template-columns:
        325px
        minmax(0, 1fr);

    margin-top: 75px;

    background:
        var(--it-white);

    border:
        1px solid
        var(--it-line-dark);

    box-shadow:
        0
        18px
        50px
        rgba(14,21,17,.05);
}


.it-outcome-nav {
    border-right:
        1px solid
        var(--it-line-dark);
}


.it-outcome-nav button {
    position: relative;

    width: 100%;

    min-height: 90px;

    display: grid;

    grid-template-columns:
        45px
        1fr;

    align-items: center;

    gap: 10px;

    padding:
        13px
        19px;

    text-align: left;

    color:
        var(--it-text-soft);

    background:
        transparent;

    border: 0;

    border-bottom:
        1px solid
        var(--it-line);

    cursor: pointer;

    transition:
        background
        200ms ease,
        padding-left
        250ms ease,
        color
        180ms ease;
}


.it-outcome-nav button:last-child {
    border-bottom: 0;
}


.it-outcome-nav button::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background:
        var(--it-green);

    transform:
        scaleY(0);

    transition:
        transform
        230ms ease;
}


.it-outcome-nav button:hover,
.it-outcome-nav button.is-active {
    padding-left: 25px;

    color:
        var(--it-green-dark);

    background:
        var(--it-green-soft);
}


.it-outcome-nav button:hover::before,
.it-outcome-nav button.is-active::before {
    transform:
        scaleY(1);
}


.it-outcome-nav button span {
    color:
        var(--it-gold);

    font-family:
        var(--it-mono);

    font-size: 11px;
}


.it-outcome-nav button strong {
    font-size: 15px;
    font-weight: 600;

    line-height: 1.35;
}


/* ==========================================================
   OUTCOME DISPLAY
   ========================================================== */

.it-outcome-display {
    min-height: 640px;

    display: grid;

    grid-template-rows:
        auto
        1fr
        auto;

    overflow: hidden;
}


.it-outcome-display > header {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        0
        28px;

    border-bottom:
        1px solid
        var(--it-line);
}


.it-outcome-display header > div:first-child {
    display: flex;
    align-items: center;

    gap: 12px;
}


.it-outcome-display header span,
.it-outcome-display header strong {
    font-family:
        var(--it-mono);

    font-size: 10px;
}


.it-outcome-display header span {
    color:
        var(--it-muted);
}


.it-outcome-display header strong {
    color:
        var(--it-green);
}


.it-display-status {
    display: flex;
    align-items: center;

    gap: 8px;
}


.it-display-status i {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--it-green);
}


/* ==========================================================
   OUTCOME CONTENT
   ========================================================== */

.it-outcome-content {
    position: relative;

    display: grid;

    grid-template-columns:
        160px
        1fr;

    align-content: center;

    gap: 45px;

    padding:
        70px
        60px;

    transition:
        opacity
        200ms ease,
        transform
        300ms ease;
}


.it-outcome-content::after {
    content: "WORK";

    position: absolute;

    right: -20px;
    bottom: -40px;

    color:
        rgba(20,129,84,.035);

    font-family:
        var(--it-display);

    font-size: 200px;

    pointer-events: none;
}


.it-outcome-content.is-changing {
    opacity: .25;

    transform:
        translateY(10px);
}


.it-outcome-number {
    position: relative;

    z-index: 2;

    color:
        var(--it-green);

    font-family:
        var(--it-display);

    font-size: 95px;

    line-height: .9;
}


.it-outcome-content > div:last-child {
    position: relative;

    z-index: 2;
}


.it-outcome-type {
    display: block;

    color:
        var(--it-gold);

    font-family:
        var(--it-mono);

    font-size: 10px;
}


.it-outcome-content h3 {
    max-width: 650px;

    margin:
        13px
        0
        0;

    color:
        var(--it-green-dark);

    font-family:
        var(--it-display);

    font-size:
        clamp(
            38px,
            4vw,
            54px
        );

    font-weight: 500;

    line-height: 1.06;

    letter-spacing: -.035em;
}


.it-outcome-content p {
    max-width: 710px;

    margin:
        25px
        0
        0;

    color:
        var(--it-text-soft);

    font-size: 17px;

    line-height: 1.85;
}


/* ==========================================================
   OUTCOME FOOTER
   ========================================================== */

.it-outcome-display > footer {
    min-height: 72px;

    display: grid;

    grid-template-columns:
        47px
        1fr
        47px;

    align-items: center;

    gap: 18px;

    padding:
        0
        28px;

    border-top:
        1px solid
        var(--it-line);
}


.it-outcome-display footer button {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    padding: 0;

    color:
        var(--it-green-dark);

    background:
        transparent;

    border:
        1px solid
        var(--it-line-dark);

    cursor: pointer;

    transition:
        color
        180ms ease,
        background
        180ms ease;
}


.it-outcome-display footer button:hover {
    color:
        #ffffff;

    background:
        var(--it-green);

    border-color:
        var(--it-green);
}


.it-outcome-progress {
    position: relative;

    height: 2px;

    overflow: hidden;

    background:
        var(--it-line-dark);
}


.it-outcome-progress i {
    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width:
        calc(100% / 6);

    background:
        var(--it-green);

    transition:
        width
        550ms
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}


/* ==========================================================
   CONNECTION
   ========================================================== */

.it-connection {
    padding:
        120px
        0;

    background:
        var(--it-green-soft);
}


.it-connection-layout {
    display: grid;

    grid-template-columns:
        260px
        1fr;

    align-items: center;

    gap: 85px;
}


.it-connection-symbol {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* ==========================================================
   CONNECTION SYMBOL
   ========================================================== */

.it-symbol-grid {
    position: relative;

    width: 165px;
    height: 165px;

    border:
        1px solid
        #C8D1CB;
}


.it-symbol-grid::before,
.it-symbol-grid::after {
    content: "";

    position: absolute;

    background:
        #C8D1CB;
}


.it-symbol-grid::before {
    left: 50%;
    top: 0;
    bottom: 0;

    width: 1px;
}


.it-symbol-grid::after {
    top: 50%;
    left: 0;
    right: 0;

    height: 1px;
}


.it-symbol-main {
    position: absolute;

    z-index: 4;

    left: 50%;
    top: 50%;

    width: 68px;
    height: 68px;

    display: grid;
    place-items: center;

    color:
        #ffffff;

    background:
        var(--it-green);

    font-family:
        var(--it-display);

    font-size: 25px;

    transform:
        translate(-50%, -50%);
}


.it-symbol-node {
    position: absolute;

    z-index: 3;

    width: 12px;
    height: 12px;

    background:
        var(--it-gold);

    border-radius: 50%;

    animation:
        itNodePulse
        3s
        ease-in-out
        infinite;
}


.it-symbol-node--1 {
    left: 15px;
    top: 15px;
}


.it-symbol-node--2 {
    right: 15px;
    top: 15px;

    animation-delay: .5s;
}


.it-symbol-node--3 {
    right: 15px;
    bottom: 15px;

    animation-delay: 1s;
}


.it-symbol-node--4 {
    left: 15px;
    bottom: 15px;

    animation-delay: 1.5s;
}


@keyframes itNodePulse {

    0%,
    100% {
        transform:
            scale(1);

        opacity: .65;
    }

    50% {
        transform:
            scale(1.5);

        opacity: 1;
    }

}


.it-connection-symbol > small {
    color:
        var(--it-muted);

    font-family:
        var(--it-mono);

    font-size: 10px;
}


.it-connection-copy h2 {
    max-width: 820px;

    margin:
        15px
        0
        0;

    color:
        var(--it-green-dark);

    font-family:
        var(--it-display);

    font-size:
        clamp(
            48px,
            6vw,
            72px
        );

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.045em;
}


.it-connection-copy > p {
    max-width: 680px;

    margin:
        23px
        0
        0;

    color:
        var(--it-text-soft);

    font-size: 17px;
}


.it-connection-copy button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 31px;

    padding:
        0
        17px;

    color:
        #ffffff;

    background:
        var(--it-green);

    border:
        1px solid
        var(--it-green);

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;
}


.it-connection-copy button:hover {
    background:
        var(--it-green-hover);
}


.it-connection-copy svg {
    width: 15px;
    height: 15px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
}


/* ==========================================================
   REVEALS
   ========================================================== */

.it-page.js-ready
.it-reveal {
    opacity: 0;

    transform:
        translateY(19px);

    transition:
        opacity
        760ms ease,
        transform
        760ms
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}


.it-page.js-ready
.it-reveal.is-visible {
    opacity: 1;

    transform: none;
}


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

@media (max-width: 1100px) {

    .it-pathway-main {
        grid-template-columns:
            285px
            minmax(0, 1fr);
    }


    .it-pathway-focus-body {
        grid-template-columns:
            150px
            1fr;

        gap: 35px;

        padding:
            60px
            45px;
    }


    .it-pathway-header {
        grid-template-columns:
            auto
            1fr
            auto;
    }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .it-pathway-header {
        grid-template-columns:
            1fr
            1fr;

        gap: 20px;
    }


    .it-pathway-direction {
        grid-column:
            1 / -1;

        grid-row:
            2;
    }


    .it-pathway-origin--end {
        justify-content:
            flex-end;
    }


    .it-pathway-main {
        grid-template-columns: 1fr;
    }


    .it-pathway-nav {
        display: flex;

        overflow-x: auto;

        border-right: 0;

        border-bottom:
            1px solid
            var(--it-line-dark);

        scrollbar-width: none;
    }


    .it-pathway-nav::-webkit-scrollbar {
        display: none;
    }


    .it-pathway-step {
        min-width: 200px;
        min-height: 90px;

        flex:
            0
            0
            200px;

        border-right:
            1px solid
            var(--it-line);
    }


    .it-pathway-step:last-child {
        border-right: 0;
    }


    .it-pathway-step::before {
        top: auto;
        right: 0;
        bottom: 0;

        width: auto;
        height: 3px;

        transform:
            scaleX(0);
    }


    .it-pathway-step:hover::before,
    .it-pathway-step.is-active::before {
        transform:
            scaleX(1);
    }


    .it-pathway-step:hover,
    .it-pathway-step.is-active {
        padding-left: 20px;
    }


    .it-immersion-layout,
    .it-outcomes-heading {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .it-workbench {
        grid-template-columns: 1fr;
    }


    .it-outcome-nav {
        display: flex;

        overflow-x: auto;

        border-right: 0;

        border-bottom:
            1px solid
            var(--it-line-dark);

        scrollbar-width: none;
    }


    .it-outcome-nav::-webkit-scrollbar {
        display: none;
    }


    .it-outcome-nav button {
        min-width: 205px;

        border-right:
            1px solid
            var(--it-line);
    }

}


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

@media (max-width: 720px) {

    .it-shell {
        width:
            min(
                100% - 30px,
                1260px
            );
    }


    .it-hero-meta {
        display: none;
    }


    .it-hero-heading {
        grid-template-columns: 1fr;

        gap: 32px;

        padding:
            57px
            0
            52px;
    }


    .it-hero-title h1 {
        font-size:
            clamp(
                52px,
                15vw,
                72px
            );
    }


    .it-hero-subrow {
        grid-template-columns: 1fr;

        align-items: start;

        gap: 25px;
    }


    .it-hero-subrow p {
        font-size: 16px;
    }


    .it-enter {
        justify-self: start;
    }


    /* ======================================================
       PATHWAY
       ====================================================== */

    .it-pathway {
        padding:
            20px
            0;
    }


    .it-pathway-header {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 0;

        padding: 0;
    }


    .it-pathway-origin {
        min-height: 75px;

        padding:
            0
            18px;

        border-bottom:
            1px solid
            var(--it-line);
    }


    .it-pathway-origin--end {
        text-align: left;

        justify-content: flex-start;
    }


    .it-pathway-origin--end
    .it-pathway-origin-number {
        order: -1;
    }


    .it-pathway-direction {
        grid-column:
            auto;

        grid-row:
            auto;

        min-height: 55px;

        padding:
            0
            18px;

        border-bottom:
            1px solid
            var(--it-line);
    }


    .it-pathway-direction span {
        font-size: 9px;
    }


    .it-pathway-step {
        min-width: 185px;

        flex-basis: 185px;
    }


    .it-pathway-focus-body {
        grid-template-columns: 1fr;

        gap: 24px;

        padding:
            42px
            28px
            55px;
    }


    .it-pathway-big-number {
        font-size: 68px;
    }


    .it-pathway-focus-copy h2 {
        font-size: 37px;
    }


    .it-pathway-focus-copy p {
        font-size: 16px;
    }


    .it-pathway-focus > header {
        padding:
            0
            20px;
    }


    .it-pathway-live {
        display: none;
    }


    .it-pathway-focus > footer {
        padding:
            20px;
    }


    .it-pathway-bottom {
        overflow-x: auto;

        scrollbar-width: none;
    }


    .it-pathway-bottom::-webkit-scrollbar {
        display: none;
    }


    .it-pathway-bottom > span {
        min-width: max-content;
    }


    .it-pathway-bottom > i {
        min-width: 30px;
    }


    /* ======================================================
       OTHER SECTIONS
       ====================================================== */

    .it-hero-foot {
        overflow-x: auto;

        scrollbar-width: none;
    }


    .it-hero-foot::-webkit-scrollbar {
        display: none;
    }


    .it-immersion,
    .it-outcomes,
    .it-connection {
        padding:
            82px
            0;
    }


    .it-immersion-heading h2,
    .it-outcomes-title h2,
    .it-connection-copy h2 {
        font-size: 40px;
    }


    .it-immersion-copy {
        grid-template-columns: 1fr;
    }


    .it-drop-cap {
        font-size: 55px;
    }


    .it-transition-diagram {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .it-transition-diagram > i {
        width: 1px;
        height: 28px;

        margin-left: 12px;
    }


    .it-outcome-display {
        min-height: 620px;
    }


    .it-outcome-content {
        grid-template-columns: 1fr;

        gap: 22px;

        padding:
            45px
            28px;
    }


    .it-outcome-number {
        font-size: 58px;
    }


    .it-outcome-content h3 {
        font-size: 35px;
    }


    .it-connection-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


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

@media (max-width: 460px) {

    .it-shell {
        width:
            min(
                100% - 22px,
                1260px
            );
    }


    .it-brand small {
        display: none;
    }


    .it-pathway-step {
        min-width: 165px;

        flex-basis: 165px;
    }


    .it-pathway-step strong {
        font-size: 14px;
    }


    .it-pathway-step small {
        font-size: 11px;
    }


    .it-pathway-focus-copy h2 {
        font-size: 32px;
    }


    .it-pathway-direction span:nth-of-type(2) {
        display: none;
    }


    .it-outcome-nav button {
        min-width: 175px;
    }


    .it-outcome-display > header {
        padding:
            0
            18px;
    }


    .it-display-status {
        display: none;
    }


    .it-outcome-display > footer {
        padding:
            0
            18px;
    }

}


/* ==========================================================
   SCROLL SAFETY
   ========================================================== */

html,
body {
    height: auto !important;

    min-height: 100% !important;

    overflow-y: auto !important;

    overflow-x: hidden;
}


.it-page {
    height: auto !important;

    max-height: none !important;

    overflow: visible !important;
}


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

@media (prefers-reduced-motion: reduce) {

    .it-page *,
    .it-page *::before,
    .it-page *::after {
        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;
    }


    .it-page.js-ready
    .it-reveal {
        opacity: 1;

        transform: none;
    }


    .it-symbol-node {
        animation: none;
    }

}

/* ==========================================================
   HORMUUD UNIVERSITY — INDUSTRIAL TRAINING DARK MODE 2026
   Page-specific dark mode + university identity layer.

   The light mode above has also been corrected from the former
   custom green / cream / gold / clay palette to HU green, blue,
   and canonical neutral surfaces.
   ========================================================== */


/* ==========================================================
   DARK — CANONICAL TOKENS
   ========================================================== */

html[data-theme="dark"] .it-page {
    --it-green: #66C59B;
    --it-green-hover: #86D5B2;
    --it-green-dark: #86D5B2;
    --it-green-soft: #183A2C;
    --it-green-soft-2: #18241D;

    --it-blue: #72BCE3;
    --it-blue-dark: #97D1EC;
    --it-blue-soft: #173442;

    --it-cream: #121B16;
    --it-paper: #0E1511;
    --it-white: #151E18;

    --it-text: #EDF3EF;
    --it-text-soft: #A9B5AE;
    --it-muted: #7F8B84;

    --it-line: #2D3A32;
    --it-line-dark: #3A493F;

    --it-gold: var(--it-blue);
    --it-clay: var(--it-blue);

    color: var(--it-text) !important;
    background: var(--it-paper) !important;
}


/* ==========================================================
   DARK — HERO
   ========================================================== */

html[data-theme="dark"] .it-page .it-hero {
    background: #121B16 !important;
    border-bottom-color: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-hero::before {
    color: rgba(134, 213, 178, .028) !important;
}

html[data-theme="dark"] .it-page .it-hero-top {
    border-bottom-color: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-brand-mark {
    color: #0E1511 !important;
    background: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-brand strong,
html[data-theme="dark"] .it-page .it-hero-title h1 {
    color: var(--it-green-dark) !important;
}

html[data-theme="dark"] .it-page .it-brand small,
html[data-theme="dark"] .it-page .it-hero-meta,
html[data-theme="dark"] .it-page .it-hero-subrow p {
    color: var(--it-text-soft) !important;
}

html[data-theme="dark"] .it-page .it-hero-meta i {
    background: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-kicker,
html[data-theme="dark"] .it-page .it-section-index > p {
    color: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-section-index > span,
html[data-theme="dark"] .it-page .it-hero-title h1 span {
    color: var(--it-blue) !important;
}

html[data-theme="dark"] .it-page .it-enter {
    color: #0E1511 !important;
    background: var(--it-green) !important;
    border-color: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-enter:hover,
html[data-theme="dark"] .it-page .it-enter:focus-visible {
    background: var(--it-green-dark) !important;
    border-color: var(--it-green-dark) !important;
}


/* ==========================================================
   DARK — CAREER PATHWAY BOARD
   ========================================================== */

html[data-theme="dark"] .it-page .it-pathway {
    background: #183A2C !important;
    border-color: #315944 !important;
}

html[data-theme="dark"] .it-page .it-pathway-header,
html[data-theme="dark"] .it-page .it-pathway-main,
html[data-theme="dark"] .it-page .it-pathway-bottom {
    background: #151E18 !important;
    border-color: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-pathway-origin-number {
    color: #0E1511 !important;
    background: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-pathway-origin small,
html[data-theme="dark"] .it-page .it-pathway-direction span {
    color: var(--it-muted) !important;
}

html[data-theme="dark"] .it-page .it-pathway-origin strong,
html[data-theme="dark"] .it-page .it-pathway-bottom strong {
    color: var(--it-green-dark) !important;
}

html[data-theme="dark"] .it-page .it-pathway-direction i,
html[data-theme="dark"] .it-page .it-pathway-bottom > i {
    background: var(--it-line-dark) !important;
}


/* Pathway navigation */

html[data-theme="dark"] .it-page .it-pathway-nav {
    border-right-color: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-pathway-step {
    color: var(--it-text-soft) !important;
    background: #151E18 !important;
    border-bottom-color: var(--it-line) !important;
}

html[data-theme="dark"] .it-page .it-pathway-step::before {
    background: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-pathway-step:hover,
html[data-theme="dark"] .it-page .it-pathway-step.is-active {
    background: var(--it-green-soft) !important;
}

html[data-theme="dark"] .it-page .it-pathway-step > span {
    color: var(--it-blue) !important;
}

html[data-theme="dark"] .it-page .it-pathway-step strong {
    color: var(--it-green-dark) !important;
}

html[data-theme="dark"] .it-page .it-pathway-step small {
    color: var(--it-muted) !important;
}


/* Focus panel */

html[data-theme="dark"] .it-page .it-pathway-focus {
    background: #0E1511 !important;
}

html[data-theme="dark"] .it-page .it-pathway-focus::before {
    color: rgba(102, 197, 155, .045) !important;
}

html[data-theme="dark"] .it-page .it-pathway-focus > header,
html[data-theme="dark"] .it-page .it-pathway-focus > footer {
    border-color: var(--it-line) !important;
}

html[data-theme="dark"] .it-page .it-pathway-focus header span,
html[data-theme="dark"] .it-page .it-pathway-progress-labels {
    color: var(--it-muted) !important;
}

html[data-theme="dark"] .it-page .it-pathway-focus header strong,
html[data-theme="dark"] .it-page .it-pathway-live i,
html[data-theme="dark"] .it-page .it-pathway-big-number {
    color: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-pathway-live i {
    background: var(--it-green) !important;
    box-shadow:
        0 0 0 5px
        rgba(102, 197, 155, .10) !important;
}

html[data-theme="dark"] .it-page .it-pathway-focus-copy > span,
html[data-theme="dark"] .it-page .it-pathway-bottom > span {
    color: var(--it-blue) !important;
}

html[data-theme="dark"] .it-page .it-pathway-focus-copy h2 {
    color: var(--it-green-dark) !important;
}

html[data-theme="dark"] .it-page .it-pathway-focus-copy p {
    color: var(--it-text-soft) !important;
}

html[data-theme="dark"] .it-page .it-pathway-progress {
    background: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-pathway-progress > i,
html[data-theme="dark"] .it-page .it-pathway-dot.is-active {
    background: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-pathway-dot {
    background: #151E18 !important;
    border-color: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-pathway-dot.is-active {
    border-color: var(--it-green) !important;
}


/* Hero foot */

html[data-theme="dark"] .it-page .it-hero-foot span {
    color: var(--it-muted) !important;
}

html[data-theme="dark"] .it-page .it-hero-foot i {
    background: var(--it-line-dark) !important;
}


/* ==========================================================
   DARK — INDUSTRY IMMERSION
   ========================================================== */

html[data-theme="dark"] .it-page .it-immersion {
    background: #0E1511 !important;
}

html[data-theme="dark"] .it-page .it-immersion-heading h2 {
    color: var(--it-green-dark) !important;
}

html[data-theme="dark"] .it-page .it-immersion-heading h2 span {
    color: var(--it-blue) !important;
}

html[data-theme="dark"] .it-page .it-immersion-copy {
    border-top-color: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-drop-cap {
    color: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-immersion-copy p {
    color: var(--it-text-soft) !important;
}

html[data-theme="dark"] .it-page .it-transition-diagram span {
    color: var(--it-blue) !important;
}

html[data-theme="dark"] .it-page .it-transition-diagram strong {
    color: var(--it-green-dark) !important;
}

html[data-theme="dark"] .it-page .it-transition-diagram > i {
    background: var(--it-line-dark) !important;
}


/* ==========================================================
   DARK — PROGRAMME OUTCOMES / WORKBENCH
   ========================================================== */

html[data-theme="dark"] .it-page .it-outcomes {
    background: #121B16 !important;
    border-color: var(--it-line) !important;
}

html[data-theme="dark"] .it-page .it-outcomes-title h2 {
    color: var(--it-green-dark) !important;
}

html[data-theme="dark"] .it-page .it-workbench {
    background: #151E18 !important;
    border-color: var(--it-line-dark) !important;

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, .22) !important;
}

html[data-theme="dark"] .it-page .it-outcome-nav {
    border-right-color: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-outcome-nav button {
    color: var(--it-text-soft) !important;
    border-bottom-color: var(--it-line) !important;
}

html[data-theme="dark"] .it-page .it-outcome-nav button::before {
    background: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-outcome-nav button:hover,
html[data-theme="dark"] .it-page .it-outcome-nav button.is-active {
    color: var(--it-green-dark) !important;
    background: var(--it-green-soft) !important;
}

html[data-theme="dark"] .it-page .it-outcome-nav button span {
    color: var(--it-blue) !important;
}


/* Workbench display */

html[data-theme="dark"] .it-page .it-outcome-display > header,
html[data-theme="dark"] .it-page .it-outcome-display > footer {
    border-color: var(--it-line) !important;
}

html[data-theme="dark"] .it-page .it-outcome-display header span {
    color: var(--it-muted) !important;
}

html[data-theme="dark"] .it-page .it-outcome-display header strong,
html[data-theme="dark"] .it-page .it-display-status i,
html[data-theme="dark"] .it-page .it-outcome-number {
    color: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-display-status i {
    background: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-outcome-content::after {
    color: rgba(102, 197, 155, .045) !important;
}

html[data-theme="dark"] .it-page .it-outcome-type {
    color: var(--it-blue) !important;
}

html[data-theme="dark"] .it-page .it-outcome-content h3 {
    color: var(--it-green-dark) !important;
}

html[data-theme="dark"] .it-page .it-outcome-content p {
    color: var(--it-text-soft) !important;
}

html[data-theme="dark"] .it-page .it-outcome-display footer button {
    color: var(--it-green-dark) !important;
    background: #151E18 !important;
    border-color: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-outcome-display footer button:hover,
html[data-theme="dark"] .it-page .it-outcome-display footer button:focus-visible {
    color: #0E1511 !important;
    background: var(--it-green) !important;
    border-color: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-outcome-progress {
    background: var(--it-line-dark) !important;
}

html[data-theme="dark"] .it-page .it-outcome-progress i {
    background: var(--it-green) !important;
}


/* ==========================================================
   DARK — CAREER CONNECTION
   ========================================================== */

html[data-theme="dark"] .it-page .it-connection {
    background: #183A2C !important;
}

html[data-theme="dark"] .it-page .it-symbol-grid {
    border-color: #315944 !important;
}

html[data-theme="dark"] .it-page .it-symbol-grid::before,
html[data-theme="dark"] .it-page .it-symbol-grid::after {
    background: #315944 !important;
}

html[data-theme="dark"] .it-page .it-symbol-main {
    color: #0E1511 !important;
    background: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-symbol-node {
    background: var(--it-blue) !important;
}

html[data-theme="dark"] .it-page .it-connection-symbol > small {
    color: var(--it-muted) !important;
}

html[data-theme="dark"] .it-page .it-connection-copy h2 {
    color: var(--it-green-dark) !important;
}

html[data-theme="dark"] .it-page .it-connection-copy > p {
    color: var(--it-text-soft) !important;
}

html[data-theme="dark"] .it-page .it-connection-copy button {
    color: #0E1511 !important;
    background: var(--it-green) !important;
    border-color: var(--it-green) !important;
}

html[data-theme="dark"] .it-page .it-connection-copy button:hover,
html[data-theme="dark"] .it-page .it-connection-copy button:focus-visible {
    background: var(--it-green-dark) !important;
    border-color: var(--it-green-dark) !important;
}


/* ==========================================================
   THEME TRANSITIONS
   ========================================================== */

.it-page,
.it-page .it-hero,
.it-page .it-pathway,
.it-page .it-pathway-header,
.it-page .it-pathway-main,
.it-page .it-pathway-step,
.it-page .it-pathway-focus,
.it-page .it-pathway-bottom,
.it-page .it-immersion,
.it-page .it-outcomes,
.it-page .it-workbench,
.it-page .it-outcome-nav button,
.it-page .it-outcome-display footer button,
.it-page .it-connection {
    transition:
        background-color .24s ease,
        color .24s ease,
        border-color .24s ease;
}


/* ==========================================================
   MOBILE / TABLET DARK STATES
   ========================================================== */

@media (max-width: 900px) {

    html[data-theme="dark"] .it-page .it-pathway-nav {
        border-right-color: transparent !important;
        border-bottom-color: var(--it-line-dark) !important;
    }

    html[data-theme="dark"] .it-page .it-outcome-nav {
        border-right-color: transparent !important;
        border-bottom-color: var(--it-line-dark) !important;
    }

}

@media (max-width: 720px) {

    html[data-theme="dark"] .it-page .it-pathway-step,
    html[data-theme="dark"] .it-page .it-outcome-nav button {
        border-right-color: var(--it-line) !important;
    }

}


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

@media (prefers-reduced-motion: reduce) {

    .it-page,
    .it-page .it-hero,
    .it-page .it-pathway,
    .it-page .it-pathway-header,
    .it-page .it-pathway-main,
    .it-page .it-pathway-step,
    .it-page .it-pathway-focus,
    .it-page .it-pathway-bottom,
    .it-page .it-immersion,
    .it-page .it-outcomes,
    .it-page .it-workbench,
    .it-page .it-outcome-nav button,
    .it-page .it-outcome-display footer button,
    .it-page .it-connection {
        transition: none !important;
    }

}
