:root {
  --navy: #123b4a;
  --navy-deep: #092e3d;
  --navy-soft: #355c67;
  --teal: #217d79;
  --teal-dark: #176662;
  --teal-pale: #e2f1ec;
  --mint: #f0f8f4;
  --cream: #fbf7ee;
  --paper: #fffdf9;
  --coral: #eb846d;
  --coral-pale: #fceddf;
  --gold: #e6b96d;
  --line: rgba(18, 59, 74, 0.13);
  --shadow: 0 20px 50px rgba(18, 59, 74, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: "DM Sans", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only { clip: rect(0, 0, 0, 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }

.site-header {
  align-items: center;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { align-items: center; display: inline-flex; gap: 11px; }
.brand__mark {
  align-items: center;
  background: var(--teal);
  border-radius: 10px;
  color: #fff;
  display: flex;
  font-family: "Fraunces", Georgia, serif;
  font-size: 12px;
  height: 42px;
  justify-content: center;
  letter-spacing: -0.05em;
  width: 42px;
}
.brand__text { display: flex; flex-direction: column; font-size: 14px; letter-spacing: 0.01em; line-height: 1.1; }
.brand__text small { color: var(--teal); font-size: 13px; font-weight: 700; margin-top: 4px; text-transform: uppercase; }
.main-nav { align-items: center; display: flex; gap: 23px; }
.main-nav a { color: var(--navy-soft); font-size: 13px; font-weight: 700; }
.main-nav a:hover, .text-link:hover { color: var(--teal); }
.nav-login { border-left: 1px solid var(--line); padding-left: 23px; }
.menu-button { background: transparent; border: 0; display: none; padding: 6px; }
.menu-button span:not(.sr-only) { background: var(--navy); display: block; height: 2px; margin: 5px 0; width: 25px; }

.button {
  align-items: center;
  background: var(--teal);
  border: 0;
  border-radius: 999px;
  color: #fff !important;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  padding: 15px 23px;
  transition: background 160ms ease, transform 160ms ease;
}
.button:hover { background: var(--teal-dark); transform: translateY(-2px); }
.button--small { padding: 11px 17px; }
.button--light { background: #fff; color: var(--teal-dark) !important; }
.button--light:hover { background: var(--teal-pale); }
.button-row { align-items: center; display: flex; flex-wrap: wrap; gap: 23px; }
.text-link { color: var(--teal-dark); font-size: 14px; font-weight: 700; transition: color 160ms ease; }

.eyebrow, .mini-label {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
h1, h2 { font-family: "Fraunces", Georgia, serif; letter-spacing: -0.04em; line-height: 1.06; margin: 0; }
h1 { font-size: clamp(3.6rem, 6.5vw, 6.6rem); max-width: 860px; }
h2 { font-size: clamp(2.45rem, 4.5vw, 4.5rem); }
h3 { font-family: "Fraunces", Georgia, serif; font-size: 23px; line-height: 1.15; margin: 0; }
.section { padding: 104px 7vw; }

.hero {
  background: linear-gradient(118deg, #eff8f4, #fbf7ee 65%);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  isolation: isolate;
  min-height: 690px;
  overflow: hidden;
  padding: 118px 7vw 134px;
  position: relative;
}
.hero__glow { border: 1px solid rgba(33, 125, 121, 0.14); border-radius: 50%; position: absolute; z-index: -1; }
.hero__glow--one { height: 520px; right: -130px; top: 78px; width: 520px; }
.hero__glow--two { height: 370px; right: -55px; top: 151px; width: 370px; }
.hero__dots { background-image: radial-gradient(rgba(33, 125, 121, 0.23) 1px, transparent 1px); background-size: 14px 14px; height: 115px; left: 3vw; opacity: 0.55; position: absolute; top: 40px; width: 115px; }
.hero__content { align-self: center; }
.hero__copy { color: var(--navy-soft); font-size: 18px; line-height: 1.7; margin: 25px 0 32px; max-width: 650px; }
.hero__trust { align-items: center; display: flex; gap: 15px; margin-top: 69px; }
.hero__trust p { color: var(--navy-soft); font-size: 12px; line-height: 1.65; margin: 0; }
.avatar-group { display: flex; }
.avatar-group span { align-items: center; background: var(--coral-pale); border: 2px solid var(--paper); border-radius: 50%; color: #a65343; display: flex; font-size: 9px; font-weight: 700; height: 36px; justify-content: center; margin-left: -9px; width: 36px; }
.avatar-group span:first-child { background: var(--teal-pale); color: var(--teal-dark); margin-left: 0; }
.avatar-group span:last-child { background: #f8e9c9; color: #986d25; }
.hero-card { align-self: center; background: rgba(255, 253, 249, 0.9); border: 1px solid rgba(255,255,255,0.8); border-radius: 24px; box-shadow: var(--shadow); padding: 31px; position: relative; }
.hero-card__icon { align-items: center; background: var(--coral-pale); border-radius: 15px; color: var(--coral); display: flex; font-size: 26px; height: 56px; justify-content: center; margin: 30px 0 24px; width: 56px; }
.hero-card h2 { font-size: 34px; }
.hero-card p { color: var(--navy-soft); font-size: 14px; line-height: 1.65; }
.hero-card__meta { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 9px; margin: 21px 0; padding: 14px 0; }
.hero-card__meta span { background: var(--mint); border-radius: 999px; color: var(--teal-dark); font-size: 10px; font-weight: 700; padding: 6px 8px; text-transform: uppercase; }
.card-link { color: var(--teal); font-size: 13px; font-weight: 700; }

.audience-strip { align-items: center; background: var(--navy-deep); color: #fff; display: flex; gap: 32px; padding: 20px 7vw; }
.audience-strip p { color: #9bc6c3; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; margin: 0; text-transform: uppercase; }
.audience-strip div { display: flex; flex-wrap: wrap; gap: 26px; }
.audience-strip span { font-size: 12px; font-weight: 700; }

.intro { display: grid; gap: 80px; grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr); }
.intro__copy p, .featured__content > p, .tutor__content > p, .resource__content > p, .organisations__card > p { color: var(--navy-soft); font-size: 16px; line-height: 1.75; }

.featured { background: var(--cream); display: grid; gap: 68px; grid-template-columns: 0.86fr 1.14fr; }
.featured__visual { background: var(--teal); border-radius: 24px; min-height: 450px; overflow: hidden; padding: 30px; position: relative; }
.featured__visual .eyebrow { color: #c5e8df; }
.featured__visual::before, .featured__visual::after { border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; content: ""; height: 330px; position: absolute; right: -50px; top: 80px; width: 330px; }
.featured__visual::after { height: 230px; right: 0; top: 130px; width: 230px; }
.featured__stamp { align-items: center; background: var(--paper); border-radius: 50%; color: var(--teal); display: flex; flex-direction: column; font-family: "Fraunces", Georgia, serif; font-size: 52px; height: 146px; justify-content: center; line-height: 0.8; position: absolute; right: 44px; top: 100px; width: 146px; z-index: 1; }
.featured__stamp small { font-family: "DM Sans", Arial, sans-serif; font-size: 8px; letter-spacing: 0.18em; margin-top: 13px; }
.featured__quote { background: rgba(9,46,61,0.72); bottom: 28px; color: #fff; left: 28px; padding: 18px 22px; position: absolute; width: 72%; z-index: 2; }
.featured__quote span { color: #9ad1ca; font-family: Georgia, serif; font-size: 42px; left: 15px; line-height: 1; position: absolute; top: 8px; }
.featured__quote p { font-size: 13px; font-weight: 700; line-height: 1.6; margin: 13px 0 0; }
.featured__content { align-self: center; }
.check-list { list-style: none; margin: 24px 0 28px; padding: 0; }
.check-list li { color: var(--navy); font-size: 14px; font-weight: 700; margin: 13px 0; padding-left: 27px; position: relative; }
.check-list li::before { color: var(--teal); content: "\2713"; left: 0; position: absolute; }
.price-note { color: var(--navy-soft); font-size: 13px; margin: 0; }
.payment-note { color: var(--navy-soft); font-size: 12px; line-height: 1.5; margin: 7px 0 0; }
.course-purchase {
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 26px;
  padding: 20px;
}
.course-purchase stripe-buy-button {
  display: block;
  max-width: 100%;
}

.pathways { background: var(--paper); }
.section-heading { margin: 0 auto 45px; max-width: 730px; text-align: center; }
.section-heading > p:last-child { color: var(--navy-soft); line-height: 1.7; margin: 18px auto 0; max-width: 600px; }
.pathway-grid, .feature-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); margin: 0 auto; max-width: 1240px; }
.pathway-card, .feature-card { background: var(--mint); border: 1px solid var(--line); border-radius: 18px; min-height: 280px; padding: 24px; position: relative; transition: box-shadow 180ms ease, transform 180ms ease; }
.pathway-card:hover, .feature-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.pathway-card--teal { background: var(--teal-pale); }
.pathway-card--coral { background: var(--coral-pale); }
.pathway-card--navy { background: var(--navy); color: #fff; }
.pathway-card__number, .feature-card__number { color: rgba(18,59,74,0.4); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; position: absolute; right: 21px; top: 21px; }
.pathway-card--navy .pathway-card__number { color: rgba(255,255,255,0.55); }
.pathway-card__icon, .feature-card__icon { align-items: center; background: rgba(255,255,255,0.65); border-radius: 12px; color: var(--teal-dark); display: flex; font-size: 19px; font-weight: 700; height: 45px; justify-content: center; margin-bottom: 30px; width: 45px; }
.pathway-card p, .feature-card p { color: var(--navy-soft); font-size: 13px; line-height: 1.65; }
.pathway-card a { bottom: 23px; color: var(--teal-dark); font-size: 12px; font-weight: 700; position: absolute; }
.pathway-card--navy p, .pathway-card--navy a { color: rgba(255,255,255,0.82); }

.tutor { align-items: center; background: var(--navy-deep); color: #fff; display: grid; gap: 9vw; grid-template-columns: 1fr 0.86fr; }
.tutor .eyebrow { color: #8bc9c0; }
.tutor__content > p { color: rgba(255,255,255,0.72); margin: 22px 0 30px; }
.chat-card { background: var(--paper); border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,0.18); color: var(--navy); padding: 18px; }
.chat-card__head { align-items: center; border-bottom: 1px solid var(--line); display: flex; gap: 10px; margin-bottom: 18px; padding-bottom: 14px; }
.chat-card__mark { align-items: center; background: var(--teal-pale); border-radius: 50%; color: var(--teal); display: flex; height: 36px; justify-content: center; width: 36px; }
.chat-card__head div:nth-child(2) { display: flex; flex-direction: column; font-size: 12px; }
.chat-card__head small { color: var(--navy-soft); margin-top: 3px; }
.chat-card__head > span { color: var(--teal); font-size: 10px; font-weight: 700; margin-left: auto; }
.chat-message { border-radius: 14px; font-size: 12px; line-height: 1.6; margin: 10px 0; max-width: 88%; padding: 13px; }
.chat-message--user { background: var(--teal); color: #fff; margin-left: auto; }
.chat-message--assistant { background: var(--mint); }
.chat-message ol { margin: 8px 0 0; padding-left: 18px; }

.platform { background: var(--paper); }
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.feature-card { background: #fff; min-height: 230px; }
.feature-card--accent { background: var(--coral-pale); }
.feature-card__tag { background: var(--coral); border-radius: 999px; color: #fff; font-size: 8px; font-weight: 700; letter-spacing: 0.08em; padding: 6px 8px; position: absolute; right: 16px; text-transform: uppercase; top: -11px; }

.resource { align-items: center; background: var(--cream); display: grid; gap: 9vw; grid-template-columns: 1fr 390px; }
.resource__points { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 25px; }
.resource__points span { color: var(--teal-dark); font-size: 12px; font-weight: 700; }
.signup-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 25px; }
.signup-card p { color: var(--navy-soft); font-size: 13px; line-height: 1.6; }
.signup-card label { display: block; margin-top: 14px; }
.signup-card label span { display: block; font-size: 11px; font-weight: 700; margin-bottom: 6px; }
.signup-card input { background: #fff; border: 1px solid var(--line); border-radius: 9px; color: var(--navy); padding: 12px; width: 100%; }
.signup-card .button { margin-top: 16px; width: 100%; }
.signup-card small { color: var(--navy-soft); display: block; font-size: 10px; line-height: 1.5; margin-top: 12px; text-align: center; }

.organisations { background: var(--paper); }
.organisations__card { background: var(--teal-pale); border-radius: 24px; margin: auto; max-width: 1150px; overflow: hidden; padding: 60px; position: relative; }
.organisations__card::after { border: 1px solid rgba(33,125,121,0.2); border-radius: 50%; content: ""; height: 380px; position: absolute; right: -160px; top: -120px; width: 380px; }
.organisations__card h2, .organisations__card p { max-width: 790px; }

.admin-hero {
  background: linear-gradient(118deg, var(--navy-deep), var(--teal-dark));
  color: #fff;
  padding: 110px 7vw 95px;
}
.admin-hero .eyebrow { color: #9ad1ca; }
.admin-hero p:last-child {
  color: rgba(255,255,255,0.76);
  font-size: 17px;
  line-height: 1.7;
  max-width: 650px;
}
.admin-panel { background: var(--paper); }
.admin-link-grid, .checklist-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1240px;
}
.admin-link-card, .checklist-grid article, .workflow-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.admin-link-card__label {
  color: var(--teal);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.admin-link-card p, .operations__content p {
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.65;
}
.admin-link-card .button {
  margin-top: 12px;
}
.operations {
  align-items: start;
  background: var(--cream);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.82fr 1.18fr;
}
.workflow-card ol {
  counter-reset: workflow;
  list-style: none;
  margin: 0;
  padding: 0;
}
.workflow-card li {
  border-bottom: 1px solid var(--line);
  counter-increment: workflow;
  display: grid;
  gap: 8px;
  grid-template-columns: 42px 1fr;
  padding: 18px 0;
}
.workflow-card li:first-child { padding-top: 0; }
.workflow-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.workflow-card li::before {
  align-items: center;
  background: var(--teal-pale);
  border-radius: 50%;
  color: var(--teal-dark);
  content: counter(workflow);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  width: 32px;
}
.workflow-card strong {
  display: block;
  font-size: 16px;
  grid-column: 2;
}
.workflow-card span {
  color: var(--navy-soft);
  display: block;
  font-size: 13px;
  grid-column: 2;
  line-height: 1.6;
}
.checklist-grid {
  grid-template-columns: repeat(3, 1fr);
}
.checklist-grid .check-list {
  margin-bottom: 0;
}
.checklist-grid .check-list li {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}
.feature-card__link {
  bottom: 21px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  position: absolute;
}
.dashboard-hero {
  align-items: end;
  background: linear-gradient(118deg, var(--teal-pale), var(--cream));
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 95px 7vw 70px;
}
.dashboard-hero--admin {
  background: linear-gradient(118deg, var(--navy-deep), var(--teal-dark));
  color: #fff;
}
.dashboard-hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
}
.dashboard-hero p:last-child {
  color: var(--navy-soft);
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
}
.dashboard-hero--admin p:last-child {
  color: rgba(255,255,255,0.76);
}
.dashboard-profile {
  align-items: center;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 13px;
  min-width: 280px;
  padding: 16px;
}
.dashboard-hero--admin .dashboard-profile {
  background: rgba(255,255,255,0.12);
}
.dashboard-avatar {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  width: 46px;
}
.dashboard-profile small {
  color: var(--navy-soft);
  display: block;
  font-size: 12px;
  margin-top: 4px;
}
.dashboard-hero--admin .dashboard-profile small {
  color: rgba(255,255,255,0.7);
}
.dashboard-section {
  background: var(--paper);
}
.dashboard-stat-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1240px;
}
.dashboard-stat, .dashboard-card, .resource-dashboard-grid article, .admin-action-grid article, .certificate-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.dashboard-stat span {
  color: var(--teal);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dashboard-stat strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 36px;
  margin-top: 13px;
}
.dashboard-stat p, .dashboard-card p, .resource-dashboard-grid p, .admin-action-grid p, .certificate-panel p {
  color: var(--navy-soft);
  font-size: 13px;
  line-height: 1.65;
}
.dashboard-main {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 360px;
  margin: 0 auto;
  max-width: 1240px;
}
.dashboard-card--large h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
}
.progress-track {
  background: var(--teal-pale);
  border-radius: 999px;
  height: 12px;
  margin: 24px 0;
  overflow: hidden;
}
.progress-track span {
  background: var(--teal);
  border-radius: inherit;
  display: block;
  height: 100%;
}
.module-list {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 22px;
  overflow: hidden;
}
.module-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 16px;
}
.module-row:last-child { border-bottom: 0; }
.module-row span {
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 700;
}
.module-row.is-complete span { color: var(--teal); }
.module-row.is-current {
  background: var(--coral-pale);
}
.assistant-prompt {
  background: var(--mint);
  border-radius: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  margin: 18px 0;
  padding: 16px;
}
.resource-dashboard-grid, .admin-action-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1240px;
}
.resource-dashboard-grid .button {
  margin-top: 8px;
}
.certificate-panel {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1100px;
}
.certificate-preview {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 16px;
  color: var(--navy);
  min-width: 280px;
  padding: 30px;
  text-align: center;
}
.certificate-preview span, .certificate-preview small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.certificate-preview strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  line-height: 1.1;
  margin: 24px 0;
}
.admin-table {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.admin-table__row {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 1.1fr 1.1fr 0.7fr 0.8fr;
  padding: 13px 15px;
}
.admin-table__row:last-child { border-bottom: 0; }
.admin-table__head {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-table__row:not(.admin-table__head) span {
  color: var(--navy-soft);
  font-size: 13px;
}
.admin-action-grid {
  grid-template-columns: repeat(3, 1fr);
}

footer { background: var(--navy-deep); color: #fff; padding: 45px 7vw 20px; }
.brand--footer .brand__mark { background: #fff; color: var(--teal-dark); }
.brand--footer .brand__text small { color: #8bc9c0; }
.footer__main > p { color: rgba(255,255,255,0.68); font-size: 13px; line-height: 1.6; max-width: 450px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 25px; }
.footer__links a { color: rgba(255,255,255,0.78); font-size: 12px; font-weight: 700; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.14); display: flex; gap: 20px; justify-content: space-between; margin-top: 30px; padding-top: 16px; }
.footer__bottom p { color: rgba(255,255,255,0.5); font-size: 10px; line-height: 1.5; margin: 0; }

@media (max-width: 1050px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 12px; }
  .hero { grid-template-columns: 1fr; padding-top: 95px; }
  .hero-card { display: none; }
  .pathway-grid, .feature-grid, .admin-link-grid, .dashboard-stat-grid, .resource-dashboard-grid, .admin-action-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-main { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .menu-button { display: block; }
  .main-nav { background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; flex-direction: column; left: 0; padding: 20px; position: absolute; top: 78px; width: 100%; }
  .main-nav.is-open { display: flex; }
  .nav-login { border-left: 0; padding-left: 0; }
  .hero { min-height: auto; padding: 85px 6vw 95px; }
  h1 { font-size: 4rem; }
  .section { padding: 76px 6vw; }
  .intro, .featured, .tutor, .resource, .operations { gap: 38px; grid-template-columns: 1fr; }
  .featured__visual { min-height: 350px; }
  .resource { padding-top: 70px; }
  .signup-card { max-width: 450px; }
  .organisations__card { padding: 36px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .dashboard-hero, .certificate-panel { align-items: flex-start; flex-direction: column; }
  .dashboard-profile, .certificate-preview { min-width: 0; width: 100%; }
  .admin-table__row {
    grid-template-columns: 1fr;
  }
  .footer__bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.55rem; }
  .hero__trust { margin-top: 48px; }
  .audience-strip { align-items: flex-start; flex-direction: column; gap: 12px; }
  .audience-strip div { gap: 12px 18px; }
  .pathway-grid, .feature-grid, .admin-link-grid, .dashboard-stat-grid, .resource-dashboard-grid, .admin-action-grid { grid-template-columns: 1fr; }
  .pathway-card { min-height: 235px; }
  .feature-card { min-height: 205px; }
  .featured__stamp { height: 122px; right: 25px; width: 122px; }
  .organisations__card { padding: 29px; }
}
