/*
Theme Name: Người Mua Vui Course
Theme URI: https://example.com/nguoi-mua-vui-course
Author: Người Mua Vui
Author URI: https://example.com
Description: Dark premium landing page for Photoshop Manipulation - AI - Composite course.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: nguoi-mua-vui-course
*/

:root {
  --nmv-bg: #030406;
  --nmv-panel: #0d0f12;
  --nmv-panel-2: #15181d;
  --nmv-ink: #f5f7fb;
  --nmv-muted: #a4abb8;
  --nmv-dim: #6e7684;
  --nmv-line: rgba(255, 255, 255, 0.12);
  --nmv-orange: #ff9500;
  --nmv-blue: #4ea1ff;
  --nmv-cyan: #a8e9ff;
  --nmv-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--nmv-ink);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 78% 44%, rgba(78, 161, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #000 0%, var(--nmv-bg) 36%, #08090b 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body.nmv-editing .nmv-editable {
  outline: 1px dashed rgba(255, 149, 0, 0.72);
  outline-offset: 4px;
  cursor: text;
}

body.nmv-editing .nmv-editable:focus {
  outline: 2px solid var(--nmv-orange);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.nmv-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.nmv-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 max(20px, calc((100vw - 1220px) / 2));
  color: rgba(245, 247, 251, 0.82);
  background: rgba(0, 0, 0, 0.68);
  border-bottom: 1px solid var(--nmv-line);
  backdrop-filter: blur(20px);
}

.nmv-brand {
  font-size: 13px;
  font-weight: 800;
}

.nmv-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 650;
}

.nmv-edit-toggle,
.nmv-upload-button,
.nmv-ghost-button,
.nmv-primary-button {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid var(--nmv-line);
  color: var(--nmv-ink);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.nmv-edit-toggle,
.nmv-upload-button,
.nmv-ghost-button {
  padding: 0 14px;
}

.nmv-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  background: #2478e8;
}

.nmv-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 52px);
  padding: 18px max(20px, calc((100vw - 1220px) / 2)) 54px;
}

.nmv-hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 124px);
  overflow: hidden;
  border-radius: 8px;
}

.nmv-slide-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.nmv-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
}

.nmv-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.nmv-slide img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.nmv-default-visual {
  position: relative;
  width: min(78vw, 900px);
  height: min(58vh, 620px);
}

.nmv-default-panel {
  position: absolute;
  inset: 12% 28% 6% 20%;
  border-radius: 44px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.38) 42%, rgba(255, 255, 255, 0.06) 72%),
    #111;
  box-shadow:
    inset -22px 0 42px rgba(255, 255, 255, 0.22),
    inset 22px 0 56px rgba(0, 0, 0, 0.9),
    0 40px 80px rgba(0, 0, 0, 0.8);
  transform: rotate(-9deg) skewY(2deg);
}

.nmv-default-panel.second {
  inset: 10% 14% 16% 47%;
  opacity: 0.88;
  transform: rotate(8deg) skewY(-3deg);
}

.nmv-default-glow {
  position: absolute;
  inset: 20% 18% 4% 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 190, 210, 0.34), transparent 62%);
  filter: blur(42px);
}

.nmv-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

.nmv-hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-top: -128px;
}

.nmv-kicker {
  margin: 0 0 8px;
  color: rgba(245, 247, 251, 0.84);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
}

.nmv-hero-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  background: linear-gradient(90deg, #f8fbff 0%, #bdeaff 46%, #467aa9 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.nmv-hero-subtitle {
  margin: 10px 0 0;
  color: rgba(245, 247, 251, 0.86);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 760;
}

.nmv-hero-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nmv-price-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: min(100%, 330px);
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
  font-weight: 780;
  box-shadow: var(--nmv-shadow);
}

.nmv-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.nmv-dots {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - 1220px) / 2));
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.nmv-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.nmv-dots button.is-active {
  width: 28px;
  background: white;
}

.nmv-section {
  padding: 92px max(20px, calc((100vw - 1220px) / 2));
}

.nmv-section-heading {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-bottom: 34px;
}

.nmv-section-label {
  margin: 0;
  color: var(--nmv-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nmv-section h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.nmv-section-intro {
  margin: 0;
  color: var(--nmv-muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 620;
}

.nmv-outcomes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.nmv-outcome {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--nmv-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 149, 0, 0.16), transparent 45%),
    var(--nmv-panel);
}

.nmv-outcome strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}

.nmv-outcome p {
  margin: 0;
  color: var(--nmv-muted);
  line-height: 1.5;
}

.nmv-lessons {
  border-top: 1px solid var(--nmv-line);
}

.nmv-lesson {
  border-bottom: 1px solid var(--nmv-line);
}

.nmv-lesson-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  width: 100%;
  min-height: 88px;
  padding: 22px 0;
  color: var(--nmv-ink);
  background: transparent;
  border: 0;
  text-align: left;
}

.nmv-lesson-title {
  color: var(--nmv-orange);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.nmv-lesson-icon {
  color: var(--nmv-orange);
  font-size: 16px;
}

.nmv-lesson-body {
  display: none;
  max-width: 880px;
  padding: 0 0 28px;
  color: var(--nmv-muted);
  font-size: 16px;
  line-height: 1.7;
}

.nmv-lesson.is-open .nmv-lesson-body {
  display: block;
}

.nmv-lesson-body ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.nmv-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nmv-price-card {
  min-height: 450px;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--nmv-line);
  box-shadow: var(--nmv-shadow);
}

.nmv-price-card.basic {
  color: var(--nmv-ink);
  background: linear-gradient(145deg, #42464f, #22262e);
}

.nmv-price-card.coach {
  color: #101215;
  background: linear-gradient(145deg, #ffffff, #e7ebf2);
}

.nmv-price-card .nmv-section-label {
  color: var(--nmv-orange);
}

.nmv-price-card.coach .nmv-muted-text,
.nmv-price-card.coach li {
  color: #4c5664;
}

.nmv-price-card h3 {
  margin: 10px 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.nmv-price {
  margin: 0 0 22px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: 0;
}

.nmv-muted-text {
  color: var(--nmv-muted);
}

.nmv-price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.nmv-price-card li {
  color: rgba(245, 247, 251, 0.8);
  line-height: 1.5;
}

.nmv-price-card li::before {
  content: "•";
  margin-right: 10px;
  color: var(--nmv-orange);
}

.nmv-footer {
  padding: 34px max(20px, calc((100vw - 1220px) / 2)) 54px;
  color: var(--nmv-dim);
  border-top: 1px solid var(--nmv-line);
}

.nmv-save-state {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 10px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(16, 18, 22, 0.88);
  border: 1px solid var(--nmv-line);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
  font-size: 13px;
}

.nmv-save-state.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nmv-nav-links a {
    display: none;
  }

  .nmv-hero-bottom,
  .nmv-pricing,
  .nmv-outcomes {
    grid-template-columns: 1fr;
  }

  .nmv-hero-bottom {
    margin-top: -92px;
  }

  .nmv-hero-controls {
    justify-content: flex-start;
  }

  .nmv-price-pill {
    border-radius: 8px;
  }
}

@media (max-width: 560px) {
  .nmv-hero {
    padding-top: 24px;
  }

  .nmv-hero-media {
    min-height: calc(100vh - 118px);
  }

  .nmv-slide img {
    width: 100%;
    height: 100%;
  }

  .nmv-default-visual {
    width: 100%;
  }

  .nmv-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/* NMV packaged preview enhancements */
.nmv-hero {
      display: block;
      min-height: auto;
      padding: 0 0 58px;
    }

    .nmv-hero-media {
      width: 100vw;
      min-height: 0;
      aspect-ratio: 16 / 9;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      border-radius: 0;
    }

    .nmv-slide img {
      border-radius: 0;
    }

    .nmv-hero-media::after {
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 23%, transparent 72%, rgba(0, 0, 0, 0.66)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.88) 100%);
    }

    .nmv-hero-bottom {
      width: min(1220px, calc(100% - 40px));
      margin: -150px auto 0;
    }

    .nmv-dots {
      left: max(20px, calc((100vw - 1220px) / 2));
      bottom: 178px;
    }

    .nmv-ai-career {
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--nmv-line);
      border-bottom: 1px solid var(--nmv-line);
      background:
        radial-gradient(circle at 16% 6%, rgba(255, 149, 0, 0.13), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(168, 233, 255, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005));
    }

    .nmv-ai-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
      gap: 18px;
      align-items: stretch;
    }

    .nmv-ai-panel,
    .nmv-ai-card,
    .nmv-ai-step,
    .nmv-ai-cta {
      border: 1px solid var(--nmv-line);
      border-radius: 8px;
      background: rgba(13, 15, 18, 0.82);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    }

    .nmv-ai-panel {
      min-height: 330px;
      padding: 30px;
    }

    .nmv-ai-panel h3,
    .nmv-ai-card h3 {
      margin: 0;
      color: #fff;
      letter-spacing: 0;
    }

    .nmv-ai-panel h3 {
      max-width: 760px;
      font-size: clamp(28px, 3.2vw, 46px);
      line-height: 1.05;
    }

    .nmv-ai-panel p,
    .nmv-ai-card p,
    .nmv-ai-step p,
    .nmv-ai-cta p {
      margin: 0;
      color: var(--nmv-muted);
      line-height: 1.6;
      font-weight: 620;
    }

    .nmv-ai-panel p {
      margin-top: 18px;
      font-size: 17px;
    }

    .nmv-ai-proof-list {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .nmv-ai-proof-list li {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      color: rgba(245, 247, 251, 0.84);
      line-height: 1.55;
    }

    .nmv-ai-proof-list span {
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      color: #0b0d10;
      background: var(--nmv-orange);
      font-size: 13px;
      font-weight: 900;
    }

    .nmv-ai-side {
      display: grid;
      align-content: space-between;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(222, 231, 242, 0.94));
      color: #101215;
    }

    .nmv-ai-side h3 {
      color: #101215;
    }

    .nmv-ai-side p {
      color: #4b5563;
    }

    .nmv-ai-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }

    .nmv-ai-chips span {
      padding: 8px 11px;
      border-radius: 999px;
      color: #101215;
      background: rgba(16, 18, 21, 0.08);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .nmv-ai-cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .nmv-ai-card {
      min-height: 230px;
      padding: 22px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        var(--nmv-panel);
    }

    .nmv-ai-icon {
      display: grid;
      place-items: center;
      width: 46px;
      height: 46px;
      margin-bottom: 18px;
      border-radius: 50%;
      color: var(--nmv-cyan);
      background: rgba(168, 233, 255, 0.1);
      border: 1px solid rgba(168, 233, 255, 0.22);
    }

    .nmv-ai-icon svg {
      width: 23px;
      height: 23px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .nmv-ai-card h3 {
      font-size: 20px;
      line-height: 1.18;
    }

    .nmv-ai-card p {
      margin-top: 12px;
      font-size: 15px;
    }

    .nmv-ai-track {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .nmv-ai-step {
      min-height: 178px;
      padding: 20px;
    }

    .nmv-ai-step strong {
      display: block;
      color: var(--nmv-orange);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .nmv-ai-step h3 {
      margin: 12px 0 10px;
      font-size: 19px;
      line-height: 1.2;
    }

    .nmv-ai-cta {
      display: flex;
      gap: 18px;
      align-items: center;
      justify-content: space-between;
      margin-top: 18px;
      padding: 22px;
      background:
        linear-gradient(90deg, rgba(255, 149, 0, 0.18), rgba(78, 161, 255, 0.14)),
        rgba(13, 15, 18, 0.92);
    }

    .nmv-ai-cta p {
      max-width: 780px;
      color: rgba(245, 247, 251, 0.86);
      font-size: 17px;
    }

    .nmv-ai-cta .nmv-primary-button {
      flex: 0 0 auto;
    }

    .nmv-commitment {
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--nmv-line);
      background:
        radial-gradient(circle at 20% 0%, rgba(255, 149, 0, 0.16), transparent 30%),
        radial-gradient(circle at 82% 22%, rgba(78, 161, 255, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
    }

    .nmv-commitment-layout {
      display: grid;
      grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
      gap: 26px;
      align-items: center;
    }

    .nmv-mentor-card {
      position: relative;
      display: grid;
      justify-items: center;
      gap: 18px;
      padding: 28px;
      border: 1px solid var(--nmv-line);
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
        rgba(13, 15, 18, 0.88);
      box-shadow: var(--nmv-shadow);
      text-align: center;
    }

    .nmv-mentor-photo {
      position: relative;
      width: min(290px, 64vw);
      aspect-ratio: 1;
      padding: 8px;
      border-radius: 50%;
      background:
        linear-gradient(135deg, var(--nmv-orange), rgba(168, 233, 255, 0.85)),
        rgba(255, 255, 255, 0.08);
      box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(255, 255, 255, 0.15);
    }

    .nmv-mentor-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 30%;
      border-radius: 50%;
      filter: contrast(1.04) saturate(0.96);
    }

    .nmv-mentor-card h3 {
      margin: 0;
      color: #fff;
      font-size: clamp(28px, 3vw, 40px);
      line-height: 1.08;
    }

    .nmv-mentor-card p {
      max-width: 420px;
      margin: 0;
      color: var(--nmv-muted);
      line-height: 1.6;
      font-weight: 620;
    }

    .nmv-commitment-copy {
      display: grid;
      gap: 16px;
    }

    .nmv-commitment-copy h2 {
      max-width: 760px;
    }

    .nmv-commitment-copy .nmv-section-intro {
      max-width: 760px;
    }

    .nmv-commitment-list {
      display: grid;
      gap: 12px;
      margin: 6px 0 0;
      padding: 0;
      list-style: none;
    }

    .nmv-commitment-list li {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      padding: 18px;
      border: 1px solid var(--nmv-line);
      border-radius: 8px;
      background: rgba(13, 15, 18, 0.74);
    }

    .nmv-commitment-icon {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: #101215;
      background: var(--nmv-orange);
      font-weight: 900;
    }

    .nmv-commitment-list strong {
      display: block;
      margin-bottom: 6px;
      color: #fff;
      font-size: 18px;
    }

    .nmv-commitment-list p {
      margin: 0;
      color: var(--nmv-muted);
      line-height: 1.6;
      font-weight: 620;
    }

    .nmv-learning-path {
      border-top: 1px solid var(--nmv-line);
      border-bottom: 1px solid var(--nmv-line);
      background:
        radial-gradient(circle at 8% 0%, rgba(255, 149, 0, 0.11), transparent 28%),
        radial-gradient(circle at 92% 42%, rgba(168, 233, 255, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
    }

    .nmv-learning-path .nmv-section-heading {
      max-width: 1080px;
    }

    .nmv-path-overview {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-bottom: 18px;
    }

    .nmv-path-phase,
    .nmv-path-card {
      border: 1px solid var(--nmv-line);
      border-radius: 8px;
      background: rgba(13, 15, 18, 0.82);
      box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
    }

    .nmv-path-phase {
      min-height: 158px;
      padding: 20px;
    }

    .nmv-path-phase span {
      display: inline-flex;
      margin-bottom: 14px;
      color: var(--nmv-orange);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .nmv-path-phase h3 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 22px;
      line-height: 1.16;
    }

    .nmv-path-phase p {
      margin: 0;
      color: var(--nmv-muted);
      line-height: 1.55;
      font-weight: 620;
    }

    .nmv-path-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .nmv-path-card {
      position: relative;
      display: grid;
      gap: 16px;
      min-height: 292px;
      padding: 24px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
        rgba(13, 15, 18, 0.88);
    }

    .nmv-path-card::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 3px;
      background: linear-gradient(180deg, var(--nmv-orange), rgba(168, 233, 255, 0.7));
    }

    .nmv-path-card.is-capstone {
      grid-column: 1 / -1;
      min-height: 230px;
      background:
        linear-gradient(110deg, rgba(255, 149, 0, 0.16), rgba(78, 161, 255, 0.12)),
        rgba(13, 15, 18, 0.9);
    }

    .nmv-path-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
    }

    .nmv-session-number {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      color: #101215;
      background: var(--nmv-orange);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .nmv-session-group {
      color: var(--nmv-muted);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .nmv-path-card h3 {
      margin: 0;
      color: #fff;
      font-size: clamp(24px, 2.6vw, 34px);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .nmv-path-card p {
      margin: 0;
      color: var(--nmv-muted);
      line-height: 1.6;
      font-weight: 620;
    }

    .nmv-path-card ul {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .nmv-path-card li {
      color: rgba(245, 247, 251, 0.82);
      line-height: 1.5;
      font-weight: 650;
    }

    .nmv-path-card li::before {
      content: "";
      display: inline-block;
      width: 7px;
      height: 7px;
      margin: 0 10px 1px 0;
      border-radius: 50%;
      background: var(--nmv-orange);
    }

    .nmv-path-output {
      align-self: end;
      display: grid;
      gap: 6px;
      padding-top: 14px;
      border-top: 1px solid var(--nmv-line);
    }

    .nmv-path-output span {
      color: var(--nmv-orange);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .nmv-path-output strong {
      color: #fff;
      line-height: 1.45;
    }

    @media (max-width: 900px) {
      .nmv-hero-bottom {
        width: min(1220px, calc(100% - 40px));
        margin-top: -118px;
      }

      .nmv-dots {
        bottom: 146px;
      }

      .nmv-ai-layout,
      .nmv-ai-cards,
      .nmv-ai-track,
      .nmv-commitment-layout,
      .nmv-path-overview,
      .nmv-path-grid {
        grid-template-columns: 1fr;
      }

      .nmv-path-card.is-capstone {
        grid-column: auto;
      }

      .nmv-ai-panel {
        min-height: auto;
      }

      .nmv-ai-cta {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 560px) {
      .nmv-hero {
        padding-top: 0;
      }

      .nmv-hero-media {
        min-height: 0;
        aspect-ratio: 16 / 9;
      }

      .nmv-hero-bottom {
        margin-top: 18px;
      }

      .nmv-dots {
        bottom: 16px;
      }

      .nmv-ai-panel,
      .nmv-ai-card,
      .nmv-ai-step,
      .nmv-ai-cta,
      .nmv-mentor-card,
      .nmv-commitment-list li,
      .nmv-path-phase,
      .nmv-path-card {
        padding: 18px;
      }
    }



