/* ============================================================
   ANPL DESIGN SYSTEM
   AI-Native Product Leadership · Lead AI. Don't Chase It.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400;1,9..144,500&family=Instrument+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== TOKENS ===== */
:root {
  --dark:        #090907;
  --dark-2:      #141412;
  --dark-3:      #1E1E1B;
  --gold:        #F0E6D3;
  --gold-light:  #F7F0E6;
  --gold-dim:    #B8A898;
  --white:       #FDFCF8;
  --surface:     #F7F5EF;
  --ink-3:       #7A7A72;
  --ink-4:       #B0B0A6;
  --border:      rgba(240,230,211,0.18);

  --font-serif:  'Fraunces', Georgia, serif;
  --font-sans:   'Instrument Sans', system-ui, sans-serif;
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;

  --nav-h:       68px;
  --max-w:       1200px;
  --pad-section: 112px;
  --pad-x:       48px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--surface);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-sans); cursor: pointer; }
input, select, textarea { font-family: var(--font-sans); }

/* ===== TOP GOLD RULE ===== */
.top-rule {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg,
    rgba(240,230,211,0.1) 0%,
    #F0E6D3 55%,
    #F7F0E6 80%,
    #F0E6D3 100%
  );
  flex-shrink: 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9,9,7,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 6px;
  color: var(--gold-light);
  text-decoration: none;
}
.nav-logo span { font-size: 13px; letter-spacing: 2px; color: var(--ink-3); font-family: var(--font-sans); margin-left: 12px; }
.nav-spacer { flex: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--ink-4);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container-sm {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--pad-section) 0; }
.section-sm { padding: 72px 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
}
h1 { font-size: clamp(38px, 5vw, 64px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2.5vw, 26px); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
  display: block;
}
em, .italic-gold { font-style: italic; color: var(--gold-light); }
.mono { font-family: var(--font-mono); font-size: 13px; color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #0D0D0B;
}
.btn-primary:hover {
  background: var(--white);
  color: #0D0D0B;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(240,230,211,0.15);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(240,230,211,0.06);
}
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 14px; letter-spacing: 0.8px; width: 100%; justify-content: center; }
.btn-danger { background: rgba(220,60,60,0.15); color: #FF7070; border: 1px solid rgba(220,60,60,0.2); }
.btn-danger:hover { background: rgba(220,60,60,0.25); }

/* ===== CARDS ===== */
.card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px;
  position: relative;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 10px; right: 10px;
  width: 14px; height: 14px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  opacity: 0.22;
  pointer-events: none;
}

/* ===== CHIPS / BADGES ===== */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.chip-foundations  { background: rgba(196,150,58,0.10); color: var(--gold);       border: 1px solid rgba(196,150,58,0.22); }
.chip-technologies { background: rgba(100,185,230,0.08); color: #7EC8E3;            border: 1px solid rgba(100,185,230,0.18); }
.chip-human        { background: rgba(180,140,200,0.08); color: #C8A8D8;            border: 1px solid rgba(180,140,200,0.18); }
.chip-capstone     { background: rgba(220,185,90,0.10);  color: var(--gold-light); border: 1px solid rgba(220,185,90,0.22); }

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0 0;
}
.stat-item {
  flex: 1;
  padding: 20px 0;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
  display: block;
}

/* ===== ACCORDION ===== */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}
.accordion-header:hover .accordion-title { color: var(--gold-light); }
.accordion-num {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  font-weight: 300;
  min-width: 32px;
}
.accordion-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  flex: 1;
  transition: color 0.2s;
}
.accordion-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.accordion-hrs {
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}
.accordion-arrow {
  color: var(--gold-dim);
  font-size: 16px;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}
.accordion-item.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 4px 0 28px 50px;
}
.accordion-item.open .accordion-body { display: block; }

/* ===== VIDEO LIST ===== */
.video-list { margin-bottom: 20px; }
.video-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(196,150,58,0.07);
  font-size: 14px;
  color: var(--surface);
}
.video-item:last-child { border-bottom: none; }
.video-icon { color: var(--gold); font-size: 9px; flex-shrink: 0; }
.video-duration { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }

/* ===== PILLS ===== */
.pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.pill {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  background: var(--dark-3);
  color: var(--ink-4);
  border: 1px solid rgba(196,150,58,0.10);
  letter-spacing: 0.3px;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.filter-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 11px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-3);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.filter-tab:hover { color: var(--white); }
.filter-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ===== PRICE CARD ===== */
.price-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.price-card-rule {
  height: 2px;
  background: linear-gradient(90deg,
    rgba(240,230,211,0.1) 0%, #F0E6D3 55%, #F7F0E6 80%, #F0E6D3 100%
  );
}
.price-card-body { padding: 32px 36px; }
.price-label { margin-bottom: 8px; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 6px;
}
.price-value {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.price-sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.includes-list { margin-bottom: 28px; }
.include-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 14px;
  color: var(--surface);
  border-bottom: 1px solid rgba(196,150,58,0.06);
}
.include-item:last-child { border-bottom: none; }
.include-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
}
.price-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.guarantee-text {
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.3px;
}

/* ===== INCLUDE GRID (What's Included section) ===== */
.include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.include-grid-item {
  background: var(--dark-2);
  padding: 32px 28px;
  position: relative;
}
.include-grid-item::after {
  content: '';
  position: absolute;
  bottom: 10px; right: 10px;
  width: 12px; height: 12px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  opacity: 0.18;
}
.include-icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
  color: var(--gold);
}
.include-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}
.include-desc { font-size: 13px; color: var(--ink-3); }

/* ===== FIT ITEMS ===== */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px;
}
.fit-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.fit-text { font-size: 14px; color: var(--surface); line-height: 1.5; }

.not-fit-list { margin-top: 24px; }
.not-fit-item {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--ink-3);
  border-bottom: 1px solid rgba(196,150,58,0.06);
}
.not-fit-item:last-child { border-bottom: none; }
.not-fit-item::before { content: '✕'; color: var(--ink-3); flex-shrink: 0; }

/* ===== INSTRUCTOR ===== */
.instructor-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.instructor-name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}
.instructor-title { font-size: 13px; color: var(--gold-dim); letter-spacing: 0.5px; margin-bottom: 20px; }
.instructor-bio { font-size: 15px; color: var(--surface); line-height: 1.75; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--ink-3); }
select.form-input { appearance: none; cursor: pointer; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 40px;
  position: relative;
  max-width: 90vw;
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: var(--ink-3);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.modal-close:hover { color: var(--white); }

/* ===== RESULT CARD ===== */
.result-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.result-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.result-header.verified { color: #6BCB77; }
.result-header.error { color: #FF7070; }
.result-body { padding: 32px 28px; }
.result-name {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
}
.result-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-top: 24px;
  overflow: hidden;
}
.result-meta-item {
  background: var(--dark-3);
  padding: 16px 20px;
}
.result-meta-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 4px;
  display: block;
}
.result-meta-value {
  font-size: 14px;
  color: var(--white);
}
.result-meta-value.mono { font-family: var(--font-mono); font-size: 13px; color: var(--gold); }
.result-meta-value.distinction { color: var(--gold-light); }
.result-meta-value.pass { color: var(--ink-4); }

/* ===== ADMIN TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.data-table th {
  text-align: left;
  padding: 11px 16px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.data-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(196,150,58,0.07);
  color: var(--surface);
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(196,150,58,0.03); }
.table-actions { display: flex; gap: 6px; }

/* ===== PROMPT BOX ===== */
.prompt-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 2px 2px 0;
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--surface);
  line-height: 1.7;
  margin: 12px 0;
}
.prompt-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
  display: block;
}

/* ===== MODULE NAV ===== */
.module-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.module-nav a {
  font-size: 14px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.module-nav a:hover { color: var(--gold-light); }
.module-nav .center { font-size: 12px; color: var(--ink-3); letter-spacing: 0.5px; }

/* ===== COURSE PROGRESS ===== */
.progress-bar-track {
  height: 2px;
  background: var(--dark-3);
  border-radius: 1px;
  margin-top: 6px;
}
.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.3s;
}

/* ===== VIDEO EMBED ===== */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.video-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
}
.video-dur {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
}
.video-block { margin-bottom: 48px; }

/* ===== GLOW ===== */
.gold-glow { text-shadow: 0 0 48px rgba(196,150,58,0.4), 0 0 96px rgba(196,150,58,0.15); }
.gold-glow-bg {
  position: relative;
}
.gold-glow-bg::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(196,150,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
  margin: 48px 0;
}

/* ===== HERO GRID ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  min-height: calc(100vh - var(--nav-h));
  padding: calc(var(--nav-h) + 72px) 0 72px;
}
.hero-stat-note {
  font-size: 14px;
  color: var(--ink-3);
  font-style: italic;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--gold-dim);
  line-height: 1.5;
}
.hero-body {
  font-size: 17px;
  color: var(--ink-4);
  line-height: 1.75;
  margin: 20px 0 32px;
}

/* ===== SECTION HEADINGS ===== */
.section-head { margin-bottom: 56px; }
.section-head h2 { margin-top: 8px; }
.section-head p { font-size: 16px; color: var(--ink-3); margin-top: 16px; max-width: 560px; }

/* ===== FOR WHO GRID ===== */
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ===== BOTTOM CTA ===== */
.cta-section {
  text-align: center;
  padding: var(--pad-section) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(196,150,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-body {
  font-size: 17px;
  color: var(--ink-3);
  max-width: 520px;
  margin: 16px auto 36px;
  line-height: 1.7;
}
.cta-note { font-size: 12px; color: var(--ink-3); margin-top: 16px; letter-spacing: 0.3px; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-right { font-size: 13px; color: var(--ink-3); text-align: right; line-height: 1.6; }
.footer-right a { color: var(--gold-dim); transition: color 0.2s; }
.footer-right a:hover { color: var(--gold); }

/* ===== VERIFICATION PAGE ===== */
.verify-input-wrap {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 32px auto 0;
}
.verify-input-wrap .form-input { flex: 1; font-family: var(--font-mono); }

/* ===== ADMIN LAYOUT ===== */
.admin-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 32px;
}
.admin-stat {
  background: var(--dark-2);
  padding: 20px 24px;
}
.admin-stat-value {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.admin-stat-label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
  display: block;
}

/* ===== LOGIN FORM ===== */
.login-wrap {
  max-width: 400px;
  margin: 0 auto;
  padding-top: 80px;
}

/* ===== COURSE GRID ===== */
.module-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.module-card::after {
  content: '';
  position: absolute;
  bottom: 10px; right: 10px;
  width: 12px; height: 12px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  opacity: 0.2;
}
.module-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.module-card-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.5;
}
.module-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin: 8px 0;
  line-height: 1.3;
}
.module-card-meta {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 12px;
}

/* ===== UTILS ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-muted { color: var(--ink-3); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .admin-layout { grid-template-columns: 1fr; }
  .include-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  :root { --pad-x: 28px; --pad-section: 72px; }
  .for-who-grid { grid-template-columns: 1fr; gap: 40px; }
  .fit-grid { grid-template-columns: 1fr; }
  .result-meta { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .nav-links li:not(:last-child) { display: none; }
}
@media (max-width: 600px) {
  :root { --pad-x: 20px; }
  .include-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 40px; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { min-width: 40%; border-right: none; border-bottom: 1px solid var(--border); }
  .verify-input-wrap { flex-direction: column; }
  .admin-stats { grid-template-columns: 1fr; }
  .filter-tab { padding: 10px 14px; font-size: 12px; }
}
