/* ─────────────────────────────────────
   TOKENS — near-monochrome, one accent
───────────────────────────────────── */
:root {
  /* Dark surfaces */
  --bg: #10273d;
  --bg2: #214f7b;
  --bg3: #121d27;

  /* Light surface */
  --cream: #f0eadc;
  --cream2: #e8e1cf;
  --cream-faint2: rgb(216, 204, 175);
  --cream-faint: rgba(228, 218, 194, 0.86);

  /* Text */
  --txt: #e8e2d4;
  --txt-dim: rgba(232, 226, 212, 0.55);
  --txt-faint: rgba(232, 226, 212, 0.2);

  /* Single accent — amber only */
  --a: #a0dcff;
  --a-dark: #6eabce;
  --a-glow: rgba(110, 171, 206, 0.12);
  --a-faint: rgba(110, 171, 206, 0.86);

  /* Borders */
  --b: rgba(232, 226, 212, 0.1);
  --b2: rgba(232, 226, 212, 0.18);
  --bl: rgba(14, 14, 18, 0.12); /* on light bg */

  /* Type */
  --px: "Press Start 2P", monospace;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── SCANLINES — barely-there ─── */
.scan {
  isolation: isolate;
}
.scan::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.06) 3px,
    rgba(0, 0, 0, 0.06) 4px
  );
}
.scan > * {
  position: relative;
  z-index: 1;
}

/* ─── PIXEL BORDER — single-color, quiet ─── */
.px-border {
  border: 2px solid var(--a);
  box-shadow:
    inset 0 0 0 1px var(--bg),
    3px 3px 0 var(--a-dark);
}
.px-border--light {
  border: 2px solid var(--a-dark);
  box-shadow:
    inset 0 0 0 1px var(--cream),
    3px 3px 0 rgba(168, 110, 26, 0.4);
}

/* ─── LAYOUT ─── */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section--light {
  background: var(--cream);
  color: #0e0e12;
}
.section--blue {
  background: var(--bg);
  color: var(--txt);
}
.section--mid {
  background: var(--bg3);
}
.z1 {
  position: relative;
  z-index: 2;
}

/* ─── PIXEL LABEL ─── */
.px-label {
  font-family: var(--px);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--bg2);
  display: inline-block;
}
.px-label--dim {
  color: var(--txt-faint);
}

/* ─── CURSOR BLINK ─── */
.blink::after {
  content: "▌";
  color: var(--a);
  animation: cur 1.1s step-end infinite;
}
@keyframes cur {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes curbox {
  0%,
  100% {
    opacity: 1;
    box-shadow: 1px 1px 0 var(--a-dark);
  }
  50% {
    opacity: 0.5;
    box-shadow: -1px -1px 0 var(--a-dark);
    transform: translate(2px, 2px);
  }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--px);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 15px 26px;
  cursor: pointer;
  transition: all 0.12s;
  line-height: 1.4;
}
.btn--fill {
  background: var(--a);
  color: var(--bg);
  border: 2px solid var(--a);
  box-shadow: 3px 3px 0 var(--a-dark);
}
.btn--fill:hover {
  background: var(--a-dark);
  border-color: var(--a-dark);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--a-dark);
}
.btn--soft {
  background: var(--a);
  color: var(--bg2);
  border: 2px solid var(--a-dark);
  box-shadow: 3px 3px 0 var(--a-dark);
}
.btn--soft:hover {
  background: var(--a-dark);
  border-color: var(--a-dark);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--a-dark);
}
.btn--line {
  background: transparent;
  color: var(--txt);
  border: 2px solid var(--b2);
  box-shadow: 3px 3px 0 rgba(232, 226, 212, 0.06);
}
.btn--line:hover {
  border-color: var(--txt);
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(232, 226, 212, 0.07);
}
.btn--line-dark {
  background: transparent;
  color: #0e0e12;
  border: 2px solid rgba(14, 14, 18, 0.25);
  box-shadow: 3px 3px 0 rgba(14, 14, 18, 0.12);
}
.btn--line-dark:hover {
  border-color: rgba(14, 14, 18, 0.6);
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(14, 14, 18, 0.12);
}
.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 30px;
}
.btn-row .or {
  font-family: var(--px);
  font-size: 7px;
  color: var(--txt-faint);
}
/* ─────────────────────────────────────
   NAV
───────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(14, 14, 18, 0.96);
  border-bottom: 2px solid var(--a);
  backdrop-filter: blur(12px);
}
.nav-in {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-brand .top {
  font-family: var(--px);
  font-size: 9px;
  color: var(--a);
  letter-spacing: 0.05em;
}
.nav-brand .bot {
  font-family: var(--px);
  font-size: 7px;
  color: var(--txt-faint);
  letter-spacing: 0.06em;
}
.nav-cta {
  font-family: var(--px);
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--bg);
  background: var(--a);
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid var(--a);
  box-shadow: 2px 2px 0 var(--a-dark);
  transition: all 0.12s;
}
.nav-cta:hover {
  background: var(--a-dark);
  border-color: var(--a-dark);
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--a-dark);
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
#hero {
  padding: 0 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#heroOverlayVideo {
  background: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 5s;
}
/* Pixel grid — subtle, dark */
#hero .grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(232, 226, 212,  0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 226, 212, 0.012) 1px, transparent 1px);
  background-size: 32px 32px;
}
#final-cta .grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(232, 226, 212, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 226, 212,0.032) 1px, transparent 1px);
  background-size: 32px 32px;
}
/* Amber glow — restrained */
.hero-glow {
  position: absolute;
  top: 40%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(
    ellipse,
    rgba(212, 144, 42, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-in {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

/* Blinking "press start" */
.hero-press {
  font-family: var(--px);
  font-size: 8px;
  color: var(--a);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 44px;
  animation: pulse 1.8s step-end infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}

.hero-super {
  font-family: var(--px);
  font-size: 8px;
  color: var(--txt-dim);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 18px;
}
.hero-t1 {
  font-family: var(--px);
  font-size: clamp(14px, 2.1vw, 28px);
  line-height: 1.45;
  color: var(--txt);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.6);
  display: block;
  text-align: center;
}
.hero-t2 {
  font-family: var(--px);
  font-size: clamp(14px, 2.6vw, 36px);
  line-height: 1.45;
  color: var(--a);
  text-shadow: 3px 3px 0 var(--a-dark);
  display: block;
  text-align: center;
}
.hero-t3 {
  font-family: var(--px);
  font-size: clamp(7px, 1vw, 11px);
  color: var(--txt-dim);
  letter-spacing: 0.08em;
  display: block;
  margin-top: 16px;
  text-align: center;
}
.hero-t4 {
  margin: auto;
  font-family: var(--px);
  font-size: clamp(8px, 1.2vw, 14px);
  color: var(--bg);
  width: 90%;
  text-align: center;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 46px;
  background: var(--a);
  padding: 5px 0;
  box-shadow: 3px 3px 0 var(--a-dark);
  animation: curbox 1.1s step-end infinite;
}
.hero-support {
  margin: auto;
  font-family: var(--px);
  font-size: clamp(12px, 1vw, 14px);
  color: var(--a);
  width: 100%;
  text-align: center;
  letter-spacing: 0.08em;
  text-shadow: 1px 1px 0 var(--a-dark);
  display: block;
  padding: 5px 0;
}

.hero-support::after {
  content: "";
  display: block;
  width: 50%;
  height: 1px;

  margin: 12px auto 0;

  background: rgba(255, 255, 255, 0.8);
}
.hero-support-sub {
  font-family: var(--px);
  font-size: clamp(10px, 0.8vw, 12px);
  text-align: center;
  letter-spacing: 0.08em;
  display: block;
  padding: 10px 0;
  color: var(--txt-dim);
}
.hero-sub span {
  color: var(--a);
  font-style: normal;
}
.hero-sub {
  font-family: var(--px);
  font-size: clamp(11px, 1.4vw, 14px);
  line-height: 1.7;
  color: var(--txt-dim);
  margin-top: 28px;
  text-align: center;
}

/* Stat row */
.hero-stats-wrapper {
  margin-top: 60px;
}
.hero-stats {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 2;
  border: 1px solid var(--b);
  border-left: 2px solid var(--a);
}
.hstat {
  flex: 1;
  padding: 18px 22px;
  border-right: 1px solid var(--b);
  background: rgba(232, 226, 212, 0.015);
}
.hstat:last-child {
  border-right: none;
}
.hstat-val {
  font-family: var(--px);
  font-size: 10px;
  color: var(--a);
  display: block;
  margin-bottom: 7px;
  line-height: 1.3;
}
.hstat-key {
  font-family: var(--px);
  font-size: 6px;
  color: var(--txt-faint);
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.video-container {
  margin:auto;
  width: 90%;
  aspect-ratio: 16/9;
  position: relative;
}
.companies-students {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-content: space-evenly;
  height: 100px;
  width: 100%;
  margin: 20px;
}
.companies-students img {
  width: 80%;
}
.video-overlay {
  width: 100%;
  height: 100%;
  padding: 16px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.video-overlay > div {
  background: black;
  padding: 25px 15px;
}
.video-press {
  user-select: none;
  font-family: var(--px);
  font-size: 2rem;
  color: var(--a);
  letter-spacing: 0.08em;
  display: block;
  animation: pulse 1.8s step-end infinite;
  cursor: pointer;
}
.video-press-sub {
  user-select: none;
  font-family: var(--px);
  font-size: 1rem;
  color: var(--txt-dim);
  letter-spacing: 0.08em;
  display: block;
  text-align: center;
  cursor: pointer;
}
/* ─────────────────────────────────────
   PROBLEM
───────────────────────────────────── */
#problem {
  background: var(--bg);
}

.sec-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 52px;
}
.sec-head .tag {
  font-family: var(--px);
  font-size: 8px;
  color: var(--a);
  border: 1px solid rgba(212, 144, 42, 0.3);
  background: var(--bg2);
  padding: 7px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.light-sec-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 52px;
}
.light-sec-head .tag {
  font-family: var(--px);
  font-size: 8px;
  color: var(--a);
  border: 1px solid rgba(212, 144, 42, 0.3);
  background: var(--bg2);
  padding: 7px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--bg2)
}
.light-sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--bg)
}

.section--blue h2{
  color: var(--a);
}
.sec-head h2 em {
  font-style: italic;
  color: var(--a);
}
.light-sec-head h2 em {
  font-style: italic;
  color: var(--bg2);
}
.prob-sol-grid {
  padding: 38px 0;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
}sol

.prob-prose {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.prob-prose h2{
  font-family: var(--serif)
}

.prob-prose img {
  width:100%; 
  height:auto;
}

.prob-prose .video-highlight{
  font-family: var(--px);
  font-size:0.6rem;
}
.prob-eyebrow {
  font-family: var(--px);
  font-size: 8px;
  color: var(--a);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.prob-body {
  font-size: 15px;
  color: var(--txt-dim);
  line-height: 1.75;
}
.prob-body em {
  font-style: italic;
  color: var(--txt);
}

/* ═══════════════════════════════════════════
   DIFFERENCE
═══════════════════════════════════════════ */
#difference { background: var(--cream); color: var(--txt); }

.difference-rule {
  display: flex; align-items: center; gap: 18px;
}
.difference-rule-line { flex: 1; height: 1px; background: var(--cream-faint); }
.difference-rule span { font-family: var(--px); font-size: 8px; color: var(--bg2); white-space: nowrap; letter-spacing: .06em; }

.difference-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; }

.difference-heading {
  font-family: var(--serif); font-size: clamp(32px,3.8vw,52px);
  font-weight: 400; line-height: 1.08; margin-bottom: 20px;
  color: var(--bg) !important
}
.difference-heading em { font-style: italic; color: var(--bg2) !important; }
.difference-copy { font-family: var(--serif); font-size: 18px; line-height: 1.72; color: var(--ink2); }

.difference-items { list-style: none; }
.difference-item { padding: 20px 0; border-top: 1px solid var(--ink3); }
.difference-item:last-child { border-bottom: 1px solid var(--ink3); }
.difference-item strong {
  font-family: var(--px); font-size: 7px; letter-spacing: .06em;
  color: var(--ink); display: block; margin-bottom: 8px;
}
.difference-item p { font-size: 15px; color: var(--ink2); line-height: 1.65; }

/* ═══════════════════════════════════════════
   SOLUTION
═══════════════════════════════════════════ */
#solution { background: var(--ivory); color: var(--ink); }

.sol-rule {
  display: flex; align-items: center; gap: 18px; margin-bottom: 56px;
}
.sol-rule-line { flex: 1; height: 1px; background: var(--cream-faint); }
.sol-rule span { font-family: var(--px); font-size: 8px; color: var(--ink3); white-space: nowrap; letter-spacing: .06em; }
.sol-image{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.sol-image img{
  width:80%;
}
.sol-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; }

.sol-heading {
  font-family: var(--serif); font-size: clamp(32px,3.8vw,52px);
  font-weight: 400; line-height: 1.08; margin-bottom: 20px; color: var(--cream) !important;
}
.sol-heading em { font-style: italic; color: var(--a); }
.sol-copy { font-family: var(--sans); font-size: 18px; line-height: 1.72; color: var(--ink2); }

.sol-items { list-style: none; }
.sol-item { padding: 20px 0; border-top: 1px solid var(--bg2); }
.sol-item:last-child { border-bottom: 1px solid var(--bg2); }
.sol-item strong {
  font-family: var(--px); font-size: 9px; letter-spacing: .06em;
  color: var(--ink); display: block; margin-bottom: 8px;
}
.sol-item p { font-size: 15px; color: var(--txt-dim); line-height: 1.65; }

/* Verdict */
.verdict {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--b);
  overflow: hidden;
}
.verdict-label {
  background: var(--bg2);
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.verdict-label span {
  font-family: var(--px);
  font-size: 8px;
  color: var(--txt);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.1em;
}
.verdict-body {
  padding: 28px 36px;
}
.verdict-body p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.12;
}
.verdict-body em {
  font-style: italic;
  color: var(--bg2);
}

.video-ribbon,
.video-eyebrow {
  font-family: var(--px);
  font-size: clamp(7px, 1vw, 10px);
  text-align: center;
  color: var(--bg3);
  letter-spacing: 0.08em;
  display: block;
  margin-top: 16px;
}
.video-eyebrow {
  color: var(--txt-dim);
  font-family: var(--px);
  font-size: clamp(9px, 1.1vw, 12px);
  text-align: left;
  margin-bottom: 10px;
}
.video-intro img {
  width: 100%;
}

.video-cta {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-intro a {
  margin: 20px auto;
  align-self: center;
}
/* ─────────────────────────────────────
   CURRICULUM — Stage Select
───────────────────────────────────── */
#curriculum {
  background: var(--cream);
  overflow: visible;
}

.cur-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 52px;
}
.cur-top h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 0.96;
  color: var(--bg)
}
.cur-meta {
  text-align: right;
}
.cur-meta p {
  font-family: var(--px);
  font-size: 7px;
  color: var(--bg3);
  letter-spacing: 0.08em;
  line-height: 2;
}

.stages {
  list-style: none;
}
.stage {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 12px;
  background:var(--cream);
  border-top: 1px solid var(--cream2);
  border-left: 2px solid var(--a-dark);
  transition: background 0.12s;
  color: var(--bg2);
}
.stage:last-child {
  border-bottom: 1px solid var(--b);
}
.stage:hover {
  background: var(--cream2);
}
.stage-n {
  font-family: var(--px);
  font-size: 7px;
  color: var(--bg3);
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.stage-tracks {
  grid-column: 1 / -1;
  overflow: hidden;
  max-height: 0;
  background:var(--cream-faint);
  transition: max-height 0.3s ease;
}
.stage:hover .stage-tracks {
  max-height: 300px;
}
.stage-tracks-inner {
  padding: 10px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Mini track row */
.stk-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  border-radius: 2px;
  transition: background 0.15s;
}
.stk-row:hover {
  background: rgba(0,0,0,0.06);
}
.stk-row.stk-pending {
  opacity: 0.45;
}
.stk-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--bg2);
  background: rgba(33, 79, 123, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}
.stk-btn:hover:not(:disabled) {
  border-color: var(--bg3);
  background: rgba(33, 79, 123, 0.2);
}
.stk-btn:disabled {
  cursor: default;
  opacity: 0.5;
}
.stk-btn.playing {
  border-color: var(--bg3);
  background: rgba(33, 79, 123, 0.25);
}
.stk-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent var(--bg2);
  margin-left: 2px;
}
.stk-pause-icon {
  display: flex;
  gap: 3px;
}
.stk-pause-icon span {
  display: block;
  width: 2px;
  height: 9px;
  background: var(--bg2);
  border-radius: 1px;
}
.stk-info {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.stk-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--bg2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stk-student {
  font-size: 11px;
  color: var(--bg);
  white-space: nowrap;
  flex-shrink: 0;
}
.stk-bar {
  width: 100px;
  height: 3px;
  background: rgba(0,0,0,0.15);
  border-radius: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.stk-bar:hover .stk-fill {
  filter: brightness(1.2);
}
.stk-fill {
  height: 100%;
  width: 0%;
  background: var(--bg3);
  border-radius: 2px;
  transition: width 0.1s linear;
  pointer-events: none;
}
.stk-time {
  font-family: var(--px);
  font-size: 7px;
  color: var(--bg);
  min-width: 28px;
  text-align: right;
  flex-shrink: 0;
}
.stage-name {
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--bg3);
}
.stage-sub {
  font-size: 13px;
  color: var(--bg);
  margin-top: 3px;
  line-height: 1.5;
}

/* Boss / milestone */
.stage--boss {
  border-top-color: #e2d3af !important;
  background: var(--cream-faint);
  padding-left: 14px;
  padding-right: 14px;
  margin-left: -14px;
  margin-right: -14px;
  border-left: 2px solid transparent;
}
.stage--boss + .stage {
  border-top-color: var(--cream2);
}
.stage--boss .stage-n {
  color: var(--bg2);
}
.stage--boss .stage-name {
  color: var(--bg2);
}

/* Pip meter */
.pips {
  display: flex;
  gap: 3px;
}
.pip {
  width: 7px;
  height: 11px;
  background: rgba(0, 0, 0, 0.233);
}
.pip.on {
  background: var(--bg3);
}
.pip.boss {
  background: var(--bg2);
  width: 9px;
}
.stage-badge {
  font-family: var(--px);
  font-size: 7px;
  color: var(--bg2);
  white-space: nowrap;
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────
   ALUMNI — High Score
───────────────────────────────────── */
#outcomes {
  background: var(--cream2);
  color: #0e0e12;
}

.hs-head {
  text-align: center;
  margin-bottom: 52px;
}
.hs-head .px-label {
  display: block;
  margin-bottom: 14px;
  animation: pulse 2s step-end infinite;
}
.hs-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}
.hs-head h2 em {
  font-style: italic;
  color: var(--txt);
}

.alumni-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(14, 14, 18, 0.12);
  border: 2px solid var(--cream);
  box-shadow: 3px 3px 0 rgba(168, 110, 26, 0.25);
}
.alumni-card {
  background: var(--cream);
  display: grid;
  grid-template-columns: 0.3fr 0.6fr;
  padding: 36px;
  border-left: 3px solid transparent;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.alumni-picture {
  background: var(--cream2);
  width: 108px;
  height: 108px;
  overflow: hidden;
  border: 2px solid var(--bg2);
}

.alumni-picture img {
  width: 100%;
}
.alumni-card:hover {
  border-left-color: var(--bg2);
  background: var(--cream2);
}
.alumni-rank {
  font-family: var(--px);
  font-size: 8px;
  color: var(--bg2);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.07em;
}
.alumni-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--bg2);
  margin-bottom: 10px;
  line-height: 1.1;
}
.alumni-desc {
  font-size: 14px;
  color: var(--bg3);
  line-height: 1.65;
}
.alumni-desc strong {
  color: var(--bg2);
  font-weight: 600;
}

/* ─────────────────────────────────────
   MENTOR — Character Sheet
───────────────────────────────────── */
#mentor {
  background: var(--bg);
}
#mentor h2 {
  color: var(--cream);
}
.char-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.char-grid img{
  height: 100%;
}
/* Card */
.char-card-inner {
  padding: 32px 28px;
  background: var(--a-faint);
}
.char-class-tag {
  font-family: var(--px);
  font-size: 7px;
  color: var(--bg);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}
.char-name {
  font-family: var(--px);
  font-size: clamp(14px, 2vw, 22px);
  color: var(--bg);
  text-shadow: 2px 2px 0 var(--bg2);
  display: block;
  margin-bottom: 4px;
  line-height: 1.5;
}
.char-sub {
  font-family: var(--px);
  font-size: 7px;
  color: var(--bg);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 24px;
  line-height: 1.9;
}
.char-portrait {
  width: calc(100% + 56px);   /* bleeds past the 28px padding on each side */
  margin: -32px -28px 20px;   /* pulls up flush to card top */
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--b);
}

.char-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(0.12) contrast(1.04);
}

/* Card readability tweaks */
.char-class-tag { font-size: 9px; }   /* was 7px */
.char-sub       { font-size: 9px; }   /* was 7px */
.sb-lbl         { font-size: 8px; }   /* was 6px */
.sb-num         { font-size: 9px; }   /* was 7px */
.sb-track       { height: 8px;    }   /* was 7px */

/* Stat bars */
.stat-bars {
  list-style: none;
}
.sb-row {
  display: grid;
  grid-template-columns: 95px 1fr 28px;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--b);
}
.sb-row:last-child {
  border-bottom: 1px solid var(--b);
}
.sb-lbl {
  font-family: var(--px);
  font-size: 6px;
  color: var(--bg);
  letter-spacing: 0.08em;
}
.sb-track {
  height: 7px;
  background: rgba(232, 226, 212, 0.07);
  border: 1px solid var(--b);
  position: relative;
}
.sb-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--txt-dim);
}
.sb-fill.hi {
  background: var(--a);
}
.sb-num {
  font-family: var(--px);
  font-size: 7px;
  color: var(--bg);
  text-align: right;
}

/* Right bio */
.char-bio {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream);
}
.char-bio p {
  margin-bottom: 20px;
}
.char-bio strong {
  color: var(--bg2);
  font-weight: 500;
}

.cred-list {
  list-style: none;
  margin-top: 28px;
  border-top: 1px solid var(--bg);
}
.cred-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--a-faint);
  font-size: 14px;
  color: var(--txt);
  line-height: 1.55;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.cred-item::before {
  content: "›";
  color: var(--txt);
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}

.conf-box {
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 2px solid var(--a);
  background: var(--bg2);
}
.conf-box p {
  font-size: 13px;
  color: var(--txt-dim);
  line-height: 1.65;
}
.conf-box strong {
  color: var(--txt);
  font-weight: 500;
}

/* ─────────────────────────────────────
   STUDENT WORK
───────────────────────────────────── */
#students {
  background: var(--bg2);
}
.student-col-label {
  font-family: var(--px);
  font-size: 8px;
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid;
  color: var(--a);
  border-color: rgba(212, 144, 42, 0.3);
}
.student-list {
  list-style: none;
}
.student-list .play-button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--txt);
  color: var(--a);
}
.track {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
}
.track-style {
  color: var(--txt);
}
.track-name {
  color: var(--a);
}
.track-data {
  display: flex;
  flex-direction: column;
}
.student-info {
  font-family: var(--sans);
  color: var(--txt);
  text-align: left;
  margin-left: 4px;
}
.student-name {
  font-weight: 600;
}
.student-time {
  color: var(--txt-dim);
}
.student-item {
  padding: 13px 0;
  border-bottom: 1px solid var(--b);
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.student-list .student-item {
  color: var(--txt);
}
/** intro video **/
.intro-slider-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px
}
.intro-slider-header .arr {
  width: 32px;
  height: 32px;
  border: 1px solid #1e3a5f;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s;
}

.intro-slider-header.arr:hover {
  border-color: #2e6aad;
}
.intro-track {
  display: flex;
  gap: 48px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-card {
  flex-shrink: 0;
  gap: 35;
  padding: 32px 32px;
  background: var(--cream-faint);
  box-shadow: 2px 2px 3px 1px var(--b);
}

.intro-media {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.intro-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-iframe,
.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.2s;
}

.intro-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.intro-play-btn {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  transition:
    background 0.2s,
    border-color 0.2s;
}

.intro-overlay:hover .intro-play-btn {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

/* reuse your existing .play-icon */

.intro-ribbon {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: #5b8fc9;
  padding: 8px 12px;
  border-top: 1px solid #d4c9b0; /* match your section's border color */
  line-height: 1.5;
}

.intro-info {
  padding: 10px 0 4px;
  text-align: center;
}

.intro-title {
  font-size: 14px;
  color: #1a1a1a; /* adjust to your section's text color */
  margin: 0 0 4px;
}

.intro-sub {
  font-size: 12px;
  color: #888;
  margin: 0;
}
.intro-wrap {
  padding: 030px;
  background:var(--cream2);
  box-shadow: 3px 3px 0 var(--cream-faint);
}

#intro-viewport {
  overflow: hidden;
}

/** testimonials **/
.wrap {
  border-radius: var(--border-radius-lg);
  outline: none;
}
.eyebrow {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: #5b8fc9;
  letter-spacing: 0.1em;
  margin: 0 0 6px;
}
.eyebrow::before {
  content: "▶ ";
}
.stitle {
  font-family: var(--px), monospace;
  font-size: 17px;
  color: var(--txt);
  margin: 0 0 1.25rem;
  line-height: 1.4;
}
.stitle em {
  color: #5bc8f5;
  font-style: normal;
}
.slider-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.arrows {
  display: flex;
  gap: 8px;
}
.arr {
  width: 32px;
  height: 32px;
  border: 1px solid #1e3a5f;
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s;
}
.arr:hover {
  border-color: #2e6aad;
}
.arr.disabled {
  opacity: 0.25;
  pointer-events: none;
}
.arr-icon {
  border-style: solid;
  border-color: #5b9fd4;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-width: 0 1.5px 1.5px 0;
}
.arr-icon.left {
  transform: rotate(135deg) translateY(-1px);
}
.arr-icon.right {
  transform: rotate(-45deg) translateY(-1px);
}
.viewport {
  overflow: hidden;
  position: relative;
}
.viewport::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--bg));
  pointer-events: none;
}
.viewport::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(90deg, var(--bg), transparent);
  pointer-events: none;
}
.track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card {
  background: #0a1628;
  border: 1px solid #1e3a5f;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
  transition: background 0.3s;
}
.card.active {
  background: #0f2038;
}

.video-wrap {
  position: relative;
  background: #060e1a;
  border-bottom: 1px solid #1e3a5f;
  transition: background 0.3s;
}
.video-wrap.active {
  background: #0a1e36;
}
.video-wrap video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.vid-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.vid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(6, 14, 26, 0.6);
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.vid-overlay.hidden {
  background: transparent;
  opacity: 0;
  transition: opacity 0.2s;
}
.vid-overlay.hidden:hover {
  opacity: 1;
  background: rgba(6, 14, 26, 0.45);
}
.vid-overlay:hover {
  background: rgba(6, 14, 26, 0.35);
}
.vid-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  color: #2e5a8a;
  position: absolute;
  top: 8px;
  left: 10px;
  transition: color 0.2s;
}
.vid-label.playing {
  color: #5bc8f5;
}
.play-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid #2e6aad;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 106, 173, 0.15);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.play-btn.playing {
  border-color: #5bc8f5;
  background: rgba(91, 200, 245, 0.15);
}
.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #5b9fd4;
  margin-left: 3px;
}
.pause-icon {
  display: flex;
  gap: 3px;
}
.pause-icon span {
  display: block;
  width: 3px;
  height: 14px;
  background: #5bc8f5;
}

.card-body {
  padding: 12px 14px 0;
}
.student-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.avatar {
  width: 32px;
  height: 32px;
  border: 1px solid #2e5a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: #5b9fd4;
  flex-shrink: 0;
  background: #060e1a;
}
.sname {
  font-family: "Share Tech Mono", monospace;
  font-size: 13px;
  color: #c8dff5;
  margin: 0;
}
.smeta {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  color: #2e6aad;
  margin: 0;
}
.smeta::before {
  content: "↳ ";
}
.divider {
  height: 1px;
  background: #1e3a5f;
  margin: 0 -14px;
}
.track-area {
  padding: 10px 0 12px;
}
.track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.ttitle {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #c8dff5;
  margin: 0;
}
.tgenre {
  font-family: "Share Tech Mono", monospace;
  font-size: 9px;
  color: #2e6aad;
  border: 1px solid #1e3a5f;
  padding: 2px 6px;
}
.waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 36px;
  margin-bottom: 7px;
  cursor: pointer;
}
.b {
  flex-shrink: 0;
  width: 3px;
  border-radius: 1px;
  transition: background 0.05s;
}

.audio-section {
  padding: 8px 10px;
  margin: 0 -14px;
  border-top: 1px solid #1e3a5f;
  transition: background 0.3s;
}
.audio-section.active {
  background: #0a1e36;
}
.audio-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 9px;
  color: #2e5a8a;
  margin: 0 0 6px;
  transition: color 0.2s;
}
.audio-label.playing {
  color: #5bc8f5;
}
.audio-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.abtn {
  width: 24px;
  height: 24px;
  border: 1px solid #2e5a8a;
  background: #060e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.abtn.playing {
  border-color: #5bc8f5;
  background: rgba(91, 200, 245, 0.1);
}
.aicon-play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #5b9fd4;
  margin-left: 2px;
}
.aicon-pause {
  display: flex;
  gap: 2px;
  width: 7px;
  height: 8px;
}
.aicon-pause span {
  display: block;
  width: 2px;
  height: 100%;
  background: #5bc8f5;
}
.atime {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  color: #2e6aad;
  white-space: nowrap;
  min-width: 28px;
}
.abar {
  flex: 1;
  height: 2px;
  background: #1e3a5f;
  cursor: pointer;
}
.afill {
  height: 100%;
  background: #2e6aad;
  pointer-events: none;
  transition: background 0.2s;
}
.afill.playing {
  background: #5bc8f5;
}
.pending {
  font-family: "Share Tech Mono", monospace;
  font-size: 9px;
  color: #1e3a5f;
  text-align: center;
  padding: 2px 0;
}

.dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 14px;
}
.dot {
  width: 5px;
  height: 5px;
  background: #1e3a5f;
  cursor: pointer;
  transition: all 0.2s;
}
.dot.on {
  background: #2e6aad;
  width: 16px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}
.testimonial-card {
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 3px 3px 0 var(--bg2);
  transition:
    box-shadow 0.11s,
    background 0.15s,
    transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: -3px -3px 0 var(--bg3);
  background: var(--bg2);
  transform: translate(3px, 3px);
}
.testimonial-card:hover .student-name {
  color: var(--a);
}
.testimonial-card:hover .student-time {
  color: var(--txt);
}
.testimonial-grid img {
  width: 100%;
}

.testimonial--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  margin: auto;
  margin-top: 50px;
  padding: 50px 40px;
  border: 3px solid var(--a-faint);
  background: var(--bg2);
  border-radius: 15px;
  animation: flashbox 1s step-end infinite;
}
.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}
.testimonial--btn .btn {
  animation: flashbutton 1s step-end infinite;
}
@keyframes flashbox {
  0%,
  100% {
    box-shadow: 0px 0px 4px 1px var(--a-glow);
    background: var(--bg3);
  }
  50% {
    box-shadow: 0px 0px 2px 1px var(--a-faint);
    background: var(--bg2);
  }
}
@keyframes flashbutton {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
#fit {
  background: var(--cream);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 52px;
  margin-bottom: 64px;
}

.fit-col-label {
  font-family: var(--px);
  font-size: 8px;
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid;
}
.fit-col-label.yes {
  color: var(--a);
  border-color: rgba(212, 144, 42, 0.3);
}
.fit-col-label.no {
  color: var(--txt-faint);
  border-color: var(--b);
}

.fit-list {
  list-style: none;
}
.fit-item {
  padding: 13px 0;
  border-bottom: 1px solid var(--b);
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.fit-item::before {
  font-family: var(--px);
  font-size: 8px;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}
.fit-list.yes .fit-item {
  color: var(--txt-dim);
}
.fit-list.yes .fit-item::before {
  content: "▶";
  color: var(--a);
}
.fit-list.no .fit-item {
  color: var(--txt-faint);
}
.fit-list.no .fit-item::before {
  content: "×";
  color: rgba(232, 226, 212, 0.15);
  font-size: 10px;
}
/* Community section */
.comm-intro {
  font-size: 16px;
  color: var(--bg3);
  line-height: 1.7;
  margin-bottom: 40px;
}

.comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
  margin-bottom: 48px;
}
/* A: group shot — tall left, spans both rows */
.comm-slot--a { grid-column: 1; grid-row: 1 / 3; }
/* B: Eric feedback video — wide top right, spans 2 cols */
.comm-slot--b { grid-column: 2 / 4; grid-row: 1; }
/* C: student presentation — bottom middle */
.comm-slot--c { grid-column: 2; grid-row: 2; }
/* D: music sheet — bottom right, not full-bleed so contain */
.comm-slot--d { grid-column: 3; grid-row: 2; }

.comm-slot {
  background: #060e1a;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comm-slot video,
.comm-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.comm-slot--contain img,
.comm-slot--contain video {
  object-fit: contain;
}
.comm-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(6, 14, 26, 0.85));
  font-size: 11px;
  color: var(--txt-dim);
  z-index: 2;
  pointer-events: none;
}
.comm-slot {
  cursor: pointer;
}
.comm-slot:hover::after {
  content: "▶ expand";
  font-family: var(--px);
  font-size: 7px;
  letter-spacing: 0.08em;
  color: var(--txt);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(6, 14, 26, 0.7);
  padding: 8px 14px;
  z-index: 3;
  pointer-events: none;
}

/* Lightbox */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 10, 18, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lb-media {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--px);
  font-size: 8px;
  color: var(--txt-dim);
  cursor: pointer;
  letter-spacing: 0.08em;
  background: none;
  border: none;
  padding: 8px;
}
.lb-close:hover {
  color: var(--txt);
}
.lb-cap {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--txt-dim);
  white-space: nowrap;
}

/* Roster box */
.roster {
  border: 1px solid var(--b2);
  background:var(--cream2);
  padding: 40px;
}
.roster-title {
  font-family: var(--px);
  font-size: 8px;
  color: var(--bg2);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  display: block;
}
.roster-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.r-col {
  border-left: 3px solid var(--cream-faint);
  padding: 16px;
}
.r-col h4 {
  font-family: var(--px);
  font-size: 7px;
  letter-spacing: 0.1em;
  color: var(--bg2);
  margin-bottom: 14px;
}
.r-col ul {
  list-style: none;
}
.r-col li {
  font-size: 13px;
  color: var(--bg3);
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-faint2);
  line-height: 1.4;
}
.r-col:hover{
  background:var(--cream-faint);
  border-left: 3px solid var(--cream);
}
.r-col:hover li {
  border-bottom: 1px solid var(--cream);
}

/* ─────────────────────────────────────
   FINAL CTA — Continue?
───────────────────────────────────── */
#final-cta {
  padding: 120px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 3px solid var(--a);
}
#final-cta .grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(232, 226, 212, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 226, 212,0.032) 1px, transparent 1px);
  background-size: 32px 32px;
}
#final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(
    100% 100%,
    var(--bg3) 0%,
    transparent 68%
  );
  pointer-events: none;
  animation: moving-circle 4s ease-in-out infinite;
  transition: all 5s;
}

@keyframes moving-circle {
  0%,100% {
    width: 200%;
    height: 150%;
  }
  50%{
    width: 100%;
    height: 300%;
  }
}
.cta-in {
  position: relative;
  z-index: 2;
}
.cta-continue {
  font-family: var(--px);
  font-size: 9px;
  color: var(--a);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 28px;
  animation: pulse 2s step-end infinite;
}
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 22px;
}
.cta-headline em {
  font-style: italic;
  color: var(--a);
}
.cta-sub {
  font-size: 17px;
  color: var(--txt-dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.cta-in .btn-row {
  justify-content: center;
}
.cta-note {
  margin-top: 28px;
  font-family: var(--px);
  font-size: 7px;
  letter-spacing: 0.1em;
  color: var(--txt-faint);
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: rgba(14, 14, 18, 0.96);
  border-top: 2px solid var(--a);
  padding: 30px 0;
}
.foot-in {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-in p {
  font-family: var(--px);
  font-size: 7px;
  color: var(--txt-faint);
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────
   ANIMATIONS
───────────────────────────────────── */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.r0 {
  animation: rise 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.r1 {
  animation: rise 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s both;
}
.r2 {
  animation: rise 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s both;
}
.r3 {
  animation: rise 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s both;
}
.r4 {
  animation: rise 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.56s both;
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 840px) {
  .video-press{
    font-size: 16px;
  }
  .video-press-sub{
    font-size: 12px;
  }
  .intro-track {
    gap: 24px;
  }
  .intro-card{
    padding: 18px;
  }
  .alumni-card{
    grid-template-columns: 0.1fr 1fr;
    gap: 2rem;
    align-items:center;
  }
  .alumni-picture{
    width: 80px;
    height: 80px;
  }
  .track {
    d
  }
  .char-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sol-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .prob-grid {
    grid-template-columns: 1fr;
  }
  .alumni-grid {
    grid-template-columns: 1fr;
  }
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .roster-cols {
    grid-template-columns: 1fr 1fr;
  }
  .cur-top {
    grid-template-columns: 1fr;
  }
  .cur-meta {
    text-align: left;
  }
  .stage {
    grid-template-columns: 88px 1fr;
  }
  .pips {
    display: none;
  }
  .stage-badge {
    display: none;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
  .hstat {
    flex: 1 1 45%;
    border-bottom: 1px solid var(--b);
    border-right: 1px solid var(--b);
  }
  .section {
    padding: 72px 0;
  }
  #hero {
    padding: 116px 0 64px;
  }
  #final-cta {
    padding: 80px 0;
  }
}
@media (max-width: 520px) {
  .wrap {
    padding: 0 18px;
  }
  .hero-t1 {
    font-size: 16px;
  }
  .hero-t2 {
    font-size: 18px;
  }
  .roster-cols {
    grid-template-columns: 1fr;
  }
  .verdict {
    flex-direction: column;
  }
  .verdict-label {
    padding: 16px 20px;
  }
  .verdict-label span {
    writing-mode: initial;
    transform: none;
  }
}

.theme-switcher {
  left: 0;
  top: 0;
  position: fixed;
  display: flex;
  width: 30%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 1.2rem;
  border-radius: 0 0 15px 15px;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.5s;
}
.theme-switcher:hover {
  border: 1px solid var(--b);
  background: var(--bg3);
}
.theme-switcher .theme-buttons {
  display: block;
  transition: all 0.5s;
}
.theme-switcher:hover .theme-buttons {
  display: block;
}
/* .theme-switcher:hover button{opacity:1.0;} */
.theme-switcher button {
  all: unset;

  cursor: pointer;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 12px;

  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  display: inline-block;
  transition: all 0.6s;
}
.theme-switcher:hover button {
  opacity: 1;
}

.theme-switcher .theme-amber {
  background: #e6a93a;
  border: 3px solid #6eabce;
  color: #0e0e12;
}

.theme-switcher .theme-blue {
  background: #0f2a38;
  border: 3px solid #6eabce;
  color: #a0dcff;
}

.theme-switcher .theme-neon {
  background: #0f2a38;
  border: 3px solid #c4881f;
  color: #e6a93a;
}

.theme-switcher .theme-basic {
  background: #0e0e12;
  border: 3px solid #6eabce;
  color: #a0dcff;
}

.theme-switcher .theme-high {
  background: #ffff00;
  border: 3px solid #ffd700;
  color: #141414;
}

.theme-switcher .theme-eighties {
  background: #c876ff;
  border: 3px solid #6f00ff;
  color: #0d1418;
}

.theme-switcher .theme-space {
  background: #00ffff;
  border: 3px solid #ff00ff;
  color: #111;
}

/* ─────────────────────────────────────
   STUDENT PLAYLIST
───────────────────────────────────── */
.pl-player {
  background: rgba(6, 14, 26, 0.6);
  border: 1px solid var(--b2);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 8px;
}

.pl-now-playing {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.pl-track-info {
  flex: 1;
  min-width: 0;
}

.pl-track-title {
  font-family: var(--px);
  font-size: 9px;
  color: var(--txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.04em;
}

.pl-track-meta {
  font-size: 11px;
  color: var(--txt-dim);
  margin-top: 5px;
}

.pl-genre-tag {
  font-family: var(--px);
  font-size: 7px;
  color: var(--a);
  border: 1px solid rgba(160, 220, 255, 0.3);
  padding: 3px 7px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pl-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pl-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.pl-bar:hover .pl-bar-fill {
  filter: brightness(1.15);
}

.pl-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--a);
  border-radius: 2px;
  transition: width 0.1s linear;
  pointer-events: none;
}

.pl-time {
  font-family: var(--px);
  font-size: 7px;
  color: var(--txt-dim);
  min-width: 32px;
}

.pl-time:last-child {
  text-align: right;
}

.pl-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pl-btn {
  background: none;
  border: 1px solid var(--b2);
  color: var(--txt);
  border-radius: 3px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--px);
  font-size: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.pl-btn:hover {
  border-color: var(--a);
  background: var(--a-glow);
}

.pl-btn--play {
  width: 44px;
  height: 44px;
  border-color: var(--a);
  font-size: 10px;
}

.pl-btn--play.playing {
  background: var(--a-glow);
}

.pl-pause-icon {
  display: flex;
  gap: 4px;
  align-items: center;
}

.pl-pause-icon span {
  display: block;
  width: 3px;
  height: 14px;
  background: currentColor;
  border-radius: 1px;
}

/* Playlist rows */
.pl-list {
  border: 1px solid var(--b);
  border-radius: 4px;
  overflow: hidden;
}

.pl-row {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--b);
  cursor: pointer;
  transition: background 0.15s;
}

.pl-row:last-child {
  border-bottom: none;
}

.pl-row:hover {
  background: rgba(160, 220, 255, 0.04);
}

.pl-row.active {
  background: rgba(160, 220, 255, 0.07);
}

.pl-row-num {
  font-family: var(--px);
  font-size: 8px;
  color: var(--txt-dim);
  text-align: center;
}

.pl-row.active .pl-row-num {
  color: var(--a);
}

.pl-row-info {
  min-width: 0;
}

.pl-row-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pl-row.active .pl-row-title {
  color: var(--a);
}

.pl-row-student {
  font-size: 11px;
  color: var(--txt-dim);
  margin-top: 2px;
}

.pl-row-genre {
  font-family: var(--px);
  font-size: 7px;
  color: var(--txt-dim);
  border: 1px solid var(--b);
  padding: 2px 5px;
  border-radius: 2px;
  white-space: nowrap;
}

.pl-row.active .pl-row-genre {
  border-color: rgba(160, 220, 255, 0.3);
  color: var(--a);
}

.pl-row-dur {
  font-family: var(--px);
  font-size: 8px;
  color: var(--txt-dim);
  white-space: nowrap;
  text-align: right;
}

.pl-pending {
  font-family: var(--px);
  font-size: 8px;
  color: var(--txt-faint);
  letter-spacing: 0.04em;
}
