/* ---------- Klay.edu — global styles (v2, brand colours) ---------- */

:root {
  /* Klay palette — from logo */
  --bg: #0A0A0A;            /* black */
  --bg-2: #141414;
  --bg-3: #1C1C1C;
  --paper: #F5F1E8;         /* warm off-white */
  --ink: #FFFFFF;
  --ink-2: #E8E4DA;
  --muted: #8A8278;
  --muted-2: #5C564E;
  --line: #2A2622;
  --line-soft: #1F1C18;

  --red: #FF3D2E;           /* K */
  --cyan: #3DD1D9;          /* l */
  --yellow: #FFD24A;        /* a */
  --orange: #FF8528;        /* y */

  --max: 1480px;
  --gutter: clamp(20px, 4vw, 56px);

  --serif: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
  --italic: "Instrument Serif", Georgia, serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; font-size: 16px; line-height: 1.5; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--yellow); color: var(--bg); }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--mono); font-weight: 400; letter-spacing: 0.02em; }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.025em; line-height: 1.02; }
.italic, em, i, .it { font-family: var(--italic); font-style: italic; font-weight: 400; letter-spacing: -0.005em; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section-pad { padding: clamp(80px, 10vw, 160px) 0; }
.divider { height: 1px; background: var(--line); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav .logo {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: inline-flex; align-items: baseline;
}
.nav .logo .k { color: var(--red); }
.nav .logo .l { color: var(--cyan); }
.nav .logo .a { color: var(--yellow); }
.nav .logo .y { color: var(--orange); }
.nav .logo .edu { color: var(--ink); }
.nav .links { display: flex; gap: 28px; font-size: 13.5px; color: var(--ink-2); }
.nav .links a { position: relative; padding: 6px 0; }
.nav .links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--ink);
  transition: width 0.3s ease;
}
.nav .links a:hover::after { width: 100%; }
.nav .cta {
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--bg);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s ease;
}
.nav .cta:hover { background: var(--cyan); }
@media (max-width: 800px) { .nav .links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-top {
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 50px; flex-wrap: wrap; gap: 40px; text-align: center;
}
.hero-top .meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-top .meta strong { color: var(--ink); font-weight: 500; }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(56px, 11vw, 184px);
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-weight: 400;
  text-align: center;
}
.hero-headline .k { color: var(--red); }
.hero-headline .l { color: var(--cyan); }
.hero-headline .a { color: var(--yellow); font-style: italic; }
.hero-headline .y { color: var(--orange); }
.hero-headline .it { font-style: italic; }
.hero-headline .strike { text-decoration: line-through; color: var(--muted-2); }

.hero-sub {
  display: flex; flex-direction: column;
  gap: 40px;
  margin-top: 60px;
  align-items: center;
  text-align: center;
}
.hero-sub p {
  font-family: var(--sans);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 60ch;
}
.hero-actions { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.hero-actions .btn-primary {
  font-size: 14px; padding: 16px 24px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background 0.2s ease;
}
.hero-actions .btn-primary:hover { background: var(--yellow); }
.hero-actions .btn-primary svg { width: 16px; height: 16px; }
.hero-actions .secondary {
  font-size: 13px; color: var(--muted);
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
}

.hero-stickers {
  position: absolute;
  pointer-events: none;
  inset: 0;
}
.sticker {
  position: absolute;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  color: var(--bg); font-weight: 500;
  transform: rotate(-6deg);
}
.sticker.red { background: var(--red); top: 22%; right: 6%; transform: rotate(8deg); }
.sticker.cyan { background: var(--cyan); top: 56%; left: 4%; transform: rotate(-12deg); }
.sticker.yellow { background: var(--yellow); top: 78%; right: 12%; transform: rotate(5deg); }

@media (max-width: 800px) {
  .hero-sub { grid-template-columns: 1fr; }
  .sticker { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 24px 0;
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: scroll 40s linear infinite;
  align-items: center;
}
.marquee-item {
  font-family: var(--serif);
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee-item .sep { width: 10px; height: 10px; border-radius: 50%; }
.marquee-item:nth-child(4n) { color: var(--red); }
.marquee-item:nth-child(4n+1) .sep { background: var(--cyan); }
.marquee-item:nth-child(4n+2) .sep { background: var(--yellow); }
.marquee-item:nth-child(4n+3) .sep { background: var(--orange); }
.marquee-item:nth-child(4n) .sep { background: var(--red); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Stats grid ---------- */
.stats { padding: clamp(80px, 9vw, 140px) 0; }
.stats-head {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 70px; gap: 24px; text-align: center;
}
.stats-head h2 { font-size: clamp(36px, 4.5vw, 64px); max-width: 16ch; }
.stats-head p { font-size: 14px; color: var(--muted); max-width: 38ch; }

.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  background: var(--bg); padding: 40px 30px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; min-height: 240px;
  transition: background 0.3s ease;
}
.stat:hover { background: var(--bg-2); }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1; letter-spacing: -0.03em;
}
.stat .num .small { font-size: 0.42em; }
.stat:nth-child(1) .num { color: var(--red); }
.stat:nth-child(2) .num { color: var(--cyan); }
.stat:nth-child(3) .num { color: var(--yellow); }
.stat:nth-child(4) .num { color: var(--orange); }
.stat:nth-child(5) .num { color: var(--cyan); }
.stat:nth-child(6) .num { color: var(--yellow); }

.stat .label { font-size: 14px; color: var(--ink-2); margin-top: auto; max-width: 20ch; }
.stat .corner {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--muted);
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; } }

/* ---------- Section heads ---------- */
.section-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; margin-bottom: 70px; text-align: center;
}
.section-head .left { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.section-head h2 { font-size: clamp(40px, 6vw, 92px); line-height: 0.98; max-width: 18ch; }
.section-head .lede {
  font-family: var(--sans);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5; color: var(--ink-2); max-width: 60ch;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .left { position: relative; top: 0; }
}

/* ---------- Problem cols ---------- */
.cols-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 30px);
  margin-top: 40px;
}
@media (max-width: 800px) { .cols-2 { grid-template-columns: 1fr; } }
.col-card {
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 18px;
}
.col-card.bright {
  background: var(--yellow); color: var(--bg);
  border-color: var(--yellow);
}
.col-card.bright .col-title { color: var(--bg); }
.col-card .col-title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15; letter-spacing: -0.01em;
}
.col-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.col-card li {
  display: grid; grid-template-columns: 24px 1fr;
  gap: 12px; font-size: 14.5px; line-height: 1.5;
}
.col-card li .bullet {
  font-family: var(--mono); font-size: 11px;
  color: var(--orange); padding-top: 4px;
}
.col-card.bright li .bullet { color: var(--red); }

/* ---------- Ind 10 ---------- */
.ind10 {
  background: var(--bg);
  padding: clamp(80px, 10vw, 160px) 0;
}
.ind10-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; margin-bottom: 60px; text-align: center;
}
.ind10-head h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92; letter-spacing: -0.03em;
}
.ind10-head h2 .ten {
  display: inline-block;
  background: var(--red);
  color: var(--bg);
  padding: 0 18px 6px;
  border-radius: 14px;
  transform: rotate(-3deg);
  margin: 0 6px;
}
.ind10-head .right { max-width: 380px; }
.ind10-head .right p { color: var(--ink-2); font-size: 16px; line-height: 1.5; }

.ind10-list { display: flex; flex-direction: column; }
.ind10-row {
  display: grid;
  grid-template-columns: 60px 1.4fr 1fr 1fr 80px;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding 0.25s ease, background 0.25s ease;
  position: relative;
}
.ind10-row:last-child { border-bottom: 1px solid var(--line); }
.ind10-row:hover { padding: 40px 12px; background: var(--bg-2); }
.ind10-row .idx { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.18em; }
.ind10-row .name {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1;
  color: var(--ink);
  transition: color 0.3s ease;
}
.ind10-row:hover .name { color: var(--yellow); }
.ind10-row .tag { font-size: 13px; color: var(--muted); margin-top: 4px; }
.ind10-row .admit {
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.04em; color: var(--ink);
}
.ind10-row .admit .label {
  display: block; font-size: 10px; color: var(--muted);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 4px;
}
.ind10-row .edge { font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.ind10-row .arrow { font-family: var(--serif); font-size: 28px; text-align: right; transition: transform 0.3s ease; color: var(--ink); }
.ind10-row:hover .arrow { transform: translateX(8px); color: var(--orange); }
.ind10-row .chip {
  display: inline-block;
  font-family: var(--mono); font-size: 10px;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.ind10-row .chip.core { background: var(--red); color: var(--bg); }
.ind10-row .chip.tier2 { background: transparent; color: var(--cyan); border: 1px solid var(--cyan); }
.ind10-row .chip.emerging { background: transparent; color: var(--muted); border: 1px solid var(--muted-2); }

@media (max-width: 1000px) {
  .ind10-row { grid-template-columns: 40px 1fr 80px; }
  .ind10-row .admit, .ind10-row .edge { display: none; }
}

/* ---------- Process timeline ---------- */
.process-list { display: flex; flex-direction: column; }
.process-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr 60px;
  gap: 30px; padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: center; cursor: pointer;
  transition: padding 0.3s ease, background 0.3s ease;
}
.process-row:hover { padding: 44px 16px; background: var(--bg-2); }
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-row .idx { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; }
.process-row:nth-child(1) .idx { color: var(--red); }
.process-row:nth-child(2) .idx { color: var(--cyan); }
.process-row:nth-child(3) .idx { color: var(--yellow); }
.process-row:nth-child(4) .idx { color: var(--orange); }
.process-row h3 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1; color: var(--ink); }
.process-row .duration {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.18em;
  margin-top: 6px; text-transform: uppercase;
}
.process-row .desc { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.process-row .arrow { text-align: right; font-family: var(--serif); font-size: 28px; transition: transform 0.3s ease; }
.process-row:hover .arrow { transform: translateX(8px); color: var(--yellow); }
@media (max-width: 800px) {
  .process-row { grid-template-columns: 50px 1fr 30px; }
  .process-row .desc { display: none; }
}

/* ---------- Track Your Progress (dashboard mock) ---------- */
.track {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--bg);
}
.track-dash {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}
.track-dash .side {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 22px;
}
.track-dash .student-card {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.track-dash .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; color: var(--bg);
}
.track-dash .who .name { font-weight: 500; font-size: 14px; }
.track-dash .who .school { font-size: 11.5px; color: var(--muted); }
.track-dash .side .nav-list { display: flex; flex-direction: column; gap: 4px; }
.track-dash .nav-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; border-radius: 8px;
  font-size: 13px; color: var(--ink-2);
  cursor: pointer;
  transition: background 0.2s ease;
}
.track-dash .nav-item:hover { background: var(--bg-2); }
.track-dash .nav-item.active { background: var(--yellow); color: var(--bg); font-weight: 500; }
.track-dash .nav-item .count {
  font-family: var(--mono); font-size: 11px; opacity: 0.7;
}
.track-dash .main { display: flex; flex-direction: column; gap: 18px; }
.track-dash .topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0 14px; border-bottom: 1px solid var(--line);
}
.track-dash .topbar h4 { font-family: var(--serif); font-size: 24px; }
.track-dash .topbar .days {
  font-family: var(--mono); font-size: 11.5px;
  color: var(--muted); letter-spacing: 0.12em;
}
.track-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}
.track-card {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.track-card .head {
  display: flex; justify-content: space-between; align-items: center;
}
.track-card .head h5 {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.track-card .pill {
  font-family: var(--mono); font-size: 10px;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.track-card .pill.green { background: rgba(61,209,217,0.15); color: var(--cyan); }
.track-card .pill.yellow { background: rgba(255,210,74,0.15); color: var(--yellow); }
.track-card .pill.red { background: rgba(255,61,46,0.18); color: var(--red); }
.track-card .big-stat {
  font-family: var(--serif);
  font-size: 56px; line-height: 1;
  letter-spacing: -0.02em;
}
.track-card .big-stat .small { font-size: 0.5em; color: var(--muted); }
.track-card .sub { font-size: 12px; color: var(--muted); }

.progress-bar {
  height: 8px; background: var(--line); border-radius: 999px;
  overflow: hidden; margin-top: 4px;
}
.progress-bar .fill { height: 100%; border-radius: 999px; }

.streak-grid {
  display: grid; grid-template-columns: repeat(14, 1fr);
  gap: 4px;
}
.streak-grid .day-dot {
  aspect-ratio: 1; border-radius: 4px;
  background: var(--line);
}
.streak-grid .day-dot.l1 { background: rgba(61,209,217,0.3); }
.streak-grid .day-dot.l2 { background: rgba(61,209,217,0.55); }
.streak-grid .day-dot.l3 { background: var(--cyan); }

.task-list { display: flex; flex-direction: column; gap: 10px; }
.task {
  display: grid; grid-template-columns: 18px 1fr auto;
  gap: 10px; align-items: center;
  font-size: 13px;
}
.task .check {
  width: 16px; height: 16px;
  border: 1.5px solid var(--muted-2); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.task.done .check { background: var(--cyan); border-color: var(--cyan); color: var(--bg); }
.task.done .label { color: var(--muted); text-decoration: line-through; }
.task .when { font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.1em; }

.mentor-row {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.mentor-row:last-child { border-bottom: 0; }
.mentor-row .ava {
  width: 32px; height: 32px; border-radius: 50%;
  font-family: var(--serif); font-size: 14px; color: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.mentor-row .info { flex: 1; }
.mentor-row .info .name { font-size: 13px; }
.mentor-row .info .msg { font-size: 12px; color: var(--muted); }
.mentor-row .when { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.mentor-row .unread { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

@media (max-width: 900px) {
  .track-dash { grid-template-columns: 1fr; }
  .track-grid { grid-template-columns: 1fr; }
}

/* ---------- Edge ---------- */
.edge { padding: clamp(80px, 10vw, 160px) 0; }
.edge-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.edge-item {
  display: flex; flex-direction: column; gap: 20px;
  padding: 36px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.edge-item:hover { transform: translateY(-4px); border-color: var(--muted-2); }
.edge-item .num { font-family: var(--serif); font-size: 64px; line-height: 1; }
.edge-item:nth-child(1) .num { color: var(--red); }
.edge-item:nth-child(2) .num { color: var(--cyan); }
.edge-item:nth-child(3) .num { color: var(--yellow); }
.edge-item h3 { font-family: var(--serif); font-size: 26px; line-height: 1.1; }
.edge-item p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 800px) { .edge-grid { grid-template-columns: 1fr; } }

/* ---------- Week at Klay ---------- */
.week-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.day {
  background: var(--bg-2); padding: 24px 18px;
  min-height: 260px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.3s ease;
}
.day:hover { background: var(--bg-3); }
.day .dow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.day:nth-child(1) .dow { color: var(--red); }
.day:nth-child(2) .dow { color: var(--orange); }
.day:nth-child(3) .dow { color: var(--yellow); }
.day:nth-child(4) .dow { color: var(--cyan); }
.day:nth-child(5) .dow { color: var(--red); }
.day:nth-child(6) .dow { color: var(--orange); }
.day:nth-child(7) .dow { color: var(--yellow); }
.day h4 { font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.day p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.day.off { background: var(--yellow); color: var(--bg); }
.day.off:hover { background: var(--orange); color: var(--bg); }
.day.off .dow { color: var(--bg); }
.day.off p { color: var(--bg); }
@media (max-width: 1100px) { .week-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .week-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Packages ---------- */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
.pkg {
  border: 1px solid var(--line);
  border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
  background: var(--bg-2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pkg:hover { transform: translateY(-4px); }
.pkg.flagship {
  background: var(--yellow); color: var(--bg);
  border-color: var(--yellow);
}
.pkg .pkg-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  display: flex; justify-content: space-between;
}
.pkg.flagship .pkg-tag { color: var(--bg); }
.pkg h3 { font-family: var(--serif); font-size: 32px; line-height: 1.05; }
.pkg .price { font-family: var(--serif); font-size: 56px; line-height: 1; letter-spacing: -0.02em; }
.pkg:nth-child(1) .price { color: var(--red); }
.pkg:nth-child(2) .price { color: var(--cyan); }
.pkg.flagship .price { color: var(--bg); }
.pkg .blurb { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.pkg.flagship .blurb { color: var(--bg); }
.pkg ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pkg li {
  font-size: 13.5px; line-height: 1.45;
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
}
.pkg li::before {
  content: "+"; color: var(--orange); font-family: var(--mono);
}
.pkg.flagship li::before { color: var(--red); }
.pkg .pkg-btn {
  margin-top: 8px;
  padding: 14px 20px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: space-between;
  transition: background 0.2s ease;
}
.pkg .pkg-btn:hover { background: var(--cyan); }
.pkg.flagship .pkg-btn { background: var(--bg); color: var(--yellow); }
.pkg.flagship .pkg-btn:hover { background: var(--red); color: var(--bg); }

@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ---------- Advisor / Team ---------- */
.advisor { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.advisor .photo {
  aspect-ratio: 4/5; width: 100%;
  background: var(--bg-2);
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line);
}
.advisor .info { display: flex; flex-direction: column; gap: 26px; }
.advisor .name { font-family: var(--serif); font-size: clamp(48px, 6vw, 84px); line-height: 0.95; }
.advisor .role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); }
.advisor .bio { font-family: var(--serif); font-size: 22px; line-height: 1.3; color: var(--ink-2); max-width: 32ch; }
.advisor ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.advisor li { font-size: 14px; display: grid; grid-template-columns: 24px 1fr; gap: 8px; color: var(--ink-2); }
.advisor li::before { content: "✶"; color: var(--yellow); }
@media (max-width: 900px) { .advisor { grid-template-columns: 1fr; } }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mentor { display: flex; flex-direction: column; gap: 16px; }
.mentor .photo {
  aspect-ratio: 4/5; background: var(--bg-2);
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); position: relative;
}
.mentor:nth-child(1) .photo { border-color: var(--red); }
.mentor:nth-child(2) .photo { border-color: var(--cyan); }
.mentor:nth-child(3) .photo { border-color: var(--yellow); }
.mentor:nth-child(4) .photo { border-color: var(--orange); }
.mentor .photo .role-tag {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
  color: var(--bg); font-weight: 500;
}
.mentor:nth-child(1) .role-tag { background: var(--red); }
.mentor:nth-child(2) .role-tag { background: var(--cyan); }
.mentor:nth-child(3) .role-tag { background: var(--yellow); }
.mentor:nth-child(4) .role-tag { background: var(--orange); }
.mentor h4 { font-family: var(--serif); font-size: 26px; line-height: 1.05; }
.role-tag-inline {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  color: var(--bg); font-weight: 500;
}
.mentor:nth-child(1) .role-tag-inline { background: var(--red); }
.mentor:nth-child(2) .role-tag-inline { background: var(--cyan); }
.mentor:nth-child(3) .role-tag-inline { background: var(--yellow); }
.mentor:nth-child(4) .role-tag-inline { background: var(--orange); }
.mentor .blurb { font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.mentor ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mentor li { font-size: 13px; color: var(--muted); }
.mentor li::before { content: "·  "; color: var(--orange); }

@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta-section {
  padding: clamp(100px, 12vw, 180px) 0;
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,61,46,0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(61,209,217,0.1) 0%, transparent 50%),
    var(--bg);
}
.cta-section h2 {
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95; letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto;
  text-align: center;
}
.cta-section .wrap > .fade-in { text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta-section .sub { margin-left: auto; margin-right: auto; }
.cta-section .actions { justify-content: center; }
.cta-section h2 .it { font-style: italic; color: var(--yellow); }
.cta-section .sub {
  font-family: var(--sans);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45; margin-top: 36px;
  max-width: 50ch; color: var(--ink-2);
}
.cta-section .actions { margin-top: 50px; display: flex; gap: 16px; flex-wrap: wrap; }
.cta-section .btn {
  padding: 18px 28px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cta-section .btn.primary { background: var(--yellow); color: var(--bg); }
.cta-section .btn.primary:hover { background: var(--cyan); }
.cta-section .btn.ghost { border: 1px solid var(--muted-2); color: var(--ink); }
.cta-section .btn.ghost:hover { border-color: var(--ink); }
.cta-section .check-list {
  margin-top: 70px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 60px; max-width: 900px;
}
.cta-section .check-list li {
  list-style: none; font-size: 14.5px; color: var(--ink-2);
  line-height: 1.45;
  display: grid; grid-template-columns: 24px 1fr; gap: 8px;
}
.cta-section .check-list li::before { content: "→"; color: var(--orange); }
@media (max-width: 800px) { .cta-section .check-list { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer { padding: 60px 0 30px; border-top: 1px solid var(--line); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 60px;
}
.footer-top h5 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.footer-top a, .footer-top p {
  font-size: 14px; color: var(--ink-2);
  display: block; margin-bottom: 8px; line-height: 1.5;
}
.footer-top a:hover { color: var(--yellow); }
.footer-brand .big {
  font-family: var(--sans);
  font-size: 60px; line-height: 1; letter-spacing: -0.04em;
  font-weight: 800; margin-bottom: 16px;
}
.footer-brand .big .k { color: var(--red); }
.footer-brand .big .l { color: var(--cyan); }
.footer-brand .big .a { color: var(--yellow); }
.footer-brand .big .y { color: var(--orange); }
.footer-brand .big .edu { color: var(--ink); }
.footer-brand .tag {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--ink-2); max-width: 24ch; line-height: 1.3;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } }

/* ---------- Reveals ---------- */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.2, 0, 0, 1), transform 0.9s cubic-bezier(0.2, 0, 0, 1);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

image-slot {
  --image-slot-bg: var(--bg-2);
  --image-slot-border: var(--line);
  --image-slot-color: var(--muted);
}

.quote-block {
  border-left: 3px solid var(--cyan);
  padding-left: 28px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--ink); max-width: 24ch;
}
.quote-attr {
  margin-top: 24px; font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}

.guarantee {
  margin-top: 40px; padding: 22px 26px;
  background: var(--red); color: var(--bg);
  border-radius: 12px;
  display: flex; gap: 18px; align-items: center; max-width: 760px;
}
.guarantee .ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; flex-shrink: 0;
}
.guarantee p { font-size: 14px; line-height: 1.5; color: var(--bg); }
.guarantee strong { color: var(--bg); }
