    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:         #0a0d14;
      --bg2:        #0f1420;
      --bg3:        #141926;
      --border:     #1e2535;
      --border2:    #2a3448;
      --blue:       #2a7fff;
      --blue-dim:   #1a5bbf;
      --blue-glow:  rgba(42,127,255,0.18);
      --teal:       #00d4ff;
      --text:       #e8edf5;
      --text-muted: #8896b3;
      --text-dim:   #4a5568;
      --accent:     #ff6b35;
      --grid-color: rgba(42,127,255,0.06);
      --font-mono:  'Space Mono', monospace;
      --font-head:  'Barlow Condensed', sans-serif;
      --font-body:  'Barlow', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── GRID TEXTURE ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 64px;
      background: rgba(10,13,20,0.92);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
      gap: 24px;
    }

    .nav-logo {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .nav-logo span.bracket {
      color: var(--blue);
      font-weight: 400;
    }
    .nav-logo .dot { color: var(--teal); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-mono);
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      text-decoration: none;
      padding: 6px 12px;
      border: 1px solid transparent;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover {
      color: var(--blue);
      border-color: var(--border2);
      background: var(--blue-glow);
    }
    .nav-links a.nav-active {
      color: var(--blue);
      border-color: var(--border2);
      background: var(--blue-glow);
    }

    .nav-search {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--bg3);
      border: 1px solid var(--border2);
      padding: 0 14px;
      height: 36px;
      width: 240px;
      flex-shrink: 0;
      transition: border-color 0.2s;
    }
    .nav-search:focus-within {
      border-color: var(--blue);
      box-shadow: 0 0 0 2px var(--blue-glow);
    }
    .nav-search svg { color: var(--text-dim); flex-shrink: 0; }
    .nav-search input {
      background: none;
      border: none;
      outline: none;
      color: var(--text);
      font-family: var(--font-mono);
      font-size: 11px;
      width: 100%;
    }
    .nav-search input::placeholder { color: var(--text-dim); }

    /* ── HERO ── */
    .hero {
      position: relative;
      z-index: 1;
      min-height: calc(100vh - 64px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 40px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(42,127,255,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue);
      border: 1px solid var(--border2);
      padding: 6px 16px;
      margin-bottom: 36px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      animation: fadeUp 0.6s ease both;
    }
    .hero-label::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--teal);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }

    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(42px, 7vw, 96px);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      max-width: 900px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero h1 em {
      font-style: normal;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--blue);
    }

    .hero-sub {
      font-family: var(--font-mono);
      font-size: 16px;
      letter-spacing: 0.2em;
      color: var(--text-muted);
      margin-top: 28px;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-cta {
      margin-top: 48px;
      display: flex;
      gap: 16px;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--blue);
      color: white;
      border: none;
      padding: 14px 32px;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: all 0.2s;
      position: relative;
    }
    .btn-primary:hover {
      background: var(--teal);
      color: var(--bg);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 72px;
      animation: fadeUp 0.6s 0.4s ease both;
    }
    .hero-stat {
      text-align: center;
      border-left: 2px solid var(--border2);
      padding-left: 24px;
    }
    .hero-stat:first-child { border-left: none; padding-left: 0; }
    .hero-stat strong {
      display: block;
      font-family: var(--font-head);
      font-size: 36px;
      font-weight: 800;
      color: var(--blue);
    }
    .hero-stat span {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }


    /* ── SECTION WRAPPER ── */
    .section-wrapper {
      position: relative;
      z-index: 1;
      padding: 80px 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 20px;
      gap: 20px;
      flex-wrap: wrap;
    }

    .section-tag {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 6px;
    }

    .section-title {
      font-family: var(--font-head);
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1;
    }

    .count-badge {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-muted);
      border: 1px solid var(--border2);
      padding: 4px 12px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .count-badge span { color: var(--blue); }

    /* ── PROGRAMS GRID ── */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 2px;
      background: var(--border);
    }

    .program-card {
      background: var(--bg2);
      padding: 28px 24px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.2s;
      position: relative;
      overflow: hidden;
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .program-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 0;
      background: var(--blue);
      transition: height 0.25s ease;
    }

    .program-card:hover {
      background: var(--bg3);
      border-color: var(--border2);
      transform: translateY(-2px);
      z-index: 1;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px var(--border2);
    }

    .program-card:hover::before { height: 100%; }
    
    .program-card.program-card-comingsoon {
      cursor: default;
      opacity: 0.6;
    }
    
    .program-card.program-card-comingsoon:hover {
      transform: none;
      box-shadow: none;
    }

    .card-icon {
      font-size: 32px;
      margin-bottom: 16px;
      display: block;
      line-height: 1;
    }

    .card-index {
      position: absolute;
      top: 14px;
      right: 18px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-dim);
    }

    .card-title {
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 8px;
      color: var(--text);
    }

    .card-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .card-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .program-card:hover .card-arrow { opacity: 1; }

    .card-hidden {
      display: none !important;
    }

    .no-results {
      grid-column: 1 / -1;
      text-align: center;
      padding: 60px;
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--text-dim);
    }

    /* ── DETAIL VIEW ── */
    #detail-view {
      display: none;
      position: relative;
      z-index: 1;
    }

    #detail-view.active { display: block; }

    .detail-inner {
      max-width: 960px;
      margin: 0 auto;
      padding: 60px 40px 100px;
    }

    .btn-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      background: var(--bg2);
      border: 1px solid var(--border2);
      padding: 10px 20px;
      cursor: pointer;
      transition: all 0.2s;
      margin-bottom: 48px;
    }
    .btn-back:hover { color: var(--blue); border-color: var(--blue); background: var(--blue-glow); }

    .detail-badge {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .detail-title {
      font-family: var(--font-head);
      font-size: clamp(40px, 6vw, 80px);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 0.95;
      margin-bottom: 32px;
    }

    .detail-title span { color: var(--blue); }

    .detail-intro {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 640px;
      margin-bottom: 56px;
      border-left: 3px solid var(--blue);
      padding-left: 20px;
    }

    .detail-section-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 16px;
    }

    .core-areas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 2px;
      background: var(--border);
      margin-bottom: 56px;
    }

    .core-area-item {
      background: var(--bg2);
      padding: 16px 20px;
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 10px;
      border-left: 2px solid transparent;
      transition: all 0.15s;
    }

    .core-area-item:hover {
      background: var(--bg3);
      border-left-color: var(--blue);
      color: var(--text);
    }

    .core-area-item::before {
      content: '//';
      color: var(--blue);
      font-size: 10px;
      opacity: 0.7;
    }

    /* ── RESOURCES ── */
    #resources {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .resources-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2px;
      background: var(--border);
    }

    .resource-card {
      background: var(--bg);
      padding: 32px;
      border: 1px solid transparent;
      transition: all 0.2s;
    }

    .resource-card:hover {
      background: var(--bg3);
      border-color: var(--border2);
    }

    .resource-icon {
      font-size: 28px;
      margin-bottom: 16px;
    }

    .resource-title {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 8px;
    }

    .resource-desc {
      font-size: 14px;
      color: var(--text-muted);
    }

    /* ── SALARY ── */
    .salary-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid var(--border);
      font-size: 14px;
    }

    .salary-table th {
      background: var(--bg2);
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 14px 20px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .salary-table td {
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      color: var(--text-muted);
      vertical-align: middle;
    }

    .salary-table tr:hover td { background: var(--bg3); color: var(--text); }

    .salary-table td:first-child {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text);
    }

    .salary-table td.salary-val {
      font-family: var(--font-mono);
      color: var(--blue);
      font-weight: 700;
    }

    .salary-bar-wrap {
      width: 100%;
      max-width: 200px;
      height: 4px;
      background: var(--border2);
    }

    .salary-bar {
      height: 100%;
      background: linear-gradient(90deg, var(--blue), var(--teal));
      transition: width 0.6s ease;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }

    .about-content {
      max-width: 1000px;
      margin: 0 auto;
    }

    .about-statement {
      background: var(--bg2);
      border-left: 4px solid var(--blue);
      padding: 32px 40px;
      margin-bottom: 56px;
      position: relative;
    }

    .about-statement::before {
      content: '"';
      position: absolute;
      top: 16px;
      left: 12px;
      font-family: var(--font-head);
      font-size: 72px;
      color: var(--border2);
      line-height: 1;
    }

    .about-statement p {
      font-family: var(--font-body);
      font-size: 20px;
      line-height: 1.7;
      color: var(--text);
      font-weight: 500;
      position: relative;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .about-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 32px 28px;
      transition: all 0.2s;
    }

    .about-card:hover {
      background: var(--bg3);
      border-color: var(--border2);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .about-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }

    .about-card h3 {
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 12px;
      color: var(--text);
    }

    .about-card p {
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-muted);
    }

    /* ── FOOTER ── */
    footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
      padding: 32px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-logo span { color: var(--blue); }

    .footer-copy {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-dim);
      letter-spacing: 0.06em;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-search { width: 180px; }
      .hero { padding: 60px 20px; }
      .hero-stats { gap: 24px; }
      .section-wrapper { padding: 60px 20px; }
      .detail-inner { padding: 40px 20px 80px; }
      footer { padding: 24px 20px; }
      .salary-table { font-size: 12px; }
      .salary-table th, .salary-table td { padding: 10px 14px; }
      .salary-bar-wrap { display: none; }
    }

    /* ── BREADCRUMBS ── */
    .breadcrumbs {
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      padding: 16px 40px;
    }

    .breadcrumb-container {
      max-width: 1400px;
      margin: 0 auto;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .breadcrumb-container a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .breadcrumb-container a:hover {
      color: var(--blue);
    }

    .breadcrumb-sep {
      color: var(--text-dim);
      margin: 0 8px;
    }

    .breadcrumb-current {
      color: var(--text);
    }

    /* ── DISCIPLINE PAGE ── */
    .discipline-page {
      min-height: calc(100vh - 200px);
      padding: 60px 40px 80px;
      position: relative;
      z-index: 1;
    }

    .discipline-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .discipline-hero {
      text-align: center;
      margin-bottom: 60px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--border);
    }

    .discipline-icon {
      font-size: 64px;
      margin-bottom: 24px;
      animation: fadeUp 0.6s ease both;
    }

    .discipline-hero h1 {
      font-family: var(--font-head);
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1;
      margin-bottom: 20px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .discipline-tagline {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .discipline-page section {
      margin-bottom: 56px;
    }

    .discipline-page h2 {
      font-family: var(--font-head);
      font-size: 28px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 24px;
      color: var(--blue);
    }

    .discipline-overview p {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-muted);
    }

    /* Salary Grid */
    .salary-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      margin-bottom: 16px;
    }

    .salary-item {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 24px;
      text-align: center;
      transition: all 0.2s;
    }

    .salary-item:hover {
      border-color: var(--border2);
      transform: translateY(-2px);
    }

    .salary-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 12px;
    }

    .salary-value {
      font-family: var(--font-head);
      font-size: 42px;
      font-weight: 800;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 8px;
    }

    .salary-desc {
      font-size: 13px;
      color: var(--text-muted);
    }

    .salary-note {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-dim);
      text-align: center;
    }

    /* Core Areas Grid */
    .cores-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 2px;
      background: var(--border);
    }

    .core-item {
      background: var(--bg2);
      padding: 16px 20px;
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--text-muted);
      border-left: 2px solid transparent;
      transition: all 0.15s;
    }

    .core-item:hover {
      background: var(--bg3);
      border-left-color: var(--blue);
      color: var(--text);
    }

    /* Career Cards */
    .careers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .career-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 28px;
      transition: all 0.2s;
    }

    .career-card:hover {
      background: var(--bg3);
      border-color: var(--border2);
      transform: translateY(-4px);
    }

    .career-card h3 {
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 12px;
      color: var(--text);
    }

    .career-card p {
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-muted);
    }

    /* Related Disciplines */
    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 16px;
    }

    .related-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 24px 16px;
      text-align: center;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      transition: all 0.2s;
    }

    .related-card:hover {
      background: var(--bg3);
      border-color: var(--blue);
      transform: translateY(-2px);
    }

    .related-icon {
      font-size: 32px;
    }

    .related-name {
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--text);
    }

    /* CTA Section */
    .discipline-cta {
      text-align: center;
      padding: 48px 0;
      border-top: 1px solid var(--border);
    }

    .discipline-cta h2 {
      margin-bottom: 28px;
    }

    /* ── UTILITIES ── */
    .visually-hidden { display: none !important; }
    .programs-section { transition: opacity 0.3s; }

/* ══════════════════════════════════════════════════════════════════
   DISCIPLINE PAGES
   ══════════════════════════════════════════════════════════════════ */

.discipline-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  position: relative;
  z-index: 1;
}

.discipline-hero {
  text-align: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.discipline-icon {
  font-size: 80px;
  margin-bottom: 24px;
  line-height: 1;
  animation: fadeUp 0.6s ease both;
}

.discipline-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.discipline-tagline {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
  animation: fadeUp 0.6s 0.2s ease both;
}

.discipline-content section {
  margin-bottom: 60px;
}

.discipline-content h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--text);
  border-bottom: 2px solid var(--border2);
  padding-bottom: 12px;
}

.discipline-overview p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

.discipline-careers ul {
  list-style: none;
  padding: 0;
}

.discipline-careers li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.discipline-careers li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.salary-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.salary-item {
  background: var(--bg2);
  border: 1px solid var(--border2);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}

.salary-item:hover {
  background: var(--bg3);
  border-color: var(--blue);
  transform: translateY(-4px);
}

.salary-item h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.salary-value {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.discipline-cta {
  text-align: center;
  padding: 60px 40px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  margin-top: 80px;
}

.discipline-cta h2 {
  border: none;
  padding: 0;
  margin-bottom: 16px;
}

.discipline-cta p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .discipline-page {
    padding: 40px 20px 80px;
  }
  .discipline-hero {
    padding: 40px 0;
  }
  .discipline-icon {
    font-size: 60px;
  }
  .salary-overview {
    grid-template-columns: 1fr;
  }
}

/* ── PROGRAM CARD LINKS ── */
.program-card {
  text-decoration: none;
  display: block;
  color: inherit;
}

.program-card:visited {
  color: inherit;
}

/* ── FOOTER PRIVACY LINK ── */
.footer-copy a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: var(--teal);
  text-decoration: underline;
}

/* ── RESOURCE CARDS AS LINKS ── */
.resource-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.resource-card:visited {
  color: inherit;
}

/* ── SORTABLE TABLE ── */
.salary-table th.sortable {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 24px;
}

.salary-table th.sortable:hover {
  background: var(--bg3);
}

.salary-table th.sortable::after {
  content: '⇅';
  position: absolute;
  right: 8px;
  opacity: 0.3;
  font-size: 12px;
}

.salary-table th.sort-asc::after {
  content: '↑';
  opacity: 1;
  color: var(--blue);
}

.salary-table th.sort-desc::after {
  content: '↓';
  opacity: 1;
  color: var(--blue);
}

/* ── SALARY DISCIPLINE LINKS ── */
.salary-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dashed var(--border2);
  transition: all 0.2s;
}

.salary-link:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}


.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  min-width: 200px;
}


@media (max-width: 768px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-hero { width: 100%; }
}

.quiz-banner {
  background: linear-gradient(135deg, #00a8e8 0%, #00d4aa 100%);
  padding: 16px 20px;
  color: #fff;
}
.quiz-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── HERO QUIZ BUTTONS ── */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  min-width: 200px;
  text-decoration: none !important;  /* ← Fixes underline */
  display: inline-block;
  border-radius: 6px;
  transition: all 0.2s;
  text-align: center;
}

/* Primary button (Quiz - blue) */
.btn-primary.btn-hero {
  background: var(--blue);
  color: var(--bg) !important;  /* ← Forces white text */
  border: 2px solid var(--blue);
}

.btn-primary.btn-hero:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--bg) !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

/* Secondary button (Explore - outline) */
.btn-secondary.btn-hero {
  background: transparent;
  color: var(--text) !important;  /* ← Fixes color */
  border: 2px solid var(--border);
}

.btn-secondary.btn-hero:hover {
  background: var(--bg2);
  border-color: var(--blue);
  color: var(--text) !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-actions { 
    flex-direction: column; 
    width: 100%; 
  }
  .btn-hero { 
    width: 100%; 
  }
}


/* ══════════════════════════════════════════════════════════════════
   ENHANCED FOOTER & BREADCRUMB STYLES - Added by SEO Enhancement Script
   ══════════════════════════════════════════════════════════════════ */

/* Footer Sections - FIXED: Explicit 3 columns */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 24px;
}

.footer-sections {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* 4 equal columns */
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  min-width: 0; /* Prevents overflow */
}

.footer-section h4 {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-logo);
  font-size: 18px;
  color: var(--text);
}

.footer-logo span {
  color: var(--blue);
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: 1200px;
  margin: 100px auto 20px;
  padding: 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--text);
}

/* Mobile - Stack to single column on small screens */
@media (max-width: 968px) {
  .footer-sections {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablets */
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer-sections {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .breadcrumbs {
    margin-top: 80px;
  }
}
/* ═══════════════════════════════════════════════════════════════
   SALARY MAP STYLES - Based on Working Reference
   Add this to your css/styles.css file
   ═══════════════════════════════════════════════════════════════ */

/* Map Section */
.salary-map-section {
  margin: 60px 0;
  padding: 40px 20px;
}

.salary-map-section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 16px;
}

.map-intro {
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Map Container */
.map-container {
  background: #1a1b1e;
  border: 1px solid #2a2b2e;
  border-radius: 8px;
  padding: 28px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

#mapWrap {
  position: relative;
}

/* US Map SVG */
#us-map {
  width: 100%;
  height: auto;
  display: block;
  cursor: default;
}

#us-map .state-path {
  stroke-width: 0.6;
  transition: fill 0.18s, filter 0.18s, stroke 0.18s;
  cursor: pointer;
}

#us-map .state-path:hover {
  stroke: #00a8e8 !important;
  stroke-width: 2.5 !important;
  filter: brightness(1.15);
}

#us-map .state-path.selected {
  stroke: #00d9ff !important;
  stroke-width: 3 !important;
  filter: drop-shadow(0 0 9px rgba(0, 168, 232, 0.6));
}

/* State Labels */
#us-map .state-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 10px;
  font-weight: 600;
  fill: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  user-select: none;
  transition: fill 0.2s;
}

#us-map .state-label.selected-label {
  fill: #fff;
}

/* Loading Spinner */
.map-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: #999;
  font-size: 0.88rem;
  gap: 12px;
}

.map-loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #2a2b2e;
  border-top-color: #00a8e8;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Info Panel Layout */
.map-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.map-column {
  background: #1a1b1e;
  border: 1px solid #2a2b2e;
  border-radius: 8px;
  padding: 24px;
}

/* Legend */
.map-legend h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #00a8e8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legend-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-color {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  flex-shrink: 0;
}

.legend-label {
  font-size: 13px;
  color: #999;
  line-height: 1.3;
}

/* State Info Panel */
.state-info-panel {
  background: #1a1b1e;
  border: 1px solid #2a2b2e;
  border-radius: 8px;
  padding: 24px;
}

.state-info-panel h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}

.state-info-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #0d0e11;
  border-radius: 6px;
  border: 1px solid #2a2b2e;
}

.info-label {
  font-size: 14px;
  color: #999;
  font-weight: 500;
}

.info-value {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: 'Courier New', monospace;
}

.avg-highlight {
  color: #00a8e8;
  font-size: 20px;
}

/* Map Notes */
.map-notes {
  max-width: 900px;
  margin: 32px auto 0;
  padding: 16px;
  background: rgba(0, 168, 232, 0.05);
  border-left: 3px solid #00a8e8;
  border-radius: 4px;
  font-size: 13px;
  color: #999;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .map-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .salary-map-section h2 {
    font-size: 24px;
  }
  
  .map-container {
    padding: 16px;
  }
  
  .state-info-panel,
  .map-column {
    padding: 16px;
  }
  
  #us-map .state-label {
    font-size: 8px;
  }
}
/* ═══════════════════════════════════════════════════════════════
   STATE PAGE LINK STYLES
   Add this to your css/styles.css or salary-map.css
   ═══════════════════════════════════════════════════════════════ */

/* State Page Link Container */
.state-page-link-container {
  display: none;
  margin: 24px 0;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* State Page Link */
.state-page-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  background: linear-gradient(135deg, #00a8e8 0%, #0080b3 100%);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 168, 232, 0.3);
  cursor: pointer;
  border: 2px solid transparent;
}

.state-page-link:hover {
  background: linear-gradient(135deg, #00d9ff 0%, #00a8e8 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 168, 232, 0.4);
  border-color: #00d9ff;
}

.state-page-link:active {
  transform: translateY(-2px);
}

/* Link Main Text */
.link-main {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Link Sub Text */
.link-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .state-page-link {
    padding: 16px 24px;
  }
  
  .link-main {
    font-size: 16px;
  }
  
  .link-sub {
    font-size: 11px;
  }
}

/* Alternative: If you want it in the grid layout */
.map-grid .state-page-link-container {
  grid-column: 1 / -1; /* Span full width */
}
