/* ── Section ─────────────────────────────────────────────────────────────── */
/* relative overflow-hidden bg-cloud py-24 md:py-32 */
.gans-lms-scene {
  position: relative;
  overflow: hidden;
  background: var(--cloud);
  padding: 96px 0;
}

@media (min-width: 768px) {
  .gans-lms-scene {
    padding: 128px 0;
  }
}

/* mx-auto max-w-[1440px] px-8 md:px-12 */
.gans-lms-scene__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (min-width: 768px) {
  .gans-lms-scene__inner {
    padding: 0 48px;
  }
}

/* ── Top zone ────────────────────────────────────────────────────────────── */
/* grid grid-cols-1 items-center gap-12 md:grid-cols-12 md:gap-16 */
.gans-lms-scene__top {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .gans-lms-scene__top {
    grid-template-columns: repeat(12, 1fr);
    gap: 64px;
  }
}

/* ── Narrative (left) — md:col-span-5 ───────────────────────────────────── */
.gans-lms-scene__narrative {
  grid-column: 1;
}

@media (min-width: 768px) {
  .gans-lms-scene__narrative {
    grid-column: span 5;
  }
}

/* flex flex-wrap items-center gap-3 */
.gans-lms-scene__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* SectionLabel — font-display text-[10px] uppercase tracking-[0.22em] */
.gans-lms-scene__eyebrow {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold);
}

/* inline-flex items-center rounded-full border border-gold/40 px-2.5 py-1 font-display text-[10px] uppercase tracking-[0.22em] text-gold */
.gans-lms-scene__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(200, 169, 119, 0.4);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold);
}

/* mt-6 h-section text-stone */
.gans-lms-scene__title {
  margin-top: 24px;
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--stone);
}

.gans-lms-scene__title span,
.gans-lms-scene__title .highlight {
  font-weight: 500;
  color: var(--gold);
}

/* mt-7 max-w-[36rem] text-[16px] leading-[1.65] text-iron md:text-[17px] */
.gans-lms-scene__desc {
  margin-top: 28px;
  max-width: 36rem;
  font-size: 16px;
  line-height: 1.65;
  color: #666;
}

@media (min-width: 768px) {
  .gans-lms-scene__desc {
    font-size: 17px;
  }
}

/* mt-8 flex flex-wrap items-center gap-5 */
.gans-lms-scene__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

/* inline-flex h-12 items-center rounded-full bg-stone-deep px-7 text-[13px] font-medium tracking-wide text-cloud transition-colors hover:bg-gold */
.gans-lms-scene__btn {
  display: inline-flex;
  height: 48px;
  align-items: center;
  border-radius: 9999px;
  background: var(--stone-deep);
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cloud);
  text-decoration: none;
  transition: background-color 0.2s;
}

.gans-lms-scene__btn:hover {
  background: var(--gold);
}

/* ── Mock wrap (right) — md:col-span-7 ──────────────────────────────────── */
.gans-lms-scene__mock-wrap {
  position: relative;
  grid-column: 1;
}

@media (min-width: 768px) {
  .gans-lms-scene__mock-wrap {
    grid-column: span 7;
  }
}

/* absolute -inset-8 -z-0 — gold ambient glow */
.gans-lms-scene__mock-glow {
  position: absolute;
  inset: -32px;
  z-index: 0;
  background: radial-gradient(60% 60% at 60% 40%, rgba(var(--gold-rgb), 0.10) 0%, rgba(var(--gold-rgb), 0) 70%);
  pointer-events: none;
}

/* relative overflow-hidden rounded-md border border-stone/12 bg-cloud shadow-[0_24px_60px_-30px_rgba(42,42,42,0.25)] */
.gans-lms-scene__mock {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(68, 68, 68, 0.12);
  background: var(--cloud);
  box-shadow: 0 24px 60px -30px rgba(42, 42, 42, 0.25);
  z-index: 1;
}

/* ── Mock chrome bar ─────────────────────────────────────────────────────── */
/* flex items-center justify-between border-b border-stone/10 px-5 py-3 */
.gans-lms-scene__mock-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(68, 68, 68, 0.10);
  padding: 12px 20px;
}

/* flex items-center gap-2 */
.gans-lms-scene__mock-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* block h-2 w-2 rounded-full bg-stone/20 */
.gans-lms-scene__mock-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(68, 68, 68, 0.20);
}

/* font-display text-[10px] uppercase tracking-[0.22em] text-iron */
.gans-lms-scene__mock-chrome-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #666;
}

/* block h-2 w-12 rounded-full bg-stone/8 */
.gans-lms-scene__mock-chrome-spacer {
  display: block;
  width: 48px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(68, 68, 68, 0.08);
}

/* ── Mock body ───────────────────────────────────────────────────────────── */
/* grid grid-cols-[112px_minmax(0,1fr)] sm:grid-cols-[140px_1fr] */
.gans-lms-scene__mock-body {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
}

@media (min-width: 560px) {
  .gans-lms-scene__mock-body {
    grid-template-columns: 140px 1fr;
  }
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
/* border-r border-stone/10 bg-fog/60 py-5 */
.gans-lms-scene__mock-sidebar {
  border-right: 1px solid rgba(68, 68, 68, 0.10);
  background: rgba(244, 244, 243, 0.60);
  padding: 20px 0;
  list-style: none;
}

.gans-lms-scene__mock-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* relative px-4 py-2.5 font-display text-[11.5px] tracking-[-0.005em] */
.gans-lms-scene__mock-nav-item {
  position: relative;
  padding: 10px 16px;
  font-size: 11.5px;
  font-weight: 300;
  color: #666;
}

.gans-lms-scene__mock-nav-item.is-active {
  font-weight: 500;
  color: var(--stone);
}

/* absolute left-0 top-1/2 block h-5 w-[2px] -translate-y-1/2 bg-gold */
.gans-lms-scene__mock-nav-indicator {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 2px;
  height: 20px;
  background: var(--gold);
}

/* ── Mock main ───────────────────────────────────────────────────────────── */
/* min-w-0 px-4 py-5 sm:px-5 */
.gans-lms-scene__mock-main {
  min-width: 0;
  padding: 20px 16px;
}

@media (min-width: 560px) {
  .gans-lms-scene__mock-main {
    padding: 20px;
  }
}

/* flex items-baseline justify-between */
.gans-lms-scene__mock-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

/* font-display text-[10px] uppercase tracking-[0.22em] text-gold */
.gans-lms-scene__mock-cohort {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gold);
}

/* mt-1.5 font-display text-[15px] font-medium tracking-[-0.005em] text-stone */
.gans-lms-scene__mock-welcome {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--stone);
}

/* font-display text-[10px] uppercase tracking-[0.18em] text-iron */
.gans-lms-scene__mock-active {
  font-size: 10px;
  text-transform: uppercase;
  color: #666;
}

/* mt-5 space-y-3 */
.gans-lms-scene__mock-courses {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-left: 0;
}

/* rounded-sm border border-stone/10 px-4 py-3 */
.gans-lms-scene__mock-course {
  border-radius: 2px;
  border: 1px solid rgba(68, 68, 68, 0.10);
  padding: 12px 16px;
}

/* flex items-baseline justify-between gap-3 */
.gans-lms-scene__mock-course-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

/* flex min-w-0 flex-col gap-0.5 sm:flex-row sm:items-baseline sm:gap-2 */
.gans-lms-scene__mock-course-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

@media (min-width: 560px) {
  .gans-lms-scene__mock-course-info {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
}

/* font-display text-[10.5px] uppercase tracking-[0.18em] text-iron tabular-nums */
.gans-lms-scene__mock-module {
  font-size: 10.5px;
  text-transform: uppercase;
  color: #666;
  font-variant-numeric: tabular-nums;
}

/* font-display text-[12px] font-medium tracking-[-0.005em] text-stone */
.gans-lms-scene__mock-course-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--stone);
}

/* font-display text-[9.5px] uppercase tracking-[0.18em] */
.gans-lms-scene__mock-mode {
  font-size: 9.5px;
  text-transform: uppercase;
  color: #666;
  flex-shrink: 0;
}

.gans-lms-scene__mock-mode.is-live {
  color: var(--gold);
}

/* mt-3 flex items-center gap-3 */
.gans-lms-scene__mock-progress {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* h-[3px] flex-1 rounded-full bg-stone/10 overflow-hidden */
.gans-lms-scene__mock-progress-track {
  height: 3px;
  flex: 1;
  border-radius: 9999px;
  background: rgba(68, 68, 68, 0.10);
  overflow: hidden;
}

/* h-full rounded-full bg-gold */
.gans-lms-scene__mock-progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--gold);
}

/* font-display text-[10.5px] tabular-nums text-iron */
.gans-lms-scene__mock-pct {
  font-size: 10.5px;
  color: #666;
  font-variant-numeric: tabular-nums;
}

/* mt-5 flex items-center justify-between rounded-sm bg-fog px-4 py-3 */
.gans-lms-scene__mock-next {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
  background: var(--fog);
  padding: 12px 16px;
}

/* font-display text-[11px] tracking-[-0.005em] text-stone */
.gans-lms-scene__mock-next-label {
  font-size: 11px;
  color: var(--stone);
}

/* font-display text-[10.5px] uppercase tracking-[0.18em] text-gold */
.gans-lms-scene__mock-next-status {
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Floating chip ───────────────────────────────────────────────────────── */
/* absolute -bottom-4 -right-4 hidden sm:flex rounded-full border border-stone/12 bg-cloud px-3.5 py-2 shadow items-center gap-2 */
.gans-lms-scene__chip {
  display: none;
  position: absolute;
  bottom: -16px;
  right: -16px;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(68, 68, 68, 0.12);
  background: var(--cloud);
  padding: 8px 14px;
  box-shadow: 0 8px 20px -10px rgba(42, 42, 42, 0.2);
  z-index: 2;
}

@media (min-width: 560px) {
  .gans-lms-scene__chip {
    display: flex;
  }
}

/* block h-1.5 w-1.5 rounded-full bg-gold animate-pulse */
.gans-lms-scene__chip-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--gold);
  animation: lms-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes lms-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* font-display text-[10px] uppercase tracking-[0.22em] text-stone */
.gans-lms-scene__chip-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Benefits grid ───────────────────────────────────────────────────────── */
/* mt-20 grid grid-cols-1 gap-px bg-stone/10 sm:grid-cols-2 lg:grid-cols-4 md:mt-24 */
.gans-lms-scene__benefits {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(68, 68, 68, 0.10);
  list-style: none;
  padding: 0;
}

@media (min-width: 560px) {
  .gans-lms-scene__benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .gans-lms-scene__benefits {
    margin-top: 96px;
  }
}

@media (min-width: 1024px) {
  .gans-lms-scene__benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gans-lms-scene__benefit:nth-child(5):last-child {
  grid-column: 1 / -1;
}

/* group relative flex flex-col bg-cloud px-7 py-8 transition-colors duration-300 hover:bg-fog md:px-8 md:py-10 */
.gans-lms-scene__benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cloud);
  padding: 32px 28px;
  transition: background-color 0.3s;
}

@media (min-width: 768px) {
  .gans-lms-scene__benefit {
    padding: 40px 32px;
  }
}

.gans-lms-scene__benefit:hover {
  background: var(--fog);
}

/* pointer-events-none absolute left-0 top-8 bottom-8 w-px origin-top scale-y-0 bg-gold transition-transform duration-500 group-hover:scale-y-100 */
.gans-lms-scene__benefit-indicator {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: var(--gold);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gans-lms-scene__benefit:hover .gans-lms-scene__benefit-indicator {
  transform: scaleY(1);
}

/* flex items-baseline justify-between */
.gans-lms-scene__benefit-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

/* font-display text-[10.5px] uppercase tracking-[0.22em] text-gold tabular-nums */
.gans-lms-scene__benefit-num {
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* font-display text-[10.5px] uppercase tracking-[0.22em] text-iron */
.gans-lms-scene__benefit-kicker {
  font-size: 10.5px;
  text-transform: uppercase;
  color: #666;
}

/* mt-10 font-display text-[1.0625rem] font-medium leading-[1.3] tracking-[-0.005em] text-stone */
.gans-lms-scene__benefit-title {
  margin-top: 40px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--stone);
}

/* mt-3 text-[13.5px] leading-[1.6] text-iron */
.gans-lms-scene__benefit-body {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .gans-lms-scene__mock-wrap {
    overflow: hidden;
  }
}
