body.home-page {
            --ink: #111418;
            --ink-2: #2f3d44;
            --muted: #6a7880;
            --line: #d9e4e0;
            --line-strong: #c4d4cf;
            --paper: #ffffff;
            --wash: #f4f8f6;
            --wash-2: #edf5f2;
            --primary: #0f766e;
            --primary-deep: #075752;
            --blue: #2457c5;
            --amber: #b86a16;
            --rose: #b63f59;
            --violet: #6657c6;
            --shadow: 0 24px 60px rgba(17, 20, 24, 0.09);
            --shadow-soft: 0 14px 34px rgba(17, 20, 24, 0.07);
            background:
                linear-gradient(180deg, #fbfcfb 0%, #f5f8f7 36%, #ffffff 100%);
            color: var(--ink);
        }

        .home-page .site-shell {
            width: min(1240px, calc(100% - 40px));
            padding-bottom: 52px;
        }

        .home-page .site-header {
            position: sticky;
            top: 10px;
            z-index: 50;
            margin: 10px 0 18px;
            padding: 10px;
            border: 1px solid rgba(217, 228, 224, 0.94);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 12px 30px rgba(17, 20, 24, 0.07);
            backdrop-filter: blur(18px);
        }

        .home-page .brand-lockup {
            gap: 11px;
        }

        .home-page .brand-mark {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary-deep), var(--primary));
            letter-spacing: 0;
        }

        .home-page .brand-title {
            color: var(--ink);
            font-size: 15px;
            font-weight: 950;
            letter-spacing: 0;
            line-height: 1.15;
        }

        .home-page .brand-copy {
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
        }

        .home-page .nav {
            gap: 4px;
            padding: 4px;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: #f3f7f5;
        }

        .home-page .nav a {
            padding: 9px 12px;
            border-radius: 8px;
            color: var(--ink-2);
            font-size: 13px;
            font-weight: 850;
            transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
        }

        .home-page .nav a.active,
        .home-page .nav a:hover {
            background: #ffffff;
            color: var(--ink);
            box-shadow: 0 8px 18px rgba(17, 20, 24, 0.06);
        }

        .home-page .header-actions {
            gap: 8px;
        }

        .home-page .button-primary,
        .home-page .button-secondary {
            position: relative;
            overflow: hidden;
            min-height: 42px;
            border-radius: 10px;
            padding: 11px 15px;
            font-size: 13px;
            font-weight: 950;
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
        }

        .home-page .button-primary {
            background: var(--primary);
            color: #ffffff;
            box-shadow: 0 16px 32px rgba(15, 118, 110, 0.22);
        }

        .home-page .button-primary::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 44%, transparent 62%);
            transform: translateX(-120%);
            animation: buttonSheen 5.5s ease-in-out infinite;
            pointer-events: none;
        }

        .home-page .button-primary:hover {
            background: var(--primary-deep);
            box-shadow: 0 20px 38px rgba(15, 118, 110, 0.27);
            transform: translateY(-1px);
        }

        .home-page .button-secondary {
            background: #ffffff;
            border-color: var(--line-strong);
            color: var(--ink);
        }

        .home-page .button-secondary:hover {
            border-color: rgba(15, 118, 110, 0.34);
            box-shadow: var(--shadow-soft);
            transform: translateY(-1px);
        }

        .home-page h1,
        .home-page h2,
        .home-page h3,
        .home-page p {
            letter-spacing: 0;
        }

        .home-page h1 {
            margin: 16px 0 16px;
            color: var(--ink);
            font-size: 66px;
            font-weight: 950;
            line-height: 1.01;
        }

        .home-page h1 span {
            color: transparent;
            background: linear-gradient(105deg, #101418 0%, #0f766e 50%, #2457c5 100%);
            background-clip: text;
            -webkit-background-clip: text;
        }

        .home-page h2 {
            margin: 0;
            color: var(--ink);
            font-size: 42px;
            font-weight: 950;
            line-height: 1.08;
        }

        .home-page h3 {
            margin: 0;
            color: var(--ink);
            font-size: 20px;
            font-weight: 950;
            line-height: 1.2;
        }

        .home-page p {
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.68;
        }

        .home-main {
            display: grid;
            gap: 34px;
        }

        .home-hero {
            position: relative;
            overflow: hidden;
            min-height: 700px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background:
                linear-gradient(125deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 250, 247, 0.92) 48%, rgba(238, 243, 255, 0.95) 100%),
                linear-gradient(180deg, #ffffff 0%, #f0f7f4 100%);
            box-shadow: var(--shadow);
            isolation: isolate;
        }

        .home-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            opacity: 0.62;
            background-image:
                linear-gradient(rgba(17, 20, 24, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(17, 20, 24, 0.045) 1px, transparent 1px);
            background-size: 56px 56px;
            mask-image: linear-gradient(90deg, #000 0%, #000 78%, transparent 100%);
        }

        .home-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(112deg, transparent 0%, transparent 43%, rgba(255, 255, 255, 0.62) 50%, transparent 59%, transparent 100%);
            opacity: 0.46;
            transform: translateX(-65%);
            animation: heroSweep 10s ease-in-out infinite;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
            gap: 42px;
            align-items: center;
            padding: 60px;
        }

        .hero-copy {
            max-width: 650px;
            animation: heroEnter 720ms ease-out both;
        }

        .hero-kicker {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }

        .hero-kicker span,
        .pill {
            display: inline-flex;
            align-items: center;
            min-height: 30px;
            padding: 7px 10px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            color: var(--ink-2);
            font-size: 12px;
            font-weight: 950;
            line-height: 1;
        }

        .hero-kicker span:first-child {
            border-color: rgba(15, 118, 110, 0.24);
            background: rgba(15, 118, 110, 0.1);
            color: var(--primary-deep);
        }

        .hero-lede {
            max-width: 590px;
            color: var(--ink-2);
            font-size: 19px;
            line-height: 1.68;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .hero-points {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin-top: 32px;
        }

        .hero-point {
            position: relative;
            overflow: hidden;
            padding: 14px 14px 14px 17px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.74);
            transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
        }

        .hero-point::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 3px;
            background: var(--primary);
        }

        .hero-point:nth-child(2)::before {
            background: var(--blue);
        }

        .hero-point:nth-child(3)::before {
            background: var(--amber);
        }

        .hero-point:hover {
            border-color: rgba(15, 118, 110, 0.28);
            box-shadow: var(--shadow-soft);
            transform: translateY(-2px);
        }

        .hero-point strong {
            display: block;
            margin-bottom: 4px;
            color: var(--ink);
            font-size: 14px;
            font-weight: 950;
        }

        .hero-point span {
            display: block;
            color: var(--muted);
            font-size: 12px;
            font-weight: 750;
            line-height: 1.36;
        }

        .hero-console {
            position: relative;
            display: grid;
            gap: 14px;
            animation: consoleEnter 840ms ease-out both;
        }

        .hero-console::before {
            content: "";
            position: absolute;
            inset: -18px 48px auto 48px;
            z-index: -1;
            height: 92px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(15, 118, 110, 0.25), rgba(36, 87, 197, 0.18), rgba(184, 106, 22, 0.16));
            filter: blur(24px);
            opacity: 0.72;
        }

        .console {
            position: relative;
            overflow: hidden;
            border: 1px solid #c9d8d4;
            border-radius: 12px;
            background: #ffffff;
            box-shadow: 0 36px 86px rgba(17, 20, 24, 0.15);
            animation: consoleFloat 7s ease-in-out infinite;
        }

        .console::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 58%);
            opacity: 0.26;
            transform: translateX(-105%);
            animation: screenScan 8s ease-in-out infinite;
            pointer-events: none;
        }

        .console-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 16px 18px;
            border-bottom: 1px solid var(--line);
            background: #fbfcfb;
        }

        .console-title {
            display: grid;
            gap: 2px;
        }

        .console-title strong {
            color: var(--ink);
            font-size: 15px;
            font-weight: 950;
        }

        .console-title span,
        .console-chip {
            color: var(--muted);
            font-size: 12px;
            font-weight: 850;
        }

        .console-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            border: 1px solid rgba(15, 118, 110, 0.22);
            border-radius: 999px;
            background: rgba(15, 118, 110, 0.09);
            color: var(--primary-deep);
        }

        .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #22a06b;
            box-shadow: 0 0 0 0 rgba(34, 160, 107, 0.28);
            animation: livePulse 2.2s ease-out infinite;
        }

        .console-body {
            display: grid;
            grid-template-columns: 1.08fr 0.92fr;
            gap: 14px;
            padding: 16px;
            background:
                linear-gradient(90deg, rgba(15, 118, 110, 0.055) 0 1px, transparent 1px),
                linear-gradient(#ffffff 0%, #f8fbfa 100%);
            background-size: 44px 44px, auto;
        }

        .lesson-board,
        .learner-panel,
        .finance-panel,
        .micro-panel {
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #ffffff;
        }

        .lesson-board {
            position: relative;
            overflow: hidden;
            display: grid;
            gap: 14px;
            padding: 16px;
        }

        .lesson-board::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            top: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--blue), transparent);
            transform: translateX(-100%);
            animation: railSweep 4.8s ease-in-out infinite;
        }

        .board-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .board-head span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 950;
        }

        .session-list {
            display: grid;
            gap: 10px;
        }

        .session-row {
            display: grid;
            grid-template-columns: 54px minmax(0, 1fr) auto;
            gap: 12px;
            align-items: center;
            padding: 12px;
            border: 1px solid #e5ece9;
            border-radius: 8px;
            background: #fbfcfb;
            transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
        }

        .session-row:hover {
            border-color: rgba(15, 118, 110, 0.24);
            background: #ffffff;
            transform: translateX(2px);
        }

        .session-time {
            color: var(--primary-deep);
            font-size: 13px;
            font-weight: 950;
        }

        .session-copy {
            display: grid;
            gap: 3px;
            min-width: 0;
        }

        .session-copy strong {
            color: var(--ink);
            font-size: 14px;
            font-weight: 950;
            line-height: 1.2;
        }

        .session-copy span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 750;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            min-height: 26px;
            padding: 6px 8px;
            border-radius: 999px;
            background: rgba(36, 87, 197, 0.1);
            color: var(--blue);
            font-size: 11px;
            font-weight: 950;
            white-space: nowrap;
        }

        .status-badge.good {
            background: rgba(15, 118, 110, 0.1);
            color: var(--primary-deep);
        }

        .status-badge.warn {
            background: rgba(184, 106, 22, 0.12);
            color: var(--amber);
        }

        .metric-bars {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }

        .metric-mini {
            display: grid;
            gap: 10px;
            padding: 13px;
            border: 1px solid #e2ebe7;
            border-radius: 8px;
            background: #ffffff;
        }

        .metric-mini span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 850;
        }

        .metric-mini strong {
            color: var(--ink);
            font-size: 22px;
            font-weight: 950;
        }

        .track {
            overflow: hidden;
            height: 7px;
            border-radius: 999px;
            background: #e8efec;
        }

        .track i {
            display: block;
            width: var(--size, 76%);
            height: 100%;
            border-radius: inherit;
            background: var(--tone, var(--primary));
            animation: meterFill 1.1s ease-out both;
        }

        .console-side {
            display: grid;
            gap: 14px;
        }

        .learner-panel,
        .finance-panel,
        .micro-panel {
            padding: 16px;
        }

        .panel-label {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
            color: var(--muted);
            font-size: 12px;
            font-weight: 950;
        }

        .learner-number {
            display: flex;
            align-items: end;
            gap: 8px;
            margin-bottom: 14px;
        }

        .learner-number strong {
            color: var(--ink);
            font-size: 48px;
            font-weight: 950;
            line-height: 0.9;
        }

        .learner-number span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 850;
        }

        .mini-graph {
            display: flex;
            align-items: end;
            gap: 7px;
            height: 74px;
        }

        .mini-graph span {
            flex: 1;
            min-width: 10px;
            border-radius: 999px 999px 0 0;
            background: linear-gradient(180deg, #72c6b8, #0f766e);
            animation: barLift 900ms ease-out both;
        }

        .mini-graph span:nth-child(2) {
            animation-delay: 80ms;
        }

        .mini-graph span:nth-child(3) {
            animation-delay: 160ms;
        }

        .mini-graph span:nth-child(4) {
            animation-delay: 240ms;
        }

        .mini-graph span:nth-child(5) {
            animation-delay: 320ms;
        }

        .finance-panel {
            display: grid;
            gap: 12px;
            background: #111827;
            border-color: #111827;
            color: #ffffff;
        }

        .finance-panel .panel-label,
        .finance-panel p {
            color: rgba(255, 255, 255, 0.68);
        }

        .finance-panel strong {
            color: #ffffff;
            font-size: 28px;
            font-weight: 950;
        }

        .finance-lines {
            display: grid;
            gap: 8px;
        }

        .finance-lines span {
            display: block;
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.13);
        }

        .finance-lines span i {
            display: block;
            width: var(--size, 68%);
            height: 100%;
            border-radius: inherit;
            background: #f0b35a;
            animation: meterFill 1.2s ease-out both;
        }

        .console-foot {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .micro-panel {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            box-shadow: 0 12px 30px rgba(17, 20, 24, 0.07);
            transition: transform 180ms ease, box-shadow 180ms ease;
        }

        .micro-panel:hover {
            box-shadow: 0 18px 36px rgba(17, 20, 24, 0.1);
            transform: translateY(-2px);
        }

        .micro-panel strong {
            display: block;
            color: var(--ink);
            font-size: 14px;
            font-weight: 950;
        }

        .micro-panel span span {
            display: block;
            color: var(--muted);
            font-size: 12px;
            font-weight: 750;
            line-height: 1.2;
        }

        .micro-icon {
            display: inline-grid;
            width: 40px;
            height: 40px;
            flex: 0 0 auto;
            place-items: center;
            border-radius: 8px;
            background: #eef5f2;
            color: var(--primary-deep);
            font-weight: 950;
        }

        .live-strip {
            display: flex;
            overflow: hidden;
            border: 1px solid #0f4f4b;
            border-radius: 12px;
            background: #101820;
            box-shadow: 0 18px 40px rgba(17, 20, 24, 0.1);
        }

        .live-strip strong {
            display: inline-flex;
            align-items: center;
            padding: 0 20px;
            background: linear-gradient(135deg, #0f766e, #2457c5);
            color: #ffffff;
            font-size: 13px;
            font-weight: 950;
            white-space: nowrap;
        }

        .strip-window {
            overflow: hidden;
            flex: 1;
            min-width: 0;
        }

        .strip-track {
            display: flex;
            width: max-content;
            min-height: 54px;
            align-items: center;
            gap: 10px;
            padding: 0 10px;
            animation: tickerMove 32s linear infinite;
        }

        .strip-track span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 13px;
            font-weight: 850;
            white-space: nowrap;
        }

        .strip-track span::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #f0b35a;
        }

        .metrics-row {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #ffffff;
            box-shadow: var(--shadow-soft);
        }

        .metric-item {
            position: relative;
            display: grid;
            gap: 7px;
            min-height: 124px;
            padding: 20px;
            border-right: 1px solid var(--line);
            transition: background 180ms ease, transform 180ms ease;
        }

        .metric-item:last-child {
            border-right: 0;
        }

        .metric-item::before {
            content: "";
            position: absolute;
            left: 20px;
            right: 20px;
            top: 0;
            height: 3px;
            border-radius: 0 0 999px 999px;
            background: var(--primary);
            opacity: 0;
            transition: opacity 180ms ease;
        }

        .metric-item:nth-child(2)::before {
            background: var(--blue);
        }

        .metric-item:nth-child(3)::before {
            background: var(--amber);
        }

        .metric-item:nth-child(4)::before {
            background: var(--violet);
        }

        .metric-item:nth-child(5)::before {
            background: var(--rose);
        }

        .metric-item:hover {
            background: #fbfcfb;
            transform: translateY(-2px);
        }

        .metric-item:hover::before {
            opacity: 1;
        }

        .metric-item span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 950;
        }

        .metric-item strong {
            color: var(--ink);
            font-size: 34px;
            font-weight: 950;
            line-height: 1;
        }

        .metric-item p {
            font-size: 13px;
            line-height: 1.45;
        }

        .home-section {
            display: grid;
            gap: 22px;
            padding: 30px 0;
        }

        .section-heading {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 22px;
        }

        .section-heading > div {
            max-width: 760px;
        }

        .section-heading p {
            margin-top: 12px;
            max-width: 720px;
        }

        .journey-band {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #ffffff;
        }

        .journey-grid {
            display: grid;
            grid-template-columns: 0.78fr 1.22fr;
            min-height: 490px;
        }

        .journey-copy {
            position: relative;
            overflow: hidden;
            display: grid;
            align-content: center;
            gap: 18px;
            padding: 44px;
            background: linear-gradient(180deg, #0f766e 0%, #0b4f4a 100%);
            color: #ffffff;
        }

        .journey-copy::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 88px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
            transform: translateX(-100%);
            animation: railSweep 7s ease-in-out infinite;
        }

        .journey-copy h2,
        .journey-copy p {
            color: #ffffff;
        }

        .journey-copy p {
            color: rgba(255, 255, 255, 0.76);
        }

        .journey-copy .pill {
            justify-self: start;
            border-color: rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
        }

        .journey-map {
            position: relative;
            display: grid;
            align-content: center;
            gap: 14px;
            padding: 34px;
            background:
                linear-gradient(90deg, rgba(15, 118, 110, 0.08) 0 1px, transparent 1px),
                linear-gradient(#f8fbfa, #ffffff);
            background-size: 58px 58px, auto;
        }

        .journey-map::after {
            content: "";
            position: absolute;
            left: 78px;
            top: 66px;
            bottom: 66px;
            width: 2px;
            background: linear-gradient(180deg, transparent, rgba(15, 118, 110, 0.5), rgba(36, 87, 197, 0.4), transparent);
            animation: lineGlow 3.8s ease-in-out infinite;
        }

        .journey-step {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 64px minmax(0, 1fr) 118px;
            gap: 16px;
            align-items: center;
            padding: 16px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 10px 22px rgba(17, 20, 24, 0.04);
            transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
        }

        .journey-step:hover {
            border-color: rgba(15, 118, 110, 0.28);
            box-shadow: 0 18px 34px rgba(17, 20, 24, 0.08);
            transform: translateX(3px);
        }

        .journey-index {
            display: inline-grid;
            width: 48px;
            height: 48px;
            place-items: center;
            border-radius: 8px;
            background: #eef5f2;
            color: var(--primary-deep);
            font-size: 14px;
            font-weight: 950;
        }

        .journey-step strong {
            display: block;
            margin-bottom: 4px;
            color: var(--ink);
            font-size: 16px;
            font-weight: 950;
        }

        .journey-step p {
            font-size: 13px;
            line-height: 1.45;
        }

        .journey-tag {
            justify-self: end;
            padding: 8px 10px;
            border-radius: 999px;
            background: #f2f6ff;
            color: var(--blue);
            font-size: 12px;
            font-weight: 950;
            white-space: nowrap;
        }

        .role-stage {
            display: grid;
            grid-template-columns: 0.78fr 1.22fr;
            gap: 22px;
        }

        .role-menu,
        .role-workspace {
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #ffffff;
        }

        .role-menu {
            display: grid;
            align-content: start;
            gap: 10px;
            padding: 14px;
        }

        .role-item {
            display: grid;
            grid-template-columns: 40px minmax(0, 1fr);
            gap: 12px;
            align-items: center;
            padding: 13px;
            border: 1px solid transparent;
            border-radius: 8px;
            background: #ffffff;
            transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
        }

        .role-item.active,
        .role-item:hover {
            border-color: rgba(15, 118, 110, 0.24);
            background: #f2faf7;
            transform: translateX(2px);
        }

        .role-item i {
            display: inline-grid;
            width: 40px;
            height: 40px;
            place-items: center;
            border-radius: 8px;
            background: #eef5f2;
            color: var(--primary-deep);
            font-style: normal;
            font-weight: 950;
        }

        .role-item strong {
            display: block;
            color: var(--ink);
            font-size: 14px;
            font-weight: 950;
        }

        .role-item span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 750;
            line-height: 1.35;
        }

        .role-workspace {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 250px;
            gap: 18px;
            padding: 20px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
        }

        .role-workspace::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent 0%, rgba(15, 118, 110, 0.06) 42%, transparent 64%);
            transform: translateX(-100%);
            animation: screenScan 9s ease-in-out infinite;
            pointer-events: none;
        }

        .workspace-main {
            display: grid;
            align-content: start;
            gap: 14px;
        }

        .task-list {
            display: grid;
            gap: 10px;
        }

        .task-row {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 12px;
            align-items: center;
            padding: 13px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #ffffff;
            transition: transform 180ms ease, border-color 180ms ease;
        }

        .task-row::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 3px;
            background: var(--primary);
            opacity: 0;
            transition: opacity 180ms ease;
        }

        .task-row:hover {
            border-color: rgba(15, 118, 110, 0.26);
            transform: translateY(-1px);
        }

        .task-row:hover::before {
            opacity: 1;
        }

        .task-row strong {
            display: block;
            color: var(--ink);
            font-size: 14px;
            font-weight: 950;
        }

        .task-row span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 750;
        }

        .workspace-side {
            display: grid;
            align-content: stretch;
            gap: 12px;
        }

        .side-stat {
            display: grid;
            gap: 8px;
            padding: 14px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #ffffff;
        }

        .side-stat span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 950;
        }

        .side-stat strong {
            color: var(--ink);
            font-size: 28px;
            font-weight: 950;
            line-height: 1;
        }

        .program-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .program-card {
            position: relative;
            overflow: hidden;
            display: grid;
            gap: 16px;
            align-content: start;
            min-height: 300px;
            padding: 20px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 10px 24px rgba(17, 20, 24, 0.045);
            transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
        }

        .program-card::before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--blue), var(--amber));
            opacity: 0.72;
        }

        .program-card:hover {
            border-color: rgba(15, 118, 110, 0.32);
            box-shadow: 0 18px 40px rgba(17, 20, 24, 0.08);
            transform: translateY(-2px);
        }

        .program-card.support {
            background:
                linear-gradient(180deg, #ffffff 0%, #f6fbf9 100%);
        }

        .program-card.support::before {
            background: linear-gradient(90deg, var(--violet), var(--blue), var(--primary));
        }

        .program-card-head {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: center;
        }

        .program-code {
            display: inline-flex;
            min-height: 30px;
            align-items: center;
            padding: 7px 10px;
            border-radius: 999px;
            background: #eef5f2;
            color: var(--primary-deep);
            font-size: 12px;
            font-weight: 950;
        }

        .program-card p {
            font-size: 14px;
            line-height: 1.62;
        }

        .program-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .program-card .button-primary {
            justify-self: start;
            margin-top: auto;
        }

        .proof-grid {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 20px;
        }

        .faculty-panel,
        .testimonial-panel,
        .page-access {
            position: relative;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 12px;
            background:
                linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
            box-shadow: 0 16px 38px rgba(17, 20, 24, 0.055);
        }

        .faculty-panel::before,
        .testimonial-panel::before,
        .page-access::before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--blue), var(--amber));
            opacity: 0.68;
        }

        .faculty-panel,
        .testimonial-panel {
            display: grid;
            align-content: start;
            gap: 18px;
            padding: 22px;
        }

        .compact-heading {
            display: grid;
            gap: 8px;
        }

        .compact-heading h2,
        .page-access h2 {
            font-size: 28px;
        }

        .compact-heading p {
            font-size: 14px;
            line-height: 1.6;
        }

        .faculty-list,
        .testimonial-list {
            display: grid;
            gap: 10px;
        }

        .faculty-row,
        .testimonial-row {
            display: grid;
            grid-template-columns: 44px minmax(0, 1fr);
            gap: 12px;
            align-items: start;
            padding: 13px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #fbfcfb;
            transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
        }

        .faculty-row:hover,
        .testimonial-row:hover {
            border-color: rgba(15, 118, 110, 0.24);
            background: #ffffff;
            transform: translateY(-1px);
        }

        .avatar-bubble {
            display: inline-grid;
            width: 44px;
            height: 44px;
            place-items: center;
            border-radius: 8px;
            background: #eef5f2;
            color: var(--primary-deep);
            font-size: 13px;
            font-weight: 950;
        }

        .faculty-row strong,
        .testimonial-row strong {
            display: block;
            color: var(--ink);
            font-size: 14px;
            font-weight: 950;
        }

        .faculty-row span span,
        .testimonial-row span span {
            display: block;
            margin-top: 3px;
            color: var(--muted);
            font-size: 12px;
            font-weight: 750;
            line-height: 1.45;
        }

        .portal-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .portal-link {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: center;
            min-height: 58px;
            padding: 14px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #ffffff;
            color: var(--ink);
            font-size: 13px;
            font-weight: 950;
            transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
        }

        .portal-link:hover {
            border-color: rgba(15, 118, 110, 0.28);
            box-shadow: 0 12px 24px rgba(17, 20, 24, 0.06);
            transform: translateY(-1px);
        }

        .portal-link span:last-child {
            color: var(--primary-deep);
        }

        .page-access {
            display: grid;
            grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
            gap: 20px;
            align-items: center;
            padding: 20px;
        }

        .page-links {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }

        .page-link {
            position: relative;
            overflow: hidden;
            display: grid;
            min-height: 94px;
            align-content: space-between;
            gap: 10px;
            padding: 14px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #fbfcfb;
            transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
        }

        .page-link::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 3px;
            background: var(--primary);
            opacity: 0;
            transition: opacity 180ms ease;
        }

        .page-link:hover {
            border-color: rgba(15, 118, 110, 0.25);
            background: #ffffff;
            transform: translateY(-1px);
        }

        .page-link:hover::before {
            opacity: 1;
        }

        .page-link strong {
            color: var(--ink);
            font-size: 14px;
            font-weight: 950;
        }

        .page-link span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 850;
        }

        .cta-band {
            display: flex;
            justify-content: space-between;
            gap: 22px;
            align-items: center;
            padding: 34px;
            border: 1px solid #0d5d57;
            border-radius: 12px;
            background: linear-gradient(135deg, #0e6d65 0%, #12313f 100%);
            color: #ffffff;
        }

        .cta-band h2,
        .cta-band p {
            color: #ffffff;
        }

        .cta-band p {
            margin-top: 10px;
            color: rgba(255, 255, 255, 0.74);
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-end;
            min-width: 340px;
        }

        .cta-band .button-primary {
            background: #ffffff;
            color: #0d5d57;
            box-shadow: none;
        }

        .cta-band .button-secondary {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.26);
            color: #ffffff;
        }

        @keyframes heroEnter {
            from {
                opacity: 0;
                transform: translateY(14px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes consoleEnter {
            from {
                opacity: 0;
                transform: translateY(18px) scale(0.985);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes heroSweep {
            0%,
            52% {
                transform: translateX(-65%);
            }
            76%,
            100% {
                transform: translateX(65%);
            }
        }

        @keyframes buttonSheen {
            0%,
            64% {
                transform: translateX(-120%);
            }
            86%,
            100% {
                transform: translateX(120%);
            }
        }

        @keyframes consoleFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        @keyframes screenScan {
            0%,
            58% {
                transform: translateX(-105%);
            }
            78%,
            100% {
                transform: translateX(105%);
            }
        }

        @keyframes railSweep {
            0% {
                transform: translateX(-100%);
            }
            48%,
            100% {
                transform: translateX(100%);
            }
        }

        @keyframes lineGlow {
            0%,
            100% {
                opacity: 0.38;
            }
            50% {
                opacity: 0.9;
            }
        }

        @keyframes tickerMove {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        @keyframes livePulse {
            0% {
                box-shadow: 0 0 0 0 rgba(34, 160, 107, 0.34);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(34, 160, 107, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(34, 160, 107, 0);
            }
        }

        @keyframes meterFill {
            from {
                width: 0;
            }
            to {
                width: var(--size, 76%);
            }
        }

        @keyframes barLift {
            from {
                transform: scaleY(0.18);
                transform-origin: bottom;
            }
            to {
                transform: scaleY(1);
                transform-origin: bottom;
            }
        }

        @media (max-width: 1080px) {
            .home-page .site-shell {
                width: min(100% - 28px, 980px);
            }

            .home-page .site-header {
                align-items: flex-start;
            }

            .home-page h1 {
                font-size: 52px;
            }

            .home-page h2 {
                font-size: 34px;
            }

            .hero-layout,
            .journey-grid,
            .role-stage,
            .proof-grid,
            .page-access {
                grid-template-columns: 1fr;
            }

            .hero-layout {
                padding: 42px;
            }

            .hero-copy {
                max-width: 760px;
            }

            .live-strip {
                display: grid;
            }

            .live-strip strong {
                min-height: 44px;
            }

            .metrics-row,
            .program-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .metric-item:nth-child(2n) {
                border-right: 0;
            }

            .metric-item:last-child {
                grid-column: 1 / -1;
                border-top: 1px solid var(--line);
            }

            .role-workspace {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 760px) {
            .home-page .site-shell {
                width: min(100% - 20px, 680px);
            }

            .home-page .site-header {
                position: static;
                padding: 10px;
            }

            .home-page .nav {
                width: 100%;
                overflow: visible;
                flex-wrap: wrap;
                justify-content: flex-start;
            }

            .home-page .nav a {
                padding: 8px 9px;
                font-size: 12px;
                white-space: nowrap;
            }

            .home-page .header-actions {
                width: 100%;
            }

            .home-page .header-actions .button-primary,
            .home-page .header-actions .button-secondary,
            .hero-actions .button-primary,
            .hero-actions .button-secondary,
            .cta-actions .button-primary,
            .cta-actions .button-secondary {
                flex: 1 1 150px;
            }

            .home-page h1 {
                font-size: 38px;
                line-height: 1.08;
            }

            .home-page h2 {
                font-size: 29px;
            }

            .home-page p,
            .hero-lede {
                font-size: 15px;
            }

            .home-hero {
                min-height: 0;
            }

            .hero-layout {
                grid-template-columns: 1fr;
                gap: 26px;
                padding: 24px;
            }

            .hero-console::before {
                inset: -12px 28px auto 28px;
                height: 62px;
            }

            .live-strip strong {
                padding: 13px 16px;
            }

            .strip-track {
                min-height: 48px;
                animation-duration: 38s;
            }

            .hero-points,
            .console-body,
            .metric-bars,
            .console-foot,
            .metrics-row,
            .program-grid,
            .portal-links,
            .page-links {
                grid-template-columns: 1fr;
            }

            .console-top,
            .board-head,
            .section-heading,
            .cta-band {
                align-items: flex-start;
                flex-direction: column;
            }

            .session-row {
                grid-template-columns: 1fr;
            }

            .status-badge {
                justify-self: start;
            }

            .metric-item,
            .metric-item:nth-child(2n),
            .metric-item:last-child {
                border-right: 0;
                border-top: 1px solid var(--line);
                grid-column: auto;
            }

            .metric-item:first-child {
                border-top: 0;
            }

            .journey-copy,
            .journey-map {
                padding: 24px;
            }

            .journey-step {
                grid-template-columns: 48px minmax(0, 1fr);
            }

            .journey-map::after {
                left: 48px;
                top: 80px;
                bottom: 80px;
            }

            .journey-tag {
                grid-column: 2;
                justify-self: start;
            }

            .role-menu,
            .role-workspace,
            .faculty-panel,
            .testimonial-panel,
            .page-access,
            .cta-band {
                padding: 16px;
            }

            .cta-actions {
                width: 100%;
                min-width: 0;
                justify-content: stretch;
            }

            .section-heading .button-secondary {
                flex: 0 0 auto;
                align-self: flex-start;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 1ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
            }

            .strip-track {
                animation: none !important;
            }
        }
