
      /* ═══ TOKENS ═══ */
      :root {
        --blue: #35459a;
        --navy: #1b2460;
        --yellow: #dca200;
        --ylight: #fff9e6;
        --bg: #f6f8fc;
        --white: #ffffff;
        --text: #1d2433;
        --muted: #64748b;
        --border: #e5eaf3;
        --bluemid: #2a3880;
        --bluesoft: rgba(53, 69, 154, 0.08);
        --fn-impact: "Anton", sans-serif;
        --fn-head: "Antonio", sans-serif;
        --fn-body: "Poppins", sans-serif;
        --fn-acc: "Kalam", cursive;
        --r: 10px;
        --r-lg: 16px;
        --r-xl: 20px;
        --sh: 0 2px 14px rgba(27, 36, 96, 0.08);
        --sh-h: 0 10px 36px rgba(27, 36, 96, 0.17);
        --tr: all 0.26s cubic-bezier(0.4, 0, 0.2, 1);
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
        font-size: 16px;
      }
      body {
        font-family: var(--fn-body);
        color: var(--text);
        background: var(--white);
        -webkit-font-smoothing: antialiased;
        line-height: 1.65;
      }
      img {
        max-width: 100%;
        display: block;
      }
      a {
        text-decoration: none;
        color: inherit;
      }

      /* ═══ SKIP ═══ */
      .skip {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--yellow);
        color: var(--navy);
        padding: 8px 16px;
        font-family: var(--fn-head);
        font-weight: 700;
        z-index: 9999;
        transition: top 0.2s;
      }
      .skip:focus {
        top: 0;
      }

      /* ═══ UTILITY ═══ */
      .wrap {
        padding: clamp(56px, 7vw, 96px) clamp(18px, 6vw, 72px);
      }
      .wrap-sm {
        padding: clamp(40px, 5vw, 72px) clamp(18px, 6vw, 72px);
      }
      .con {
        max-width: 1200px;
        margin: 0 auto;
      }

      .ey {
        font-family: var(--fn-head);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--yellow);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .ey::before {
        content: "";
        display: block;
        width: 28px;
        height: 2px;
        background: var(--yellow);
        flex-shrink: 0;
      }
      .ey-b {
        color: var(--blue);
      }
      .ey-b::before {
        background: var(--blue);
      }

      .sh2 {
        font-family: var(--fn-impact);
        font-size: clamp(26px, 3.8vw, 42px);
        color: var(--navy);
        line-height: 1.08;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
      }
      .sh2-w {
        color: var(--white);
      }
      .ssub {
        font-family: var(--fn-body);
        font-size: 15px;
        color: var(--muted);
        line-height: 1.8;
        max-width: 600px;
        margin-bottom: 40px;
      }
      .ssub-w {
        color: rgba(200, 215, 255, 0.75);
      }

      .fu {
        opacity: 0;
        transform: translateY(22px);
        transition:
          opacity 0.5s ease,
          transform 0.5s ease;
      }
      .fu.vis {
        opacity: 1;
        transform: none;
      }

      /* ═══ MINI HEADER ═══ */
      .mhdr {
        background: var(--navy);
        padding: 0 clamp(18px, 5vw, 72px);
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: var(--fn-head);
        font-size: 13px;
        font-weight: 500;
      }
      .mhdr-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--white);
      }
      .lmark {
        width: 36px;
        height: 36px;
        background: var(--yellow);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--fn-impact);
        font-size: 18px;
        color: var(--navy);
        flex-shrink: 0;
      }
      .ltxt {
        font-family: var(--fn-head);
        font-weight: 600;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.2;
      }
      .ltxt span {
        display: block;
        font-size: 10px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.45);
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }
      .bc {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.45);
        font-size: 12px;
      }
      .bc a {
        color: rgba(255, 255, 255, 0.55);
        transition: color 0.2s;
      }
      .bc a:hover {
        color: var(--yellow);
      }
      .bc .cur {
        color: var(--yellow);
      }
      .mhdr-cta {
        display: flex;
        gap: 8px;
        align-items: center;
      }
      .bsm {
        font-family: var(--fn-head);
        font-size: 12px;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 6px;
        cursor: pointer;
        border: none;
        transition: var(--tr);
      }
      .bsm-ol {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.28);
        color: rgba(255, 255, 255, 0.78);
      }
      .bsm-ol:hover {
        border-color: var(--yellow);
        color: var(--yellow);
      }
      .bsm-y {
        background: var(--yellow);
        color: var(--navy);
      }
      .bsm-y:hover {
        background: #f5c500;
      }

      /* ═══ STICKY SUBNAV ═══ */
      .subnav {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        position: fixed;
        top: 0;
        z-index: 900;
        box-shadow: 0 2px 10px rgba(27, 36, 96, 0.07);
        display: none;
            top: 139px;
    width: 100%;
    z-index: 9999;
    border-top: 1px solid var(--border);
      }
      .subnav.show {
        display: block;
      }
      .subnav-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 clamp(18px, 6vw, 72px);
        display: flex;
        align-items: center;
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: none;
      }
      .subnav-inner::-webkit-scrollbar {
        display: none;
      }
      .snav-link {
        font-family: var(--fn-head);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.3px;
        color: var(--muted);
        padding: 14px 16px;
        white-space: nowrap;
        border-bottom: 2px solid transparent;
        transition: var(--tr);
        flex-shrink: 0;
      }
      .snav-link:hover,
      .snav-link.active {
        color: var(--blue);
        border-bottom-color: var(--yellow);
      }

      /* ═══ HERO ═══ */
      .hero {
        background: linear-gradient(
          138deg,
          var(--navy) 0%,
          var(--blue) 58%,
          #3a56c0 100%
        );
        min-height: 86vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: "MCA";
        position: absolute;
        right: -30px;
        bottom: -50px;
        font-family: var(--fn-impact);
        font-size: clamp(180px, 26vw, 360px);
        color: rgba(255, 255, 255, 0.03);
        pointer-events: none;
        user-select: none;
        line-height: 1;
      }
      .hero::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 52%;
        height: 100%;
        background: rgba(255, 255, 255, 0.018);
        clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
        pointer-events: none;
      }

      .hl {
        padding: clamp(48px, 7vw, 88px) clamp(22px, 5vw, 72px);
        position: relative;
        z-index: 2;
      }
      .hbadge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(220, 162, 0, 0.14);
        border: 1px solid rgba(220, 162, 0, 0.42);
        border-radius: 6px;
        padding: 5px 14px;
        font-family: var(--fn-head);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 2.5px;
        color: var(--yellow);
        text-transform: uppercase;
        margin-bottom: 22px;
      }
      .hbadge svg {
        width: 14px;
        height: 14px;
      }
      .hh1 {
        font-family: var(--fn-impact);
        font-size: clamp(30px, 5vw, 56px);
        color: var(--white);
        line-height: 1.06;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
      }
      .hh1 em {
        font-style: normal;
        color: var(--yellow);
      }
      .hacc {
        font-family: var(--fn-head);
        font-size: clamp(13px, 1.5vw, 17px);
        font-weight: 600;
        color: rgba(200, 215, 255, 0.85);
        letter-spacing: 0.4px;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .hacc::before {
        content: "";
        width: 32px;
        height: 2px;
        background: var(--yellow);
        flex-shrink: 0;
      }
      .hbody {
        font-family: var(--fn-body);
        font-size: 15px;
        color: rgba(200, 215, 255, 0.72);
        line-height: 1.82;
        /*max-width: 500px;*/
        margin-bottom: 34px;
      }
      .hbody strong {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
      }
      .hctas {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }
      .btn-p {
        font-family: var(--fn-head);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.4px;
        padding: 13px 26px;
        background: var(--yellow);
        color: var(--navy);
        border: none;
        border-radius: var(--r);
        cursor: pointer;
        transition: var(--tr);
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-p:hover {
        background: #f5c500;
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(220, 162, 0, 0.35);
      }
      .btn-o {
        font-family: var(--fn-head);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.4px;
        padding: 12px 26px;
        background: transparent;
        color: rgba(255, 255, 255, 0.82);
        border: 1.5px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--r);
        cursor: pointer;
        transition: var(--tr);
      }
      .btn-o:hover {
        border-color: var(--yellow);
        color: var(--yellow);
      }

      .hr-vis {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 48px 32px 48px 0;
        z-index: 2;
      }
      .hr-vis svg {
        width: 100%;
        max-width: 460px;
        height: auto;
      }

      /* Float cards on hero */
      .hfc {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.17);
        border-radius: var(--r-lg);
        padding: 13px 17px;
        font-family: var(--fn-head);
        color: var(--white);
      }
      .hfc-n {
        font-family: var(--fn-impact);
        font-size: 24px;
        color: var(--yellow);
        line-height: 1;
        margin-bottom: 2px;
      }
      .hfc-l {
        font-size: 11px;
        font-weight: 400;
        color: rgba(200, 215, 255, 0.65);
        letter-spacing: 0.4px;
      }
      .hfc1 {
        top: 12%;
        left: -14px;
      }
      .hfc2 {
        bottom: 18%;
        right: -8px;
      }
      .hfc3 {
        top: 52%;
        left: -18px;
        transform: translateY(-50%);
      }

      /* ═══ SNAPSHOT BAND ═══ */
      .snap {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 2px 14px rgba(27, 36, 96, 0.06);
        position: relative;
        z-index: 10;
      }
      .snap-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 clamp(18px, 6vw, 72px);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-left: 1px solid var(--border);
      }
      .sc {
        padding: 26px 22px;
        border-right: 1px solid var(--border);
        display: flex;
        align-items: flex-start;
        gap: 13px;
        transition: var(--tr);
        border-top: 3px solid var(--yellow);
      }
      .sc:hover {
        background: var(--bg);
      }
      .sc:hover .sc-ico {
        color: var(--yellow);
      }
      .sc-ico {
        color: var(--blue);
        flex-shrink: 0;
        margin-top: 2px;
        transition: color 0.25s;
      }
      .sc-ico svg {
        width: 22px;
        height: 22px;
      }
      .sc-lbl {
        font-family: var(--fn-head);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 4px;
      }
      .sc-val {
        font-family: var(--fn-head);
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        line-height: 1.35;
      }

      /* ═══ CURRICULUM PHILOSOPHY ═══ */
      .phil {
        background: var(--bg);
      }
      .phil-header {
        text-align: center;
        margin-bottom: 48px;
      }
      .phil-sub {
        font-family: var(--fn-head);
        font-size: 18px;
        font-weight: 600;
        color: var(--blue);
        margin-bottom: 16px;
      }
      .phil-intro {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.82;
        max-width: 680px;
        margin: 0 auto;
      }

      /* Connected three-card philosophy */
      .phil-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        position: relative;
      }
      .phil-grid::before {
        content: "";
        position: absolute;
        top: 48px;
        left: calc(33.33% - 0px);
        width: calc(33.33%);
        height: 2px;
        background: linear-gradient(90deg, var(--yellow), var(--blue));
        z-index: 1;
        pointer-events: none;
      }
      .phil-grid::after {
        content: "";
        position: absolute;
        top: 48px;
        left: calc(66.66%);
        width: calc(33.33%);
        height: 2px;
        background: linear-gradient(90deg, var(--blue), var(--yellow));
        z-index: 1;
        pointer-events: none;
      }

      .phil-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-top: 4px solid var(--blue);
        border-radius: var(--r-lg);
        padding: 32px 26px;
        margin: 0 10px;
        position: relative;
        z-index: 2;
        transition: var(--tr);
      }
      .phil-card:hover {
        box-shadow: var(--sh-h);
        transform: translateY(-5px);
      }
      .phil-card:nth-child(2) {
        border-top-color: var(--yellow);
      }
      .phil-step {
        font-family: var(--fn-impact);
        font-size: 10px;
        letter-spacing: 2px;
        color: var(--yellow);
        margin-bottom: 12px;
        display: block;
      }
      .phil-ico {
        width: 48px;
        height: 48px;
        background: var(--bluesoft);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        transition: var(--tr);
      }
      .phil-ico svg {
        width: 22px;
        height: 22px;
        color: var(--blue);
        transition: color 0.25s;
      }
      .phil-card:hover .phil-ico {
        background: var(--blue);
      }
      .phil-card:hover .phil-ico svg {
        color: var(--white);
      }
      .phil-title {
        font-family: var(--fn-head);
        font-size: 18px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
      }
      .phil-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.78;
      }

      /* ═══ CORE CURRICULUM (TABS) ═══ */
      .curr {
        background: var(--white);
      }
      .tab-bar {
        display: flex;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 4px;
        width: fit-content;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 4px;
      }
      .tab-btn {
        font-family: var(--fn-head);
        font-size: 13px;
        font-weight: 600;
        padding: 10px 22px;
        border-radius: var(--r);
        border: none;
        background: transparent;
        color: var(--muted);
        cursor: pointer;
        transition: var(--tr);
        white-space: nowrap;
      }
      .tab-btn.on {
        background: var(--blue);
        color: var(--white);
        box-shadow: 0 3px 10px rgba(53, 69, 154, 0.28);
      }

      .tab-panel {
        display: none;
      }
      .tab-panel.on {
        display: block;
      }
      .tab-sub {
        font-family: var(--fn-head);
        font-size: 15px;
        font-weight: 600;
        color: var(--blue);
        margin-bottom: 20px;
      }
      .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
      .chip {
        font-family: var(--fn-body);
        font-size: 13px;
        font-weight: 500;
        color: var(--navy);
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 8px 15px;
        transition: var(--tr);
        cursor: default;
      }
      .chip:hover {
        background: var(--bluesoft);
        border-color: rgba(53, 69, 154, 0.25);
        color: var(--blue);
        transform: translateY(-2px);
      }

      /* ═══ ELECTIVES ═══ */
      .elec {
        background: var(--bg);
      }
      .elec-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .elec-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 28px 24px;
        transition: var(--tr);
        position: relative;
        overflow: hidden;
      }
      .elec-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--yellow);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
      }
      .elec-card:hover {
        box-shadow: var(--sh-h);
        transform: translateY(-5px);
        border-color: rgba(53, 69, 154, 0.2);
      }
      .elec-card:hover::after {
        transform: scaleX(1);
      }
      .elec-card:hover .ec-ico {
        background: var(--blue);
      }
      .elec-card:hover .ec-ico svg {
        color: var(--white);
      }
      .ec-ico {
        width: 48px;
        height: 48px;
        background: var(--bluesoft);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        transition: var(--tr);
      }
      .ec-ico svg {
        width: 22px;
        height: 22px;
        color: var(--blue);
        transition: color 0.25s;
      }
      .ec-title {
        font-family: var(--fn-head);
        font-size: 17px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
        line-height: 1.25;
      }
      .ec-rel {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 16px;
      }
      .ec-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
      }
      .ec-tag {
        font-family: var(--fn-body);
        font-size: 12px;
        font-weight: 500;
        color: var(--blue);
        background: rgba(53, 69, 154, 0.08);
        border: 1px solid rgba(53, 69, 154, 0.14);
        border-radius: 6px;
        padding: 4px 11px;
      }

      /* last row centering for 5 cards in 3-col grid */
      .elec-grid > .elec-card:nth-child(4) {
        grid-column: 1;
      }
      .elec-grid > .elec-card:nth-child(5) {
        grid-column: 2;
      }

      /* ═══ SKILL TRAINING ═══ */
      .skill {
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .skill::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            circle at 80% 20%,
            rgba(220, 162, 0, 0.06) 0%,
            transparent 55%
          ),
          radial-gradient(
            circle at 10% 80%,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 40%
          );
      }
      .skill-inner {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .skill-left .ey {
        color: var(--yellow);
      }
      .skill-left .ey::before {
        background: var(--yellow);
      }
      .skill-left h2 {
        font-family: var(--fn-impact);
        font-size: clamp(26px, 3.5vw, 40px);
        color: var(--white);
        line-height: 1.1;
        margin-bottom: 16px;
        letter-spacing: 0.4px;
      }
      .skill-left p {
        font-size: 15px;
        color: rgba(200, 215, 255, 0.72);
        line-height: 1.82;
      }
      .skill-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .sk-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--r-lg);
        padding: 24px 20px;
        transition: var(--tr);
      }
      .sk-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(220, 162, 0, 0.4);
        transform: translateY(-4px);
      }
      .sk-card:hover .sk-ico {
        border-color: rgba(220, 162, 0, 0.7);
      }
      .sk-ico {
        width: 46px;
        height: 46px;
        border: 1.5px solid rgba(220, 162, 0, 0.35);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        transition: var(--tr);
      }
      .sk-ico svg {
        width: 22px;
        height: 22px;
        color: var(--yellow);
      }
      .sk-title {
        font-family: var(--fn-head);
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 8px;
      }
      .sk-desc {
        font-size: 13px;
        color: rgba(200, 215, 255, 0.62);
        line-height: 1.72;
      }

      /* ═══ PEDAGOGY ═══ */
      .peda {
        background: var(--bg);
      }
      .peda-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      .peda-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 26px 22px;
        transition: var(--tr);
      }
      .peda-card:hover {
        box-shadow: var(--sh-h);
        transform: translateY(-5px);
        border-color: rgba(53, 69, 154, 0.2);
      }
      .peda-card:hover .pd-ico {
        background: var(--blue);
      }
      .peda-card:hover .pd-ico svg {
        color: var(--white);
      }
      .pd-ico {
        width: 46px;
        height: 46px;
        background: var(--bluesoft);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        transition: var(--tr);
      }
      .pd-ico svg {
        width: 21px;
        height: 21px;
        color: var(--blue);
        transition: color 0.25s;
      }
      .pd-title {
        font-family: var(--fn-head);
        font-size: 16px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 6px;
      }
      .pd-tag {
        font-family: var(--fn-acc);
        font-size: 13px;
        color: var(--yellow);
        margin-bottom: 10px;
        font-weight: 700;
      }
      .pd-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.72;
      }

      /* ═══ SEMESTER TIMELINE ═══ */
      .sem {
        background: var(--white);
      }
      .sem-timeline {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: relative;
        margin-top: 48px;
      }
      /* horizontal connector */
      .sem-timeline::before {
        content: "";
        position: absolute;
        top: 36px;
        left: calc(12.5%);
        width: calc(75%);
        height: 2px;
        background: linear-gradient(
          90deg,
          var(--yellow),
          var(--blue),
          var(--yellow),
          var(--blue)
        );
        z-index: 0;
      }
      .sem-card {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 24px 20px;
        margin: 0 10px;
        position: relative;
        z-index: 1;
        transition: var(--tr);
      }
      .sem-card:hover {
        box-shadow: var(--sh-h);
        transform: translateY(-4px);
      }
      .sem-dot {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--blue);
        border: 3px solid var(--white);
        box-shadow: 0 0 0 2px var(--blue);
        margin: 0 auto 18px;
        position: relative;
        z-index: 2;
      }
      .sem-card:nth-child(1) .sem-dot {
        background: var(--yellow);
        box-shadow: 0 0 0 2px var(--yellow);
      }
      .sem-card:nth-child(3) .sem-dot {
        background: var(--yellow);
        box-shadow: 0 0 0 2px var(--yellow);
      }
      .sem-num {
        font-family: var(--fn-impact);
        font-size: 10px;
        letter-spacing: 2px;
        color: var(--yellow);
        margin-bottom: 8px;
        text-align: center;
        display: block;
      }
      .sem-kw {
        font-family: var(--fn-head);
        font-size: 17px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
        text-align: center;
      }
      .sem-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.72;
        text-align: center;
      }

      /* ═══ ASSESSMENT ═══ */
      .assess {
        background: var(--bg);
      }
      .assess-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .assess-body p {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.82;
        max-width: 480px;
      }
      .check-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 28px;
      }
      .check-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .check-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--fn-body);
        font-size: 14px;
        color: var(--text);
      }
      .check-item svg {
        width: 18px;
        height: 18px;
        color: var(--blue);
        flex-shrink: 0;
      }

      /* ═══ OUTCOMES ═══ */
      .out {
        background: var(--white);
      }
      .out-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
      .out-card {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 22px 20px;
        transition: var(--tr);
      }
      .out-card:hover {
        background: var(--white);
        border-color: rgba(53, 69, 154, 0.25);
        box-shadow: var(--sh);
      }
      .out-card:hover .oc-num {
        background: var(--blue);
        color: var(--white);
      }
      .oc-num {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: var(--bluesoft);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--fn-impact);
        font-size: 14px;
        color: var(--blue);
        margin-bottom: 14px;
        transition: var(--tr);
      }
      .oc-title {
        font-family: var(--fn-head);
        font-size: 15px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .oc-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.7;
      }

      /* ═══ GRADUATE PROFILE ═══ */
      .grad {
        background: linear-gradient(
          135deg,
          var(--navy) 0%,
          var(--bluemid) 50%,
          var(--blue) 100%
        );
        position: relative;
        overflow: hidden;
        text-align: center;
      }
      .grad::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            circle at 20% 50%,
            rgba(220, 162, 0, 0.06) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 20%,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 45%
          );
      }
      .grad .con {
        position: relative;
        z-index: 2;
      }
      .grad .ey {
        justify-content: center;
        color: var(--yellow);
      }
      .grad .ey::before {
        background: var(--yellow);
      }
      .grad .sh2 {
        color: var(--white);
        margin-bottom: 12px;
      }
      .grad-body {
        font-size: 15px;
        color: rgba(200, 215, 255, 0.72);
        max-width: 580px;
        margin: 0 auto 40px;
        line-height: 1.8;
      }

      /* Central profile ring */
      .grad-hub {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
      }
      .hub-ring {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        border: 2px solid rgba(220, 162, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0;
        background: rgba(255, 255, 255, 0.07);
        position: relative;
      }
      .hub-ring::before {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 1px solid rgba(220, 162, 0, 0.18);
      }
      .hub-inner {
        font-family: var(--fn-head);
        font-size: 13px;
        font-weight: 700;
        color: var(--white);
        text-align: center;
        line-height: 1.4;
      }
      .hub-inner span {
        display: block;
        font-family: var(--fn-accent);
        color: var(--yellow);
        font-size: 11px;
        margin-top: 4px;
      }
      .cap-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
      }
      .cap-chip {
        font-family: var(--fn-head);
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 40px;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: var(--tr);
        cursor: default;
      }
      .cap-chip svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
      }
      .cap-chip:hover {
        background: var(--yellow);
        color: var(--navy);
        border-color: var(--yellow);
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(220, 162, 0, 0.3);
      }
      .cap-chip:hover svg {
        color: var(--navy);
      }

      /* ═══ CLOSING CTA ═══ */
      .cta-sec {
        background: var(--bg);
        border-top: 1px solid var(--border);
        position: relative;
        overflow: hidden;
      }
      .cta-sec::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(53, 69, 154, 0.045) 0%,
          transparent 60%
        );
      }
      /* subtle code-line BG */
      .cta-sec::after {
        content: "{ } < / >";
        position: absolute;
        right: 48px;
        top: 50%;
        transform: translateY(-50%);
        font-family: monospace;
        font-size: clamp(80px, 14vw, 160px);
        color: rgba(53, 69, 154, 0.04);
        pointer-events: none;
        user-select: none;
      }
      .cta-inner {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 48px;
        align-items: center;
      }
      .cta-tag {
        font-family: var(--fn-acc);
        font-size: 13px;
        color: var(--yellow);
        margin-bottom: 8px;
      }
      .cta-h2 {
        font-family: var(--fn-impact);
        font-size: clamp(24px, 3.5vw, 40px);
        color: var(--navy);
        line-height: 1.08;
        margin-bottom: 16px;
        letter-spacing: 0.4px;
      }
      .cta-h2 em {
        font-style: normal;
        color: var(--blue);
      }
      .cta-body {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.82;
        max-width: 600px;
        margin-bottom: 12px;
      }
      .cta-body strong {
        color: var(--navy);
        font-weight: 600;
      }
      .cta-brand {
        font-family: var(--fn-head);
        font-size: 14px;
        font-weight: 600;
        color: var(--blue);
        letter-spacing: 0.4px;
      }
      .cta-brand em {
        font-style: normal;
        font-family: var(--fn-acc);
        color: var(--yellow);
      }
      .cta-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-width: 220px;
      }
      .btn-cp {
        font-family: var(--fn-head);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.4px;
        padding: 14px 24px;
        background: var(--yellow);
        color: var(--navy);
        border: none;
        border-radius: var(--r);
        cursor: pointer;
        text-align: center;
        transition: var(--tr);
      }
      .btn-cp:hover {
        background: #f5c500;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(220, 162, 0, 0.3);
      }
      .btn-cs {
        font-family: var(--fn-head);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
        padding: 13px 24px;
        background: transparent;
        color: var(--blue);
        border: 1.5px solid var(--blue);
        border-radius: var(--r);
        cursor: pointer;
        text-align: center;
        transition: var(--tr);
      }
      .btn-cs:hover {
        background: var(--blue);
        color: var(--white);
      }
      .btn-cg {
        font-family: var(--fn-head);
        font-size: 13px;
        font-weight: 600;
        padding: 10px 20px;
        background: transparent;
        color: var(--muted);
        border: 1px solid var(--border);
        border-radius: var(--r);
        cursor: pointer;
        text-align: center;
        transition: var(--tr);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
      }
      .btn-cg:hover {
        border-color: var(--blue);
        color: var(--blue);
      }

      /* ═══ MINI FOOTER ═══ */
      .mft {
        background: var(--navy);
        padding: 22px clamp(18px, 6vw, 72px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
      }
      .mft p {
        font-size: 12px;
        color: rgba(200, 215, 255, 0.4);
      }
      .mft-lnks {
        display: flex;
        gap: 18px;
      }
      .mft-lnks a {
        font-family: var(--fn-head);
        font-size: 12px;
        font-weight: 600;
        color: rgba(200, 215, 255, 0.48);
        transition: color 0.2s;
      }
      .mft-lnks a:hover {
        color: var(--yellow);
      }

      /* ═══ RESPONSIVE ═══ */
      @media (max-width: 1060px) {
        .hero {
          grid-template-columns: 1fr;
          min-height: auto;
        }
        .hr-vis {
          display: none;
        }
        .elec-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .elec-grid > .elec-card:nth-child(4) {
          grid-column: auto;
        }
        .elec-grid > .elec-card:nth-child(5) {
          grid-column: auto;
        }
        .peda-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .sem-timeline {
          grid-template-columns: 1fr 1fr;
          gap: 16px;
        }
        .sem-timeline::before {
          display: none;
        }
        .assess-inner {
          grid-template-columns: 1fr;
        }
        .cta-inner {
          grid-template-columns: 1fr;
        }
        .cta-btns {
          flex-direction: row;
          flex-wrap: wrap;
        }
      }
      @media (max-width: 780px) {
        .snap-inner {
          grid-template-columns: 1fr 1fr;
        }
        .sc:nth-child(2n) {
          border-right: none;
        }
        .sc:nth-child(n + 3) {
          border-top: 1px solid var(--border);
        }
        .phil-grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }
        .phil-grid::before,
        .phil-grid::after {
          display: none;
        }
        .phil-card {
          margin: 0;
        }
        .skill-inner {
          grid-template-columns: 1fr;
        }
        .out-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .bc {
          display: none;
        }
        .mhdr-cta .bsm-ol {
          display: none;
        }
      }
      @media (max-width: 580px) {
        .snap-inner {
          grid-template-columns: 1fr;
          border-left: none;
        }
        .sc {
          border-right: 1px solid var(--border);
          border-left: 1px solid var(--border);
          border-radius: 0;
        }
        .elec-grid,
        .skill-grid,
        .peda-grid,
        .sem-timeline,
        .out-grid {
          grid-template-columns: 1fr;
        }
        .tab-bar {
          width: 100%;
        }
        .cta-btns {
          flex-direction: column;
        }
        .mft {
          flex-direction: column;
          text-align: center;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .fu {
          opacity: 1;
          transform: none;
          transition: none;
        }
        * {
          transition: none !important;
          animation: none !important;
        }
      }
    