﻿: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;
    overflow-x: clip;
}

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;
    overflow-x: clip;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

.fa-solid.fa-arrow-right-long {
    transform: rotate(-45deg);
}

.fa-solid.fa-arrow-right-long:hover {
    transform: rotate(0deg);
}

.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;
}

.main-site-color a {
    color: #ddb13d;
}

.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;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
}

/* â”€â”€â”€ 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: none;
    display: none;
}

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:nth-child(3n) {
    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: 72px;
    height: 72px;
    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;
}

/* Masterclass Page */
.masterclass-banner {
    background: var(--ink);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.masterclass-banner .headline {
    font-size: 56px;
    color: var(--gold);
}

.masterclass-list-section {
    padding: 80px 0;
}

.masterclass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Masterclass Inner Page */
.masterclass-inner-banner {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.masterclass-inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.masterclass-inner-banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.masterclass-inner-banner .headline {
    font-size: 48px;
    margin-bottom: 16px;
}

.masterclass-meta {
    display: flex;
    gap: 24px;
    margin: 24px 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.meta-value {
    font-size: 16px;
    font-weight: 600;
}

.masterclass-content-section {
    padding: 80px 0;
}

.masterclass-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.masterclass-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.masterclass-content ul {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.masterclass-content ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.masterclass-content ul li::before {
    content: 'âœ“';
    color: var(--gold);
    position: absolute;
    left: 0;
}

.masterclass-sidebar .faculty-card {
    background: var(--bg-soft);
    padding: 24px;
    border-radius: var(--r);
}


.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;
}

a.btn.btn-ink.mb-btn.gtn-strtd {
    color: white !important;
}

.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: calc(100% + 8px);
    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;
    display: flex;
    flex-direction: column;
}

.user-pill:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink) !important;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-bottom: none !important;
}

.dropdown-item:hover {
    background: var(--bg-soft);
    color: var(--gold) !important;
}

.dropdown-item i {
    font-size: 14px;
    width: 20px;
    margin-right: 8px;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--ink);
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s, transform 0.15s;
    margin-right: 8px;
}

.theme-toggle:hover {
    color: var(--gold) !important;
    transform: scale(1.1);
}

@media (max-width: 960px) {
    .theme-toggle {
        margin-right: 4px;
        font-size: 15px;
    }
}

.up-av {
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
    overflow: hidden;
}

.user-pill .up-av {
    width: 22px;
    height: 22px;
    font-size: 9px;
}

/* Mobile User Section */
.mobile-user-section {
    margin-top: 20px;
}

.mobile-user-toggle {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 0;
}

.mobile-user-info {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px;
}

#mobileUserAv {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    flex-shrink: 0;
    flex-grow: 0;
    overflow: hidden;
    font-size: 12px;
}

#mobileUserName {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
}

#mobileUserChevron {
    font-size: 12px;
    color: #8a8480;
    transition: transform 0.2s ease;
}

.mobile-nav .mobile-user-submenu {
    flex-direction: column;
    padding-left: 42px;
    gap: 12px;
    margin-top: 8px;
}

.mobile-nav div.mobile-user-submenu a {
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 0 !important;
    border-bottom: none !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--ink);
}

.mobile-nav .mobile-user-submenu a:hover {
    color: var(--gold);
}

.mobile-nav .mobile-user-submenu a.de-logout-trigger {
    color: #D94F3D;
}


/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 960px) {
    .wrap {
        padding: 0 16px;
    }

    .hero {
        padding: 0;
    }

    .hero .wrap {
        padding: 0;
    }

    .nav {
        height: 64px;
    }

    .brand img {
        height: 26px;
    }

    .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;
    }

    .mobile-nav {
        top: 64px;
    }

    .hero-stage {
        position: relative;
        min-height: 520px;
        margin-bottom: 0;
        padding: 0;
        border-radius: 0;
        overflow: hidden;
        background-image: var(--hero-image);
        background-size: cover;
        background-position: center;
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
    }

    .hero-stage::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.68) 45%, rgba(0, 0, 0, 0.84) 100%);
    }

    .hero-stage>div:first-child {
        position: relative;
        z-index: 1;
        max-width: 100%;
        padding: 34px 16px 30px;
    }

    .hero-stage .headline {
        color: #fff;
        font-size: clamp(30px, 8.2vw, 48px);
        line-height: 1.08;
        max-width: 100%;
    }

    .hero-stage .headline em {
        color: var(--gold);
    }

    .hero-stage .hero-sub {
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
        max-width: 100%;
    }

    .hero-stage .hero-ctas {
        margin-top: 26px;
        justify-content: flex-start;
    }

    .hero-stage .btn-ink {
        background: var(--gold);
        color: var(--ink);
    }

    .hero-stage .btn-ink:hover {
        background: #e6a000;
    }

    .hero-stage .btn-outline {
        border-color: rgba(255, 255, 255, 0.86);
        color: #fff;
    }

    .hero-stage .btn-outline:hover {
        background: #fff;
        color: var(--ink);
    }

    .hero-inner {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .hero-img-wrap {
        display: none;
    }

    .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;
    }

    .user-pill #userName {
        display: none;
    }

    .track-item {
        border-right: 0;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--line);
    }

    .hero {
        border-bottom: none;
    }

    .track-item:last-child {
        border-bottom: 1px solid var(--line);
        padding-left: 0;
        padding-bottom: 20px;
    }

    .track-item:nth-child(2) {
        padding-left: 0;
        border-bottom: none;
    }

    .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;
    }
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 60px;
    background: var(--bg);
    z-index: 70;
    flex-direction: column;
    padding: 24px;
    border-top: 1px solid var(--line);
    gap: 4px;
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex;

}

.mobile-nav a:not(.btn) {
    font-size: 18px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    display: block;
}

.mobile-nav a:not(.btn):hover {
    color: var(--gold);
}

.mobile-nav .btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

.mobile-nav .mobile-user-pill {
    display: none;
}

/* Masterclass Exclusive Classes */
.de-mc-hero-stage {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 64px;
    background: linear-gradient(180deg, rgba(10, 12, 16, 0) 0%, #0a0c10 100%), var(--hero-image) center/cover;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

.de-mc-hero-stage * {
    position: relative;
    z-index: 1;
}

.de-mc-hero-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.de-mc-steps-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 32px;
    padding: 24px 0 64px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.de-mc-steps-scroll-container::-webkit-scrollbar {
    display: none;
}

.de-mc-step-card {
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.de-mc-step-number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -20px;
    right: -10px;
}

.de-mc-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gold);
}

.de-mc-step-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.de-mc-inner-hero {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at 80% 20%, rgba(200, 160, 50, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.de-mc-inner-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.de-mc-course-highlight {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.de-mc-sticky-panel {
    position: sticky;
    top: 100px;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.de-mc-faculty-profile {
    display: flex;
    gap: 24px;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MASTERCLASS LISTING PAGE  (prefix: mcl-)
   All classes here are exclusive and conflict-free.
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ HERO BANNER (CLEAN PREMIUM) â”€â”€â”€ */
.mcl-hero-banner {
    position: relative;
    background-color: #0B0B0C;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.mcl-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-markets.jpg') center/cover no-repeat;
    opacity: 0.15;
    filter: grayscale(100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.mcl-hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255, 184, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* â”€â”€â”€ Content wrap â”€â”€â”€ */
.mcl-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px 64px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;
}

/* â”€â”€â”€ LEFT: Editorial â”€â”€â”€ */
.mcl-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mcl-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 24px;
}

.mcl-hero-title em {
    font-style: normal;
    color: var(--gold);
}

.mcl-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* CTA row */
.mcl-hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mcl-hero-cta {
    font-size: 14px;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 8px;
}

.mcl-hero-seat-note {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
}

/* â”€â”€â”€ RIGHT: Featured Card â”€â”€â”€ */
.mcl-hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mcl-featured-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.mcl-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

.mcl-fc-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}

.mcl-fc-pulse {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.mcl-fc-body {
    padding: 24px 32px 16px;
}

.mcl-fc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 16px;
}

.mcl-fc-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.mcl-fc-meta-item {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.mcl-fc-meta-item i {
    color: rgba(255, 255, 255, 0.3);
}

.mcl-fc-instructor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.mcl-fc-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.15);
    border: 1px solid rgba(255, 184, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.mcl-fc-av-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.mcl-fc-av-cred {
    font-size: 11.5px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .02em;
    margin-top: 2px;
}

.mcl-fc-action {
    padding: 0 32px 32px;
}

.mcl-fc-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.2s;
}

.mcl-fc-btn:hover {
    background: #ffd05c;
    transform: translateY(-1px);
}

/* â”€â”€â”€ Responsive â”€â”€â”€ */
@media (max-width: 992px) {
    .mcl-hero-content {
        grid-template-columns: 1fr;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .mcl-hero-right {
        max-width: 480px;
    }

    .mcl-hl-1,
    .mcl-hl-2,
    .mcl-hl-3 {
        display: none;
    }
}



/* â”€â”€â”€ SESSIONS SECTION â”€â”€â”€ */
.mcl-sessions-section {
    padding: 56px 0;
    background: var(--bg);
}

.mcl-sec-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.mcl-sec-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mcl-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
}

.mcl-card {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    transition: background .2s ease;
}

.mcl-card:last-child {
    border-right: 0;
}

.mcl-card:hover {
    background: var(--bg-soft);
}

.mcl-card--alt {
    background: var(--bg-soft);
    border-right: 1px solid var(--line);
}

.mcl-card--alt:hover {
    background: #f0ede8;
}

.mcl-card-head {
    padding: 22px 22px 18px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}

.mcl-card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.mcl-card-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    color: var(--muted2);
    letter-spacing: .1em;
}

.mcl-card-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
}

.mcl-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
    display: inline-block;
}

.mcl-card-subject {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.mcl-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-bottom: 14px;
    color: var(--ink);
}

.mcl-card-instructor {
    display: flex;
    gap: 10px;
    align-items: center;
}

.mcl-instr-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1.5px solid var(--gold-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    color: var(--ink);
}

.mcl-instr-name {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--ink);
}

.mcl-instr-cred {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-top: 1px;
}

.mcl-card-body {
    padding: 16px 22px;
    flex: 1;
}

.mcl-card-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mcl-card-points li {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.mcl-card-points li::before {
    content: 'â†’';
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.mcl-card-foot {
    padding: 14px 22px;
    border-top: 1px solid var(--line);
}

.mcl-card-dur {
    font-size: 12px;
    color: var(--muted2);
    margin-bottom: 14px;
}

.mcl-card-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.mcl-card-price {
    font-size: 12.5px;
    color: var(--muted);
}

.mcl-card-price strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    display: block;
    margin-top: 2px;
}

.mcl-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.mcl-detail-btn {
    font-size: 12.5px;
    padding: 8px 14px;
}

/* â”€â”€â”€ HOW IT WORKS â”€â”€â”€ */
.mcl-how-section {
    background: var(--ink);
    color: #fff;
    padding: 52px 0 64px;
}

.mcl-how-header {
    margin-bottom: 48px;
}

.mcl-how-header .sec-label {
    color: var(--gold);
}

.mcl-how-header .sec-label::before {
    background: var(--gold);
}

.mcl-how-heading {
    color: #fff;
    margin-top: 10px;
}

/* â”€â”€â”€ TIMELINE SHELL â”€â”€â”€ */
.mcl-timeline {
    position: relative;
    padding-top: 0;
}

/* â”€â”€â”€ TRACK (grey line) â”€â”€â”€ */
.mcl-timeline-track {
    position: relative;
    height: 3px;
    background: rgba(255, 255, 255, .10);
    border-radius: 99px;
    margin: 0 auto;
    overflow: hidden;
}

/* â”€â”€â”€ FILL (gold progress bar, width driven by JS) â”€â”€â”€ */
.mcl-timeline-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), #ffcf60);
    border-radius: 99px;
    transition: width .12s linear;
}

/* â”€â”€â”€ NODES ROW â”€â”€â”€ */
.mcl-timeline-nodes {
    display: flex;
    justify-content: space-between;
    margin-top: -18px;
    /* overlap the track */
    padding: 0 0;
    position: relative;
    z-index: 2;
}

.mcl-timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* First node left-align its circle, last right-align */
.mcl-timeline-node:first-child {
    align-items: flex-start;
}

.mcl-timeline-node:last-child {
    align-items: flex-end;
}

.mcl-tl-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, .2);
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .35s, background .35s, box-shadow .35s;
}

.mcl-tl-circle.is-active {
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(255, 174, 0, .15);
}

.mcl-tl-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    transition: color .35s;
}

.mcl-tl-circle.is-active .mcl-tl-num {
    color: var(--ink);
}

/* â”€â”€â”€ PANELS ROW â”€â”€â”€ */
.mcl-timeline-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 32px;
    margin-top: 28px;
}

.mcl-tl-panel {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 24px 22px;
    opacity: .35;
    transform: translateY(10px);
    transition: opacity .45s ease, transform .45s ease, border-color .35s, background .35s;
}

.mcl-tl-panel.is-active {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(255, 174, 0, .25);
    background: rgba(255, 174, 0, .04);
}

.mcl-tl-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.mcl-tl-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.mcl-tl-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
}

.mcl-tl-desc strong {
    color: var(--gold);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 720px) {
    .mcl-timeline-panels {
        grid-template-columns: 1fr;
        gap: 12px 0;
    }

    .mcl-timeline-nodes {
        display: none;
    }

    .mcl-timeline-track {
        display: none;
    }

    .mcl-tl-panel {
        opacity: 1;
        transform: none;
    }
}

/* â”€â”€â”€ TRUST STRIP â”€â”€â”€ */
.mcl-trust-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
}

.mcl-trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.mcl-trust-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.mcl-trust-num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 5px;
}

.mcl-trust-label {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.mcl-trust-divider {
    width: 1px;
    height: 56px;
    background: var(--line);
    flex-shrink: 0;
}

/* â”€â”€â”€ FAQ â”€â”€â”€ */
.mcl-faq-section {
    padding: 56px 0;
    background: var(--bg);
}

.mcl-faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mcl-faq-item {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 20px 26px;
    cursor: pointer;
    transition: all .3s ease;
}

.mcl-faq-item:hover {
    background: var(--bg-soft);
    border-color: var(--ink);
}

.mcl-faq-q {
    font-size: 14.5px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: -.01em;
    color: var(--ink);
}

.mcl-faq-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform .3s;
    flex-shrink: 0;
    color: var(--muted);
}

.mcl-faq-item.open .mcl-faq-icon {
    transform: rotate(45deg);
}

.mcl-faq-a {
    font-size: 14px;
    color: var(--muted);
    max-height: 0;
    overflow: hidden;
    line-height: 1.65;
    transition: max-height .4s ease, margin-top .3s ease;
}

.mcl-faq-item.open .mcl-faq-a {
    max-height: 200px;
    margin-top: 14px;
}

/* â”€â”€â”€ Responsive: Masterclass Listing â”€â”€â”€ */
@media (max-width: 992px) {
    .mcl-hero-banner {
        padding: 0;
    }

    .mcl-cards-grid {
        grid-template-columns: 1fr;
    }

    .mcl-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .mcl-card:last-child {
        border-bottom: 0;
    }

    .mcl-how-grid {
        flex-direction: column;
        gap: 16px;
    }

    .mcl-how-connector {
        display: none;
    }

    .mcl-trust-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .mcl-trust-divider {
        display: none;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MASTERCLASS INNER / DETAIL PAGE  (prefix: mcli-)
   All classes here are exclusive and conflict-free.
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ HERO REDESIGN (CLEAN PREMIUM) â”€â”€â”€ */
.mcli-hero {
    position: relative;
    background-color: #0B0B0C;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.mcli-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mcli-bg) center/cover no-repeat;
    opacity: 0.15;
    filter: grayscale(100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.mcli-hero-mesh {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255, 184, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.mcli-hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}

.mcli-hero-vignette {
    display: none;
}

.mcli-hero-orb {
    display: none;
}

/* Animations */
.mcli-animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* â”€â”€â”€ HERO WRAP â”€â”€â”€ */
.mcli-hero-wrap {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
    padding: 72px 0;
    color: #fff;
}

/* Back link */
.mcli-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color .2s;
}

.mcli-back:hover {
    color: var(--gold);
}

/* Subject badge */
.mcli-hero-subject {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
}

.mcli-hero-subject-icon {
    display: none;
}

/* Heading */
.mcli-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 32px;
}

/* Instructor row */
.mcli-hero-instr-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.mcli-hero-instr-img-wrap {
    position: relative;
    width: 48px;
    height: 48px;
}

.mcli-hero-instr-img-wrap::after {
    display: none;
}

.mcli-hero-instr-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mcli-hero-instr-av {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.mcli-hero-instr-name {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
}

.mcli-hero-instr-name strong {
    color: #fff;
    font-weight: 600;
}

.mcli-hero-instr-cred {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .02em;
    margin-top: 4px;
}

/* Chips */
.mcli-hero-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mcli-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.mcli-chip.glass-chip {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .8);
}

.mcli-chip.status-chip {
    background: rgba(42, 157, 92, 0.1);
    border: 1px solid rgba(42, 157, 92, 0.2);
    color: #2a9d5c;
}

.mcli-chip-icon {
    color: var(--gold);
    font-size: 14px;
    opacity: 0.8;
}

/* â”€â”€â”€ HERO RIGHT: Price card â”€â”€â”€ */
.mcli-hero-right {
    position: relative;
}

.mcli-glass-panel {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.mcli-glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

.mcli-hpc-glow {
    display: none;
}

/* Prominent date bar at the top of the card */
.mcli-hpc-session-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .03em;
}

.mcli-hpc-date-pulse {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* Centered price block */
.mcli-hpc-price-block {
    text-align: center;
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mcli-hpc-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 16px;
}

.mcli-hpc-price {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.mcli-currency {
    font-size: 24px;
    margin-top: 6px;
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.6);
}

.mcli-hpc-note {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mcli-hpc-action {
    padding: 0 24px 32px;
}

.mcli-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    background: var(--gold);
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.mcli-btn-primary:hover {
    background: #ffd05c;
    transform: translateY(-1px);
}

.mcli-btn-glow {
    /* removed glow */
}

.mcli-btn-glass {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    font-weight: 600;
}

.mcli-hpc-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, .04);
}

.mcli-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
}

.mcli-meta-item i {
    color: rgba(255, 255, 255, .3);
    font-size: 14px;
}

.mcli-meta-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.08);
}

/* â”€â”€â”€ Responsive adjustments â”€â”€â”€ */
@media (max-width: 992px) {
    .mcli-hero-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 20px;
    }
}


/* â”€â”€â”€ BODY LAYOUT â”€â”€â”€ */
.mcli-body {
    background: var(--bg);
    padding: 60px 0 80px;
    border-bottom: 1px solid var(--line);
}

.mcli-body-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0 52px;
    align-items: start;
}

/* â”€â”€â”€ CONTENT BLOCKS â”€â”€â”€ */
.mcli-block {
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 44px;
}

.mcli-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mcli-block-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -.015em;
    color: var(--ink);
    margin-bottom: 24px;
}

/* Learn list */
.mcli-learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}

.mcli-learn-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(0, 0, 0, .72);
    line-height: 1.55;
}

.mcli-learn-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 174, 0, .12);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Instructor card */
.mcli-instr-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
}

.mcli-instr-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.mcli-instr-card-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 174, 0, .3);
    flex-shrink: 0;
}

.mcli-instr-card-av {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 174, 0, .1);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.mcli-instr-card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.mcli-instr-card-cred {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 3px;
}

.mcli-instr-card-bio {
    font-size: 14px;
    color: rgba(0, 0, 0, .6);
    line-height: 1.65;
    margin: 0;
}

/* Who this is for */
.mcli-whom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mcli-whom-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(0, 0, 0, .72);
    line-height: 1.5;
}

.mcli-whom-dot {
    font-size: 14px;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* â”€â”€â”€ 3-Step process â”€â”€â”€ */
.mcli-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mcli-step {
    display: grid;
    grid-template-columns: 36px 2px 1fr;
    gap: 0 16px;
    align-items: start;
}

.mcli-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
    z-index: 1;
}

.mcli-step-line {
    width: 2px;
    background: rgba(255, 174, 0, .25);
    height: 100%;
    min-height: 48px;
    justify-self: center;
}

.mcli-step-line--last {
    background: transparent;
}

.mcli-step-content {
    padding: 6px 0 28px;
}

.mcli-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.mcli-step-sub {
    font-size: 13.5px;
    color: rgba(0, 0, 0, .55);
    line-height: 1.55;
}

/* â”€â”€â”€ STICKY REGISTRATION PANEL â”€â”€â”€ */
.mcli-body-right {
    position: sticky;
    top: 90px;
}

.mcli-reg-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .07);
}

.mcli-reg-head {
    background: var(--ink);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mcli-reg-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mcli-reg-per {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 4px;
}

.mcli-reg-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mcli-reg-note-sm {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
}

.mcli-reg-details {
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mcli-reg-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mcli-reg-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.mcli-reg-lbl {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(0, 0, 0, .38);
    margin-bottom: 1px;
}

.mcli-reg-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.mcli-reg-seats-wrap {
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
}

.mcli-reg-seats-lbl {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(0, 0, 0, .38);
    margin-bottom: 10px;
}

.mcli-reg-seats-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.mcli-seat-btn {
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 300;
    color: var(--ink);
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
}

.mcli-seat-btn:hover {
    background: rgba(0, 0, 0, .05);
}

.mcli-seats-input {
    flex: 1;
    border: none;
    background: none;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    -moz-appearance: textfield;
}

.mcli-seats-input::-webkit-outer-spin-button,
.mcli-seats-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.mcli-reg-total {
    padding: 14px 22px;
    font-size: 14px;
    color: rgba(0, 0, 0, .5);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mcli-reg-total strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
}

.mcli-reg-cta {
    display: block;
    width: calc(100% - 44px);
    margin: 18px 22px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    padding: 13px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.mcli-reg-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 22px;
    font-size: 12px;
    color: rgba(0, 0, 0, .45);
    line-height: 1.5;
}

.mcli-reg-guarantee:first-of-type {
    padding-top: 16px;
}

.mcli-reg-guarantee:last-child {
    padding-bottom: 20px;
}

/* â”€â”€â”€ OTHER SESSIONS â”€â”€â”€ */
.mcli-other-section {
    background: var(--ink);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.mcli-other-head {
    margin-bottom: 36px;
}

.mcli-other-head .sec-label {
    color: var(--gold);
}

.mcli-other-head .sec-label::before {
    background: var(--gold);
}

.mcli-other-head .section-title {
    color: #fff;
    margin-top: 10px;
}

.mcli-other-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mcli-other-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color .2s, background .2s;
}

.mcli-other-card:hover {
    border-color: rgba(255, 174, 0, .2);
    background: rgba(255, 174, 0, .03);
}

.mcli-other-num {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(255, 174, 0, .6);
}

.mcli-other-subject {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
}

.mcli-other-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1.2;
    margin: 4px 0 0;
}

.mcli-other-instr {
    font-size: 12.5px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .03em;
}

.mcli-other-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.mcli-other-date {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
}

.mcli-other-price {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.mcli-other-btn {
    margin-top: auto;
    font-size: 12.5px;
    color: #FFC107;
    padding: 9px 18px;
    align-self: flex-start;
}

.mcli-other-btn.btn-outline {
    margin-top: 10px;
    border: 1.5px solid #FFC107;
}

/* Shared live dot */
.mcli-live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

/* â”€â”€â”€ Responsive â”€â”€â”€ */
@media (max-width: 992px) {
    .mcli-hero-wrap {
        grid-template-columns: 1fr;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .track-strip {
        padding: 0px 24px;
        padding-top: 15px;
        padding-bottom: 20px;
    }

    section#masterclass {
        padding-top: 36px;
    }

    .mcli-hero-right {
        display: none;
    }

    /* Hide redundant hero card on mobile */
    .mcli-body-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mcli-body-right {
        position: static;
        top: auto;
    }

    .mcli-learn-list {
        grid-template-columns: 1fr;
    }

    .mcli-other-grid {
        grid-template-columns: 1fr;
    }

    .mcli-hl-1,
    .mcli-hl-2 {
        display: none;
    }
}

@media (max-width: 560px) {
    .mcli-hero-chips {
        gap: 6px;
    }

    .mcli-chip {
        font-size: 11.5px;
        padding: 5px 10px;
    }

    .mcli-reg-price {
        font-size: 40px;
    }

    .mcli-hpc-price {
        font-size: 36px;
    }
}

}


/* ==========================================================================
   IMPROVED PREMIUM MASTERCLASS & NEW COURSES STYLES
   ========================================================================== */

/* â”€â”€â”€ Premium Glassmorphism & Hover Upgrades for Masterclass (mcl- / mcli-) â”€â”€â”€ */
.mcl-card,
.mcl-hero-card,
.mcli-hero-price-card,
.mcli-reg-panel {
    background: rgba(20, 20, 20, 0.75) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 174, 0, 0.15) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mcl-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(255, 174, 0, 0.4) !important;
    box-shadow: 0 30px 60px rgba(255, 174, 0, 0.08), 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.mcl-hero-card:hover,
.mcli-hero-price-card:hover,
.mcli-reg-panel:hover {
    border-color: rgba(255, 174, 0, 0.3) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.mcl-timeline-node.is-active .mcl-tl-circle {
    box-shadow: 0 0 20px var(--gold);
    background: var(--gold) !important;
}

.mcl-tl-panel {
    transition: all 0.4s ease;
    opacity: 0.3;
    transform: scale(0.95);
}

.mcl-tl-panel.is-active {
    opacity: 1;
    transform: scale(1);
}

/* â”€â”€â”€ Online Courses Listing Styles (prefix: csl-) â”€â”€â”€ */
.csl-hero-banner {
    position: relative;
    display: block;
    background:
        linear-gradient(125deg, rgba(10, 12, 18, 0.98) 0%, rgba(18, 22, 33, 0.95) 50%, rgba(10, 12, 18, 0.98) 100%),
        url('../images/hero-charts.jpg') center/cover no-repeat;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.csl-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 30%, rgba(255, 174, 0, .08) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 174, 0, .04) 0%, transparent 45%);
    pointer-events: none;
}

.csl-hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .3;
}

.csl-hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.csl-hl {
    position: absolute;
    display: block;
    background: linear-gradient(90deg, transparent, rgba(255, 174, 0, .10), transparent);
    height: 1px;
    width: 60%;
}

.csl-hl-1 {
    top: 30%;
    left: 35%;
    transform: rotate(-12deg);
}

.csl-hl-2 {
    top: 58%;
    left: 38%;
    transform: rotate(-12deg);
    width: 50%;
    opacity: .6;
}

.csl-hl-3 {
    top: 76%;
    left: 32%;
    transform: rotate(-12deg);
    width: 40%;
    opacity: .3;
}

.csl-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px 56px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
    color: #fff;
}

.csl-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.csl-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.csl-hero-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.csl-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 3.8vw, 54px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.025em;
    color: #fff;
    margin-bottom: 18px;
}

.csl-hero-title em {
    font-style: italic;
    color: var(--gold);
}

.csl-hero-sub {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .65);
    max-width: 480px;
    line-height: 1.68;
    margin-bottom: 28px;
}

.csl-hero-creds {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.csl-hero-cred-chip {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.csl-hero-cred-sep {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .4);
    margin-left: 6px;
}

.csl-hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.csl-hero-cta {
    padding: 13px 26px;
    font-size: 14.5px;
}

.csl-hero-seat-note {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
}

.csl-hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.csl-hero-card {
    padding: 30px;
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.csl-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.csl-hero-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
}

.csl-hero-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 500;
    color: #fff;
}

.csl-hero-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
}

.csl-hero-card-instructor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.csl-hero-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 174, 0, .12);
    border: 1px solid rgba(255, 174, 0, .3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.csl-hero-av-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
}

.csl-hero-av-cred {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.csl-hero-card-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
}

.csl-hero-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: var(--r);
    padding: 18px 24px;
}

.csl-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.csl-hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.1;
}

.csl-hero-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 3px;
}

.csl-hero-stat-div {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, .08);
}

.csl-sessions-section {
    background: #0b0c10;
    color: #fff;
    padding: 80px 0;
}

.csl-sec-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.csl-sec-head .sec-label {
    margin-bottom: 8px;
}

.csl-sec-head .section-title {
    color: #fff;
}

.csl-sec-head .sec-sub {
    color: rgba(255, 255, 255, .5);
    max-width: 420px;
}

.csl-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.csl-card {
    border-radius: var(--r);
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.csl-card-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.csl-card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.csl-card-count {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
}

.csl-card-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    background: rgba(255, 174, 0, .06);
    border: 1px solid rgba(255, 174, 0, .15);
    padding: 3px 10px;
    border-radius: 12px;
}

.csl-card-subject {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
}

.csl-card-instructor {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.csl-instr-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
}

.csl-instr-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.csl-instr-cred {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.csl-card-body {
    margin-top: 24px;
    flex-grow: 1;
}

.csl-card-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.csl-card-points li {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.csl-card-points li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.csl-card-foot {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.csl-card-dur {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .4);
    font-weight: 500;
}

.csl-card-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.csl-card-price {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .4);
}

.csl-card-price strong {
    display: block;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-top: 2px;
}

.csl-card-actions {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    justify-content: flex-end;
}

.csl-resume-btn {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 174, 0, 0.3);
}

.csl-resume-btn:hover {
    box-shadow: 0 0 25px rgba(255, 174, 0, 0.5);
    background: #e6a000;
}

/* Timeline */
.csl-how-section {
    background: #0f1016;
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 80px 0;
    color: #fff;
}

.csl-how-header {
    text-align: center;
    margin-bottom: 64px;
}

.csl-how-header .sec-label {
    justify-content: center;
}

.csl-how-heading {
    color: #fff;
    margin: 0 auto;
}

.csl-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.csl-timeline-track {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, .05);
}

.csl-timeline-fill {
    height: 100%;
    background: var(--gold);
    width: 0;
    transition: width 0.1s linear;
}

.csl-timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.csl-tl-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1c1c1c;
    border: 2px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.csl-tl-circle.is-active {
    border-color: var(--gold);
    color: var(--ink);
}

.csl-timeline-panels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.csl-tl-panel {
    text-align: center;
}

.csl-tl-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.csl-tl-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.csl-tl-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5;
}

/* Trust Strip */
.csl-trust-section {
    background: #0b0c10;
    border-top: 1px solid rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    padding: 40px 0;
    color: #fff;
}

.csl-trust-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}

.csl-trust-item {
    text-align: center;
}

.csl-trust-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.csl-trust-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 6px;
    line-height: 1.4;
}

.csl-trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, .08);
}

/* FAQ */
.csl-faq-section {
    background: #0b0c10;
    padding: 80px 0;
    color: #fff;
}

.csl-sec-head--center {
    justify-content: center;
    text-align: center;
}

.csl-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.csl-faq-item {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: var(--r);
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.csl-faq-item:hover {
    border-color: rgba(255, 174, 0, .25);
    background: rgba(255, 255, 255, .03);
}

.csl-faq-q {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.csl-faq-icon {
    font-size: 18px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.csl-faq-a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
}

.csl-faq-item.open {
    border-color: rgba(255, 174, 0, .35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.csl-faq-item.open .csl-faq-icon {
    transform: rotate(45deg);
}

.csl-faq-item.open .csl-faq-a {
    margin-top: 12px;
    max-height: 300px;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}


/* â”€â”€â”€ Course Inner LMS Player (prefix: csi-) â”€â”€â”€ */
.csi-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: calc(100vh - 66px);
    background: #0b0c10;
    color: #fff;
}

/* Sidebar */
.csi-sidebar {
    background: rgba(14, 15, 20, 0.98);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    z-index: 10;
}

.csi-sidebar-header {
    padding: 30px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.csi-back-link {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    display: inline-block;
    margin-bottom: 14px;
    transition: color 0.2s;
}

.csi-back-link:hover {
    color: var(--gold);
}

.csi-course-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
}

.csi-instructor {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 20px;
}

.csi-progress-box {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: 12px;
}

.csi-progress-lbl {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .5);
}

.csi-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, .08);
    border-radius: 2px;
    overflow: hidden;
}

.csi-progress-bar {
    height: 100%;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.csi-sidebar-nav {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px 0;
}

.csi-chapter-group {
    margin-bottom: 24px;
}

.csi-chapter-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 0 24px;
    margin-bottom: 8px;
}

.csi-module-list {
    list-style: none;
}

.csi-module-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .6);
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.csi-module-item:hover {
    background: rgba(255, 255, 255, .02);
    color: #fff;
}

.csi-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    position: relative;
}

/* Module States */
.csi-module-item.is-completed {
    color: rgba(255, 255, 255, .4);
}

.csi-module-item.is-completed .csi-status-dot {
    background: var(--gold);
}

.csi-module-item.is-active {
    color: #fff;
    font-weight: 500;
}

.csi-module-item.is-active .csi-status-dot {
    background: #0088ff;
    box-shadow: 0 0 8px rgba(0, 136, 255, 0.8);
}

.csi-module-item.is-locked {
    opacity: 0.4;
    cursor: not-allowed;
}

.csi-module-item.is-locked:hover {
    background: transparent;
    color: rgba(255, 255, 255, .6);
}

.csi-module-item.is-viewing {
    background: rgba(255, 174, 0, 0.04);
    border-left-color: var(--gold);
    color: #fff;
}

/* Player area */
.csi-player {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 66px);
    overflow-y: auto;
    background: #0f1016;
}

.csi-player-header {
    padding: 24px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    background: rgba(14, 15, 22, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.csi-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(255, 174, 0, .1);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: .05em;
    margin-bottom: 6px;
}

.csi-player-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.csi-gates-wrap {
    display: flex;
    gap: 10px;
}

.csi-gate-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    transition: all 0.3s ease;
}

.csi-gate-pill.is-passed {
    background: rgba(46, 213, 115, 0.1);
    border-color: rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.csi-gate-icon {
    font-size: 13px;
}

.csi-player-content {
    flex-grow: 1;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Video Card */
.csi-video-container {
    background: #000;
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
}

.csi-video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.csi-video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.csi-video-overlay-ctrl {
    padding: 20px 24px;
    background: rgba(14, 15, 22, 0.9);
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.play-icon {
    font-size: 10px;
    margin-right: 4px;
}

.csi-video-note {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

/* Assignment Card */
.csi-assignment-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: var(--r);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.csi-assignment-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.csi-assignment-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 20px;
}

.csi-assignment-input {
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 14px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.csi-assignment-input:focus {
    outline: none;
    border-color: rgba(255, 174, 0, .5);
}

.csi-file-upload-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.csi-file-btn {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.csi-file-btn:hover {
    background: rgba(255, 255, 255, .08);
}

.csi-file-name {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .4);
}

/* Reading / Notes section */
.csi-reading-section {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    font-size: 14.5px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 32px;
}

.csi-reading-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}

.csi-reading-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 12px;
}

.csi-reading-section p {
    margin-bottom: 16px;
}

.csi-reading-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.csi-reading-section li {
    margin-bottom: 8px;
}

/* Player Footer */
.csi-player-footer {
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, .04);
    background: rgba(14, 15, 22, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    bottom: 0;
    z-index: 5;
}

/* CSS Toast animation overrides */
.toast {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 174, 0, .25);
    background: rgba(14, 14, 14, 0.9);
    backdrop-filter: blur(10px);
}

/* Resuming course headers display */
.csl-resume-btn,
.csl-card .course-progress {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .csl-hero-content {
        grid-template-columns: 1fr;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .csl-hero-right {
        max-width: 480px;
    }

    .csl-cards-grid {
        grid-template-columns: 1fr;
    }

    .csl-timeline-panels {
        grid-template-columns: repeat(2, 1fr);
    }

    .csl-timeline-track {
        display: none;
    }

    .csl-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .csl-trust-divider {
        display: none;
    }

    .csl-hl-1,
    .csl-hl-2 {
        display: none;
    }

    .csi-container {
        grid-template-columns: 1fr;
    }

    .csi-sidebar {
        height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .csi-player {
        height: auto;
    }
}

@media (max-width: 560px) {
    .csl-card {
        padding: 24px;
    }

    .csl-card-price-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .csl-card-actions {
        width: 100%;
    }

    .csi-player-header {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .csi-player-content {
        padding: 24px 20px;
    }

    .csi-player-footer {
        padding: 18px 20px;
    }
}