:root {
  --cream: #fdf6f0;
  --paper: #fff;
  --navy: #1a2639;
  --ink: #20252d;
  --muted: #69707c;
  --gold: #b99764;
  --gold-soft: #f6e7ce;
  --orange: #f97316;
  --orange-dark: #c7530c;
  --green: #177b68;
  --green-soft: #e8f5f1;
  --red: #c43d3d;
  --red-soft: #fff0ef;
  --line: #e7ddd2;
  --shadow: 0 14px 40px rgba(26, 38, 57, 0.09);
  --radius: 16px;
  --serif: Georgia, "Times New Roman", serif;
  --sans:
    Poppins, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fbfaf8;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 3px;
}
.shell {
  min-height: 100vh;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}
.narrow {
  width: min(760px, calc(100% - 32px));
  margin: auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 246, 240, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(185, 151, 100, 0.22);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  white-space: nowrap;
}
.brand b {
  color: var(--orange);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}
.navlinks a:hover,
.navlinks a.active {
  color: var(--orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-btn {
  display: none;
}
.btn {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 150ms cubic-bezier(0.2, 0, 0, 1),
    background-color 150ms cubic-bezier(0.2, 0, 0, 1),
    border-color 150ms cubic-bezier(0.2, 0, 0, 1),
    box-shadow 150ms cubic-bezier(0.2, 0, 0, 1);
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.2);
}
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--navy);
  color: white;
}
.btn-outline {
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-block {
  width: 100%;
}
.btn-sm {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
}
.btn:active {
  transform: translateY(1px);
  box-shadow: none;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
  box-shadow: none;
}
.hero {
  background: var(--cream);
  padding: 76px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.display {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  margin: 14px 0 20px;
  letter-spacing: -0.035em;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.proof {
  display: flex;
  gap: 26px;
  margin-top: 34px;
}
.proof strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
}
.proof span {
  font-size: 12px;
  color: var(--muted);
}
.visual {
  min-height: 440px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--navy), #2d435f);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(185, 151, 100, 0.42),
    transparent 38%
  );
}
.student-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.96);
  padding: 22px;
  border-radius: 18px;
}
.student-card .mini-map {
  height: 180px;
  border-radius: 14px;
  background: linear-gradient(135deg, #dceee8, #f6e7ce);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  text-align: center;
  padding: 20px;
}
.section {
  padding: 72px 0;
}
.section.alt {
  background: var(--cream);
}
.section.dark {
  background: var(--navy);
  color: white;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-head.center {
  display: block;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}
.title {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 8px 0;
}
.dark .title {
  color: white;
}
.subtle {
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 18px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 3px 12px rgba(26, 38, 57, 0.04);
}
.card.hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(185, 151, 100, 0.55);
}
.chapter-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.chapter-card .flag {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.chapter-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  margin: 30px 0 8px;
}
.chapter-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: #f1f2f4;
  color: #555;
}
.badge.open {
  background: var(--green-soft);
  color: var(--green);
}
.badge.soon {
  background: #fff5dd;
  color: #8f6200;
}
.badge.closed {
  background: var(--red-soft);
  color: var(--red);
}
.badge.gold {
  background: var(--gold-soft);
  color: #7a5b2f;
}
.badge.vip {
  background: var(--navy);
  color: white;
}
.badge.orange {
  background: #fff0e5;
  color: var(--orange-dark);
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding: 0 0 28px 48px;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.step:not(:last-child):after {
  content: "";
  position: absolute;
  left: 15px;
  top: 35px;
  width: 2px;
  height: calc(100% - 36px);
  background: var(--line);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.input,
.select,
.textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  padding: 10px 12px;
  color: var(--ink);
  outline: none;
}
.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 151, 100, 0.15);
}
.textarea {
  min-height: 110px;
  resize: vertical;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.scholar-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scholar-card h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 22px;
  margin: 0;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
  color: var(--muted);
}
.deadline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: auto;
}
.deadline strong {
  color: var(--red);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
.sticky {
  position: sticky;
  top: 96px;
}
.list {
  display: grid;
  gap: 12px;
}
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.check {
  width: 22px;
  height: 22px;
  accent-color: var(--green);
  flex: 0 0 auto;
}
.progress {
  height: 9px;
  background: #ece8e1;
  border-radius: 999px;
  overflow: hidden;
}
.progress > span {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
}
.score {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) 0 88%, #e7ecea 88%);
  position: relative;
  font-weight: 800;
  color: var(--navy);
}
.score:after {
  content: "";
  position: absolute;
  inset: 6px;
  background: white;
  border-radius: 50%;
  z-index: 0;
}
.score span {
  position: relative;
  z-index: 1;
  font-size: 13px;
}
.tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  overflow: auto;
}
.tab {
  background: none;
  border: 0;
  padding: 12px 14px;
  min-height: 44px;
  white-space: nowrap;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}
.tab.active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}
.accordion {
  border-bottom: 1px solid var(--line);
}
.accordion button {
  width: 100%;
  background: none;
  border: 0;
  min-height: 58px;
  text-align: left;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion .answer {
  display: none;
  padding: 0 0 18px;
  color: var(--muted);
}
.accordion.open .answer {
  display: block;
}
.price {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 34px;
}
.price small {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
}
.app-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
}
.sidebar {
  background: var(--navy);
  color: white;
  padding: 26px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
}
.side-brand {
  font-family: var(--serif);
  font-size: 21px;
  margin: 0 10px 28px;
}
.side-nav {
  display: grid;
  gap: 5px;
}
.side-nav a {
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 13px;
  color: #dbe2ea;
}
.side-nav a:hover,
.side-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.admin-main {
  padding: 28px;
  min-width: 0;
}
.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.admin-head h1 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0;
}
.metric {
  padding: 18px;
}
.metric span {
  font-size: 12px;
  color: var(--muted);
}
.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  margin-top: 6px;
}
.trend {
  height: 180px;
  background:
    linear-gradient(180deg, rgba(23, 123, 104, 0.18), transparent),
    repeating-linear-gradient(0deg, transparent 0 43px, var(--line) 44px);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.trend:after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 42%;
  height: 3px;
  background: var(--green);
  transform: skewY(-8deg);
  box-shadow:
    90px -14px 0 var(--green),
    180px -2px 0 var(--green),
    270px -30px 0 var(--green),
    360px -18px 0 var(--green);
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
th,
td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: #fcfbf9;
}
tr:last-child td {
  border-bottom: 0;
}
.member-shell {
  padding-bottom: 74px;
}
.member-top {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.member-nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--line);
  z-index: 50;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(5, 1fr);
}
.bottom-nav a {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  min-height: 48px;
  display: grid;
  place-items: center;
}
.bottom-nav a.active {
  color: var(--orange);
  font-weight: 800;
}
.member-main {
  padding: 32px 0;
}
.welcome {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}
.welcome h1 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0;
}
.notice {
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff4df;
  color: #775613;
  border: 1px solid #f1d39b;
}
.success {
  background: var(--green-soft);
  color: var(--green);
  border-color: #b8dfd6;
}
.error {
  background: var(--red-soft);
  color: var(--red);
  border-color: #f2c5c1;
}
.upload {
  border: 2px dashed #d8c9b6;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
}
.upload.drag {
  border-color: var(--orange);
  background: #fff3e9;
}
.file-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-top: 8px;
}
.status-line {
  position: relative;
  padding-left: 34px;
  padding-bottom: 25px;
}
.status-line:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d6d8dc;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #d6d8dc;
}
.status-line.done:before {
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green);
}
.status-line.current:before {
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
}
.status-line:not(:last-child):after {
  content: "";
  position: absolute;
  left: 11px;
  top: 22px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 38, 57, 0.55);
  display: none;
  place-items: center;
  padding: 20px;
  z-index: 100;
}
.modal.open {
  display: grid;
}
.modal-card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  width: min(480px, 100%);
  box-shadow: var(--shadow);
}
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--navy);
  color: white;
  padding: 13px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 120;
  transform: translateY(120px);
  opacity: 0;
  transition: 0.25s;
}
.toast.show {
  transform: none;
  opacity: 1;
}
.auth-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-art {
  background: var(--navy);
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.auth-art h1 {
  font-family: var(--serif);
  font-size: 48px;
}
.auth-form {
  display: grid;
  place-items: center;
  padding: 30px;
}
.auth-card {
  width: min(430px, 100%);
}
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  margin: 18px 0;
}
.divider:before,
.divider:after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}
.otp {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.otp input {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
}
.wizard {
  min-height: 100vh;
  background: var(--cream);
  padding: 30px 0;
}
.wizard-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.choice {
  min-height: 80px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
}
.choice.selected {
  border-color: var(--orange);
  background: #fff6ef;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.1);
}
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: white;
}
.day {
  min-height: 110px;
  padding: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.day:nth-child(7n) {
  border-right: 0;
}
.event-dot {
  display: block;
  margin-top: 8px;
  padding: 5px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 10px;
}
.footer {
  background: var(--navy);
  color: #dbe2ea;
  padding: 54px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}
.footer h4 {
  color: white;
}
.footer a {
  display: block;
  font-size: 13px;
  margin: 8px 0;
  color: #cbd3dd;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  margin-top: 32px;
  font-size: 12px;
  color: #98a4b3;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.atlas {
  background: #fbfaf8;
  min-height: 100vh;
}
.atlas-hero {
  background: var(--cream);
  padding: 42px 0 76px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.atlas-hero:after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(185, 151, 100, 0.22);
  border-radius: 50%;
  right: -210px;
  top: -230px;
  box-shadow:
    0 0 0 60px rgba(185, 151, 100, 0.05),
    0 0 0 120px rgba(185, 151, 100, 0.03);
}
.atlas-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 70px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.atlas-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 74px;
}
.atlas-brand > span {
  color: var(--orange);
}
.atlas-hero .eyebrow {
  margin-bottom: 16px;
}
.atlas-hero h1 {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.052em;
  color: var(--navy);
  margin: 0;
}
.atlas-hero-grid > div > p {
  max-width: 680px;
  font-size: 17px;
  color: var(--muted);
  margin: 26px 0 0;
}
.atlas-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.atlas-manifesto {
  background: var(--navy);
  color: white;
  padding: 34px;
  border-radius: 2px;
  box-shadow: 22px 22px 0 var(--gold-soft);
}
.atlas-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f6d39d;
}
.atlas-manifesto blockquote {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.25;
  margin: 30px 0 44px;
}
.atlas-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
}
.atlas-proof span {
  font-size: 11px;
  color: #cbd3dd;
}
.atlas-proof strong {
  display: block;
  color: white;
  font-family: var(--serif);
  font-size: 26px;
}
.atlas-paths {
  padding: 76px 0 66px;
  background: white;
}
.atlas-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}
.atlas-section-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  color: var(--navy);
  margin: 8px 0 0;
}
.atlas-section-head > p {
  color: var(--muted);
  max-width: 350px;
}
.atlas-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.atlas-route {
  padding: 28px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  position: relative;
  transition: 0.2s;
}
.atlas-route:last-child {
  border-right: 0;
}
.atlas-route:hover {
  background: var(--cream);
}
.atlas-route > span {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
}
.atlas-route strong {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  margin-top: auto;
}
.atlas-route small {
  color: var(--muted);
  margin-top: 5px;
}
.atlas-route:after {
  content: "↗";
  position: absolute;
  right: 20px;
  top: 18px;
  color: var(--orange);
  font-size: 18px;
}
.atlas-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.atlas-flow i {
  height: 1px;
  background: var(--gold);
  position: relative;
}
.atlas-flow i:after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}
.atlas-library {
  padding: 80px 0;
  background: #f7f4ef;
}
.atlas-library-head {
  align-items: center;
}
.atlas-search {
  width: min(430px, 100%);
  position: relative;
}
.atlas-search input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 4px;
  padding: 0 52px 0 16px;
  outline: 0;
}
.atlas-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 151, 100, 0.14);
}
.atlas-search kbd {
  position: absolute;
  right: 12px;
  top: 11px;
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 4px;
  color: var(--muted);
  font-size: 12px;
}
.atlas-filter {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-bottom: 8px;
  margin-bottom: 32px;
}
.atlas-filter button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.atlas-filter button.active,
.atlas-filter button:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.atlas-group {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 38px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.atlas-group > header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 14px;
}
.atlas-group > header > span {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
}
.atlas-group h3 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
  color: var(--navy);
  margin: 0;
}
.atlas-group header p {
  font-size: 12px;
  color: var(--muted);
  margin: 7px 0 0;
}
.atlas-group header small {
  font-size: 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 6px;
}
.atlas-screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.atlas-screen {
  min-height: 92px;
  background: white;
  border: 1px solid var(--line);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 6px;
  transition: 0.18s;
}
.atlas-screen:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 38, 57, 0.07);
}
.atlas-number {
  grid-column: 1/2;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
}
.atlas-screen strong {
  font-size: 13px;
  color: var(--navy);
  align-self: end;
}
.atlas-arrow {
  grid-row: 1/3;
  grid-column: 2;
  align-self: center;
  color: var(--orange);
}
.atlas-empty {
  padding: 50px;
  border: 1px dashed var(--line);
  text-align: center;
  background: white;
}
.atlas-empty strong,
.atlas-empty span {
  display: block;
}
.atlas-empty span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}
.atlas-footer {
  background: var(--navy);
  color: white;
  padding: 38px 0;
}
.atlas-footer > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.atlas-footer .atlas-brand {
  color: white;
  margin: 0;
}
.atlas-footer p {
  font-size: 12px;
  color: #aeb8c5;
  margin: 8px 0 0;
}
.atlas-footer a {
  font-size: 13px;
  font-weight: 700;
  color: #f6d39d;
}
.atlas-footer a span {
  color: var(--orange);
}
.atlas-brand {
  font-weight: 600;
  margin-bottom: 68px;
}
.atlas .eyebrow {
  color: #80633b;
}
.atlas-hero h1 {
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.atlas-hero-grid > div > p {
  max-width: 62ch;
  margin-top: 24px;
  text-wrap: pretty;
}
.atlas-actions {
  margin-top: 28px;
}
.atlas-manifesto {
  box-shadow: 18px 18px 0 var(--gold-soft);
}
.atlas-kicker {
  font-weight: 600;
  letter-spacing: 0.1em;
}
.atlas-manifesto blockquote {
  letter-spacing: -0.015em;
  margin: 28px 0 40px;
}
.atlas-proof span {
  letter-spacing: 0.01em;
}
.atlas-proof strong {
  font-weight: 600;
}
.atlas-paths {
  padding: 72px 0 64px;
}
.atlas-section-head {
  margin-bottom: 28px;
}
.atlas-section-head h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.atlas-section-head > p {
  max-width: 42ch;
}
.atlas-route {
  min-height: 184px;
  transition:
    transform 150ms cubic-bezier(0.2, 0, 0, 1),
    background-color 150ms cubic-bezier(0.2, 0, 0, 1),
    box-shadow 150ms cubic-bezier(0.2, 0, 0, 1);
}
.atlas-route:hover {
  box-shadow: inset 0 -3px 0 var(--gold);
}
.atlas-route:active {
  transform: translateY(1px);
}
.atlas-route strong {
  font-size: 27px;
  letter-spacing: -0.015em;
}
.atlas-route:after {
  color: var(--gold);
}
.atlas-flow {
  font-weight: 600;
}
.atlas-library {
  padding: 76px 0;
}
.atlas-filter {
  margin-bottom: 30px;
}
.atlas-filter button {
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    background-color 150ms cubic-bezier(0.2, 0, 0, 1),
    color 150ms cubic-bezier(0.2, 0, 0, 1),
    border-color 150ms cubic-bezier(0.2, 0, 0, 1),
    transform 100ms;
}
.atlas-filter button:active {
  transform: translateY(1px);
}
.atlas-group {
  grid-template-columns: 250px minmax(0, 1fr);
  padding: 30px 0;
}
.atlas-group > header {
  grid-template-columns: auto 1fr;
}
.atlas-group h3 {
  letter-spacing: -0.01em;
}
.atlas-group header p {
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.atlas-screen {
  min-height: 94px;
  padding: 15px;
  transition:
    transform 150ms cubic-bezier(0.2, 0, 0, 1),
    border-color 150ms cubic-bezier(0.2, 0, 0, 1),
    box-shadow 150ms cubic-bezier(0.2, 0, 0, 1);
}
.atlas-screen:active {
  transform: translateY(1px);
  box-shadow: none;
}
.atlas-number {
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.atlas-screen strong {
  font-size: 14px;
  letter-spacing: 0.01em;
}
.atlas-arrow {
  color: var(--gold);
}
.atlas-empty {
  padding: 46px;
}
.atlas-empty .btn {
  margin-top: 18px;
}
.atlas-footer p {
  letter-spacing: 0.01em;
}
.atlas-footer a {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.atlas-footer a span {
  color: #f6d39d;
}
.hidden {
  display: none !important;
}
.skeleton {
  position: relative;
  overflow: hidden;
  background: #ece8e2;
  color: transparent !important;
  border-color: transparent !important;
}
.skeleton * {
  visibility: hidden;
}
.skeleton:after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.62),
    transparent
  );
  animation: shimmer 1.2s cubic-bezier(0.2, 0, 0, 1) 3 forwards;
}
.swatch {
  height: 92px;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px;
  display: flex;
  align-items: end;
  font-size: 12px;
  font-weight: 700;
}
.component-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}
@media (max-width: 920px) {
  .navlinks {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
    margin-left: auto;
  }
  .hero-grid,
  .split,
  .auth-wrap {
    grid-template-columns: 1fr;
  }
  .visual {
    min-height: 360px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-shell {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    height: auto;
    padding: 16px;
  }
  .side-nav {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    overflow: auto;
  }
  .admin-main {
    padding: 20px;
  }
  .auth-art {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sticky {
    position: static;
  }
  .atlas-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .atlas-brand {
    margin-bottom: 54px;
  }
  .atlas-manifesto {
    max-width: 620px;
  }
  .atlas-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .atlas-screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 24px, 1180px);
  }
  .nav {
    height: 64px;
  }
  .nav-actions .btn-outline {
    display: none;
  }
  .hero {
    padding: 48px 0;
  }
  .display {
    font-size: 42px;
  }
  .lead {
    font-size: 16px;
  }
  .visual {
    min-height: 310px;
  }
  .student-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }
  .student-card .mini-map {
    height: 145px;
    font-size: 23px;
  }
  .proof {
    gap: 14px;
  }
  .proof strong {
    font-size: 21px;
  }
  .section {
    padding: 50px 0;
  }
  .section-head {
    align-items: start;
    display: block;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .chapter-card {
    min-height: 220px;
  }
  .bottom-nav {
    display: grid;
  }
  .member-shell {
    padding-bottom: 72px;
  }
  .member-top .navlinks {
    display: none;
  }
  .welcome {
    align-items: flex-start;
  }
  .welcome .btn {
    display: none;
  }
  .auth-form {
    padding: 20px;
  }
  .wizard-card {
    padding: 20px;
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .calendar {
    overflow: auto;
    grid-template-columns: repeat(7, 90px);
  }
  .day {
    min-height: 90px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .admin-main {
    padding: 14px;
  }
  .side-nav {
    grid-template-columns: repeat(5, 110px);
  }
  .sidebar .side-brand {
    margin-bottom: 14px;
  }
  .otp {
    gap: 5px;
  }
  .atlas-hero {
    padding: 24px 0 52px;
  }
  .atlas-brand {
    margin-bottom: 46px;
  }
  .atlas-hero h1 {
    font-size: 48px;
  }
  .atlas-hero-grid > div > p {
    font-size: 15px;
  }
  .atlas-actions .btn {
    width: 100%;
  }
  .atlas-manifesto {
    padding: 24px;
    box-shadow: 12px 12px 0 var(--gold-soft);
  }
  .atlas-manifesto blockquote {
    font-size: 23px;
    margin: 24px 0 32px;
  }
  .atlas-paths,
  .atlas-library {
    padding: 52px 0;
  }
  .atlas-section-head {
    display: block;
  }
  .atlas-section-head > p {
    margin-top: 12px;
  }
  .atlas-route-grid {
    grid-template-columns: 1fr;
  }
  .atlas-route {
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .atlas-route:last-child {
    border-bottom: 0;
  }
  .atlas-flow {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .atlas-flow i {
    height: 18px;
    width: 1px;
    margin-left: 16px;
  }
  .atlas-flow i:after {
    right: -3px;
    top: auto;
    bottom: 0;
  }
  .atlas-library-head .atlas-search {
    margin-top: 22px;
  }
  .atlas-screen-grid {
    grid-template-columns: 1fr;
  }
  .atlas-footer > .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 380px) {
  .atlas-hero h1 {
    font-size: 44px;
  }
  .atlas-manifesto {
    box-shadow: 8px 8px 0 var(--gold-soft);
  }
  .atlas-proof {
    grid-template-columns: 1fr;
  }
  .atlas-search input {
    font-size: 14px;
  }
  .atlas-filter {
    margin-right: -12px;
    padding-right: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .atlas-screen:hover,
  .atlas-route:hover {
    transform: none !important;
  }
}

/* UX revision, July 2026 */
:root {
  --cream: #fbf7f2;
  --paper: #fff;
  --navy: #172437;
  --ink: #20262f;
  --muted: #626b77;
  --gold: #a9824e;
  --gold-soft: #f3e7d3;
  --gold-ink: #76552e;
  --orange: #cc4b0d;
  --orange-dark: #b9430b;
  --green: #14735f;
  --green-soft: #e7f3ef;
  --line: #e5e0d9;
  --shadow: 0 18px 50px rgba(23, 36, 55, 0.09);
  --radius: 14px;
}
body {
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  text-rendering: optimizeLegibility;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 300;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.container {
  width: min(1160px, calc(100% - 40px));
}
.topbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 36, 55, 0.08);
  box-shadow: 0 1px 0 rgba(23, 36, 55, 0.02);
}
.nav {
  height: 72px;
  gap: 24px;
}
.brand {
  font-size: 20px;
  letter-spacing: -0.025em;
}
.navlinks {
  gap: 8px;
  font-size: 13px;
}
.navlinks a {
  position: relative;
  padding: 12px 10px;
  color: #3e4651;
}
.navlinks a:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.16s;
}
.navlinks a:hover,
.navlinks a.active {
  color: var(--navy);
}
.navlinks a.active:after {
  transform: scaleX(1);
}
.nav-actions {
  margin-left: 6px;
}
.btn {
  border-radius: 9px;
  letter-spacing: 0;
  font-weight: 600;
  box-shadow: none;
}
.btn-primary {
  background: var(--orange);
  box-shadow: 0 7px 16px rgba(232, 93, 24, 0.18);
}
.btn-primary:hover {
  background: var(--orange-dark);
}
.btn-quiet {
  background: transparent;
  color: var(--navy);
  border: 1px solid transparent;
}
.btn-quiet:hover {
  background: #f3f4f5;
  border-color: #e7e8ea;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  place-content: center;
  gap: 4px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}
.mobile-menu {
  padding: 0 0 16px;
}
.mobile-menu nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.mobile-menu a {
  min-height: 48px;
  padding: 12px;
  border-radius: 9px;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
}
.hero {
  padding: 76px 0 78px;
  background: linear-gradient(135deg, #fbf7f2 0%, #fff 58%, #f3e7d3 140%);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 76px;
}
.display {
  max-width: 740px;
  font-size: clamp(46px, 5.8vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.lead {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
  text-wrap: pretty;
}
.hero-assurance {
  margin: 13px 0 0;
  font-size: 11px;
  color: var(--muted);
}
.proof {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 36, 55, 0.1);
}
.proof strong {
  font-size: 25px;
  font-weight: 600;
}
.journey-panel {
  position: relative;
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 28px 70px rgba(23, 36, 55, 0.18);
}
.journey-panel:before {
  content: "";
  position: absolute;
  inset: -14px 24px auto;
  height: 14px;
  background: var(--gold-soft);
  border-radius: 12px 12px 0 0;
  z-index: -1;
}
.journey-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.journey-head > div {
  display: grid;
  flex: 1;
}
.journey-head small {
  color: #aeb8c4;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: #6c4e27;
  font-size: 11px;
  font-weight: 700;
  flex: none;
}
.match-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin: 18px 0;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 18px;
}
.match-card .eyebrow {
  font-size: 9px;
}
.match-card h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 22px;
  margin: 5px 0;
}
.match-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.match-score {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
}
.match-score small {
  font: 600 10px var(--sans);
}
.journey-next {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.journey-next .step-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  font-size: 11px;
  font-weight: 700;
}
.journey-next div {
  display: grid;
  gap: 2px;
}
.journey-next small,
.journey-next span {
  color: #aeb8c4;
  font-size: 10px;
}
.journey-next strong {
  font-size: 13px;
}
.journey-next a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
}
.journey-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 17px;
}
.journey-progress > span {
  font-size: 11px;
  color: #aeb8c4;
}
.journey-progress > strong {
  font-size: 11px;
}
.journey-progress .progress {
  grid-column: 1/-1;
  background: rgba(255, 255, 255, 0.13);
}
.section {
  padding: 68px 0;
}
.section.alt {
  background: #f8f7f5;
}
.section-head {
  margin-bottom: 26px;
}
.section-head .subtle {
  max-width: 680px;
  margin: 9px 0 0;
  line-height: 1.7;
}
.title {
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.eyebrow {
  font-weight: 700;
  letter-spacing: 0.095em;
}
.card {
  padding: 20px;
  border-color: #e6e2dc;
  box-shadow: 0 2px 8px rgba(23, 36, 55, 0.035);
}
.card.hover {
  transition:
    border-color 0.16s,
    box-shadow 0.16s,
    transform 0.16s;
}
.card.hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(23, 36, 55, 0.08);
}
.proof-story > .container {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 90px;
  align-items: end;
}
.proof-story .eyebrow {
  color: #e8c998;
}
.proof-story .title {
  font-size: clamp(36px, 4.6vw, 58px);
  margin-bottom: 0;
}
.proof-story p {
  color: #c8d0d9;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}
.scholar-top {
  display: flex;
  align-items: center;
  gap: 6px;
}
.chapter-label {
  margin-left: auto;
  font-size: 10px;
  color: var(--muted);
}
.scholar-card {
  gap: 12px;
  padding: 18px;
}
.scholar-card h3 {
  font-size: 20px;
  line-height: 1.25;
}
.scholar-card .meta span:not(:last-child):after {
  content: "·";
  margin-left: 12px;
  color: #bbb;
}
.scholar-card .deadline strong {
  color: var(--orange-dark);
}
.card-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -18px -18px;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--navy);
  border-radius: 0 0 var(--radius) var(--radius);
}
.card-link:hover {
  background: var(--cream);
}
.directory-hero {
  padding: 56px 0 46px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.directory-hero > .container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
.directory-hero .title {
  font-size: clamp(36px, 4vw, 52px);
  margin: 8px 0;
}
.directory-hero p {
  max-width: 700px;
  color: var(--muted);
  margin: 0;
}
.directory-body {
  background: #fff;
}
.filter-bar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 190px 180px auto;
  gap: 10px;
  padding: 14px;
  background: #f7f7f6;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.search-field {
  position: relative;
}
.search-field > span:last-child {
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 20px;
  color: var(--muted);
}
.search-field input {
  padding-right: 40px;
}
.result-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0 16px;
}
.result-bar span {
  font-size: 12px;
  color: var(--muted);
}
.empty-state {
  padding: 70px 20px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: #fafafa;
}
.empty-state h2 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 28px;
  margin: 16px 0 6px;
}
.empty-state p {
  color: var(--muted);
  margin: 0 0 20px;
}
.empty-mark {
  width: 50px;
  height: 50px;
  margin: auto;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.empty-mark:after {
  content: "";
  position: absolute;
  width: 19px;
  height: 2px;
  background: var(--gold);
  right: -11px;
  bottom: 2px;
  transform: rotate(45deg);
}
.member-top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}
.member-nav {
  height: 68px;
}
.member-nav .navlinks {
  margin: 0;
}
.account-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 12px;
}
.account-link:hover,
.account-link.active {
  background: var(--cream);
}
.member-main {
  padding: 38px 0 70px;
  background: #f7f8f8;
  min-height: calc(100vh - 68px);
}
.welcome h1 {
  font-size: 34px;
  letter-spacing: -0.025em;
}
.welcome p {
  margin: 5px 0 0;
}
.next-action {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 34px;
  padding: 30px;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(23, 36, 55, 0.13);
}
.next-action h2 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.15;
  margin: 13px 0 8px;
}
.next-action p {
  max-width: 650px;
  color: #c9d1d9;
  margin: 0;
}
.next-action .btn-quiet {
  color: #fff;
}
.next-action .btn-quiet:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}
.readiness {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.readiness-ring {
  width: 112px;
  height: 112px;
  margin: auto;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: conic-gradient(
    var(--gold) 0 62.5%,
    rgba(255, 255, 255, 0.12) 62.5%
  );
  box-shadow: inset 0 0 0 10px var(--navy);
}
.readiness-ring strong {
  font-family: var(--serif);
  font-size: 27px;
}
.readiness-ring span {
  font-size: 10px;
  color: #c9d1d9;
}
.readiness > div:last-child {
  display: grid;
  gap: 6px;
}
.readiness small {
  color: #aeb8c4;
}
.readiness .progress {
  background: rgba(255, 255, 255, 0.12);
}
.readiness .progress > span {
  background: var(--gold);
}
.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.status-strip a {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}
.status-strip a:last-child {
  border-right: 0;
}
.status-strip a:hover {
  background: var(--cream);
}
.status-strip span,
.status-strip small {
  font-size: 10px;
  color: var(--muted);
}
.status-strip strong {
  font-size: 13px;
  color: var(--navy);
}
.member-section {
  padding-top: 46px;
}
.member-section .section-head {
  margin-bottom: 20px;
}
.section-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  font-weight: 600;
  color: var(--navy);
}
.order-heading .section-head {
  margin-top: 18px;
}
.back-link {
  display: inline-flex;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.order-stepper {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}
.order-stepper button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
}
.order-stepper button span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}
.order-stepper button.active {
  color: var(--navy);
}
.order-stepper button.active span {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.order-stepper button.done span {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.order-stepper i {
  height: 1px;
  background: var(--line);
}
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: start;
}
.order-workspace .card {
  padding: 28px;
}
.panel-heading {
  max-width: 670px;
  margin-bottom: 24px;
}
.panel-heading h2 {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--navy);
  margin: 7px 0;
}
.panel-heading p {
  color: var(--muted);
  margin: 0;
}
.panel-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.save-note {
  font-size: 11px;
  color: var(--green);
}
.order-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.order-summary h3 {
  font-family: var(--serif);
  font-size: 23px;
  color: var(--navy);
  margin: 10px 0 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 18px;
}
.summary-total strong {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 27px;
}
.order-summary > small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 12px;
}
.upload {
  border: 1px dashed #c8b394;
  background: #fbf9f5;
  padding: 36px 24px;
}
.upload:hover,
.upload:focus,
.upload.drag {
  border-color: var(--gold);
  background: #f8f2e8;
}
.upload-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: var(--gold-soft);
  color: #74552d;
  font-size: 20px;
}
.upload p {
  color: var(--muted);
  font-size: 12px;
}
.file-list {
  margin-top: 12px;
}
.file-chip span:first-child {
  display: grid;
}
.file-chip small {
  color: var(--muted);
}
.file-ok {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
}
.upload-guidance {
  display: grid;
  gap: 2px;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
}
.summary-list {
  margin: 0 0 24px;
}
.summary-list > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.summary-list dt {
  color: var(--muted);
}
.summary-list dd {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
}
.inline-field {
  display: flex;
  gap: 8px;
}
.sidebar {
  width: 246px;
  padding: 25px 18px 18px;
  display: flex;
  flex-direction: column;
  background: #142134;
}
.side-brand {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 0 10px;
  color: #fff;
}
.side-brand b {
  color: var(--orange);
}
.side-brand span {
  font: 500 10px var(--sans);
  padding: 3px 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  margin-left: 5px;
  color: #b7c1cc;
}
.side-context {
  margin: 7px 10px 26px;
  color: #8290a0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.side-nav {
  gap: 3px;
}
.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  color: #b9c3ce;
}
.side-nav a:hover,
.side-nav a.active {
  background: rgba(255, 255, 255, 0.08);
}
.side-nav a.active .side-dot {
  background: var(--orange);
}
.side-dot {
  width: 7px;
  height: 7px;
  border: 1px solid #718093;
  border-radius: 50%;
}
.side-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 15px 10px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.side-user > div {
  display: grid;
}
.side-user strong {
  font-size: 12px;
}
.side-user small {
  font-size: 10px;
  color: #8290a0;
}
.admin-main {
  padding: 32px;
  background: #f5f6f7;
}
.admin-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.admin-head h1 {
  font-size: 30px;
  letter-spacing: -0.02em;
}
.table-wrap {
  box-shadow: 0 2px 8px rgba(23, 36, 55, 0.03);
}
th {
  background: #f7f8f8;
  color: #6b7480;
}
tbody tr:hover {
  background: #fafbfb;
}
.modal {
  background: rgba(11, 20, 32, 0.66);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  border-radius: 16px;
  padding: 28px;
}
.modal-card .title {
  font-size: 28px;
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 25px;
  cursor: pointer;
}
.modal-close:hover {
  background: #f2f3f4;
}
.modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 22px;
}
.bottom-nav a {
  gap: 3px;
  place-content: center;
}
.nav-symbol {
  width: 19px;
  height: 19px;
  display: block;
  position: relative;
}
.nav-symbol:before,
.nav-symbol:after {
  content: "";
  position: absolute;
  border: 1.7px solid currentColor;
}
.nav-symbol.home:before {
  inset: 5px 3px 2px;
  border-radius: 2px;
}
.nav-symbol.home:after {
  width: 10px;
  height: 10px;
  left: 4px;
  top: 1px;
  border-width: 1.7px 1.7px 0 0;
  transform: rotate(-45deg);
}
.nav-symbol.search:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 1px;
  top: 1px;
}
.nav-symbol.search:after {
  width: 7px;
  border-width: 1.7px 0 0;
  transform: rotate(45deg);
  right: 0;
  bottom: 3px;
}
.nav-symbol.file:before {
  inset: 1px 3px;
  border-radius: 2px;
}
.nav-symbol.file:after {
  width: 7px;
  border-width: 1.7px 0 0;
  left: 6px;
  top: 7px;
  box-shadow: 0 5px 0 currentColor;
}
.nav-symbol.play:before {
  inset: 2px;
  border-radius: 4px;
}
.nav-symbol.play:after {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: currentColor;
  left: 8px;
  top: 5px;
}
.nav-symbol.user:before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: 5px;
  top: 0;
}
.nav-symbol.user:after {
  width: 13px;
  height: 7px;
  border-radius: 8px 8px 2px 2px;
  left: 2px;
  bottom: 1px;
}

@media (max-width: 1020px) {
  .navlinks {
    display: none;
  }
  .menu-btn {
    display: grid;
  }
  .nav-actions .btn-primary {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .journey-panel {
    max-width: 650px;
  }
  .directory-hero > .container {
    align-items: start;
  }
  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }
  .filter-bar .search-field {
    grid-column: 1/-1;
  }
  .next-action {
    grid-template-columns: 1fr;
  }
  .readiness {
    grid-template-columns: 112px 1fr;
    align-items: center;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .order-layout {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
  }
  .app-shell {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    width: auto;
    height: auto;
  }
  .side-context,
  .side-user {
    display: none;
  }
  .side-nav {
    display: flex;
    overflow: auto;
  }
  .side-nav a {
    white-space: nowrap;
  }
  .admin-main {
    padding: 24px;
  }
}
@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }
  .nav {
    height: 62px;
  }
  .brand {
    font-size: 17px;
  }
  .nav-actions .btn-quiet {
    display: none;
  }
  .mobile-menu {
    position: fixed;
    inset: 62px 0 auto;
    background: #fff;
    padding: 10px 14px 18px;
    box-shadow: 0 18px 35px rgba(23, 36, 55, 0.14);
  }
  .mobile-menu nav {
    grid-template-columns: 1fr;
  }
  .menu-open {
    overflow: hidden;
  }
  .hero {
    padding: 44px 0 54px;
  }
  .display {
    font-size: 42px;
    line-height: 1.05;
  }
  .lead {
    font-size: 15px;
    line-height: 1.7;
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .proof > div:last-child {
    grid-column: 1/-1;
  }
  .journey-panel {
    padding: 16px;
    border-radius: 16px;
  }
  .match-card {
    padding: 14px;
  }
  .match-card h3 {
    font-size: 19px;
  }
  .match-score {
    width: 54px;
    height: 54px;
    font-size: 21px;
  }
  .journey-next {
    align-items: start;
  }
  .section {
    padding: 48px 0;
  }
  .title {
    font-size: 34px;
  }
  .proof-story > .container {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .proof-story .title {
    font-size: 36px;
  }
  .directory-hero {
    padding: 40px 0 34px;
  }
  .directory-hero > .container {
    display: grid;
  }
  .directory-hero .btn {
    width: 100%;
  }
  .filter-bar {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .filter-bar .search-field {
    grid-column: auto;
  }
  .result-bar {
    align-items: start;
  }
  .result-bar span {
    display: none;
  }
  .member-top .account-link span:last-child {
    display: none;
  }
  .member-main {
    padding: 24px 0 92px;
  }
  .welcome {
    display: block;
  }
  .welcome .btn {
    display: none;
  }
  .welcome h1 {
    font-size: 28px;
  }
  .next-action {
    padding: 20px;
    gap: 24px;
  }
  .next-action h2 {
    font-size: 28px;
  }
  .next-action .hero-actions .btn-quiet {
    display: flex;
  }
  .readiness {
    grid-template-columns: 84px 1fr;
    padding: 18px 0 0;
  }
  .readiness-ring {
    width: 80px;
    height: 80px;
    box-shadow: inset 0 0 0 8px var(--navy);
  }
  .readiness-ring strong {
    font-size: 22px;
  }
  .status-strip {
    grid-template-columns: 1fr;
  }
  .status-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .status-strip a:last-child {
    border-bottom: 0;
  }
  .member-section {
    padding-top: 36px;
  }
  .order-stepper {
    grid-template-columns: auto 1fr auto 1fr auto;
  }
  .order-stepper strong {
    display: none;
  }
  .order-workspace .card {
    padding: 20px;
  }
  .panel-heading h2 {
    font-size: 26px;
  }
  .panel-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .panel-actions .btn,
  .panel-actions a {
    width: 100%;
  }
  .save-note {
    text-align: center;
  }
  .summary-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .inline-field {
    display: grid;
  }
  .order-summary {
    padding: 18px;
  }
  .sidebar {
    padding: 12px;
  }
  .side-brand {
    margin: 0 6px 10px;
  }
  .side-nav {
    margin: 0 -12px;
    padding: 0 12px;
  }
  .admin-main {
    padding: 18px 14px;
  }
  .admin-head {
    align-items: flex-start;
    gap: 12px;
  }
  .admin-head .btn {
    white-space: nowrap;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .table-wrap {
    border-radius: 10px;
  }
  .bottom-nav {
    display: grid;
    padding-top: 5px;
  }
  .bottom-nav a {
    min-height: 54px;
    font-size: 9px;
  }
  .modal {
    align-items: end;
    padding: 0;
  }
  .modal-card {
    width: 100%;
    border-radius: 18px 18px 0 0;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
  }
  .modal-actions {
    display: grid;
  }
  .modal-actions .btn {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .display {
    font-size: 38px;
  }
  .proof strong {
    font-size: 22px;
  }
  .journey-head .badge {
    display: none;
  }
  .next-action h2 {
    font-size: 25px;
  }
  .status-strip a {
    padding: 14px;
  }
  .order-stepper {
    gap: 7px;
  }
  .order-stepper button span {
    width: 28px;
    height: 28px;
  }
}

/* Scholarship decision journey */
.scholarship-hero {
  padding: 34px 0 28px;
  background: linear-gradient(180deg, var(--cream), #fff);
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 12px;
  color: var(--muted);
}
.breadcrumbs a:hover {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.scholarship-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
}
.scholarship-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}
.scholarship-title-row h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  text-wrap: balance;
}
.scholarship-title-row p {
  max-width: 690px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.scholarship-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.scholarship-facts > div {
  display: grid;
  gap: 4px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
}
.scholarship-facts > div:first-child {
  padding-left: 0;
}
.scholarship-facts > div:last-child {
  border-right: 0;
}
.scholarship-facts dt {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.scholarship-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.scholarship-subnav {
  position: sticky;
  top: 72px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.scholarship-subnav > .container {
  display: flex;
  gap: 6px;
  overflow: auto;
}
.scholarship-subnav a {
  min-height: 48px;
  padding: 14px 12px 11px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}
.scholarship-subnav a:hover,
.scholarship-subnav a:focus {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.scholarship-main {
  padding: 48px 0 76px;
  background: #fff;
}
.scholarship-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 60px;
  align-items: start;
}
.scholarship-content {
  min-width: 0;
}
.content-section {
  padding: 0 0 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 145px;
}
.content-section:last-child {
  margin-bottom: 0;
}
.content-heading {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.section-number {
  font: 600 11px var(--sans);
  letter-spacing: 0.08em;
  color: var(--gold-ink);
  padding-top: 7px;
}
.content-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.content-heading p {
  max-width: 650px;
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.verification-note {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  padding: 15px 18px;
  margin-bottom: 26px;
  background: #faf6ef;
  border: 1px solid #eadbc4;
  border-radius: 10px;
  font-size: 12px;
  color: #6f542e;
}
.verification-note strong {
  color: #5f431e;
}
.verification-note span {
  line-height: 1.55;
}
.benefit-list {
  border-top: 1px solid var(--line);
}
.benefit-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.benefit-list > div > span {
  font-size: 10px;
  color: var(--gold-ink);
  letter-spacing: 0.05em;
}
.benefit-list strong {
  color: var(--navy);
}
.benefit-list p {
  max-width: 650px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.eligibility-grid {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.eligibility-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 17px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.eligibility-row:last-child {
  border-bottom: 0;
}
.eligibility-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.eligibility-row.pass .eligibility-icon {
  background: var(--green-soft);
  color: var(--green);
}
.eligibility-row.review .eligibility-icon {
  background: #fff2dc;
  color: #8a5b0b;
}
.eligibility-row > div {
  display: grid;
}
.eligibility-row p {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--muted);
}
.eligibility-row > span:last-child {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}
.preparation-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.preparation-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 15px;
  padding: 0 0 28px;
}
.preparation-timeline li:not(:last-child):after {
  content: "";
  position: absolute;
  left: 17px;
  top: 37px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}
.preparation-timeline li > span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.preparation-timeline li.current > span {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.preparation-timeline li > div {
  padding-top: 3px;
}
.preparation-timeline strong {
  color: var(--navy);
}
.preparation-timeline p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.preparation-timeline small {
  padding-top: 6px;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}
.checklist-progress {
  padding: 16px 18px;
  margin-bottom: 12px;
  border-radius: 11px;
  background: #f5f7f6;
}
.checklist-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
  font-size: 12px;
}
.checklist-progress span {
  color: var(--green);
  font-weight: 600;
}
.document-checklist {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.document-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 60px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.document-row:last-child {
  border-bottom: 0;
}
.document-row:hover {
  background: #fafbfa;
}
.document-row .check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.document-checkmark {
  width: 22px;
  height: 22px;
  border: 1.5px solid #aeb4ba;
  border-radius: 6px;
  position: relative;
}
.document-row .check:focus-visible + .document-checkmark {
  outline: 3px solid var(--orange-dark);
  outline-offset: 3px;
}
.document-row .check:checked + .document-checkmark {
  background: var(--green);
  border-color: var(--green);
}
.document-row .check:checked + .document-checkmark:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.document-row > span:nth-of-type(2) {
  font-weight: 500;
  color: var(--navy);
}
.document-row small {
  font-size: 10px;
  color: var(--muted);
}
.document-row:has(.check:checked) > span:nth-of-type(2) {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: #aeb4ba;
}
.match-sidebar {
  padding: 23px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(23, 36, 55, 0.12);
}
.match-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.match-summary .eyebrow {
  color: #d9bc8d;
}
.match-summary h2 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 25px;
}
.score-large {
  width: 68px;
  height: 68px;
  flex: none;
  background: conic-gradient(var(--gold) 0 88%, rgba(255, 255, 255, 0.13) 88%);
  color: #fff;
}
.score-large:after {
  background: var(--navy);
}
.score-large span {
  font-size: 15px;
}
.match-sidebar > p {
  margin: 18px 0;
  color: #c5ced8;
  font-size: 12px;
  line-height: 1.6;
}
.gap-box {
  display: grid;
  gap: 5px;
  padding: 15px;
  margin: 0 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.gap-box span,
.gap-box small {
  font-size: 10px;
  color: #aeb9c5;
}
.gap-box strong {
  font-size: 13px;
  line-height: 1.45;
}
.support-links {
  display: grid;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.support-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: #d6dde5;
}
.support-links a:hover {
  color: #fff;
}
.sidebar-assurance {
  display: grid;
  gap: 2px;
  margin-top: 16px;
}
.sidebar-assurance strong {
  font-size: 11px;
}
.sidebar-assurance span {
  font-size: 10px;
  color: #9da9b6;
}
.mobile-scholar-action {
  display: none;
}

@media (max-width: 1020px) {
  .scholarship-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
  }
}
@media (max-width: 820px) {
  .scholarship-title-row {
    grid-template-columns: 1fr;
  }
  .scholarship-title-row .btn {
    justify-self: start;
  }
  .scholarship-facts {
    grid-template-columns: 1fr 1fr;
  }
  .scholarship-facts > div:nth-child(2) {
    border-right: 0;
  }
  .scholarship-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .scholarship-facts > div:nth-child(3) {
    padding-left: 0;
  }
  .scholarship-layout {
    grid-template-columns: 1fr;
  }
  .match-sidebar {
    position: static;
    grid-row: 1;
  }
  .scholarship-content {
    grid-row: 2;
  }
}
@media (max-width: 640px) {
  .scholarship-hero {
    padding: 24px 0 22px;
  }
  .breadcrumbs {
    margin-bottom: 20px;
  }
  .scholarship-title-row {
    gap: 20px;
  }
  .scholarship-title-row h1 {
    font-size: 36px;
  }
  .scholarship-title-row p {
    font-size: 14px;
  }
  .scholarship-title-row .btn {
    width: 100%;
  }
  .scholarship-facts {
    margin-top: 22px;
  }
  .scholarship-facts > div {
    padding: 12px;
  }
  .scholarship-facts > div:nth-child(odd) {
    padding-left: 0;
  }
  .scholarship-subnav {
    top: 62px;
  }
  .scholarship-subnav > .container {
    width: 100%;
    padding: 0 14px;
  }
  .scholarship-main {
    padding: 28px 0 112px;
  }
  .match-sidebar {
    padding: 19px;
  }
  .content-section {
    padding-bottom: 38px;
    margin-bottom: 38px;
    scroll-margin-top: 125px;
  }
  .content-heading {
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }
  .content-heading h2 {
    font-size: 26px;
  }
  .verification-note {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .benefit-list > div {
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }
  .eligibility-row {
    grid-template-columns: 30px 1fr;
  }
  .eligibility-row > span:last-child {
    grid-column: 2;
  }
  .preparation-timeline li {
    grid-template-columns: 34px 1fr;
  }
  .preparation-timeline small {
    grid-column: 2;
    padding-top: 0;
  }
  .document-row {
    grid-template-columns: 24px 1fr;
    min-height: 66px;
  }
  .document-row small {
    grid-column: 2;
  }
  .mobile-scholar-action {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(23, 36, 55, 0.08);
  }
  .mobile-scholar-action > div {
    display: grid;
  }
  .mobile-scholar-action small {
    font-size: 9px;
    color: var(--muted);
  }
  .mobile-scholar-action strong {
    font-size: 11px;
    color: var(--navy);
  }
  .mobile-scholar-action .btn {
    min-height: 42px;
    padding: 8px 13px;
    font-size: 11px;
  }
  .footer {
    padding-bottom: 100px;
  }
}

/* Chapter comparison */
.chapter-comparison-section {
  background: #f6f7f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.chapter-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.chapter-comparison-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
}
.chapter-comparison-card:last-child {
  border-right: 0;
}
.comparison-index {
  font: 600 10px var(--sans);
  letter-spacing: 0.08em;
  color: var(--gold-ink);
}
.chapter-comparison-card h3 {
  margin: 20px 0 18px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.comparison-block {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.comparison-block > span {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.comparison-block p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.6;
}
.chapter-comparison-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 22px;
  padding: 0;
  list-style: none;
}
.chapter-comparison-card li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 11px;
}
.chapter-comparison-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.chapter-comparison-card > a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}
.all-chapters-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  margin-top: 18px;
  padding: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(23, 36, 55, 0.1);
}
.all-chapters-intro h3 {
  margin: 14px 0 8px;
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.02em;
}
.all-chapters-intro p {
  max-width: 510px;
  margin: 0 0 20px;
  color: #c8d0d9;
  line-height: 1.65;
}
.all-chapters-intro small {
  display: block;
  margin-top: 9px;
  color: #96a3b1;
  font-size: 9px;
}
.all-chapters-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.all-chapters-benefits > div {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 106px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.all-chapters-benefits strong {
  font-size: 12px;
}
.all-chapters-benefits span {
  color: #aeb9c5;
  font-size: 10px;
  line-height: 1.55;
}

/* Multi-chapter member dashboard */
.member-brand {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 18px;
}
.member-brand > span {
  margin-left: 5px;
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 600 9px var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.member-context {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}
.member-context h1 {
  margin: 5px 0 2px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.member-context p {
  margin: 0;
  color: var(--muted);
}
.active-plan-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  min-width: 270px;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.active-plan-badge .badge {
  grid-row: 1/3;
}
.active-plan-badge strong {
  font-size: 12px;
  color: var(--navy);
}
.active-plan-badge small {
  font-size: 9px;
  color: var(--muted);
}
.closest-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 30px;
  padding: 30px;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(23, 36, 55, 0.13);
}
.plan-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aeb9c5;
  font-size: 10px;
}
.closest-plan-main > h2 {
  max-width: 700px;
  margin: 13px 0 8px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.closest-plan-main > p {
  max-width: 720px;
  margin: 0;
  color: #c7d0d9;
  font-size: 13px;
  line-height: 1.65;
}
.next-check-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
}
.next-check-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold-ink);
  font-size: 10px;
  font-weight: 700;
}
.next-check-card > div {
  display: grid;
}
.next-check-card small {
  font-size: 9px;
  color: var(--muted);
}
.next-check-card strong {
  color: var(--navy);
  font-size: 13px;
}
.next-check-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 10px;
}
.next-check-card .btn {
  min-width: 118px;
}
.plan-readiness {
  display: grid;
  align-content: center;
  gap: 22px;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.plan-readiness > div:last-child {
  display: grid;
  gap: 6px;
}
.plan-readiness small {
  color: #aeb9c5;
}
.plan-readiness .progress {
  background: rgba(255, 255, 255, 0.13);
}
.plan-readiness .progress > span {
  background: var(--gold);
}
.plan-readiness a {
  margin-top: 7px;
  color: #d7dee5;
  font-size: 10px;
}
.plan-readiness a:hover {
  color: #fff;
}
.dashboard-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}
.full-checklist,
.chapter-plan-stack {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.dashboard-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}
.dashboard-section-heading h2 {
  margin: 5px 0 2px;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.15;
  color: var(--navy);
}
.dashboard-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.checklist-summary {
  flex: none;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 9px;
  font-weight: 600;
}
.dashboard-task {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
}
.dashboard-task:last-child {
  border-bottom: 0;
}
.dashboard-task:hover {
  background: #fafbfa;
}
.dashboard-task > label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.dashboard-task input {
  position: absolute;
  opacity: 0;
}
.task-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid #aeb4ba;
  border-radius: 6px;
  position: relative;
}
.dashboard-task input:focus-visible + .task-check {
  outline: 3px solid var(--orange-dark);
  outline-offset: 3px;
}
.dashboard-task input:checked + .task-check {
  background: var(--green);
  border-color: var(--green);
}
.dashboard-task input:checked + .task-check:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.dashboard-task label > span:last-child {
  display: grid;
}
.dashboard-task strong {
  font-size: 12px;
  color: var(--navy);
}
.dashboard-task small {
  font-size: 9px;
  color: var(--muted);
}
.dashboard-task > a {
  font-size: 10px;
  font-weight: 600;
  color: var(--navy);
}
.dashboard-task.done strong {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: #adb4bb;
}
.dashboard-task.done > a {
  color: var(--muted);
}
.chapter-plan-stack > .dashboard-section-heading {
  padding-bottom: 17px;
}
.chapter-plan-card {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 16px 54px 16px 18px;
  border-bottom: 1px solid var(--line);
}
.chapter-plan-card:hover {
  background: var(--cream);
}
.chapter-plan-card.current {
  background: #faf6ef;
}
.chapter-plan-card > span {
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.chapter-plan-card > strong {
  font-size: 12px;
  color: var(--navy);
}
.chapter-plan-card > small {
  font-size: 9px;
  color: var(--muted);
}
.chapter-plan-card > b {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  font: 600 11px var(--sans);
  color: var(--green);
}
.all-plan-note {
  padding: 18px;
  background: var(--navy);
  color: #fff;
}
.all-plan-note strong {
  font-family: var(--serif);
  font-size: 19px;
}
.all-plan-note p {
  margin: 6px 0 12px;
  color: #b8c3ce;
  font-size: 10px;
  line-height: 1.55;
}
.all-plan-note a {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

@media (max-width: 1020px) {
  .chapter-comparison-grid {
    grid-template-columns: 1fr;
  }
  .chapter-comparison-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .chapter-comparison-card:last-child {
    border-bottom: 0;
  }
  .all-chapters-panel {
    grid-template-columns: 1fr;
  }
  .closest-plan {
    grid-template-columns: 1fr;
  }
  .plan-readiness {
    grid-template-columns: 112px 1fr;
    align-items: center;
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .dashboard-plan-grid {
    grid-template-columns: 1fr;
  }
  .chapter-plan-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .chapter-plan-stack > .dashboard-section-heading,
  .all-plan-note {
    grid-column: 1/-1;
  }
  .chapter-plan-card {
    border-right: 1px solid var(--line);
  }
  .chapter-plan-card:last-of-type {
    border-right: 0;
  }
}
@media (max-width: 700px) {
  .all-chapters-panel {
    padding: 22px;
    gap: 26px;
  }
  .all-chapters-benefits {
    grid-template-columns: 1fr;
  }
  .member-context {
    display: grid;
  }
  .active-plan-badge {
    min-width: 0;
  }
  .member-context h1 {
    font-size: 30px;
  }
  .closest-plan {
    padding: 20px;
  }
  .closest-plan-main > h2 {
    font-size: 30px;
  }
  .next-check-card {
    grid-template-columns: 34px 1fr;
  }
  .next-check-card .btn {
    grid-column: 1/-1;
    width: 100%;
  }
  .plan-readiness {
    grid-template-columns: 82px 1fr;
  }
  .dashboard-section-heading {
    align-items: start;
    display: grid;
  }
  .dashboard-task {
    grid-template-columns: 1fr;
  }
  .dashboard-task > a {
    padding-left: 36px;
  }
  .chapter-plan-stack {
    grid-template-columns: 1fr;
  }
  .chapter-plan-card {
    border-right: 0;
  }
  .member-brand {
    font-size: 15px;
  }
  .member-brand > span {
    font-size: 7px;
    padding: 2px 4px;
  }
}
@media (max-width: 380px) {
  .member-brand {
    font-size: 14px;
  }
  .member-brand > span {
    display: none;
  }
  .all-chapters-benefits > div {
    min-height: auto;
  }
  .plan-meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .closest-plan-main > h2 {
    font-size: 27px;
  }
}

/* Goal selection and personalized member plan */
.goal-gate {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(23, 36, 55, 0.08);
}
.goal-gate-copy {
  padding: 38px 34px;
  background: var(--navy);
  color: #fff;
}
.goal-gate-copy .eyebrow {
  color: #e8c998;
}
.goal-gate-copy h1 {
  margin: 16px 0 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.goal-gate-copy > p {
  max-width: 48ch;
  margin: 0;
  color: #c7d0d9;
  font-size: 13px;
  line-height: 1.7;
}
.focus-guidance {
  display: grid;
  gap: 5px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.focus-guidance strong {
  font-size: 12px;
}
.focus-guidance span {
  color: #aeb9c5;
  font-size: 10px;
  line-height: 1.6;
}
.goal-selector {
  padding: 30px;
}
.goal-selector-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.goal-selector-head > div {
  display: grid;
  gap: 2px;
}
.goal-selector-head strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
}
.goal-selector-head span {
  color: var(--muted);
  font-size: 10px;
}
.goal-limit {
  flex: none;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green) !important;
  font-weight: 600;
}
.goal-option-grid,
.wizard-goal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.goal-option,
.wizard-goal-option {
  position: relative;
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 128px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.16s,
    box-shadow 0.16s,
    transform 0.16s;
}
.goal-option:hover,
.wizard-goal-option:hover {
  border-color: #b8c0c7;
  transform: translateY(-1px);
}
.goal-option.selected,
.wizard-goal-option.selected {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(23, 123, 104, 0.12);
}
.goal-option.selected:after,
.wizard-goal-option.selected:after {
  content: "✓";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.goal-option:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}
.goal-option-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-right: 26px;
}
.goal-option-meta span,
.wizard-goal-option > span {
  color: var(--gold-ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.goal-option > strong,
.wizard-goal-option > strong {
  padding-right: 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.25;
}
.goal-option > small,
.wizard-goal-option > small {
  color: var(--muted);
  font-size: 9px;
}
.goal-option-status {
  align-self: end;
  margin-top: 7px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 600;
}
.goal-option.selected .goal-option-status {
  color: var(--green);
}
.goal-selector-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.goal-selector-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.goal-selector-actions .btn {
  flex: none;
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}
.wizard-goal-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 20px 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 10px;
}
.wizard-goal-option {
  min-height: 112px;
}
.wizard-focus-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.personalized-dashboard {
  display: block;
}
.personalized-dashboard.hidden {
  display: none;
}
.active-plan-badge button,
.all-plan-note button {
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: 600 10px var(--sans);
  text-align: left;
  cursor: pointer;
}
.active-plan-badge button {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.all-plan-note button {
  color: #fff;
}
[data-goal-plan-list] {
  display: contents;
}

@media (max-width: 940px) {
  .goal-gate {
    grid-template-columns: 1fr;
  }
  .goal-gate-copy {
    padding: 30px;
  }
}
@media (max-width: 640px) {
  .goal-gate {
    margin-inline: -2px;
    border-radius: 15px;
  }
  .goal-gate-copy,
  .goal-selector {
    padding: 22px;
  }
  .goal-gate-copy h1 {
    font-size: 34px;
  }
  .goal-option-grid,
  .wizard-goal-grid {
    grid-template-columns: 1fr;
  }
  .goal-option,
  .wizard-goal-option {
    min-height: 112px;
  }
  .goal-selector-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .goal-selector-actions .btn {
    width: 100%;
  }
  .wizard-card {
    padding-inline: 18px;
  }
}

/* Public discovery panel */
.public-discovery-panel {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, white);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.public-discovery-panel h3 {
  margin: 0;
  color: var(--navy);
  font: 600 28px/1.15 var(--serif);
  letter-spacing: -0.02em;
}
.discovery-stack {
  display: grid;
  gap: 12px;
}
.discovery-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.discovery-row > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.discovery-row strong,
.discovery-row small {
  display: block;
}
.discovery-row small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.5;
}
.public-panel-cta {
  display: grid;
  gap: 8px;
}
.public-panel-cta small {
  color: var(--muted);
  text-align: center;
}

/* Rich public catalogs */
.catalog-hero {
  padding: 78px 0 70px;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.service-catalog-hero {
  background: var(--navy);
  color: white;
}
.course-catalog-hero {
  background: color-mix(in srgb, var(--green-soft) 72%, white);
}
.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
}
.catalog-hero h1 {
  max-width: 720px;
  margin: 14px 0 18px;
  color: var(--navy);
  font: 600 clamp(44px, 5.4vw, 68px) / 0.98 var(--serif);
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.service-catalog-hero h1,
.service-catalog-hero .eyebrow {
  color: white;
}
.catalog-hero > .container > div > p,
.catalog-hero-grid > div:first-child > p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.service-catalog-hero .catalog-hero-grid > div:first-child > p {
  color: rgba(255, 255, 255, 0.72);
}
.catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.service-catalog-hero .btn-quiet {
  color: white;
}
.catalog-feature {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.catalog-feature-label,
.catalog-kicker {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.catalog-feature h2 {
  margin: 0;
  color: var(--navy);
  font: 600 30px/1.12 var(--serif);
  letter-spacing: -0.02em;
}
.catalog-feature p,
.catalog-card p {
  margin: 0;
  color: var(--muted);
}
.catalog-feature > a,
.catalog-side-note > a,
.service-card-footer a {
  color: var(--green);
  font-weight: 700;
}
.webinar-date,
.webinar-card-date,
.recording-duration {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.webinar-date strong,
.webinar-card-date strong,
.recording-duration strong {
  color: var(--navy);
  font-size: 15px;
}
.webinar-date span,
.webinar-card-date span,
.recording-duration span {
  color: var(--muted);
  font-size: 12px;
}
.speaker-line {
  display: flex;
  gap: 10px;
  align-items: center;
}
.speaker-line strong,
.speaker-line small {
  display: block;
}
.speaker-line small {
  color: var(--muted);
}
.catalog-section {
  background: #fbfaf8;
}
.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.catalog-toolbar h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font: 600 36px/1.1 var(--serif);
  letter-spacing: -0.02em;
}
.catalog-toolbar > p {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
  text-align: right;
}
.catalog-grid,
.service-catalog-grid,
.course-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.catalog-card,
.catalog-side-note {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}
.catalog-card h3,
.catalog-side-note h3 {
  margin: 0;
  color: var(--navy);
  font: 600 23px/1.2 var(--serif);
  letter-spacing: -0.01em;
}
.catalog-card .btn,
.course-card-footer,
.service-card-footer {
  margin-top: auto;
}
.catalog-card-top,
.catalog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}
.catalog-card-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.catalog-card-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
}
.catalog-side-note {
  justify-content: center;
  background: var(--navy);
  color: white;
}
.catalog-side-note h3 {
  color: white;
}
.catalog-side-note p {
  color: rgba(255, 255, 255, 0.68);
}
.service-flow {
  display: grid;
  gap: 0;
  padding: 8px 0;
}
.service-flow > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 14px;
  padding: 18px 0;
}
.service-flow > div > span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font: 600 25px var(--serif);
}
.service-flow strong,
.service-flow small {
  display: block;
}
.service-flow small {
  color: rgba(255, 255, 255, 0.62);
}
.service-flow i {
  width: 1px;
  height: 24px;
  margin-left: 20px;
  background: rgba(255, 255, 255, 0.2);
}
.service-catalog-card {
  position: relative;
  padding-top: 54px;
}
.service-card-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: color-mix(in srgb, var(--gold) 55%, var(--line));
  font: 600 24px var(--serif);
}
.service-card-footer,
.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service-card-footer strong,
.course-card-footer strong {
  color: var(--navy);
}
.catalog-assurance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--green-soft);
}
.catalog-assurance strong,
.catalog-assurance span {
  display: block;
}
.catalog-assurance span {
  margin-top: 4px;
  color: var(--muted);
}
.course-feature-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.course-feature-facts span {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--muted);
  font-size: 11px;
}
.course-feature-facts strong {
  color: var(--green);
  font-size: 16px;
}
.course-catalog-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}
.course-catalog-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.course-catalog-card dt {
  color: var(--muted);
}
.course-catalog-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}

/* Member chapter context and goal overview */
.member-chapters-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}
.member-chapter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}
.member-chapter-chips a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}
.member-chapter-chips small {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}
.goal-overview-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in srgb, white 20%, transparent);
}
.goal-overview-toolbar > div > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.goal-overview-toolbar > small {
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
}
.goal-overview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.goal-overview-tabs button {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: transparent;
  color: white;
  font: 700 12px var(--sans);
  cursor: pointer;
}
.goal-overview-tabs button.active {
  border-color: white;
  background: white;
  color: var(--navy);
}

/* Member plan files and support */
.plan-detail-shell .scholarship-hero {
  padding-top: 52px;
}
.plan-file-vault {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.plan-file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
.plan-file-row:last-child {
  border-bottom: 0;
}
.plan-file-row strong,
.plan-file-row span {
  display: block;
}
.plan-file-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}
.plan-file-assurance {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--green-soft);
}
.plan-file-assurance strong {
  color: var(--green);
}
.plan-file-assurance span {
  color: var(--muted);
  font-size: 12px;
}
.plan-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.plan-support-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}
.plan-support-grid article > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan-support-grid h3,
.plan-support-grid p {
  margin: 0;
}
.plan-support-grid h3 {
  color: var(--navy);
  font: 600 19px/1.2 var(--serif);
}
.plan-support-grid p {
  color: var(--muted);
  font-size: 12px;
}
.plan-support-grid a {
  margin-top: auto;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .catalog-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .catalog-grid,
  .service-catalog-grid,
  .course-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plan-support-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .catalog-hero {
    padding: 52px 0 44px;
  }
  .catalog-hero h1 {
    font-size: 42px;
  }
  .catalog-feature {
    padding: 22px;
  }
  .catalog-toolbar,
  .catalog-assurance,
  .member-chapters-strip,
  .goal-overview-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .catalog-toolbar > p,
  .goal-overview-toolbar > small {
    text-align: left;
  }
  .catalog-grid,
  .service-catalog-grid,
  .course-catalog-grid {
    grid-template-columns: 1fr;
  }
  .course-feature-facts {
    grid-template-columns: 1fr;
  }
  .plan-file-row {
    align-items: stretch;
    flex-direction: column;
  }
  .plan-file-row .btn {
    width: 100%;
  }
}

/* Service-specific ordering forms */
.service-form-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}
.service-form-selector button {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 12px;
  min-width: 0;
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 150ms ease,
    background-color 150ms ease,
    transform 150ms ease;
}
.service-form-selector button:hover {
  border-color: color-mix(in srgb, var(--green) 48%, var(--line));
  transform: translateY(-1px);
}
.service-form-selector button.selected {
  border-color: var(--green);
  background: var(--green-soft);
}
.service-form-selector button > span {
  display: grid;
  grid-row: 1 / span 3;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.service-form-selector button.selected > span {
  background: var(--green);
}
.service-form-selector strong,
.service-form-selector small,
.service-form-selector b {
  grid-column: 2;
  min-width: 0;
}
.service-form-selector strong {
  color: var(--navy);
  font-size: 13px;
}
.service-form-selector small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.service-form-selector b {
  color: var(--green);
  font-size: 10px;
}
.service-specific-empty {
  display: grid;
  gap: 5px;
  padding: 24px;
  border: 1px dashed color-mix(in srgb, var(--muted) 45%, var(--line));
  border-radius: 12px;
  background: #fbfaf8;
  text-align: center;
}
.service-specific-empty strong {
  color: var(--navy);
}
.service-specific-empty span {
  color: var(--muted);
  font-size: 12px;
}
.service-specific-form {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.service-form-intro {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}
.service-form-intro h3,
.service-form-intro p {
  margin: 0;
}
.service-form-intro h3 {
  color: var(--navy);
  font: 600 24px/1.15 var(--serif);
  letter-spacing: -0.015em;
}
.service-form-intro p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.service-summary-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.order-summary > .service-summary-mark {
  margin: 14px 0 10px;
}
.service-specific-form .field-wide {
  grid-column: 1 / -1;
}
.service-specific-form textarea.input {
  min-height: 104px;
  resize: vertical;
}
.service-upload-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}
.service-upload-checklist span {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
}
.service-upload-checklist b {
  color: var(--green);
}
.summary-list [data-summary-details] {
  max-width: 38ch;
  text-align: right;
}

@media (max-width: 760px) {
  .service-form-selector,
  .service-upload-checklist {
    grid-template-columns: 1fr;
  }
  .service-specific-form .form-grid {
    grid-template-columns: 1fr;
  }
  .service-specific-form .field-wide {
    grid-column: auto;
  }
}
