:root {
      --gold: #ffae00;
      --gold-dim: rgba(255, 174, 0, .12);
      --gold-mid: rgba(255, 174, 0, .3);
      --ink: #0e0e0e;
      --ink2: #1c1c1c;
      --muted: #717171;
      --muted2: #a0a0a0;
      --line: #e8e8e8;
      --bg: #ffffff;
      --bg-soft: #f9f8f6;
      --max: 1160px;
      --r: 12px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', -apple-system, sans-serif;
      background: var(--bg);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
      font-size: 15.5px;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: 0;
      background: none;
      color: inherit;
    }

    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ─── HEADER ─── */
    header {
      position: sticky;
      top: 0;
      z-index: 80;
      background: rgba(255, 255, 255, .9);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 66px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .brand img {
      height: 30px;
      width: auto;
    }

    .brand-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 17px;
      letter-spacing: -.01em;
    }

    .brand-tag {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold-mid);
      padding: 2px 7px;
      border-radius: 4px;
      margin-left: 4px;
    }

    nav ul {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    nav a {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--muted);
      transition: color .15s;
    }

    nav a:hover {
      color: var(--ink);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 18px;
      font-size: 13.5px;
      font-weight: 500;
      border-radius: 8px;
      transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
      pointer-events: none;
      z-index: 0;
    }

    .btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .btn-ghost {
      color: var(--ink);
    }

    .btn-ghost:hover {
      box-shadow: none;
      transform: translateY(-1px);
    }

    .btn-ghost:hover {
      color: var(--gold);
    }

    .btn-ink {
      background: var(--ink);
      color: #fff;
    }

    .btn-ink:hover {
      background: #222;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--ink);
      font-weight: 600;
    }

    .btn-gold:hover {
      background: #e6a000;
    }

    .btn-outline {
      border: 1.5px solid var(--ink);
      color: var(--ink);
    }

    .btn-outline:hover {
      background: var(--ink);
      color: #fff;
    }

    .btn-outline-gold {
      border: 1.5px solid var(--gold);
      color: var(--ink);
    }

    .btn-outline-gold:hover {
      background: var(--gold);
    }

    .hamb {
      display: none;
      width: 38px;
      height: 38px;
      border: 1px solid var(--line);
      border-radius: 8px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4.5px;
    }

    .hamb i {
      display: block;
      width: 15px;
      height: 1.5px;
      background: var(--ink);
      border-radius: 2px;
    }

    /* ─── HERO ─── */
    .hero {
      padding: 56px 0 48px;
      border-bottom: 1px solid var(--line);
      position: relative;
      overflow: hidden;
    }

    .hero-bg-line {
      position: absolute;
      right: -100px;
      top: -60px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1px solid var(--line);
      pointer-events: none;
      opacity: .6;
      will-change: transform;
    }

    .hero-bg-line2 {
      position: absolute;
      right: 60px;
      top: 40px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      border: 1px solid var(--gold-mid);
      pointer-events: none;
      will-change: transform;
    }

    .hero-bg-line2 {
      position: absolute;
      right: 60px;
      top: 40px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      border: 1px solid var(--gold-mid);
      pointer-events: none;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: .03em;
      margin-bottom: 22px;
    }

    .pill-dot {
      width: 7px;
      height: 7px;
      background: var(--gold);
      border-radius: 50%;
    }

    h1.headline {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(38px, 5.5vw, 70px);
      line-height: 1.04;
      letter-spacing: -.02em;
      font-weight: 400;
      max-width: 820px;
      margin-bottom: 22px;
    }

    h1.headline em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 16.5px;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.65;
    }

    .hero-ctas {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 36px;
    }

    /* ─── 3-TRACK STRIP ─── */
    .track-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      margin-top: 40px;
    }

    .track-item {
      padding: 28px 0;
      border-right: 1px solid var(--line);
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding-right: 28px;
      transition: transform .25s ease;
    }

    .track-item:hover {
      transform: translateY(-3px);
    }

    .track-item:first-child {
      padding-left: 0;
    }

    .track-item:last-child {
      border-right: 0;
      padding-right: 0;
      padding-left: 28px;
    }

    .track-item:nth-child(2) {
      padding-left: 28px;
    }

    .track-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--gold-dim);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
    }

    .track-info .tk {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 3px;
    }

    .track-info .tv {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -.01em;
    }

    .track-info .ts {
      font-size: 13px;
      color: var(--muted);
      margin-top: 2px;
    }

    /* ─── SECTIONS ─── */
    section {
      padding: 56px 0;
    }

    .sec-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sec-label::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--gold);
    }

    h2.section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(28px, 3.8vw, 44px);
      font-weight: 400;
      letter-spacing: -.02em;
      line-height: 1.1;
      max-width: 680px;
    }

    .sec-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .sec-sub {
      color: var(--muted);
      max-width: 360px;
      font-size: 14.5px;
      line-height: 1.65;
    }

    /* ─── MASTERCLASS ─── */
    .mc-section {
      background: var(--bg);
    }

    .mc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--line);
      border-radius: var(--r);
      overflow: hidden;
    }

    .mc-card {
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      border-right: 1px solid var(--line);
      position: relative;
      transition: background .2s;
      min-height: 340px;
    }

    .mc-card:last-child {
      border-right: 0;
    }

    .mc-card:hover {
      background: var(--bg-soft);
    }

    .mc-number {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 400;
      color: var(--muted2);
      letter-spacing: .08em;
      margin-bottom: 20px;
    }

    .mc-date-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
      margin-bottom: 16px;
    }

    .mc-date-badge .live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .4;
      }
    }

    .mc-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -.01em;
      margin-bottom: 10px;
    }

    .mc-by {
      font-size: 13.5px;
      color: var(--muted);
      margin-bottom: 2px;
    }

    .mc-by strong {
      color: var(--ink);
      font-weight: 600;
    }

    .mc-cred {
      font-size: 11.5px;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: .04em;
    }

    .mc-dur {
      font-size: 12.5px;
      color: var(--muted2);
      margin-top: 14px;
    }

    .mc-foot {
      margin-top: auto;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }

    .mc-price {
      font-size: 13px;
      color: var(--muted);
    }

    .mc-price strong {
      font-size: 19px;
      color: var(--ink);
      font-weight: 600;
      display: block;
      margin-top: 1px;
    }

    /* ─── HOW MASTERCLASS WORKS ─── */
    .mc-how {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--line);
      border-radius: var(--r);
      overflow: hidden;
      margin-top: 36px;
      background: var(--bg-soft);
    }

    .mc-how-item {
      padding: 22px 24px;
      border-right: 1px solid var(--line);
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: background .2s, transform .2s ease;
    }

    .mc-how-item:hover {
      background: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 14px rgba(0, 0, 0, .03);
      border-radius: 6px;
    }

    .mc-how-item:last-child {
      border-right: 0;
    }

    .mc-how-n {
      font-family: 'Montserrat', sans-serif;
      font-size: 28px;
      color: var(--gold);
      line-height: 1;
      flex-shrink: 0;
    }

    .mc-how-text .t {
      font-size: 13.5px;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .mc-how-text .s {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ─── COURSES ─── */
    .courses-section {
      background: var(--bg-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .course-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .course-card {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 34px 30px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: border-color .2s, box-shadow .2s;
    }

    .course-card:hover {
      border-color: var(--ink);
      box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
    }

    .course-tag {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .course-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 25px;
      font-weight: 400;
      letter-spacing: -.01em;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .course-author {
      font-size: 13.5px;
      color: var(--muted);
      margin-bottom: 22px;
    }

    .course-author strong {
      color: var(--ink);
      font-weight: 600;
    }

    .course-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 28px;
    }

    .course-features li {
      font-size: 13.5px;
      color: var(--muted);
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .course-features li::before {
      content: '';
      width: 5px;
      height: 5px;
      background: var(--gold);
      border-radius: 50%;
      margin-top: 8px;
      flex-shrink: 0;
    }

    .course-foot {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .course-price {
      font-size: 13px;
      color: var(--muted);
    }

    .course-price strong {
      font-size: 21px;
      color: var(--ink);
      font-weight: 600;
      display: block;
      margin-top: 1px;
    }

    /* LMS pillars */
    .lms-pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--line);
      border-radius: var(--r);
      overflow: hidden;
      margin-top: 32px;
      background: var(--bg);
    }

    .lms-pillar {
      padding: 20px 22px;
      border-right: 1px solid var(--line);
      transition: background .2s, transform .2s;
    }

    .lms-pillar:hover {
      background: var(--bg-soft);
      transform: translateY(-2px);
    }

    .lms-pillar:last-child {
      border-right: 0;
    }

    .lms-pillar .ln {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .lms-pillar .lt {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .lms-pillar .ls {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ─── MASTERS ─── */
    .masters-section {
      background: var(--ink);
      color: #fff;
    }

    .masters-section .sec-label {
      color: var(--gold);
    }

    .masters-section .sec-label::before {
      background: var(--gold);
    }

    .masters-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .masters-left h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -.025em;
      max-width: 520px;
      color: #fff;
      margin-bottom: 18px;
    }

    .masters-left p {
      color: #aaa;
      font-size: 15px;
      line-height: 1.7;
      max-width: 460px;
      margin-bottom: 28px;
    }

    .masters-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .masters-features li {
      display: flex;
      gap: 12px;
      font-size: 14.5px;
      color: #ccc;
      align-items: flex-start;
    }

    .masters-features li::before {
      content: '→';
      color: var(--gold);
      font-weight: 600;
      flex-shrink: 0;
    }

    .masters-card {
      background: #191919;
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--r);
      padding: 36px;
      position: relative;
      overflow: hidden;
    }

    .masters-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
    }

    .masters-card-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 26px;
      font-weight: 400;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 6px;
    }

    .masters-card-sub {
      font-size: 13px;
      color: #777;
      margin-bottom: 28px;
    }

    .masters-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 28px;
    }

    .masters-stat {
      padding: 18px;
      border-right: 1px solid rgba(255, 255, 255, .08);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .masters-stat:nth-child(2),
    .masters-stat:nth-child(4) {
      border-right: 0;
    }

    .masters-stat:nth-child(3),
    .masters-stat:nth-child(4) {
      border-bottom: 0;
    }

    .masters-stat .sn {
      font-family: 'Montserrat', sans-serif;
      font-size: 24px;
      color: var(--gold);
    }

    .masters-stat .sl {
      font-size: 11.5px;
      color: #666;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: 4px;
    }

    .masters-card-foot {
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .masters-price-label {
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: #666;
      margin-bottom: 4px;
    }

    .masters-price-val {
      font-size: 17px;
      font-weight: 600;
      color: #fff;
    }

    /* ─── FACULTY ─── */
    .faculty-section {
      background: var(--bg-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .fac-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .fac-card {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 30px;
      transition: border-color .2s;
    }

    .fac-card:hover {
      border-color: var(--ink);
    }

    .fac-av {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--gold-dim);
      border: 2px solid var(--gold-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 15px;
      color: var(--ink);
      margin-bottom: 16px;
      letter-spacing: .02em;
    }

    .fac-card h4 {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: -.01em;
    }

    .fac-cred {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-top: 3px;
      margin-bottom: 12px;
    }

    .fac-card p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.6;
    }

    .fac-teaches {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .fac-teach-item {
      font-size: 12px;
      color: var(--muted);
      background: var(--bg-soft);
      border-radius: 5px;
      padding: 5px 9px;
      display: inline-block;
    }

    /* ─── CTA BAND ─── */
    .cta-band {
      background: var(--ink);
      color: #fff;
      padding: 64px 0;
      text-align: center;
    }

    .cta-band h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -.025em;
      color: #fff;
      max-width: 560px;
      margin: 0 auto 16px;
    }

    .cta-band h2 em {
      font-style: italic;
      color: var(--gold);
    }

    .cta-band p {
      color: #888;
      max-width: 440px;
      margin: 0 auto 36px;
      font-size: 15px;
      line-height: 1.65;
    }

    .cta-band-btns {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .cta-band .btn-outline {
      border-color: rgba(255, 255, 255, .3);
      color: #fff;
    }

    .cta-band .btn-outline:hover {
      border-color: #fff;
      background: transparent;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--line);
      padding: 56px 0 28px;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .foot-brand img {
      height: 28px;
      margin-bottom: 12px;
    }

    .foot-brand p {
      font-size: 13.5px;
      color: var(--muted);
      max-width: 280px;
      line-height: 1.65;
    }

    .foot-col h5 {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted2);
      margin-bottom: 14px;
    }

    .foot-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .foot-col a {
      font-size: 13.5px;
      color: var(--muted);
      transition: color .15s;
    }

    .foot-col a:hover {
      color: var(--ink);
    }

    .foot-bar {
      padding-top: 22px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .foot-bar span {
      font-size: 12.5px;
      color: var(--muted2);
    }

    .pay-badges {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .pay-badge {
      font-size: 11px;
      font-weight: 600;
      border: 1px solid var(--line);
      padding: 3px 8px;
      border-radius: 5px;
      color: var(--muted);
      letter-spacing: .04em;
    }

    /* ─── MODAL ─── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(14, 14, 14, .55);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 200;
      padding: 20px;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal-box {
      background: var(--bg);
      border-radius: 16px;
      padding: 36px 34px;
      max-width: 400px;
      width: 100%;
      position: relative;
      box-shadow: 0 40px 100px rgba(0, 0, 0, .22);
      animation: slideUp .22s ease;
    }

    @keyframes slideUp {
      from {
        transform: translateY(18px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--bg-soft);
      font-size: 17px;
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s;
    }

    .modal-close:hover {
      background: var(--line);
    }

    .modal-box h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 5px;
    }

    .modal-box .modal-sub {
      font-size: 13.5px;
      color: var(--muted);
      margin-bottom: 26px;
      line-height: 1.55;
    }

    .modal-label {
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
      margin-bottom: 6px;
      display: block;
    }

    .modal-input {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--line);
      border-radius: 8px;
      font-size: 14px;
      font-family: inherit;
      color: var(--ink);
      margin-bottom: 14px;
      transition: border-color .15s;
      background: var(--bg);
    }

    .modal-input:focus {
      outline: none;
      border-color: var(--gold);
    }

    .modal-submit {
      width: 100%;
      padding: 12px;
      justify-content: center;
      font-size: 14.5px;
      border-radius: 8px;
    }

    .demo-hint {
      font-size: 12px;
      color: var(--muted2);
      text-align: center;
      margin-top: 12px;
      line-height: 1.5;
    }

    .demo-hint b {
      color: var(--ink);
      font-weight: 600;
    }

    /* ─── TOAST ─── */
    .toast {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: var(--ink);
      color: #fff;
      padding: 12px 22px;
      border-radius: 8px;
      font-size: 13.5px;
      z-index: 300;
      transition: transform .25s ease;
      box-shadow: 0 10px 36px rgba(0, 0, 0, .22);
      white-space: nowrap;
    }

    .toast.show {
      transform: translateX(-50%) translateY(0);
    }

    .toast b {
      color: var(--gold);
    }

    /* ─── PROFILE PILL (logged in) ─── */
    .user-pill {
      display: none;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 500;
      padding: 7px 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      cursor: pointer;
      transition: border-color .15s;
    }

    .user-pill {
      display: none;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 500;
      padding: 7px 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      cursor: pointer;
      transition: border-color .15s;
      position: relative;
    }

    .user-pill:hover {
      border-color: var(--gold);
    }

    .user-dropdown {
      position: absolute;
      top: 100%;
      right: 0;
      min-width: 280px;
      max-width: calc(100vw - 48px);
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.12);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 100;
      margin-top: 4px;
    }

    .user-pill:hover .user-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .user-courses {
      padding: 16px;
    }

    .course-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
      font-size: 13px;
    }

    .course-item:last-child {
      border-bottom: 0;
    }

    .course-item-name {
      font-weight: 500;
    }

    .user-pill .up-av {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 700;
      color: var(--ink);
    }

    /* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
      .user-dropdown {
        position: fixed;
        top: 80px;
        right: 24px;
        left: 24px;
        max-width: none;
      }
      .user-pill:hover .user-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      nav ul,
      .nav-right .btn-ghost,
      .nav-right .btn-ink,
      #userPill {
        display: none;
      }

      .hamb {
        display: flex;
      }

      .track-strip {
        grid-template-columns: 1fr 1fr;
      }

      .track-item:last-child {
        grid-column: 1/-1;
        border-right: 0;
        border-top: 1px solid var(--line);
        padding: 20px 0 0;
      }

      .mc-grid {
        grid-template-columns: 1fr;
      }

      .mc-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .mc-card:last-child {
        border-bottom: 0;
      }

      .mc-how {
        grid-template-columns: 1fr;
      }

      .mc-how-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .mc-how-item:last-child {
        border-bottom: 0;
      }

      .course-grid {
        grid-template-columns: 1fr;
      }

      .lms-pillars {
        grid-template-columns: 1fr 1fr;
      }

      .lms-pillar:nth-child(2) {
        border-right: 0;
      }

      .lms-pillar:nth-child(1),
      .lms-pillar:nth-child(2) {
        border-bottom: 1px solid var(--line);
      }

      .masters-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .fac-grid {
        grid-template-columns: 1fr;
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }
    }

    @media (max-width: 560px) {
      .track-strip {
        grid-template-columns: 1fr;
      }

      .track-item {
        border-right: 0;
        padding-right: 0;
        border-bottom: 1px solid var(--line);
        padding-bottom: 20px;
      }

      .track-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
        padding-left: 0;
      }

      .track-item:nth-child(2) {
        padding-left: 0;
      }

      .lms-pillars {
        grid-template-columns: 1fr;
      }

      .lms-pillar {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .lms-pillar:last-child {
        border-bottom: 0;
      }

      .masters-stats {
        grid-template-columns: 1fr 1fr;
      }

      .foot-grid {
        grid-template-columns: 1fr;
      }

      .hero-bg-line,
      .hero-bg-line2 {
        display: none;
      }
    }

    /* ─── NEW ENHANCEMENT ANIMATIONS ─── */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .anim-stagger {
      animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
      opacity: 0;
    }

    /* ─── ANIMATIONS & NEW SECTIONS ─── */
    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    .float-anim {
      animation: float 6s ease-in-out infinite;
    }

    .faq-section {
      background: var(--bg);
    }

    .faq-grid {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 22px 28px;
      cursor: pointer;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item:hover {
      background: var(--bg-soft);
      border-color: var(--ink);
    }

    .faq-q {
      font-size: 16px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      letter-spacing: -.01em;
    }

    .faq-icon {
      transition: transform .3s;
      font-size: 20px;
      font-weight: 300;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-a {
      font-size: 14.5px;
      color: var(--muted);
      margin-top: 14px;
      max-height: 0;
      overflow: hidden;
      line-height: 1.6;
      max-width: 680px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.3s ease;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      margin-top: 14px;
    }

    .reviews-section {
      background: var(--bg-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .rev-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .rev-card {
      background: var(--bg);
      padding: 32px 28px;
      border: 1px solid var(--line);
      border-radius: var(--r);
      display: flex;
      flex-direction: column;
    }

    .rev-stars {
      color: var(--gold);
      font-size: 13px;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }

    .rev-text {
      font-size: 15px;
      line-height: 1.65;
      color: var(--ink);
      margin-bottom: 28px;
      font-style: italic;
    }

    .rev-author {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: auto;
    }

    .rev-av {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--gold-dim);
      border: 1px solid var(--gold-mid);
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 600;
      font-size: 15px;
    }

    .rev-name {
      font-size: 14.5px;
      font-weight: 600;
      letter-spacing: -.01em;
    }

    .rev-role {
      font-size: 12.5px;
      color: var(--muted);
      margin-top: 2px;
    }

    @media (max-width: 768px) {
      .rev-grid {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
      }

      .hero-img-wrap {
        order: -1;
      }

      .hero-img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
      }
    }

    /* Mobile nav overlay */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      top: 66px;
      background: var(--bg);
      z-index: 70;
      flex-direction: column;
      padding: 24px;
      border-top: 1px solid var(--line);
      gap: 4px;
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      font-size: 18px;
      font-weight: 500;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      color: var(--ink);
      display: block;
    }

    .mobile-nav a:hover {
      color: var(--gold);
    }

    .mobile-nav .btn {
      margin-top: 16px;
      width: 100%;
      justify-content: center;
    }