:root {
  --navy-950: #071a2d;
  --navy-900: #0a2342;
  --navy-800: #12395e;
  --navy-700: #1c5077;
  --gold: #c59d56;
  --gold-soft: #f2eadb;
  --ink: #12263a;
  --text: #40546a;
  --muted: #6d7f91;
  --line: #dce5ec;
  --surface: #ffffff;
  --canvas: #f4f7f9;
  --success: #0a7a58;
  --success-bg: #e5f7f0;
  --warning: #976813;
  --warning-bg: #fff4d9;
  --shadow: 0 14px 40px rgba(11, 35, 61, .08);
  --radius: 18px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--canvas); }
body { margin: 0; min-height: 100vh; background: var(--canvas); color: var(--ink); }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.prototype-ribbon {
  align-items: center;
  background: var(--gold);
  color: var(--navy-950);
  display: flex;
  font-size: 12px;
  gap: 12px;
  height: 30px;
  justify-content: center;
  letter-spacing: .04em;
  position: relative;
  z-index: 100;
}
.prototype-ribbon strong { font-size: 10px; letter-spacing: .14em; }

.app-shell { display: flex; min-height: calc(100vh - 30px); }
.sidebar {
  background: var(--navy-950);
  color: white;
  display: flex;
  flex: 0 0 254px;
  flex-direction: column;
  min-height: calc(100vh - 30px);
  padding: 30px 20px 22px;
  position: sticky;
  top: 0;
}
.brand { color: white; display: flex; flex-direction: column; text-decoration: none; }
.brand-kicker { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .24em; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 600; letter-spacing: .025em; line-height: 1.03; margin-top: 5px; }
.brand-caption { color: #9fb0c1; font-size: 8px; letter-spacing: .07em; margin-top: 7px; text-transform: uppercase; }
.primary-nav { display: flex; flex: 1; flex-direction: column; gap: 4px; margin-top: 44px; }
.primary-nav a {
  align-items: center;
  border-radius: 10px;
  color: #becad5;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  gap: 13px;
  padding: 11px 13px;
  text-decoration: none;
  transition: .16s ease;
}
.primary-nav a span { color: #91a4b7; font-size: 18px; text-align: center; width: 20px; }
.primary-nav a:hover { background: rgba(255,255,255,.06); color: white; }
.primary-nav a.active { background: #123353; color: white; }
.primary-nav a.active span { color: var(--gold); }
.sidebar-footer { align-items: center; border-top: 1px solid rgba(255,255,255,.12); display: flex; gap: 10px; padding-top: 20px; }
.sidebar-footer div { display: flex; flex-direction: column; min-width: 0; }
.sidebar-footer strong { font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-footer small { color: #8fa2b5; font-size: 10px; margin-top: 3px; }
.user-avatar { align-items: center; background: var(--navy-800); border-radius: 50%; color: white; display: inline-flex; flex: 0 0 38px; font-size: 12px; font-weight: 800; height: 38px; justify-content: center; }

.content-shell { min-width: 0; width: 100%; }
.topbar {
  align-items: center;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 70px;
  justify-content: space-between;
  padding: 0 34px;
  position: sticky;
  top: 0;
  z-index: 20;
}
.breadcrumb { color: var(--muted); font-size: 13px; font-weight: 600; }
.breadcrumb span { color: #b8c3cd; margin: 0 7px; }
.top-actions, .heading-actions { align-items: center; display: flex; gap: 12px; }
.quiet-link { color: var(--text); font-size: 13px; font-weight: 700; text-decoration: none; }
.icon-button, .menu-button { background: white; border: 1px solid var(--line); border-radius: 10px; color: var(--navy-900); cursor: pointer; height: 38px; position: relative; width: 38px; }
.notification-dot { background: var(--gold); border: 2px solid white; border-radius: 50%; height: 8px; position: absolute; right: 7px; top: 6px; width: 8px; }
.menu-button { display: none; }
.page { margin: 0 auto; max-width: 1500px; padding: 38px 42px 60px; }

.page-heading { align-items: flex-end; display: flex; justify-content: space-between; margin-bottom: 30px; }
.page-heading h1, .student-hero h1, .course-header h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 50px); font-weight: 500; letter-spacing: -.035em; line-height: 1; margin: 7px 0 10px; }
.page-heading p, .student-hero p, .course-header p { color: var(--text); margin: 0; }
.page-heading-compact { align-items: center; }
.page-heading-compact h1 { font-size: 38px; }
.eyebrow { color: var(--navy-700); display: block; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.back-link { color: var(--navy-700); display: inline-block; font-size: 12px; font-weight: 700; margin-bottom: 10px; text-decoration: none; }
.muted { color: var(--muted); }
.button { align-items: center; border: 1px solid transparent; border-radius: 10px; cursor: pointer; display: inline-flex; font-size: 13px; font-weight: 800; justify-content: center; min-height: 42px; padding: 0 18px; text-decoration: none; }
.button-primary { background: var(--navy-900); color: white; }
.button-primary:hover { background: var(--navy-800); }
.button-secondary { background: white; border-color: var(--line); color: var(--navy-900); }

.metric-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); margin-bottom: 20px; }
.metric-card { background: white; border: 1px solid var(--line); border-radius: 16px; display: flex; flex-direction: column; min-height: 145px; padding: 22px; }
.metric-card > span { color: var(--text); font-size: 12px; font-weight: 700; }
.metric-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 38px; font-weight: 500; margin: 15px 0 8px; }
.metric-card small { color: var(--muted); font-size: 11px; }
.metric-gold { background: var(--gold-soft); border-color: #e5d3b1; }

.dashboard-grid { display: grid; gap: 20px; grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr); margin-bottom: 20px; }
.panel { background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 20px; padding: 24px; }
.panel-heading { align-items: flex-start; display: flex; justify-content: space-between; margin-bottom: 22px; }
.panel-heading h2, .section-heading h2 { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; margin: 5px 0 0; }
.panel-heading p { color: var(--muted); font-size: 12px; margin: 6px 0 0; }
.panel-heading > a { color: var(--navy-700); font-size: 12px; font-weight: 800; text-decoration: none; }
.course-list { display: flex; flex-direction: column; }
.course-row { align-items: center; border-top: 1px solid #edf1f4; display: grid; gap: 15px; grid-template-columns: 42px minmax(150px, 1fr) minmax(130px, .55fr) auto; min-height: 82px; }
.course-row:first-child { border-top: 0; }
.course-mark { align-items: center; background: var(--navy-900); border-radius: 10px; color: white; display: flex; font-family: Georgia, serif; font-size: 18px; height: 42px; justify-content: center; }
.course-main, .course-progress { display: flex; flex-direction: column; }
.course-main strong { font-size: 13px; }
.course-main small, .course-progress small { color: var(--muted); font-size: 10px; margin-top: 5px; }
.course-progress > span, .linear-progress { background: #e8edf2; border-radius: 10px; display: block; height: 6px; overflow: hidden; width: 100%; }
.course-progress i, .linear-progress i { background: var(--gold); border-radius: inherit; display: block; height: 100%; }
.status { border-radius: 100px; display: inline-flex; font-size: 9px; font-weight: 800; letter-spacing: .035em; padding: 6px 9px; text-transform: uppercase; width: fit-content; }
.status.success { background: var(--success-bg); color: var(--success); }
.status.warning { background: var(--warning-bg); color: var(--warning); }
.status.neutral { background: #e9eef3; color: #53687b; }
.task-list { list-style: none; margin: 0; padding: 0; }
.task-list li { align-items: center; border-top: 1px solid #edf1f4; display: grid; gap: 11px; grid-template-columns: 10px 1fr auto; padding: 16px 0; }
.task-list li:first-child { border-top: 0; padding-top: 2px; }
.task-list div { display: flex; flex-direction: column; }
.task-list strong { font-size: 12px; }
.task-list small { color: var(--muted); font-size: 10px; margin-top: 4px; }
.task-list b { color: var(--navy-700); }
.task-dot { border-radius: 50%; height: 8px; width: 8px; }
.task-dot.gold { background: var(--gold); }.task-dot.blue { background: #4d82ad; }.task-dot.green { background: #32a77d; }
.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.timeline-grid > div { border-left: 1px solid var(--line); display: grid; gap: 6px; grid-template-columns: 55px 12px 1fr; padding: 5px 22px; }
.timeline-grid > div:first-child { border-left: 0; padding-left: 0; }
.timeline-grid span { color: var(--muted); font-size: 10px; }
.timeline-grid i { background: var(--gold); border-radius: 50%; height: 8px; margin-top: 3px; width: 8px; }
.timeline-grid strong, .timeline-grid small { grid-column: 3; }
.timeline-grid strong { font-size: 12px; }.timeline-grid small { color: var(--muted); font-size: 10px; }

.filter-bar { align-items: center; display: flex; gap: 10px; margin-bottom: 22px; }
.search-field { align-items: center; background: white; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); display: flex; flex: 1; font-size: 12px; gap: 8px; height: 42px; max-width: 390px; padding: 0 14px; }
.search-small { max-width: 220px; }
.chip { background: white; border: 1px solid var(--line); border-radius: 100px; color: var(--text); cursor: pointer; font-size: 11px; font-weight: 700; padding: 9px 13px; }
.chip b { background: #eef2f5; border-radius: 20px; font-size: 9px; margin-left: 4px; padding: 3px 6px; }
.chip.active { background: var(--navy-900); border-color: var(--navy-900); color: white; }
.chip.active b { background: rgba(255,255,255,.15); }
.training-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.training-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.training-cover { background: var(--navy-900); color: white; display: flex; flex-direction: column; height: 150px; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; }
.training-cover::before, .training-cover::after { border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; height: 180px; position: absolute; right: -45px; top: -80px; width: 180px; }
.training-cover::after { height: 110px; right: 0; top: 60px; width: 110px; }
.training-cover span { color: #c8d4de; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.training-cover b { color: var(--gold); font-family: Georgia, serif; font-size: 50px; font-weight: 400; line-height: .9; position: relative; z-index: 2; }
.cover-2 { background: #31516b; }.cover-3 { background: #7d6234; }
.training-body { padding: 20px; }
.training-meta { align-items: center; display: flex; justify-content: space-between; }
.training-meta small { color: var(--muted); font-size: 10px; }
.training-body h2 { font-family: Georgia, serif; font-size: 23px; font-weight: 500; margin: 16px 0 8px; }
.training-body p { color: var(--text); font-size: 11px; line-height: 1.5; min-height: 34px; }
.training-facts { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: flex; gap: 18px; margin: 18px 0; padding: 13px 0; }
.training-facts span { color: var(--muted); font-size: 10px; }.training-facts b { color: var(--ink); }
.card-actions { align-items: center; display: flex; gap: 12px; justify-content: space-between; }
.card-actions a { color: var(--navy-700); font-size: 11px; font-weight: 800; text-decoration: none; }
.card-actions button { background: white; border: 0; color: var(--muted); cursor: pointer; }
.training-card-add { min-height: 382px; }
.training-card-add a { align-items: center; color: var(--muted); display: flex; flex-direction: column; height: 100%; justify-content: center; min-height: 382px; text-decoration: none; }
.training-card-add span { align-items: center; border: 1px dashed #aebdca; border-radius: 50%; color: var(--navy-700); display: flex; font-size: 30px; height: 68px; justify-content: center; margin-bottom: 15px; width: 68px; }
.training-card-add strong { color: var(--navy-900); font-size: 13px; }.training-card-add small { font-size: 10px; margin-top: 5px; }

.editor-status { align-items: center; background: white; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); display: flex; font-size: 11px; gap: 12px; margin-bottom: 20px; padding: 12px 15px; }
.editor-status b { color: var(--navy-700); margin-left: auto; }
.editor-layout { align-items: start; display: grid; gap: 20px; grid-template-columns: 230px minmax(0, 1fr); }
.editor-steps { background: white; border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; padding: 10px; }
.editor-steps a { align-items: center; border-radius: 10px; display: flex; gap: 11px; padding: 13px 10px; text-decoration: none; }
.editor-steps a > span { align-items: center; background: #edf1f4; border-radius: 50%; color: var(--muted); display: flex; flex: 0 0 28px; font-size: 10px; font-weight: 800; height: 28px; justify-content: center; }
.editor-steps div { display: flex; flex-direction: column; }.editor-steps strong { font-size: 11px; }.editor-steps small { color: var(--muted); font-size: 9px; margin-top: 3px; }
.editor-steps a.active { background: #edf4f8; }.editor-steps a.active > span { background: var(--navy-900); color: white; }
.editor-steps a.done > span { background: var(--success-bg); color: var(--success); }
.editor-canvas { margin: 0; }
.module-card { border: 1px solid var(--line); border-radius: 13px; margin-bottom: 12px; overflow: hidden; }
.module-heading { align-items: center; background: #f7f9fb; display: grid; gap: 11px; grid-template-columns: 20px 38px minmax(0,1fr) auto 24px; min-height: 72px; padding: 10px 15px; }
.module-heading > div { display: flex; flex-direction: column; }.module-heading strong { font-size: 12px; }.module-heading small { color: var(--muted); font-size: 9px; margin-top: 4px; }
.module-heading button { background: none; border: 0; color: var(--muted); }
.drag { color: #a6b4c0; font-size: 14px; }
.module-number { align-items: center; background: var(--navy-900); border-radius: 9px; color: white; display: flex; font-family: Georgia, serif; height: 38px; justify-content: center; }
.lesson-list { padding: 0 16px 14px 62px; }
.lesson-list > div { align-items: center; border-top: 1px solid #edf1f4; display: grid; gap: 10px; grid-template-columns: 18px 34px minmax(0,1fr) auto; min-height: 68px; }
.lesson-list > div > div { display: flex; flex-direction: column; }.lesson-list strong { font-size: 11px; }.lesson-list small { color: var(--muted); font-size: 9px; margin-top: 4px; }
.lesson-kind { align-items: center; background: #edf2f6; border-radius: 8px; color: var(--navy-700); display: flex; font-size: 10px; font-style: normal; height: 32px; justify-content: center; }
.add-row, .add-module { background: white; border: 1px dashed #aebdca; border-radius: 9px; color: var(--navy-700); cursor: pointer; font-size: 10px; font-weight: 800; padding: 11px; width: 100%; }
.module-collapsed .module-heading { background: white; }
.add-module { margin-top: 4px; padding: 15px; }

.student-hero { align-items: center; background: var(--navy-900); border-radius: 24px; color: white; display: flex; justify-content: space-between; margin-bottom: 32px; min-height: 250px; overflow: hidden; padding: 40px 46px; position: relative; }
.student-hero::after { border: 1px solid rgba(255,255,255,.11); border-radius: 50%; content: ""; height: 360px; position: absolute; right: -140px; top: -160px; width: 360px; }
.student-hero .eyebrow { color: var(--gold); }.student-hero p { color: #c2ced8; margin-bottom: 24px; }
.student-hero .button { background: var(--gold); color: var(--navy-950); position: relative; z-index: 2; }
.hero-progress { align-items: center; display: flex; gap: 22px; position: relative; z-index: 2; }
.hero-progress > div:last-child { display: flex; flex-direction: column; max-width: 190px; }
.hero-progress strong { font-size: 14px; }.hero-progress small { color: #bac8d4; font-size: 10px; margin: 5px 0 12px; }.hero-progress span { color: var(--gold); font-size: 10px; }
.progress-ring { align-items: center; background: conic-gradient(var(--gold) 0 68%, rgba(255,255,255,.13) 68%); border-radius: 50%; display: flex; height: 112px; justify-content: center; width: 112px; }
.progress-ring::before { background: var(--navy-900); border-radius: 50%; content: ""; height: 82px; position: absolute; width: 82px; }
.progress-ring span { color: white; font-family: Georgia, serif; font-size: 25px; position: relative; }
.page-section { margin: 36px 0; }
.section-heading { align-items: flex-end; display: flex; justify-content: space-between; margin-bottom: 18px; }
.learning-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.learning-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); display: grid; grid-template-columns: 180px minmax(0,1fr); overflow: hidden; }
.learning-visual { align-items: center; background: var(--navy-900); color: white; display: flex; flex-direction: column; justify-content: center; min-height: 240px; position: relative; }
.learning-visual::after { border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ""; height: 160px; position: absolute; width: 160px; }
.learning-visual span, .learning-visual small { font-size: 8px; font-weight: 800; letter-spacing: .16em; position: relative; z-index: 2; }
.learning-visual strong { color: var(--gold); font-family: Georgia, serif; font-size: 55px; font-weight: 400; line-height: 1; margin: 8px 0; position: relative; z-index: 2; }
.visual-gold { background: #735a2f; }.visual-gold strong { color: white; font-size: 40px; }
.learning-content { display: flex; flex-direction: column; padding: 24px; }
.learning-content h2 { font-family: Georgia, serif; font-size: 24px; font-weight: 500; margin: 13px 0 7px; }
.learning-content p { color: var(--text); font-size: 11px; line-height: 1.55; }
.learning-content > a { color: var(--navy-700); font-size: 11px; font-weight: 800; margin-top: auto; text-decoration: none; }
.progress-label { color: var(--muted); display: flex; font-size: 9px; justify-content: space-between; margin: 7px 0 18px; }
.learning-info { color: var(--muted); display: flex; font-size: 10px; gap: 18px; margin: 16px 0; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { border-top: 1px solid #edf1f4; color: var(--text); font-size: 11px; padding: 13px 0 13px 28px; position: relative; }
.check-list li::before { align-items: center; border: 1px solid #b8c4ce; border-radius: 50%; color: white; content: ""; display: flex; height: 17px; justify-content: center; left: 0; position: absolute; top: 11px; width: 17px; }
.check-list li.checked::before { background: var(--success); border-color: var(--success); content: "✓"; font-size: 9px; }
.certificate-callout { align-items: center; background: var(--gold-soft); display: flex; gap: 20px; }
.credential-seal { align-items: center; background: var(--gold); border: 5px solid #ead3a7; border-radius: 50%; color: var(--navy-950); display: flex; flex: 0 0 82px; font-family: Georgia, serif; font-size: 20px; height: 82px; justify-content: center; }
.certificate-callout h2 { font-family: Georgia, serif; font-size: 23px; font-weight: 500; margin: 7px 0; }.certificate-callout p { color: var(--text); font-size: 11px; }

.course-header { align-items: end; display: flex; justify-content: space-between; margin-bottom: 24px; }
.course-header .eyebrow { margin-top: 10px; }.course-header h1 { font-size: 42px; }
.course-summary { align-items: end; display: flex; flex-direction: column; min-width: 180px; }.course-summary strong { font-family: Georgia, serif; font-size: 30px; }.course-summary span { color: var(--muted); font-size: 10px; margin: 3px 0 9px; }
.course-layout { align-items: start; display: grid; gap: 20px; grid-template-columns: minmax(0, 1fr) 320px; }
.video-frame { aspect-ratio: 16/9; background: radial-gradient(circle at 50% 40%, #204f73, var(--navy-950) 68%); border-radius: var(--radius); color: white; display: flex; flex-direction: column; justify-content: center; overflow: hidden; position: relative; }
.video-frame::before { border: 1px solid rgba(255,255,255,.09); border-radius: 50%; content: ""; height: 360px; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%); width: 360px; }
.video-brand { align-items: center; display: flex; flex-direction: column; position: relative; }.video-brand span { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .17em; }.video-brand strong { font-family: Georgia, serif; font-size: 28px; font-weight: 400; margin-top: 8px; }
.play-button { align-items: center; background: var(--gold); border: 0; border-radius: 50%; color: var(--navy-950); cursor: pointer; display: flex; height: 58px; justify-content: center; left: 50%; padding-left: 5px; position: absolute; top: 62%; transform: translate(-50%,-50%); width: 58px; }
.video-controls { align-items: center; bottom: 0; display: grid; font-size: 9px; gap: 10px; grid-template-columns: auto 1fr auto auto; left: 0; padding: 14px 18px; position: absolute; right: 0; }
.video-controls i { background: rgba(255,255,255,.25); border-radius: 5px; height: 3px; }.video-controls b { background: var(--gold); display: block; height: 100%; }
.lesson-details { padding: 28px 6px; }.lesson-details h1 { font-family: Georgia, serif; font-size: 32px; font-weight: 500; margin: 8px 0; }.lesson-details p { color: var(--text); font-size: 13px; line-height: 1.6; }
.lesson-meta { color: var(--muted); display: flex; font-size: 10px; gap: 18px; margin: 18px 0; }.lesson-actions { border-top: 1px solid var(--line); display: flex; justify-content: space-between; padding-top: 20px; }
.resources { box-shadow: none; }.resources > a { align-items: center; border: 1px solid var(--line); border-radius: 11px; display: grid; gap: 12px; grid-template-columns: 42px 1fr auto; padding: 13px; text-decoration: none; }.resources > a div { display: flex; flex-direction: column; }.resources strong { font-size: 11px; }.resources small { color: var(--muted); font-size: 9px; margin-top: 4px; }.resources b { color: var(--navy-700); font-size: 10px; }
.file-icon { align-items: center; background: #f5e7e7; border-radius: 8px; color: #984242; display: flex; font-size: 9px; font-weight: 800; height: 42px; justify-content: center; }
.curriculum { background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: sticky; top: 90px; }
.curriculum-heading { align-items: center; background: var(--navy-900); color: white; display: flex; font-size: 12px; font-weight: 800; justify-content: space-between; padding: 17px; }.curriculum-heading b { color: var(--gold); }
.curriculum details { border-bottom: 1px solid var(--line); }.curriculum summary { align-items: center; cursor: pointer; display: flex; justify-content: space-between; list-style: none; padding: 15px 17px; }.curriculum summary > span { display: flex; flex-direction: column; }.curriculum summary small { color: var(--muted); font-size: 8px; }.curriculum summary strong { font-size: 11px; margin-top: 3px; }.curriculum summary b { color: var(--muted); font-size: 9px; }
.curriculum details a { color: var(--text); display: block; font-size: 9px; line-height: 1.4; padding: 10px 16px 10px 30px; text-decoration: none; }.curriculum details a.complete { color: var(--success); }.curriculum details a.current { background: #eaf1f6; border-left: 3px solid var(--gold); color: var(--navy-900); font-weight: 800; }
.assessment-lock { align-items: center; background: #f4f6f8; color: var(--muted); display: flex; gap: 10px; padding: 15px; }.assessment-lock div { display: flex; flex-direction: column; }.assessment-lock strong { font-size: 10px; }.assessment-lock small { font-size: 8px; margin-top: 3px; }

.certificate-grid { display: grid; gap: 22px; grid-template-columns: repeat(2, 1fr); }
.certificate-reference { align-items: center; display: grid; gap: 32px; grid-template-columns: minmax(0, 1.7fr) minmax(260px, .65fr); }
.certificate-artwork-frame { background: #eef2f5; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.certificate-artwork-frame img { display: block; height: auto; width: 100%; }
.certificate-reference-notes { display: flex; flex-direction: column; }
.certificate-reference-notes .eyebrow { margin-top: 20px; }
.certificate-reference-notes h2 { font-family: Georgia, serif; font-size: 28px; font-weight: 500; margin: 8px 0 12px; }
.certificate-reference-notes > p { color: var(--text); font-size: 12px; line-height: 1.6; margin: 0; }
.certificate-reference-notes dl { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; gap: 13px; grid-template-columns: 1fr 1fr; margin: 22px 0 16px; padding: 18px 0; }
.certificate-reference-notes dl div { display: flex; flex-direction: column; }
.certificate-reference-notes dt { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.certificate-reference-notes dd { font-size: 10px; font-weight: 800; margin: 5px 0 0; }
.certificate-reference-notes > small { color: var(--muted); font-size: 9px; line-height: 1.5; }
.credential-library .section-heading > span { font-size: 10px; }
.seal-gallery { display: grid; gap: 14px; grid-template-columns: repeat(6, minmax(120px, 1fr)); }
.seal-card { background: white; border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 8px 24px rgba(11,35,61,.055); margin: 0; overflow: hidden; }
.seal-card img { background: linear-gradient(145deg, #f8fafb, #eef2f5); display: block; height: 180px; object-fit: contain; padding: 14px 12px 6px; width: 100%; }
.seal-card figcaption { border-top: 1px solid var(--line); display: flex; flex-direction: column; min-height: 68px; padding: 13px; }
.seal-card strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 18px; font-weight: 500; }
.seal-card span { color: var(--muted); font-size: 8px; line-height: 1.35; margin-top: 4px; }
.certificate-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.certificate-preview { align-items: center; aspect-ratio: 1.6/1; background: #fff; border-bottom: 8px solid var(--navy-900); display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 30px; position: relative; text-align: center; }
.certificate-preview::after { background: var(--gold); bottom: -35px; content: ""; height: 65px; position: absolute; right: -30px; transform: rotate(-18deg); width: 180px; }
.watermark-compass { color: rgba(10,35,66,.055); font-size: 180px; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%); }
.certificate-brand { color: var(--navy-900); font-size: 7px; font-weight: 900; letter-spacing: .18em; margin-bottom: 22px; }.certificate-preview > small { color: var(--muted); font-size: 6px; letter-spacing: .15em; }.certificate-preview > strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 24px; font-weight: 500; margin: 9px 0; }.certificate-preview > p { color: var(--muted); font-size: 6px; margin: 0; }.certificate-preview > b { color: var(--gold); font-family: Georgia, serif; font-size: 15px; margin-top: 8px; }.certificate-footer { bottom: 12px; display: flex; font-size: 7px; justify-content: space-between; left: 20px; position: absolute; right: 20px; z-index: 2; }
.certificate-info { padding: 24px; }.certificate-info h2 { font-family: Georgia, serif; font-size: 23px; font-weight: 500; margin: 14px 0 7px; }.certificate-info > p { color: var(--muted); font-size: 10px; }.certificate-info dl { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.4fr 1fr; margin: 18px 0; padding: 13px 0; }.certificate-info dl div { display: flex; flex-direction: column; }.certificate-info dt { color: var(--muted); font-size: 8px; text-transform: uppercase; }.certificate-info dd { font-size: 10px; font-weight: 800; margin: 4px 0 0; }
.pending-preview { background: #f0f3f6; gap: 10px; }.pending-preview::after { display: none; }.pending-preview .credential-seal { opacity: .72; }.pending-preview > strong { font-size: 18px; }.pending-preview > p { font-size: 10px; }
.official-seal-preview { background: linear-gradient(145deg, #f8fafb, #e9eef2); padding: 16px; }
.official-seal-preview::after { display: none; }
.official-seal-preview img { height: 100%; max-height: 260px; object-fit: contain; width: 100%; }
.pending-preview.official-seal-preview img { filter: grayscale(.7); opacity: .55; }

.contract-summary { background: var(--navy-900); border-radius: var(--radius); color: white; display: grid; grid-template-columns: repeat(4,1fr); margin-bottom: 20px; padding: 22px; }.contract-summary > div { border-left: 1px solid rgba(255,255,255,.15); display: flex; flex-direction: column; padding: 0 20px; }.contract-summary > div:first-child { border-left: 0; }.contract-summary span { color: #aebdca; font-size: 9px; margin-bottom: 6px; }.contract-summary strong { font-size: 12px; }.contract-summary .status { color: #7ee0bd; padding: 0; }
.people-list { display: flex; flex-direction: column; }.person-row { align-items: center; border-top: 1px solid #edf1f4; display: grid; gap: 15px; grid-template-columns: 40px minmax(180px,1fr) 100px 100px 120px 20px; min-height: 76px; }.person-row:first-child { border-top: 0; }.person-row > div { display: flex; flex-direction: column; }.person-row > div strong { font-size: 12px; }.person-row > div small { color: var(--muted); font-size: 9px; margin-top: 4px; }.person-row > span:not(.user-avatar,.status) { display: flex; flex-direction: column; }.person-row > span b { font-size: 12px; }.person-row > span small { color: var(--muted); font-size: 8px; margin-top: 3px; }.gold-avatar { background: var(--gold); color: var(--navy-950); }.pale-avatar { background: #dfe7ed; color: var(--navy-900); }

.access-page { display: grid; grid-template-columns: 1.05fr .95fr; min-height: calc(100vh - 30px); }
.access-intro { background: var(--navy-950); color: white; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 54px 7vw; position: relative; }
.access-intro::before, .access-intro::after { border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; height: 560px; position: absolute; right: -220px; top: 15%; width: 560px; }.access-intro::after { height: 370px; right: -10px; top: 36%; width: 370px; }
.brand-dark { position: relative; width: fit-content; z-index: 2; }.brand-dark .brand-name { font-size: 27px; }.brand-dark .brand-caption { font-size: 9px; }
.access-copy { max-width: 610px; position: relative; z-index: 2; }.access-copy .eyebrow { color: var(--gold); }.access-copy h1 { font-family: Georgia, serif; font-size: clamp(42px, 5vw, 68px); font-weight: 400; letter-spacing: -.04em; line-height: .99; margin: 18px 0 24px; }.access-copy p { color: #bcc9d4; font-size: 16px; line-height: 1.6; max-width: 520px; }
.access-metrics { display: flex; gap: 42px; position: relative; z-index: 2; }.access-metrics div { display: flex; flex-direction: column; }.access-metrics strong { color: var(--gold); font-family: Georgia, serif; font-size: 24px; font-weight: 400; }.access-metrics span { color: #8fa3b6; font-size: 9px; margin-top: 4px; text-transform: uppercase; }
.access-panel { align-items: center; background: #f5f7f8; display: flex; justify-content: center; padding: 50px 6vw; }
.access-card { max-width: 570px; width: 100%; }.access-card h2 { font-family: Georgia, serif; font-size: 38px; font-weight: 500; letter-spacing: -.03em; margin: 9px 0; }.access-card > p { font-size: 12px; }
.role-grid { display: grid; gap: 10px; margin-top: 28px; }
.role-card { align-items: center; background: white; border: 1px solid var(--line); border-radius: 14px; display: grid; gap: 14px; grid-template-columns: 44px 1fr auto; padding: 15px; text-decoration: none; transition: .18s ease; }.role-card:hover { border-color: #9aafc1; box-shadow: var(--shadow); transform: translateY(-2px); }.role-card > span:nth-child(2) { display: flex; flex-direction: column; }.role-card strong { font-size: 12px; }.role-card small { color: var(--muted); font-size: 9px; margin-top: 4px; }.role-card b { color: var(--navy-700); }.role-icon { align-items: center; background: var(--navy-900); border-radius: 11px; color: white; display: flex; font-family: Georgia, serif; font-size: 17px; height: 44px; justify-content: center; }.role-card-light .role-icon { background: var(--gold); color: var(--navy-950); }.prototype-note { background: var(--gold-soft); border-left: 3px solid var(--gold); border-radius: 8px; color: var(--text); line-height: 1.5; margin-top: 22px; padding: 12px; }

.validation-page { background: #f5f7f8; min-height: calc(100vh - 30px); }
.public-header { align-items: center; background: var(--navy-950); color: white; display: flex; justify-content: space-between; padding: 22px 6vw; }.public-header .brand-name { font-size: 16px; }.public-header > a:last-child { border: 1px solid rgba(255,255,255,.35); border-radius: 9px; font-size: 11px; font-weight: 800; padding: 10px 15px; text-decoration: none; }
.validation-hero { background: white; padding: 62px 6vw 92px; text-align: center; }.validation-hero h1 { font-family: Georgia, serif; font-size: clamp(38px, 5vw, 58px); font-weight: 500; letter-spacing: -.035em; margin: 12px 0; }.validation-hero > p { color: var(--text); font-size: 14px; }
.validation-form { margin: 34px auto 0; max-width: 680px; text-align: left; }.validation-form label { display: block; font-size: 10px; font-weight: 800; margin-bottom: 7px; }.validation-form > div { display: grid; grid-template-columns: 1fr auto; }.validation-form input { border: 1px solid #bdc9d3; border-radius: 10px 0 0 10px; color: var(--ink); min-width: 0; padding: 14px; }.validation-form button { background: var(--navy-900); border: 0; border-radius: 0 10px 10px 0; color: white; cursor: pointer; font-size: 11px; font-weight: 800; padding: 0 20px; }.validation-form small { color: var(--muted); display: block; font-size: 9px; margin-top: 8px; }
.validation-result { background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); display: grid; gap: 20px; grid-template-columns: 72px 1fr; margin: -48px auto 60px; max-width: 980px; padding: 34px; position: relative; }.valid-icon { align-items: center; background: var(--success-bg); border-radius: 50%; color: var(--success); display: flex; font-size: 25px; height: 58px; justify-content: center; width: 58px; }.validation-main h2 { font-family: Georgia, serif; font-size: 31px; font-weight: 500; margin: 8px 0; }.validation-main p { color: var(--text); font-size: 11px; }.validation-data { border-top: 1px solid var(--line); display: grid; gap: 18px; grid-column: 1/-1; grid-template-columns: repeat(3,1fr); padding-top: 22px; }.validation-data div { display: flex; flex-direction: column; }.validation-data span { color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; }.validation-data strong { font-size: 11px; margin-top: 5px; }.validation-actions { align-items: center; border-top: 1px solid var(--line); display: flex; grid-column: 1/-1; justify-content: space-between; padding-top: 20px; }.validation-actions > span { color: var(--muted); font-size: 9px; }.public-footer { border-top: 1px solid var(--line); color: var(--muted); display: flex; font-size: 9px; justify-content: space-between; padding: 24px 6vw; }

@media (max-width: 1180px) {
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .training-grid { grid-template-columns: repeat(2,1fr); }
  .learning-grid { grid-template-columns: 1fr; }
  .course-layout { grid-template-columns: 1fr; }
  .curriculum { position: static; }
  .certificate-grid { grid-template-columns: 1fr; }
  .seal-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .sidebar { bottom: 0; left: -270px; position: fixed; top: 30px; transition: .2s ease; z-index: 60; }
  .menu-open .sidebar { left: 0; }
  .menu-open::after { background: rgba(0,0,0,.38); bottom: 0; content: ""; left: 0; position: fixed; right: 0; top: 30px; z-index: 50; }
  .menu-button { display: inline-block; }
  .topbar { padding: 0 20px; }
  .breadcrumb { display: none; }
  .page { padding: 28px 22px 50px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .editor-layout { grid-template-columns: 1fr; }
  .editor-steps { display: grid; grid-template-columns: repeat(3,1fr); }
  .access-page { grid-template-columns: 1fr; }
  .access-intro { min-height: 620px; padding: 45px 8vw; }
  .access-panel { padding: 50px 8vw; }
  .contract-summary { grid-template-columns: repeat(2,1fr); row-gap: 20px; }
  .contract-summary > div:nth-child(3) { border-left: 0; }
  .person-row { grid-template-columns: 40px 1fr auto; padding: 12px 0; }
  .person-row > span:not(.user-avatar,.status) { display: none; }
  .certificate-reference { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .prototype-ribbon span { display: none; }
  .page-heading, .course-header, .student-hero { align-items: flex-start; flex-direction: column; gap: 20px; }
  .page-heading .button, .heading-actions { width: 100%; }
  .heading-actions .button { flex: 1; }
  .metric-grid, .training-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: 125px; }
  .course-row { grid-template-columns: 40px 1fr auto; padding: 10px 0; }
  .course-progress { display: none; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-grid > div, .timeline-grid > div:first-child { border-left: 0; border-top: 1px solid var(--line); padding: 14px 0; }
  .filter-bar { align-items: stretch; flex-wrap: wrap; }
  .search-field { flex-basis: 100%; max-width: none; }
  .editor-steps { display: flex; flex-direction: row; overflow-x: auto; }
  .editor-steps a { min-width: 155px; }
  .module-heading { grid-template-columns: 20px 38px 1fr 24px; }
  .module-heading .status { display: none; }
  .lesson-list { padding-left: 12px; }
  .lesson-list > div { grid-template-columns: 28px 1fr auto; }
  .lesson-list .drag { display: none; }
  .student-hero { padding: 30px; }
  .hero-progress { width: 100%; }
  .learning-card { grid-template-columns: 1fr; }
  .learning-visual { min-height: 170px; }
  .lesson-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
  .lesson-actions { gap: 8px; }.lesson-actions .button { flex: 1; font-size: 10px; }
  .certificate-preview { padding: 18px; }
  .certificate-preview > strong { font-size: 18px; }
  .seal-gallery { grid-template-columns: repeat(2, 1fr); }
  .seal-card img { height: 160px; }
  .certificate-reference-notes dl { grid-template-columns: 1fr; }
  .contract-summary { grid-template-columns: 1fr; }
  .contract-summary > div { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding: 13px 0 0; }
  .contract-summary > div:first-child { border-top: 0; padding-top: 0; }
  .access-intro { min-height: 560px; }
  .access-copy h1 { font-size: 42px; }
  .access-metrics { gap: 22px; }
  .role-card { grid-template-columns: 42px 1fr auto; }
  .public-header { padding: 18px 20px; }.public-header > a:last-child { display: none; }
  .validation-hero { padding: 45px 20px 80px; }
  .validation-form > div { grid-template-columns: 1fr; gap: 8px; }.validation-form input, .validation-form button { border-radius: 9px; min-height: 46px; }
  .validation-result { margin: -42px 14px 45px; padding: 22px; }
  .validation-data { grid-template-columns: 1fr 1fr; }
  .validation-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .public-footer { flex-direction: column; gap: 6px; }
}
