/* ── Design Tokens ── */
:root {
  /* Brand — from design handoff (NCA canonical colors) */
  --blue: #2988C9;
  --blue-dark: #1E6BA3;
  --blue-darker: #1E4E78;
  --blue-light: #E4F0FC;
  --blue-gradient-start: #2C90D1;
  --blue-gradient-end: #1E6BA3;

  --gold: #FBB018;
  --gold-text: #C98A0C;
  --gold-dark: #A9760A;
  --gold-light: #FCF0D8;

  --red: #F03C24;
  --red-text: #D8402A;
  --red-dark: #C0392B;
  --red-light: #FCE4DF;

  --teal: #00B4A8;
  --teal-text: #009186;
  --teal-dark: #1E9E5A;
  --teal-light: #E4FCF0;

  --green: #5BBE54;

  /* Year coding (NCA canonical) */
  --year1: var(--blue);       /* Notice */
  --year2: var(--red);        /* Choose */
  --year3: var(--gold);       /* Act */

  /* Neutrals */
  --ink: #242424;
  --body: #3C4A55;
  --body-alt: #55605A;
  --muted: #8B968D;
  --muted-alt: #8B83A8;
  --caption: #9AA69C;
  --border: #E8ECE6;
  --border-lavender: #E2DCF0;
  --bg-page: #F4F7F3;
  --bg-sidebar: #F7FBF5;
  --bg-hover: #F1F4EF;
  --white: #FFFFFF;

  /* Pastel panels */
  --panel-blue: #E4F0FC;
  --panel-gold: #FCF0D8;
  --panel-teal: #E4FCF0;
  --panel-coral: #FCE4DF;
  --panel-lavender: #EFEBF7;
  --panel-lavender-light: #F6F2FC;
  --panel-cream: #FBF3DE;

  /* Success/error */
  --success: #1E9E5A;
  --success-bg: #E7F7ED;
  --success-text: #1E7A4A;
  --error: #C0392B;
  --error-bg: #FCE4DF;
  --error-text: #7A2A1E;

  /* Typography */
  --font-display: 'Anton', sans-serif;
  --font-heading: 'Barlow Semi Condensed', sans-serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container-max: 1240px;
  --sidebar-width: 248px;
  --section-gap: 60px;

  /* Radius */
  --radius-card: 16px;
  --radius-btn: 11px;
  --radius-chip: 10px;
  --radius-pill: 999px;
  --radius-frame: 18px;

  /* Shadows */
  --shadow-card: 0 16px 34px -28px rgba(36,36,36,.4);
  --shadow-frame: 0 40px 80px -34px rgba(36,36,36,.45);
  --shadow-btn: 0 12px 22px -12px rgba(41,136,201,.6);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-page);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--ink); }
button, input, select, textarea { font-family: inherit; }

/* ── Animations ── */
@keyframes ldtpeFill { from { width: 0%; } to { width: 100%; } }
@keyframes ldtpeFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ldtpeGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(41,136,201,.55); } 50% { box-shadow: 0 0 0 9px rgba(41,136,201,0); } }

/* ── Typography Helpers ── */
.font-display { font-family: var(--font-display); }
.font-heading { font-family: var(--font-heading); }
.eyebrow {
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: .7px;
  text-transform: uppercase;
}

/* ── Layout ── */
.ldtpe-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.btn:hover { opacity: .9; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  padding: 13px 22px;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  font-size: 15px;
  padding: 14px 22px;
}
.btn-ghost {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 14px;
  padding: 11px 18px;
}
.btn-outline {
  background: var(--white);
  border: 1.5px solid #E0E6DD;
  color: var(--ink);
  font-size: 13.5px;
  padding: 10px 16px;
}
.btn-disabled {
  background: #C7CFD9;
  color: var(--white);
  cursor: not-allowed;
}
.btn-success {
  background: var(--success);
  color: var(--white);
  font-size: 15px;
  padding: 13px 26px;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px;
}

/* ── Chips / Pills ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 800;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
}
.chip-blue { background: var(--panel-blue); color: var(--blue-dark); }
.chip-gold { background: var(--panel-gold); color: var(--gold-dark); }
.chip-teal { background: var(--panel-teal); color: var(--teal-text); }
.chip-muted { background: var(--bg-page); color: var(--caption); }
.chip-success { background: var(--success-bg); color: var(--success-text); }

/* ── Progress Bars ── */
.progress-bar {
  height: 9px;
  border-radius: var(--radius-pill);
  background: #EEF1EC;
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  border-radius: var(--radius-pill);
  transition: width .4s ease;
}

/* ── Blob Shapes (curriculum manual signature) ── */
.blob {
  position: absolute;
  border-radius: 46% 54% 62% 38% / 54% 42% 58% 46%;
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   LANDING PAGE
   ══════════════════════════════════════════════ */

.landing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

/* Brand + login panel */
.landing-brand {
  position: relative;
  background: linear-gradient(158deg, var(--blue-gradient-start) 0%, var(--blue-gradient-end) 100%);
  overflow: hidden;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.landing-brand .blob {
  width: 360px;
  height: 360px;
  background: rgba(255,255,255,.07);
  top: -140px;
  left: -90px;
}
.landing-brand__ait-chip {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  background: var(--white);
  border-radius: var(--radius-chip);
  padding: 7px 10px;
}
.landing-brand__ait-chip img { height: 34px; }
.landing-brand__content { position: relative; }
.landing-brand__logo-chip {
  display: inline-flex;
  background: var(--white);
  border-radius: var(--radius-chip);
  padding: 9px 13px;
  margin-bottom: 26px;
}
.landing-brand__logo-chip img { height: 30px; }
.landing-brand__eyebrow {
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: .7px;
  color: #BFE2F7;
  margin-bottom: 14px;
}
.landing-brand h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.11;
  margin: 0 0 16px;
  color: var(--white);
  text-transform: uppercase;
}
.landing-brand h1 .gold { color: var(--gold); }
.landing-brand__intro {
  font-size: 15px;
  line-height: 1.6;
  color: #DCECF8;
  font-weight: 500;
  margin: 0 0 28px;
  max-width: 380px;
}

/* Login form on brand panel */
.landing-login label {
  font-family: var(--font-display);
  font-size: 11.5px;
  color: #BFE2F7;
  letter-spacing: .5px;
  display: block;
}
.landing-login__field {
  height: 46px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 11px;
  background: rgba(255,255,255,.12);
  margin: 6px 0 14px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  width: 100%;
}
.landing-login__field::placeholder { color: #DCECF8; }
.landing-login__field[type="password"] { letter-spacing: 3px; }
.landing-login input.landing-login__field {
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 11px;
  background: rgba(255,255,255,.12);
  outline: none;
}
.landing-login input.landing-login__field:focus {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.18);
}
.landing-login__submit {
  background: var(--gold);
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 800;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}
.landing-login__links {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #BFE2F7;
}
.landing-login__links a:last-child { color: var(--white); }

/* Hero photo */
.landing-photo {
  position: relative;
  background: #9FB8C9;
  overflow: hidden;
}
.landing-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Info band */
.landing-info {
  position: relative;
  padding: 58px 38px 52px;
  background: var(--white);
  border-top: 1px solid #EEF1EC;
  overflow: hidden;
}
.landing-info .blob {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 50% 50%, #EAF8E6, rgba(234,248,230,0));
  top: -180px;
  right: -140px;
  opacity: .8;
}
.landing-info__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.landing-info__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 40px;
}
.landing-info__eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 12px;
}
.landing-info h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 31px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.2px;
  line-height: 1.08;
}
.landing-info__body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body-alt);
  font-weight: 500;
  margin: 0 0 14px;
  padding-top: 4px;
}
.landing-info__body strong { font-weight: 800; color: var(--ink); }
.landing-info__sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

/* NCA framework cards */
.nca-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.nca-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
}
.nca-card--notice { border-top: 5px solid var(--blue); }
.nca-card--choose { border-top: 5px solid var(--red); }
.nca-card--act { border-top: 5px solid var(--gold); }
.nca-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.nca-card__icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.nca-card__label {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .4px;
}
.nca-card__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--body-alt);
  font-weight: 600;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.stat-card__number {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 13px;
  color: var(--body);
  font-weight: 600;
  line-height: 1.45;
}

/* Demo strip */
.landing-demo {
  position: relative;
  padding: 56px 38px;
  background: linear-gradient(160deg, var(--blue-dark) 0%, #17527E 100%);
  overflow: hidden;
}
.landing-demo .blob {
  width: 360px;
  height: 360px;
  background: rgba(255,255,255,.06);
  bottom: -160px;
  right: -90px;
}
.landing-demo__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.landing-demo__video {
  position: relative;
  border-radius: var(--radius-frame);
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.5);
  height: 300px;
  background: #9FB8C9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-demo__video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: .85;
}
.landing-demo__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23,82,126,.55), rgba(23,82,126,.1));
}
.landing-demo__play {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(0,0,0,.5);
  z-index: 1;
}
.landing-demo__play span {
  color: var(--blue-dark);
  font-size: 24px;
  margin-left: 5px;
}
.landing-demo__eyebrow {
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 1px;
  color: #9FD2F2;
  margin-bottom: 10px;
}
.landing-demo h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--white);
  line-height: 1.06;
  margin: 0 0 16px;
  letter-spacing: -.2px;
}
.landing-demo__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.landing-demo__feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.landing-demo__feature-check {
  color: #9FD2F2;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.4;
}
.landing-demo__feature span:last-child {
  font-size: 14px;
  color: #DCECF8;
  font-weight: 500;
  line-height: 1.45;
}
.landing-demo__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Footer */
.landing-footer {
  background: #F5F8F3;
  border-top: 3px solid var(--blue);
  padding: 40px 38px 30px;
}
.landing-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.landing-footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.landing-footer__brand img { height: 30px; }
.landing-footer__brand span {
  font-size: 13px;
  color: var(--caption);
  font-weight: 700;
}
.landing-footer__legal {
  font-size: 12.5px;
  color: var(--caption);
  font-weight: 600;
  text-align: right;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   APP SHELL (sidebar layout for logged-in views)
   ══════════════════════════════════════════════ */
.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  background: var(--bg-sidebar);
  border-right: 1px solid #EAEFE6;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sidebar__logo { padding: 4px 8px 22px; }
.sidebar__logo img { height: 28px; }
.sidebar__nav { display: flex; flex-direction: column; gap: 3px; }
.sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-btn);
  color: var(--body-alt);
  font-weight: 700;
  font-size: 14px;
  transition: background .15s;
}
.sidebar__link:hover { background: rgba(0,0,0,.04); }
.sidebar__link--active {
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}
.sidebar__link--active:hover { background: var(--blue); }
.sidebar__link-icon { font-size: 15px; width: 20px; text-align: center; }
.sidebar__user {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #EAEFE6;
}
.sidebar__user-inner {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px;
}
.sidebar__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 16px;
  flex-shrink: 0;
}
.sidebar__user-name { font-weight: 800; font-size: 13.5px; color: var(--ink); }
.sidebar__user-school { font-size: 11.5px; color: var(--muted); font-weight: 600; }

/* Top bar */
.topbar {
  height: 64px;
  border-bottom: 1px solid #EEF1EC;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 18px;
  background: var(--white);
}
.topbar__search {
  flex: 1;
  max-width: 340px;
  height: 38px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-chip);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  color: var(--caption);
  font-size: 13px;
  font-weight: 600;
}
.topbar__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__bell {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-chip);
  background: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.topbar__year-pill {
  background: var(--panel-blue);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .4px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
}

/* ══════════════════════════════════════════════
   TOP NAV (curriculum, plan views)
   ══════════════════════════════════════════════ */
.top-nav {
  height: 66px;
  background: var(--white);
  border-bottom: 1px solid #EEF1EC;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 28px;
}
.top-nav__logo img { height: 30px; }
.top-nav__links {
  display: flex;
  gap: 22px;
  margin-left: 6px;
}
.top-nav__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--body-alt);
}
.top-nav__link--active {
  font-weight: 800;
  color: var(--blue);
}
.top-nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   DASHBOARD
   ══════════════════════════════════════════════ */
.dash-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.dash-content {
  padding: 28px 28px 36px;
  max-width: 771px;
}

/* Greeting */
.dash-greeting { margin-bottom: 22px; }
.dash-greeting__row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.dash-greeting__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.2px;
}
.dash-greeting__plan-btn {
  margin-left: auto;
  white-space: nowrap;
  font-size: 13.5px;
  padding: 10px 24px;
}
.dash-greeting__sub {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}

/* Hero card */
.dash-hero {
  position: relative;
  background: linear-gradient(135deg, #2C90D1, #1E6BA3);
  border-radius: 18px;
  padding: 28px 30px;
  overflow: hidden;
  margin-bottom: 22px;
}
.dash-hero .blob {
  width: 300px;
  height: 300px;
  border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%;
  background: rgba(255,255,255,.08);
  top: -130px;
  right: -60px;
}
.dash-hero__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.dash-hero__text { flex: 1; min-width: 300px; }
.dash-hero__media {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.dash-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .8px;
  color: #BFE2F7;
  margin-bottom: 10px;
}
.dash-hero__meta {
  font-size: 12.5px;
  font-weight: 800;
  color: #BFE2F7;
  margin-bottom: 6px;
}
.dash-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 6px;
}
.dash-hero__desc {
  font-size: 14px;
  color: #DCECF8;
  font-weight: 600;
  margin-bottom: 16px;
}
.dash-hero__desc strong { color: var(--white); font-weight: 800; }
.dash-hero__progress {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  margin-bottom: 18px;
}
.dash-hero__pct {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--white);
}
.dash-hero__photo {
  width: 230px;
  height: 150px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  flex-shrink: 0;
}
.dash-hero__photo span {
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
  color: #DCECF8;
  font-weight: 700;
  line-height: 1.5;
}
.dash-hero__photo--img { padding: 0; overflow: hidden; }
.dash-hero__photo--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dash-hero__lesson-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

/* Card shared overrides for dashboard */
.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px;
}
.card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  margin: 0;
}
.card__action {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--blue);
}
.card__meta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
}

/* 2-col grid */
.dash-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
}
.dash-grid__left,
.dash-grid__right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Certification bars */
.dash-cert { display: flex; flex-direction: column; gap: 14px; }
.dash-cert__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}
.dash-cert__label {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
}
.dash-cert__count {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--body-alt);
}
.dash-cert__count--muted { color: var(--caption); font-size: 12px; }

/* Week snapshot */
.dash-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.dash-week__day {
  border-radius: 11px;
  padding: 12px 10px;
  min-height: 104px;
}
.dash-week__day--blue { background: var(--panel-blue); }
.dash-week__day--gold { background: var(--panel-gold); }
.dash-week__day--teal { background: var(--panel-teal); }
.dash-week__day--off { background: var(--bg-page); }
.dash-week__day-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .5px;
  margin-bottom: 8px;
  color: var(--caption);
}
.dash-week__day-title {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}
.dash-week__day-desc {
  font-size: 10.5px;
  color: var(--body-alt);
  font-weight: 600;
  margin-top: 4px;
}
.dash-week__day--off .dash-week__day-desc { color: var(--caption); }
.dash-week__footer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.dash-week__footer a {
  color: var(--blue);
  font-weight: 800;
}

/* Quick links */
.dash-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dash-quick__tile {
  border-radius: 12px;
  padding: 14px;
  display: block;
  transition: opacity .15s;
}
.dash-quick__tile:hover { opacity: .85; }
.dash-quick__tile--blue { background: var(--panel-blue); }
.dash-quick__tile--gold { background: var(--panel-gold); }
.dash-quick__tile--teal { background: var(--panel-teal); }
.dash-quick__tile--warm { background: #FCF0E4; }
.dash-quick__icon {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}
.dash-quick__label {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

/* Reflections */
.dash-reflections { display: flex; flex-direction: column; gap: 12px; }
.dash-reflections__item {
  border-left: 3px solid var(--blue);
  padding: 2px 0 2px 12px;
}
.dash-reflections__label {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 3px;
}
.dash-reflections__quote {
  font-size: 12.5px;
  color: var(--body);
  font-weight: 600;
  line-height: 1.45;
  font-style: italic;
}
.dash-reflections__date {
  font-size: 11px;
  color: var(--caption);
  font-weight: 700;
  margin-top: 4px;
}

/* SEL Muscles cloud */
.dash-muscles { margin-top: 22px; }
.dash-muscles__cloud { display: flex; flex-wrap: wrap; gap: 8px; }

/* Bottom row: cert ring + continue */
.dash-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}
.dash-bottom__ring-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.dash-ring__circle {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.dash-ring__inner {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dash-ring__pct {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--blue);
  line-height: 1;
}
.dash-ring__label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .3px;
}
.dash-bottom__ring-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.1;
}
.dash-bottom__ring-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  margin-top: 3px;
}
.dash-bottom__continue-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .6px;
  color: var(--caption);
  margin-bottom: 10px;
}
.dash-bottom__continue-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.dash-bottom__continue-step {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════════
   CURRICULUM LIBRARY
   ══════════════════════════════════════════════ */
.cur-page { min-height: 100vh; background: var(--white); }
.cur-content {
  position: relative;
  padding: 28px 30px 36px;
  overflow: hidden;
}
.cur-blob {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 50% 45%, #EFEBF7, rgba(239,235,247,0));
  top: -180px;
  right: -150px;
  position: absolute;
  pointer-events: none;
}
.cur-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
.cur-header { margin-bottom: 18px; }

/* Year tabs */
.cur-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.cur-tab {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--body-alt);
  border-radius: 11px;
  padding: 11px 18px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cur-tab--active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.cur-tab__year {
  font-family: var(--font-display);
  font-size: 12px;
}
.cur-tab--active .cur-tab__year { color: var(--white); }

/* Filter bar */
.cur-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding: 14px 18px;
  background: var(--panel-blue);
  border-radius: 12px;
}
.cur-filter__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.cur-filter__label {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue-dark);
}
.cur-filter__pill {
  background: var(--white);
  color: var(--blue-dark);
  font-size: 12.5px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.cur-filter__pill--active {
  background: var(--blue);
  color: var(--white);
}
.cur-filter__note {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-dark);
}

/* Muscle group header */
.cur-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cur-group-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.cur-group-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
}
.cur-group-meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

/* Lesson card grid */
.cur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

/* Lesson card */
.cur-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.cur-card--progress {
  border: 1.5px solid var(--gold);
  background: #FFFCF5;
}
.cur-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cur-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cur-card__pill {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}
.cur-card__pill--complete {
  color: var(--success-text);
  background: var(--success-bg);
}
.cur-card__pill--progress {
  color: var(--gold-dark);
  background: var(--panel-gold);
}
.cur-card__pill--none {
  color: var(--caption);
  background: #F1F4EF;
}
.cur-card__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 6px;
}
.cur-card__activity {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.cur-card__plan {
  display: flex;
  justify-content: flex-end;
  margin-top: 11px;
}
.cur-card__plan a {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}

/* ══════════════════════════════════════════════
   TRAINING MODULE
   ══════════════════════════════════════════════ */
.trn-page { min-height: 100vh; background: var(--white); }

/* Top bar */
.trn-topbar {
  height: 60px;
  background: var(--white);
  border-bottom: 1px solid #EEF1EC;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
}
.trn-topbar__exit {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trn-topbar__divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}
.trn-topbar__lesson { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1px; min-width: 0; }
.trn-topbar__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--blue);
  white-space: nowrap;
}
.trn-topbar__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.1;
  color: var(--ink);
  white-space: nowrap;
}
.trn-topbar__progress {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trn-topbar__pct {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--body-alt);
}

/* Layout */
.trn-layout {
  display: grid;
  grid-template-columns: 248px 1fr;
}

/* Left rail */
.trn-rail {
  background: var(--bg-sidebar);
  border-right: 1px solid #EAEFE6;
  padding: 22px 14px;
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
}
.trn-rail__header {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .6px;
  color: var(--caption);
  margin: 4px 8px 14px;
}
.trn-rail__modules {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trn-rail__module {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 11px;
  cursor: pointer;
  transition: background .15s;
}
.trn-rail__module:hover { background: rgba(0,0,0,.03); }
.trn-rail__module--active { background: var(--panel-blue); }
.trn-rail__module--active:hover { background: var(--panel-blue); }
.trn-rail__module--done .trn-rail__dot { background: var(--success); }
.trn-rail__module--done .trn-rail__dot::after { content: '✓'; font-size: 10px; }
.trn-rail__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
}
.trn-rail__dot--active {
  background: var(--blue);
  color: var(--white);
}
.trn-rail__module--active .trn-rail__dot { background: var(--blue); color: var(--white); }
.trn-rail__name {
  font-weight: 800;
  font-size: 13.5px;
  color: var(--ink);
}
.trn-rail__sub {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--caption);
}
.trn-rail__muscle {
  margin-top: 20px;
  background: var(--teal-light);
  border-radius: 12px;
  padding: 14px;
}
.trn-rail__muscle-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--success);
  margin-bottom: 4px;
}
.trn-rail__muscle-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.trn-rail__muscle-meta {
  font-size: 11.5px;
  color: var(--body-alt);
  font-weight: 600;
  margin-top: 3px;
}
.trn-rail__photo {
  margin: 16px 0 0;
}
.trn-rail__photo img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.trn-rail__photo figcaption {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--caption);
  margin-top: 6px;
  line-height: 1.4;
}

/* Content area */
.trn-content {
  position: relative;
  background: var(--panel-lavender);
  padding: 30px 38px 28px;
  overflow: hidden;
  min-height: calc(100vh - 60px);
}
.trn-blob-1 {
  width: 480px;
  height: 540px;
  border-radius: 46% 54% 58% 42%/40% 42% 58% 60%;
  background: radial-gradient(circle at 50% 42%, #F6F2FC, rgba(246,242,252,0));
  top: -170px;
  right: -150px;
}
.trn-blob-2 {
  width: 320px;
  height: 320px;
  border-radius: 60% 40% 50% 50%/50% 55% 45% 50%;
  background: radial-gradient(circle, #FBF3DE, rgba(251,243,222,0));
  bottom: -160px;
  left: -120px;
  opacity: .85;
}
.trn-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.trn-module-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.trn-module-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .7px;
  color: #5A5470;
  margin-bottom: 6px;
}
.trn-module-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

/* Beat card */
.trn-card {
  background: var(--white);
  border: 1px solid var(--border-lavender);
  border-radius: 16px;
  padding: 26px 28px;
  min-height: 258px;
}
.trn-beat__label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .7px;
  color: var(--muted-alt);
  margin-bottom: 12px;
}
.trn-beat__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 12px;
}
.trn-beat__body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  font-weight: 500;
  margin: 0;
}
.trn-beat__body strong { font-weight: 800; color: var(--ink); }
.trn-beat__list { display: flex; flex-direction: column; gap: 8px; }
.trn-beat__list > div { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--body); font-weight: 500; line-height: 1.5; }
.trn-beat__list strong { font-weight: 800; color: var(--ink); }
.trn-beat__bullet { color: var(--blue); font-weight: 800; }

/* Player controls */
.trn-player {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.trn-player__btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #E4DEF2;
  color: #6A6488;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 9px;
  flex-shrink: 0;
}
.trn-player__bar {
  flex: 1;
  height: 5px;
  border-radius: var(--radius-pill);
  background: #DAD2EE;
  overflow: hidden;
}
.trn-player__bar-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: #8B7BB8;
  transition: width .3s;
}
.trn-player__counter {
  font-size: 11px;
  font-weight: 800;
  color: #6A6488;
  min-width: 30px;
  text-align: right;
}

/* Beat dots */
.trn-dots { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 11px; }
.trn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DAD2EE;
  cursor: pointer;
  transition: background .15s;
}
.trn-dot--active { background: #6A6488; }
.trn-dot--done { background: #A99DD0; }

/* Quick check / review options */
.trn-qc-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .7px;
  color: var(--success);
  margin-bottom: 6px;
}
.trn-qc-question {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 14px;
}
.trn-qc-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 16px;
  border: 1.5px solid var(--border-lavender);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 9px;
  transition: border-color .15s;
}
.trn-qc-option:hover { border-color: #B8AED6; }
.trn-qc--answered .trn-qc-option { pointer-events: none; opacity: .7; }
.trn-qc--answered .trn-qc-option--correct { opacity: 1; border-color: var(--success); background: var(--success-bg); }
.trn-qc--answered .trn-qc-option--wrong { opacity: 1; border-color: var(--red); background: var(--error-bg); }
.trn-qc-letter {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted-alt);
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--panel-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trn-feedback {
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 12px;
}
.trn-feedback--ok { background: var(--success-bg); color: #1E7A4A; }
.trn-feedback--no { background: var(--error-bg); color: var(--error); }

/* Write-in */
.trn-feeds-pill {
  background: var(--panel-blue);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .3px;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.trn-textarea {
  width: 100%;
  min-height: 84px;
  border: 1.5px solid #D8D0EC;
  border-radius: 12px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body);
  background: #FBFAFE;
  resize: vertical;
  outline: none;
}
.trn-textarea:focus { border-color: #B8AED6; }
.trn-textarea-note {
  font-size: 11.5px;
  color: var(--muted-alt);
  font-weight: 700;
  margin-top: 8px;
}

/* Closing questions */
.trn-closing-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .5px;
  color: #5A5470;
  margin: 16px 0 9px;
}
.trn-closing-questions { display: flex; flex-direction: column; gap: 9px; }
.trn-closing-q {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 11px 14px;
  border: 1.5px solid var(--border-lavender);
  border-radius: 11px;
  background: var(--white);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.45;
}
.trn-closing-q:hover { border-color: #B8AED6; }
.trn-closing-check {
  color: var(--caption);
  font-size: 14px;
  flex-shrink: 0;
}
.trn-closing-q--picked {
  border-color: var(--blue);
  background: var(--panel-blue);
}
.trn-closing-q--picked .trn-closing-check { color: var(--blue); }
.trn-closing-q--picked .trn-closing-check::before { content: '✓'; }
.trn-closing-q--picked .trn-closing-check { font-size: 0; }
.trn-closing-q--picked .trn-closing-check::before { font-size: 14px; }
.trn-closing-count {
  font-size: 12.5px;
  font-weight: 800;
  color: #5A5470;
}

/* Tips */
.trn-tip {
  border-radius: 11px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.trn-tip strong { font-weight: 800; }
.trn-tip--do { background: var(--teal-light); color: #235C3E; }
.trn-tip--avoid { background: var(--error-bg); color: #7A2A1E; }

/* Review intro */
.trn-review__intro-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 6px;
}
.trn-review__intro-text {
  font-size: 12.5px;
  color: #5A5470;
  font-weight: 700;
  margin: 0 0 18px;
  line-height: 1.55;
}

/* Bottom nav */
.trn-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #DDD5EE;
  padding-top: 20px;
  margin-top: 28px;
}
.trn-nav__back {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  padding: 10px 16px;
}
.trn-nav__continue { padding: 13px 22px; }
.trn-nav__continue--locked,
.trn-nav__continue:disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}
.trn-feedback__retry { font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

/* Footnote under a beat */
.trn-footnote {
  margin-top: 14px;
  padding: 10px 14px;
  border-left: 3px solid var(--blue);
  background: var(--panel-blue);
  border-radius: 0 9px 9px 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.5;
}
.trn-footnote strong { font-weight: 800; }

/* Numbered steps */
.trn-steps > div { align-items: center; }
.trn-step__num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trn-materials {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 700;
}
.trn-materials strong { color: var(--body-alt); }

/* Diagram */
.trn-diagram {
  margin: 4px 0 16px;
  display: flex;
  justify-content: center;
}
.trn-diagram__svg {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* Coaching moments (see / do) */
.trn-coach { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.trn-coach__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  background: var(--white);
}
.trn-coach__row { display: flex; gap: 11px; align-items: flex-start; }
.trn-coach__row + .trn-coach__row { margin-top: 9px; }
.trn-coach__tag {
  flex-shrink: 0;
  width: 58px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .4px;
  padding: 4px 0;
  text-align: center;
  border-radius: 6px;
}
.trn-coach__tag--see { background: var(--panel-lavender); color: #5A5470; }
.trn-coach__tag--do { background: var(--success-bg); color: #1E7A4A; }
.trn-coach__text { font-size: 13px; color: var(--body); font-weight: 500; line-height: 1.5; }

/* Sort interaction */
.trn-sort { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.trn-sort__item {
  border: 1.5px solid var(--border-lavender);
  border-radius: 12px;
  padding: 13px 15px;
  background: var(--white);
}
.trn-sort__item--correct { border-color: var(--success); background: var(--success-bg); }
.trn-sort__item--wrong { border-color: var(--red); }
.trn-sort__text { font-size: 14px; color: var(--ink); font-weight: 600; line-height: 1.45; margin-bottom: 10px; }
.trn-sort__btns { display: flex; gap: 8px; }
.trn-sort__btn {
  border: 1.5px solid var(--border-lavender);
  background: var(--white);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.trn-sort__btn:hover { border-color: #B8AED6; }
.trn-sort__btn--chosen { border-color: var(--success); background: var(--success-bg); color: #1E7A4A; }
.trn-sort__item--correct .trn-sort__btns { pointer-events: none; }
.trn-sort__feedback:empty { display: none; }
.trn-sort__progress {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted-alt);
}

/* Write-in head */
.trn-writein__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.trn-writein__prompt { font-size: 15px; font-weight: 800; color: var(--ink); line-height: 1.4; }

/* Close picker — grade bands */
.trn-closing-group { margin-top: 16px; }
.trn-closing-band { display: flex; align-items: baseline; gap: 9px; margin-bottom: 9px; flex-wrap: wrap; }
.trn-closing-band__tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .4px;
  color: var(--blue);
  background: var(--panel-blue);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.trn-closing-guidance { font-size: 12px; color: var(--muted); font-weight: 600; line-height: 1.45; flex: 1; min-width: 200px; }
.trn-closing-q--custom { border-style: dashed; }
.trn-closing-add { display: flex; gap: 8px; margin-top: 14px; }
.trn-closing-add__input {
  flex: 1;
  border: 1.5px solid #D8D0EC;
  border-radius: 10px;
  padding: 10px 13px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--body);
  background: #FBFAFE;
  outline: none;
}
.trn-closing-add__input:focus { border-color: #B8AED6; }
.trn-closing-add__btn {
  border: none;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  padding: 0 18px;
  border-radius: 10px;
  cursor: pointer;
}
.trn-closing-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
}

/* Curriculum card — dual links */
.cur-card__plan--dual { justify-content: space-between; align-items: center; }
.cur-card__plan-alt { color: var(--muted) !important; }

/* ══════════════════════════════════════════════
   LESSON PLAN VIEWER
   ══════════════════════════════════════════════ */
.plan-page { min-height: 100vh; background: var(--page-bg); }

/* Action bar */
.plan-action-bar {
  height: 60px;
  background: var(--white);
  border-bottom: 1px solid #EEF1EC;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 14px;
}
.plan-action-bar__back {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-decoration: none;
}
.plan-action-bar__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-action-bar__btn {
  background: var(--page-bg);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.plan-action-bar__btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Paper mat */
.plan-mat {
  background: #EDEFEA;
  padding: 30px;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 170px);
}
.plan-paper-stack {
  width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plan-paper {
  background: var(--white);
  border: 1px solid #E2E6DD;
  box-shadow: 0 14px 40px -20px rgba(36,36,36,.3);
  padding: 46px 50px;
}

/* Letterhead */
.plan-letterhead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 3px solid var(--blue);
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.plan-letterhead__logo {
  height: 30px;
  display: block;
  margin-bottom: 12px;
}
.plan-letterhead__meta {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .6px;
  color: var(--blue);
}
.plan-letterhead__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--ink);
  line-height: 1.05;
  margin: 2px 0 0;
}
.plan-letterhead__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: var(--panel-blue);
  border-radius: 999px;
  padding: 5px 13px;
}
.plan-letterhead__chip-for {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: .5px;
  color: var(--blue-dark);
}
.plan-letterhead__chip-class {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-dark);
}
.plan-letterhead__right {
  text-align: right;
  font-size: 11.5px;
  color: var(--body);
  font-weight: 700;
  line-height: 1.7;
  padding-top: 4px;
}

/* Section labels */
.plan-section-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .5px;
  color: #46586C;
}
.plan-section-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Objective + Muscle two-col */
.plan-two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 26px;
}
.plan-objective-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 600;
}
.plan-objective-text strong {
  font-weight: 800;
  color: var(--ink);
}
.plan-muscle-chip {
  display: inline-block;
  background: var(--panel-blue);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.plan-muscle-meta {
  font-size: 12px;
  color: var(--body);
  font-weight: 700;
  line-height: 1.6;
}

/* What we mean */
.plan-meaning {
  margin-bottom: 26px;
}
.plan-meaning-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 600;
}

/* Standards */
.plan-standards {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}
.plan-standards__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.plan-standards__item {
  font-size: 12.5px;
  color: var(--body);
  font-weight: 600;
}
.plan-standards__code {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer */
.plan-footer {
  text-align: right;
  font-size: 10.5px;
  color: #9AA69C;
  font-weight: 700;
  margin-top: 22px;
}

/* Lesson flow */
.plan-flow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.plan-flow-note {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}
.plan-flow {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.plan-flow__step {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #F0F2EC;
}
.plan-flow__step--last {
  border-bottom: none;
}
.plan-flow__time {
  width: 62px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 13px;
}
.plan-flow__step-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
}
.plan-flow__step-desc {
  font-size: 12.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.5;
}
.plan-flow__step--expanded .plan-flow__step-desc {
  line-height: 1.55;
  margin-bottom: 8px;
}
.plan-core-badge {
  background: #FCE4DF;
  color: #C0392B;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 5px;
}
.plan-training-note {
  background: var(--panel-blue);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 12px;
  color: var(--blue-dark);
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 16px;
}

/* Activity */
.plan-activity {
  background: #F7FBF5;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 24px;
}
.plan-activity__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.plan-activity__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
}
.plan-activity__link {
  font-size: 11.5px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}
.plan-activity__desc {
  font-size: 13px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 16px;
}
.plan-activity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.plan-activity__sub-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .4px;
  color: #46586C;
  margin-bottom: 8px;
}
.plan-activity__checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-activity__check-item {
  font-size: 12.5px;
  color: var(--body);
  font-weight: 600;
}
.plan-activity__remember {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  color: #5C4A1E;
  font-weight: 600;
  line-height: 1.4;
}

/* Closing prompts */
.plan-closing {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 0;
}
.plan-closing__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
}
.plan-closing__instruction {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.plan-closing__prompts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-closing__prompt {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.plan-closing__nca-label {
  font-family: var(--font-display);
  font-size: 14px;
  width: 74px;
  flex-shrink: 0;
  padding-top: 1px;
}
.plan-closing__nca-text {
  font-size: 13.5px;
  color: var(--body);
  font-weight: 600;
  line-height: 1.5;
}
.plan-closing__divider {
  height: 1px;
  background: #F0F2EC;
}

/* ══════════════════════════════════════════════
   REGISTRATION
   ══════════════════════════════════════════════ */
.reg-page {
  min-height: 100vh;
  background: var(--page-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.reg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  max-width: 960px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px -34px rgba(36,36,36,.45);
  border: 1px solid var(--border);
  background: var(--white);
}

/* Brand panel */
.reg-brand {
  position: relative;
  background: linear-gradient(158deg, #2C90D1 0%, #1E6BA3 100%);
  overflow: hidden;
  padding: 48px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reg-brand__blob {
  position: absolute;
  width: 340px;
  height: 340px;
  bottom: -130px;
  left: -90px;
  background: rgba(255,255,255,.07);
}
.reg-brand__inner { position: relative; }
.reg-brand__logo-chip {
  display: inline-flex;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 26px;
}
.reg-brand__logo-chip img { height: 26px; display: block; }
.reg-brand__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 34px;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 14px;
}
.reg-brand__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #DCECF8;
  font-weight: 500;
  margin: 0 0 28px;
  max-width: 360px;
}
.reg-brand__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reg-brand__step {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reg-brand__step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--white);
  font-weight: 800;
}
.reg-brand__step-text {
  font-size: 14px;
  color: #EAF4FB;
  font-weight: 700;
}

/* Form panel */
.reg-form {
  padding: 46px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reg-form__inner { max-width: 380px; }
.reg-form__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .8px;
  color: var(--blue);
  margin-bottom: 8px;
}
.reg-form__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 6px;
}
.reg-form__hint {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 26px;
  line-height: 1.5;
}
.reg-form__label {
  font-family: var(--font-display);
  font-size: 11.5px;
  color: var(--body);
  letter-spacing: .5px;
}

/* Code input */
.reg-code {
  display: flex;
  gap: 8px;
  margin: 8px 0 6px;
  align-items: center;
}
.reg-code__box {
  flex: 1;
  height: 54px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  background: #FAFBF9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: #AAB4AC;
  letter-spacing: 3px;
}
.reg-code__box--active {
  border-color: var(--blue);
  background: var(--white);
  color: var(--ink);
}
.reg-code__input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 3px;
  outline: none;
  text-transform: uppercase;
}
.reg-code__dash {
  font-size: 22px;
  color: #CBD3C9;
  font-weight: 800;
}
.reg-code__status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
  font-size: 12.5px;
  color: var(--teal-text);
  font-weight: 800;
}
.reg-form__submit {
  width: 100%;
  font-size: 15.5px;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 22px -12px rgba(41,136,201,.6);
  margin-bottom: 16px;
}
.reg-form__links {
  border-top: 1px solid #EEF1EC;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reg-form__link-row {
  font-size: 13px;
  color: var(--body);
  font-weight: 700;
}
.reg-form__link-row a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}
.reg-form__link--teal {
  color: var(--teal) !important;
}

/* ══════════════════════════════════════════════
   PROFILE SETUP
   ══════════════════════════════════════════════ */
.setup-page { min-height: 100vh; background: var(--white); }

/* Progress header */
.setup-header {
  background: var(--white);
  border-bottom: 1px solid #EEF1EC;
  padding: 22px 38px 0;
}
.setup-header__inner { max-width: 900px; margin: 0 auto; }
.setup-header__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.setup-header__logo { height: 26px; display: block; }
.setup-header__welcome {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  margin-left: auto;
}
.setup-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.setup-progress__step { flex: 1; }
.setup-progress__bar {
  height: 6px;
  border-radius: 99px;
  background: #EEF1EC;
}
.setup-progress__label {
  font-size: 11.5px;
  font-weight: 800;
  margin-top: 7px;
  color: #9AA69C;
}

/* Content */
.setup-content {
  padding: 34px 38px 38px;
  background: var(--white);
}
.setup-content__inner { max-width: 900px; margin: 0 auto; }
.setup-intro { margin-bottom: 22px; }
.setup-intro__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -.2px;
}
.setup-intro__desc {
  font-size: 15px;
  color: var(--body);
  font-weight: 500;
  margin: 0;
  line-height: 1.55;
  max-width: 580px;
}

/* Shared field label */
.setup-field-label {
  font-family: var(--font-display);
  font-size: 11.5px;
  color: var(--body);
  letter-spacing: .5px;
  display: block;
}

/* Chip rows */
.setup-chip-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.setup-chip {
  background: var(--white);
  border: 1.5px solid #E4E9E2;
  color: var(--body);
  font-size: 13.5px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background .15s, color .15s, border-color .15s;
}
.setup-chip--active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  padding: 10px 14px;
}
.setup-chip-note {
  font-size: 11.5px;
  color: #9AA69C;
  font-weight: 700;
  margin-left: 6px;
  margin-top: 8px;
}

/* How many classes */
.setup-how-many {
  background: #F7FBF5;
  border: 1px solid #E4ECDD;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 22px;
}

/* Class tabs */
.setup-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.setup-tab {
  background: #F1F4EF;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
.setup-tab--active {
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.setup-tab__badge {
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
}
.setup-tab--remaining {
  color: #C2CBC0;
}

/* Class card */
.setup-class-card {
  border: 1.5px solid var(--ink);
  border-radius: 0 14px 14px 14px;
  padding: 24px;
  margin-bottom: 24px;
}
.setup-class-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.setup-class-card__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 2px;
}
.setup-class-card__rename {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}
.setup-class-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Stepper + slider */
.setup-size-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.setup-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--blue);
  border-radius: 11px;
  overflow: hidden;
}
.setup-stepper__btn {
  width: 34px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  background: #F4F9FD;
  cursor: pointer;
  user-select: none;
}
.setup-stepper__val {
  width: 54px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
}
.setup-slider { flex: 1; }
.setup-slider__input {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: #EEF1EC;
  border-radius: 99px;
  outline: none;
}
.setup-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  box-shadow: 0 2px 6px rgba(36,36,36,.2);
  cursor: pointer;
}

/* Class actions */
.setup-class-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #EEF1EC;
}
.setup-class-actions__dup {
  background: var(--panel-blue);
  color: var(--blue-dark);
  font-size: 13.5px;
  font-weight: 800;
  padding: 11px 16px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.setup-class-actions__new {
  background: var(--white);
  border: 1.5px solid #E0E6DD;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 11px;
  cursor: pointer;
}

/* Preview callout */
.setup-preview {
  background: #E4FCF0;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.setup-preview__text { flex: 1; min-width: 260px; }
.setup-preview__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 3px;
}
.setup-preview__desc {
  font-size: 13px;
  color: var(--body);
  font-weight: 600;
  line-height: 1.45;
}
.setup-preview__btn {
  background: var(--white);
  border: 1px solid #CCEFE0;
  color: #1E7A4A;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
}

/* Nav */
.setup-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.setup-nav__back {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
}
.setup-nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.setup-nav__skip {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
}
.setup-nav__finish {
  font-size: 15px;
  padding: 13px 28px;
  box-shadow: 0 12px 22px -12px rgba(41,136,201,.6);
}

/* Print styles */
@media print {
  .top-nav,
  .plan-action-bar { display: none !important; }
  .plan-mat {
    background: none;
    padding: 0;
  }
  .plan-paper {
    box-shadow: none;
    border: none;
    page-break-after: always;
    padding: 30px 40px;
  }
  .plan-paper:last-child { page-break-after: avoid; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .landing-hero { grid-template-columns: 1fr; }
  .landing-photo { min-height: 300px; }
  .landing-info__grid { grid-template-columns: 1fr; }
  .nca-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .landing-demo__inner { grid-template-columns: 1fr; }
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .dash-content { max-width: 100%; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-week { grid-template-columns: repeat(3, 1fr); }
  .dash-bottom { grid-template-columns: 1fr; }
  .dash-greeting__row { flex-wrap: wrap; }
  .dash-hero__photo { display: none; }
  .cur-grid { grid-template-columns: repeat(2, 1fr); }
  .cur-filter { flex-direction: column; align-items: flex-start; }
  .trn-layout { grid-template-columns: 1fr; }
  .trn-rail { display: none; }
  .plan-paper-stack { width: 100%; }
  .plan-paper { padding: 28px 24px; }
  .plan-letterhead { flex-direction: column; gap: 14px; }
  .plan-letterhead__right { text-align: left; }
  .plan-two-col { grid-template-columns: 1fr; }
  .plan-activity__grid { grid-template-columns: 1fr; }
  .plan-action-bar__right { gap: 6px; }
  .reg-split { grid-template-columns: 1fr; }
  .reg-brand { padding: 30px; }
  .reg-form { padding: 30px; }
  .setup-class-grid { grid-template-columns: 1fr; }
  .setup-nav { flex-direction: column; gap: 16px; align-items: stretch; }
  .setup-nav__right { justify-content: flex-end; }
}
