:root {
  --pd-ink: #15142f;
  --pd-ink-soft: #373653;
  --pd-blue: #4760ff;
  --pd-blue-deep: #3149e8;
  --pd-mint: #dff8ea;
  --pd-lilac: #eee8ff;
  --pd-butter: #fff0b8;
  --pd-coral: #ffd9d5;
  --pd-sky: #ddecff;
  --pd-line: rgba(21, 20, 47, 0.13);
  --pd-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --pd-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pd-shell: 1440px;
  --pd-accent: var(--pd-blue);
  --pd-soft: var(--pd-sky);
}

.pd-page--mint {
  --pd-accent: #18a66d;
  --pd-soft: var(--pd-mint);
}

.pd-page--lilac {
  --pd-accent: #7253ea;
  --pd-soft: var(--pd-lilac);
}

.pd-page--butter {
  --pd-accent: #e68139;
  --pd-soft: var(--pd-butter);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body.pd-page {
  margin: 0;
  overflow-x: clip;
  color: var(--pd-ink);
  background: #fff;
  font-family: var(--pd-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.pd-page a {
  color: inherit;
  text-decoration: none;
}

.pd-page img,
.pd-page svg {
  display: block;
  max-width: 100%;
}

.pd-page button {
  color: inherit;
  font: inherit;
}

.pd-shell {
  width: min(calc(100% - 64px), var(--pd-shell));
  margin-inline: auto;
}

.pd-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff !important;
  background: var(--pd-ink);
  transform: translateY(-160%);
}

.pd-skip:focus {
  transform: translateY(0);
}

.pd-fallback-nav {
  position: relative;
  z-index: 20;
  height: 86px;
  border-bottom: 1px solid var(--pd-line);
  background: rgba(255, 255, 255, 0.96);
}

.pd-fallback-nav__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pd-fallback-nav__inner > a {
  width: 190px;
}

.pd-fallback-nav__inner > a img {
  display: block;
  width: 100%;
  height: auto;
}

.pd-fallback-nav__inner nav,
.pd-fallback-nav__inner > div {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 700;
}

.pd-button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.pd-button svg,
.pd-controls a svg,
.pd-connected__intro a svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 170ms ease;
}

.pd-button:hover,
.pd-button:focus-visible {
  transform: translateY(-2px);
}

.pd-button:hover svg,
.pd-button:focus-visible svg,
.pd-controls a:hover svg,
.pd-connected__intro a:hover svg {
  transform: translateX(4px);
}

.pd-button--ink {
  color: #fff !important;
  background: var(--pd-ink);
  box-shadow: 0 15px 36px rgba(21, 20, 47, 0.18);
}

.pd-button--ghost {
  border-color: var(--pd-line);
  background: rgba(255, 255, 255, 0.8);
}

.pd-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--pd-line);
  border-radius: 50%;
  color: var(--pd-accent);
  background: #fff;
}

.pd-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.pd-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--pd-line);
}

.pd-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  pointer-events: none;
}

.pd-hero__shape--one {
  top: -210px;
  right: -120px;
  width: 660px;
  height: 660px;
  border: 1px solid var(--pd-line);
}

.pd-hero__shape--two {
  right: 25%;
  bottom: -270px;
  width: 480px;
  height: 480px;
  border: 1px solid color-mix(in srgb, var(--pd-accent) 18%, transparent);
}

.pd-hero__grid {
  position: relative;
  display: grid;
  min-height: 840px;
  grid-template-columns: minmax(430px, 0.88fr) minmax(620px, 1.12fr);
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
  padding-block: 148px 92px;
}

.pd-hero__copy {
  position: relative;
  z-index: 2;
}

.pd-hero__copy h1 {
  max-width: 730px;
  margin: 0;
  font-family: var(--pd-display);
  font-size: clamp(70px, 6.3vw, 98px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.81;
  text-transform: uppercase;
}

.pd-page--butter .pd-hero__copy h1 {
  font-size: clamp(67px, 5.9vw, 92px);
}

.pd-hero__copy > p {
  max-width: 670px;
  margin: 32px 0 0;
  color: #5a5876;
  font-size: 18px;
  line-height: 1.62;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.pd-hero__trust {
  display: flex;
  max-width: 570px;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
}

.pd-hero__trust .pd-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 0;
  color: var(--pd-accent);
  background: var(--pd-soft);
}

.pd-hero__trust .pd-icon svg {
  width: 19px;
}

.pd-hero__trust p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.pd-hero__trust small {
  display: block;
  color: #77758d;
  font-size: 10px;
  font-weight: 500;
}

.pd-hero__visual {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pd-hero__layer {
  position: absolute;
  inset: 1% -3% -3% 4%;
  border: 1px solid rgba(21, 20, 47, 0.12);
  border-radius: 32px;
  background: var(--pd-soft);
  transform: rotate(2.4deg);
}

.pd-hero__layer--b {
  inset: -2% 4% 4% -4%;
  background: var(--pd-coral);
  transform: rotate(-3deg);
}

.pd-page--mint .pd-hero__layer--b {
  background: var(--pd-butter);
}

.pd-page--lilac .pd-hero__layer--b {
  background: var(--pd-mint);
}

.pd-page--butter .pd-hero__layer--b {
  background: var(--pd-coral);
}

.pd-screen-label {
  position: absolute;
  z-index: 4;
  top: -28px;
  right: 4px;
  color: rgba(21, 20, 47, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pd-hero__proof {
  position: absolute;
  z-index: 5;
  right: 26px;
  bottom: -30px;
  display: flex;
  max-width: 330px;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--pd-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(35, 35, 72, 0.13);
  font-size: 11px;
  font-weight: 700;
}

.pd-hero__proof i {
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--pd-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--pd-accent) 15%, transparent);
}

.pd-ui {
  position: relative;
  z-index: 3;
  display: grid;
  overflow: hidden;
  width: 100%;
  min-height: 475px;
  grid-template-columns: 68px 1fr;
  border: 1px solid rgba(21, 20, 47, 0.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 72px rgba(38, 39, 84, 0.18);
}

.pd-ui__sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding-top: 19px;
  color: rgba(255, 255, 255, 0.58);
  background: var(--pd-ink);
}

.pd-ui__sidebar b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--pd-accent);
  font-size: 13px;
}

.pd-ui__sidebar i {
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.pd-ui__main {
  padding: 20px;
}

.pd-ui__top,
.pd-mini__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pd-line);
  color: #78768b;
  font-size: 10px;
}

.pd-ui__top strong,
.pd-mini__bar span {
  color: #8e8ca0;
  font-size: 9px;
  font-weight: 600;
}

.pd-student {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 0;
}

.pd-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pd-accent);
  font-size: 11px;
  font-weight: 700;
}

.pd-student strong {
  display: block;
  font-size: 15px;
}

.pd-student small {
  display: block;
  color: #89879b;
  font-size: 9px;
}

.pd-student em {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 20px;
  color: #178659;
  background: #dcf8ea;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.pd-kpis {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--pd-line);
  border-radius: 12px;
}

.pd-kpis span {
  min-width: 0;
  padding: 14px 12px;
  border-right: 1px solid var(--pd-line);
}

.pd-kpis span:last-child {
  border-right: 0;
}

.pd-kpis small,
.pd-kpis strong {
  display: block;
}

.pd-kpis small {
  overflow: hidden;
  color: #9694a5;
  font-size: 7px;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.pd-kpis strong {
  margin-top: 5px;
  font-size: 10px;
}

.pd-kpis .is-alert {
  background: var(--pd-coral);
}

.pd-ui__tabs {
  display: flex;
  gap: 23px;
  margin-top: 22px;
  border-bottom: 1px solid var(--pd-line);
  color: #9c9aac;
  font-size: 8px;
}

.pd-ui__tabs > * {
  padding-bottom: 10px;
}

.pd-ui__tabs b {
  border-bottom: 2px solid var(--pd-accent);
  color: var(--pd-accent);
}

.pd-progress {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--pd-line);
  border-radius: 12px;
}

.pd-progress > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
}

.pd-progress i {
  display: block;
  overflow: hidden;
  height: 7px;
  margin: 16px 0 12px;
  border-radius: 10px;
  background: #efeff5;
}

.pd-progress i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--pd-accent);
}

.pd-progress small {
  color: #9290a2;
  font-size: 8px;
}

.pd-finance-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  margin-top: 16px;
}

.pd-finance-grid > div,
.pd-exam-grid > div,
.pd-course-grid > div {
  padding: 16px;
  border: 1px solid var(--pd-line);
  border-radius: 12px;
}

.pd-finance-grid > div > span,
.pd-exam-grid > div > span,
.pd-course-grid > div > span {
  display: block;
  margin-bottom: 13px;
  color: #8c899d;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pd-bars {
  display: flex;
  height: 170px;
  align-items: flex-end;
  justify-content: space-around;
  gap: 9px;
  padding: 16px 8px 0;
  border-bottom: 1px solid var(--pd-line);
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 40px, rgba(21, 20, 47, 0.05) 41px);
}

.pd-bars i {
  width: 11%;
  border-radius: 5px 5px 0 0;
  background: var(--pd-accent);
}

.pd-finance-grid p,
.pd-exam-grid p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1px 10px;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--pd-line);
  font-size: 8px;
}

.pd-finance-grid p small,
.pd-finance-grid p em,
.pd-exam-grid p em {
  color: #9996a8;
  font-size: 7px;
  font-style: normal;
}

.pd-finance-grid p em,
.pd-exam-grid p em {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  padding: 4px 6px;
  border-radius: 12px;
  color: var(--pd-accent);
  background: var(--pd-soft);
}

.pd-course-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-block: 20px 15px;
  padding: 18px;
  border-radius: 12px;
  background: var(--pd-soft);
}

.pd-course-head small,
.pd-course-head strong,
.pd-course-head p {
  display: block;
  margin: 0;
}

.pd-course-head small {
  color: var(--pd-accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pd-course-head strong {
  margin-block: 4px;
  font-size: 14px;
}

.pd-course-head p {
  color: #77748c;
  font-size: 8px;
}

.pd-course-head em,
.pd-status {
  padding: 5px 8px;
  border-radius: 20px;
  color: #178659;
  background: #fff;
  font-size: 8px;
  font-style: normal;
}

.pd-course-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
}

.pd-course-grid p {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid var(--pd-line);
  font-size: 8px;
}

.pd-course-grid p > i {
  width: 13px;
  height: 13px;
  border: 1px solid #c9c7d4;
  border-radius: 50%;
}

.pd-course-grid p svg {
  width: 14px;
  fill: none;
  stroke: #16885a;
  stroke-width: 1.7;
}

.pd-course-grid p small {
  color: #9996aa;
}

.pd-course-grid > div:last-child > p {
  display: flex;
  justify-content: center;
}

.pd-ring {
  display: grid;
  width: 100px;
  height: 100px;
  margin: 12px auto;
  place-content: center;
  border: 11px solid var(--pd-soft);
  border-top-color: var(--pd-accent);
  border-right-color: var(--pd-accent);
  border-radius: 50%;
  text-align: center;
  transform: rotate(10deg);
}

.pd-ring > * {
  transform: rotate(-10deg);
}

.pd-ring b {
  font-size: 17px;
}

.pd-ring small {
  color: #9996aa;
  font-size: 7px;
}

.pd-exam-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.72fr;
  gap: 10px;
  margin-top: 16px;
}

.pd-exam-grid > div {
  min-height: 150px;
}

.pd-exam-sessions p {
  grid-template-columns: 37px 1fr auto;
}

.pd-exam-sessions p em {
  grid-row: auto;
  grid-column: auto;
}

.pd-big {
  display: block;
  margin-block: 20px 6px;
  font-size: 30px;
}

.pd-exam-grid > div > small {
  color: #9996aa;
  font-size: 7px;
}

.pd-ring-wrap .pd-ring {
  width: 86px;
  height: 86px;
  border-width: 9px;
}

/* High-fidelity product workspaces used in the primary product story. */
.pd-ui--deep {
  min-height: 475px;
  grid-template-columns: 48px minmax(0, 1fr);
  border-radius: 22px;
  color: #22213c;
  background: #f7f8fc;
}

.pd-deep-rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 14px 0 11px;
  color: rgba(255, 255, 255, 0.55);
  background: #191832;
}

.pd-deep-rail b,
.pd-deep-rail em {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--pd-accent);
  font-size: 10px;
  font-style: normal;
}

.pd-deep-rail span,
.pd-deep-rail i {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 5px;
}

.pd-deep-rail span.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08);
}

.pd-deep-rail i {
  margin-top: auto;
  border-radius: 50%;
}

.pd-deep-rail em {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  font-size: 7px;
}

.pd-deep-app {
  min-width: 0;
  padding: 11px 13px 13px;
}

.pd-deep-top,
.pd-deep-title,
.pd-deep-toolbar,
.pd-deep-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pd-deep-top {
  min-height: 32px;
  padding-bottom: 9px;
  border-bottom: 1px solid #e5e6ee;
}

.pd-deep-top strong,
.pd-deep-top small,
.pd-deep-title strong,
.pd-deep-title small {
  display: block;
}

.pd-deep-top strong {
  font-size: 8px;
}

.pd-deep-top small {
  color: #8a899a;
  font-size: 5.5px;
}

.pd-deep-top nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-deep-top nav span {
  width: 13px;
  height: 13px;
  border: 1px solid #d8d9e3;
  border-radius: 50%;
  background: #fff;
}

.pd-deep-top nav em {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pd-accent);
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.pd-deep-title {
  padding: 11px 1px 7px;
}

.pd-deep-title strong,
.pd-deep-toolbar > strong {
  font-size: 12px;
}

.pd-deep-title small {
  margin-top: 1px;
  color: #858397;
  font-size: 6px;
}

.pd-deep-title > em {
  padding: 5px 8px;
  border: 1px solid #dcdee9;
  border-radius: 7px;
  background: #fff;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
}

.pd-deep-tabs,
.pd-deep-toolbar nav {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #89879a;
  font-size: 6.5px;
}

.pd-deep-tabs {
  height: 25px;
  padding-inline: 2px;
  border-bottom: 1px solid #e4e5ed;
}

.pd-deep-tabs b,
.pd-deep-toolbar nav b {
  position: relative;
  color: var(--pd-accent);
}

.pd-deep-tabs b::after,
.pd-deep-toolbar nav b::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pd-accent);
  content: "";
}

.pd-deep-pipeline,
.pd-deep-metrics {
  display: grid;
  gap: 7px;
  margin-block: 8px;
}

.pd-deep-pipeline {
  grid-template-columns: repeat(5, 1fr);
}

.pd-deep-pipeline > span,
.pd-deep-metrics article {
  position: relative;
  padding: 8px 9px;
  overflow: hidden;
  border: 1px solid #e2e3eb;
  border-radius: 9px;
  background: #fff;
}

.pd-deep-pipeline > span::after {
  position: absolute;
  right: -5px;
  bottom: -7px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--pd-accent) 10%, transparent);
  content: "";
}

.pd-deep-pipeline small,
.pd-deep-pipeline strong {
  display: block;
}

.pd-deep-pipeline small {
  color: #8c8a9b;
  font-size: 5.5px;
}

.pd-deep-pipeline strong {
  margin-top: 3px;
  font-size: 12px;
}

.pd-deep-grid {
  display: grid;
  gap: 8px;
}

.pd-deep-grid--student {
  grid-template-columns: minmax(0, 1.55fr) minmax(150px, 0.7fr);
}

.pd-deep-panel {
  overflow: hidden;
  border: 1px solid #e0e2ea;
  border-radius: 10px;
  background: #fff;
}

.pd-deep-panel > header {
  min-height: 34px;
  padding: 8px 10px;
  border-bottom: 1px solid #e6e7ee;
  font-size: 7px;
}

.pd-deep-panel > header span {
  color: var(--pd-accent);
  font-size: 6px;
  font-weight: 700;
}

.pd-deep-table__head {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.62fr 0.9fr;
  gap: 7px;
  padding: 7px 9px;
  color: #9593a3;
  background: #fafafe;
  font-size: 5.5px;
}

.pd-deep-table > p {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.62fr 0.9fr;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  margin: 0;
  padding: 6px 9px;
  border-top: 1px solid #ececf2;
  font-size: 6px;
}

.pd-deep-table > p.is-selected {
  background: color-mix(in srgb, var(--pd-soft) 55%, #fff);
}

.pd-deep-table > p > b {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  line-height: 1.25;
}

.pd-deep-table > p > b > i,
.pd-deep-actions > p > i {
  display: grid;
  width: 22px;
  height: 22px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pd-accent);
  font-size: 5px;
  font-style: normal;
}

.pd-deep-table > p small,
.pd-deep-actions > p small,
.pd-deep-courses p small {
  display: block;
  color: #9694a4;
  font-size: 5px;
  font-weight: 500;
}

.pd-deep-table > p > em,
.pd-deep-schedule > p > em {
  justify-self: start;
  padding: 4px 6px;
  border-radius: 12px;
  color: #147753;
  background: #def7e9;
  font-size: 5px;
  font-style: normal;
  font-weight: 700;
}

.pd-deep-table .is-blue,
.pd-deep-schedule .is-blue {
  color: #3753d8;
  background: #e7ebff;
}

.pd-deep-table .is-coral,
.pd-deep-schedule .is-review,
.pd-deep-readiness .is-coral {
  color: #b95043;
  background: #ffebe8;
}

.pd-deep-drawer {
  padding: 11px;
}

.pd-deep-person {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e9ef;
}

.pd-deep-person > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pd-accent);
  font-size: 6px;
  font-style: normal;
}

.pd-deep-person strong,
.pd-deep-person small {
  display: block;
  font-size: 7px;
}

.pd-deep-person small {
  color: #8d8b9b;
  font-size: 5px;
}

.pd-deep-drawer dl {
  margin: 5px 0 9px;
}

.pd-deep-drawer dl > div {
  padding: 7px 0;
  border-bottom: 1px solid #ececf2;
}

.pd-deep-drawer dt,
.pd-deep-drawer dd {
  margin: 0;
  font-size: 5.5px;
}

.pd-deep-drawer dt {
  color: #9795a5;
}

.pd-deep-drawer dd {
  margin-top: 2px;
  font-weight: 700;
}

.pd-deep-drawer .is-good {
  color: #19855d;
}

.pd-deep-drawer button,
.pd-deep-readiness button {
  width: 100%;
  min-height: 28px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--pd-accent);
  font-size: 6px;
  font-weight: 800;
}

.pd-deep-metrics {
  grid-template-columns: repeat(3, 1fr);
}

.pd-deep-metrics article {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 1px 7px;
}

.pd-deep-metrics article > span {
  display: grid;
  width: 23px;
  height: 23px;
  grid-row: 1 / 4;
  place-items: center;
  border-radius: 7px;
  color: var(--pd-accent);
  background: var(--pd-soft);
  font-size: 7px;
  font-weight: 800;
}

.pd-deep-metrics small {
  color: #8c8a9b;
  font-size: 5px;
}

.pd-deep-metrics strong {
  font-size: 10px;
}

.pd-deep-metrics em {
  color: #16845b;
  font-size: 5px;
  font-style: normal;
}

.pd-deep-metrics .is-review {
  color: #bc5b43;
}

.pd-deep-metrics .is-blue {
  color: #3855db;
}

.pd-deep-programmes {
  padding-bottom: 4px;
}

.pd-deep-programmes > p {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 5px 10px;
  font-size: 5.5px;
}

.pd-deep-programmes > p > i,
.pd-deep-ageing > p > i {
  overflow: hidden;
  height: 6px;
  border-radius: 8px;
  background: #eeeff4;
}

.pd-deep-programmes > p > i span,
.pd-deep-ageing > p > i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--pd-accent);
}

.pd-deep-programmes > p > strong {
  text-align: right;
}

.pd-deep-grid--finance {
  grid-template-columns: 0.85fr 1.15fr;
  margin-top: 8px;
}

.pd-deep-ageing,
.pd-deep-actions {
  padding-bottom: 6px;
}

.pd-deep-ageing > p {
  display: grid;
  grid-template-columns: 56px 1fr 22px;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 5px 9px;
  font-size: 5.5px;
}

.pd-deep-actions > p {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 6px 9px;
  border-bottom: 1px solid #ececf2;
  font-size: 6px;
}

.pd-deep-actions > p > em {
  color: var(--pd-accent);
  font-size: 5px;
  font-style: normal;
  font-weight: 700;
}

.pd-deep-toolbar {
  min-height: 46px;
  padding-inline: 3px;
  border-bottom: 1px solid #e2e3eb;
}

.pd-deep-grid--course,
.pd-deep-grid--exam {
  margin-top: 9px;
}

.pd-deep-grid--course {
  grid-template-columns: 0.62fr 1.28fr 0.72fr;
}

.pd-deep-outline ol,
.pd-deep-lesson ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-deep-outline li {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 6px;
  padding: 9px;
  border-bottom: 1px solid #ececf2;
  font-size: 6px;
}

.pd-deep-outline li.is-active {
  color: var(--pd-accent);
  background: var(--pd-soft);
}

.pd-deep-outline li > i,
.pd-deep-lesson li > i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 6px;
  color: var(--pd-accent);
  background: #eff1ff;
  font-size: 5px;
  font-style: normal;
}

.pd-deep-outline li small,
.pd-deep-lesson li small {
  display: block;
  color: #9492a2;
  font-size: 5px;
}

.pd-deep-lesson {
  padding: 11px;
}

.pd-deep-lesson > header {
  min-height: 0;
  padding: 0 0 10px;
}

.pd-deep-lesson > header strong,
.pd-deep-lesson > header small {
  display: block;
}

.pd-deep-lesson > header strong {
  font-size: 9px;
}

.pd-deep-lesson > header small {
  color: #858395;
  font-size: 5.5px;
}

.pd-deep-lesson h4 {
  margin: 10px 0 5px;
  font-size: 7px;
}

.pd-deep-lesson li {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  border-bottom: 1px solid #ececf2;
  font-size: 6px;
}

.pd-deep-lesson li > em {
  color: #8f8da0;
  font-size: 5px;
  font-style: normal;
}

.pd-deep-assist {
  margin-top: 8px;
  padding: 8px 9px;
  border: 1px dashed color-mix(in srgb, var(--pd-accent) 45%, #fff);
  border-radius: 8px;
  color: var(--pd-accent);
  background: color-mix(in srgb, var(--pd-soft) 50%, #fff);
}

.pd-deep-assist small,
.pd-deep-assist strong {
  display: block;
  font-size: 5px;
}

.pd-deep-assist strong {
  margin-top: 2px;
  font-size: 6px;
}

.pd-deep-side {
  display: grid;
  align-content: start;
  gap: 8px;
}

.pd-deep-progress-card,
.pd-deep-resources {
  padding: 11px;
}

.pd-deep-progress-card > strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.pd-deep-progress-card > strong small {
  color: #9492a4;
  font-size: 9px;
}

.pd-deep-progress-card > span {
  color: #858395;
  font-size: 5.5px;
}

.pd-deep-progress-card > i {
  display: block;
  overflow: hidden;
  height: 6px;
  margin-top: 9px;
  border-radius: 10px;
  background: #ececf2;
}

.pd-deep-progress-card > i b {
  display: block;
  width: 75%;
  height: 100%;
  background: var(--pd-accent);
}

.pd-deep-resources > header {
  min-height: 0;
  padding: 0 0 5px;
}

.pd-deep-resources > p {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 7px;
  margin: 0;
  padding: 7px 0;
  border-top: 1px solid #ececf2;
  font-size: 5.5px;
}

.pd-deep-resources > p > i {
  display: grid;
  height: 23px;
  place-items: center;
  border-radius: 6px;
  color: var(--pd-accent);
  background: var(--pd-soft);
  font-size: 4.5px;
  font-style: normal;
  font-weight: 800;
}

.pd-deep-resources small {
  display: block;
  color: #9896a6;
  font-size: 5px;
}

.pd-deep-grid--exam {
  grid-template-columns: 0.48fr 1.52fr;
}

.pd-deep-courses > p {
  margin: 0;
  padding: 9px;
  border-bottom: 1px solid #ececf2;
  font-size: 6px;
}

.pd-deep-courses > p.is-active {
  color: var(--pd-accent);
  background: var(--pd-soft);
  box-shadow: inset 2px 0 0 var(--pd-accent);
}

.pd-deep-exam-main {
  display: grid;
  align-content: start;
  gap: 8px;
}

.pd-deep-schedule .pd-deep-table__head,
.pd-deep-schedule > p {
  grid-template-columns: 1.35fr 0.95fr 0.55fr 0.5fr 0.72fr;
}

.pd-deep-schedule > p {
  display: grid;
  align-items: center;
  gap: 7px;
  min-height: 43px;
  margin: 0;
  padding: 6px 9px;
  border-top: 1px solid #ececf2;
  font-size: 5.5px;
}

.pd-deep-schedule > p small {
  display: block;
  color: #9795a5;
  font-size: 5px;
}

.pd-deep-readiness > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
}

.pd-deep-readiness > div > span small,
.pd-deep-readiness > div > span strong {
  display: block;
  font-size: 5px;
}

.pd-deep-readiness > div > span strong {
  margin-top: 2px;
  font-size: 8px;
}

.pd-lifecycle {
  border-bottom: 1px solid var(--pd-line);
  background: var(--pd-soft);
}

.pd-lifecycle__grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: stretch;
}

.pd-section-kicker {
  padding-block: 54px;
}

.pd-section-kicker > span,
.pd-section-head span,
.pd-controls__intro > span,
.pd-connected__intro > span,
.pd-close span {
  display: block;
  margin-bottom: 14px;
  color: var(--pd-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pd-section-kicker h2 {
  margin: 0;
  font-family: var(--pd-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.pd-lifecycle ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.pd-lifecycle li {
  position: relative;
  min-width: 0;
  padding: 44px 18px 36px;
  border-left: 1px solid rgba(21, 20, 47, 0.11);
}

.pd-lifecycle li::after {
  position: absolute;
  top: 50%;
  right: -5px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid var(--pd-soft);
  border-radius: 50%;
  background: var(--pd-accent);
  content: "";
}

.pd-lifecycle li:last-child::after {
  display: none;
}

.pd-lifecycle li > span {
  display: block;
  color: var(--pd-accent);
  font-family: var(--pd-display);
  font-size: 16px;
  font-weight: 800;
}

.pd-lifecycle li .pd-icon {
  width: 36px;
  height: 36px;
  margin-block: 20px 17px;
  border: 0;
}

.pd-lifecycle li .pd-icon svg {
  width: 18px;
}

.pd-lifecycle li strong,
.pd-lifecycle li small {
  display: block;
}

.pd-lifecycle li strong {
  font-family: var(--pd-display);
  font-size: 25px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.pd-lifecycle li small {
  margin-top: 7px;
  color: #706e83;
  font-size: 9px;
  line-height: 1.4;
}

.pd-workflow {
  padding-block: 126px;
}

.pd-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 54px;
}

.pd-section-head h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--pd-display);
  font-size: clamp(58px, 6.5vw, 92px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.pd-section-head > p {
  max-width: 420px;
  margin: 0;
  color: #66637c;
  font-size: 15px;
}

.pd-workflow__frame {
  display: grid;
  overflow: hidden;
  min-height: 720px;
  grid-template-columns: 270px minmax(0, 1fr);
  border: 1px solid var(--pd-line);
  border-radius: 28px;
  background: var(--pd-soft);
}

.pd-stage-tabs {
  display: flex;
  border-right: 1px solid var(--pd-line);
  background: #fff;
  flex-direction: column;
}

.pd-stage-tabs button {
  position: relative;
  display: grid;
  min-height: 112px;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid var(--pd-line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 150ms ease, background 150ms ease;
}

.pd-stage-tabs button > span {
  color: var(--pd-accent);
  font-family: var(--pd-display);
  font-size: 28px;
  font-weight: 800;
}

.pd-stage-tabs button strong {
  font-size: 13px;
}

.pd-stage-tabs button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.pd-stage-tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--pd-accent);
}

.pd-stage-tabs button[aria-selected="true"] > span {
  color: #fff;
}

.pd-stage-panels {
  min-width: 0;
}

.pd-stage-panels article {
  display: grid;
  min-height: 100%;
  grid-template-columns: minmax(300px, 0.74fr) minmax(480px, 1.26fr);
  gap: 46px;
  align-items: center;
  padding: 66px 56px;
}

.pd-stage-panels article[hidden] {
  display: none;
}

.pd-stage-panel__copy > span {
  color: var(--pd-accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pd-stage-panel__copy h3 {
  max-width: 530px;
  margin: 18px 0 20px;
  font-family: var(--pd-display);
  font-size: clamp(48px, 4.7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.pd-stage-panel__copy > p {
  max-width: 530px;
  margin: 0;
  color: #625f78;
  font-size: 14px;
  line-height: 1.65;
}

.pd-stage-panel__copy ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.pd-stage-panel__copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.pd-stage-panel__copy li svg {
  width: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: var(--pd-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pd-stage-panel__visual {
  position: relative;
  min-width: 0;
}

.pd-stage-panel__visual .pd-screen-label {
  top: -24px;
}

.pd-stage-panel__visual .pd-ui {
  min-height: 420px;
  box-shadow: 0 24px 56px rgba(38, 39, 84, 0.12);
}

.pd-stage-panel__visual .pd-ui__main {
  padding: 16px;
}

.pd-stage-panel__visual .pd-bars {
  height: 125px;
}

.pd-stage-panel__visual .pd-mini {
  min-height: 390px;
}

.pd-roles {
  padding-block: 112px 126px;
  border-top: 1px solid var(--pd-line);
}

.pd-section-kicker--row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 70px;
  padding: 0 0 50px;
}

.pd-section-kicker--row h2 {
  max-width: 1020px;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.88;
}

.pd-roles__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--pd-line);
  border-bottom: 1px solid var(--pd-line);
}

.pd-roles__grid article {
  position: relative;
  min-width: 0;
  padding: 42px 28px 36px;
  border-right: 1px solid var(--pd-line);
}

.pd-roles__grid article:last-child {
  border-right: 0;
}

.pd-roles__grid article::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--pd-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.pd-roles__grid article:hover::before {
  transform: scaleX(1);
}

.pd-roles__grid article .pd-icon {
  margin-bottom: 28px;
  background: var(--pd-soft);
}

.pd-roles__grid h3 {
  margin: 0;
  font-family: var(--pd-display);
  font-size: 30px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.pd-roles__grid p {
  min-height: 76px;
  margin: 12px 0 26px;
  color: #65627a;
  font-size: 12px;
}

.pd-roles__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-roles__grid li {
  padding: 8px 0;
  border-top: 1px solid var(--pd-line);
  font-size: 10px;
  font-weight: 700;
}

.pd-controls {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--pd-ink);
}

.pd-controls::after {
  position: absolute;
  top: -180px;
  left: 6%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.pd-controls__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(300px, 0.62fr) minmax(720px, 1.38fr);
  align-items: center;
  gap: clamp(60px, 8vw, 140px);
  padding-block: 100px;
}

.pd-controls__intro > span {
  color: var(--pd-soft);
}

.pd-controls__intro h2 {
  max-width: 600px;
  margin: 0;
  font-family: var(--pd-display);
  font-size: clamp(62px, 6.8vw, 102px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-transform: uppercase;
}

.pd-controls__intro p {
  max-width: 510px;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.pd-controls__intro a,
.pd-connected__intro a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--pd-soft);
  font-size: 12px;
  font-weight: 800;
}

.pd-controls ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.pd-controls li {
  min-height: 240px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.pd-controls li:nth-child(n + 4) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pd-controls li:nth-child(3n) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.pd-controls li > span {
  display: block;
  color: var(--pd-soft);
  font-family: var(--pd-display);
  font-size: 18px;
  font-weight: 800;
}

.pd-controls li .pd-icon {
  width: 38px;
  height: 38px;
  margin: 24px 0 20px;
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: transparent;
}

.pd-controls h3 {
  margin: 0;
  font-family: var(--pd-display);
  font-size: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.pd-controls li p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 10px;
  line-height: 1.5;
}

.pd-screens {
  padding-block: 126px;
  background: #fafafe;
}

.pd-screens__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pd-screens__grid article {
  min-width: 0;
}

.pd-screen-meta {
  display: flex;
  min-height: 122px;
  gap: 16px;
  padding-bottom: 22px;
}

.pd-screen-meta > span {
  color: var(--pd-accent);
  font-family: var(--pd-display);
  font-size: 21px;
  font-weight: 800;
}

.pd-screen-meta h3 {
  margin: 0;
  font-family: var(--pd-display);
  font-size: 31px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.pd-screen-meta p {
  margin: 6px 0 0;
  color: #6c6981;
  font-size: 11px;
}

.pd-screen-frame {
  position: relative;
  min-height: 390px;
  padding: 10px;
  border: 1px solid var(--pd-line);
  border-radius: 17px;
  background: var(--pd-soft);
}

.pd-screen-frame .pd-screen-label {
  top: -20px;
  right: 0;
}

.pd-mini {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 370px;
  padding: 18px;
  border: 1px solid rgba(21, 20, 47, 0.12);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(35, 35, 72, 0.08);
}

.pd-mini > .pd-ui {
  min-height: 350px;
}

.pd-mini__bar b {
  color: var(--pd-ink);
  font-size: 10px;
}

.pd-mini__years {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.pd-mini__years section {
  padding: 12px;
  border: 1px solid var(--pd-line);
  border-radius: 8px;
}

.pd-mini__years small {
  display: block;
  min-height: 28px;
  color: #76738a;
  font-size: 7px;
}

.pd-mini__years i,
.pd-document i {
  display: block;
  height: 35px;
  margin-top: 7px;
  border-radius: 6px;
  background: var(--pd-soft);
}

.pd-mini__progress,
.pd-learning-chart {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 18px;
  padding-top: 30px;
}

.pd-mini__progress section p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--pd-line);
  font-size: 8px;
}

.pd-table-head,
.pd-mini--table > p {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.7fr;
  gap: 8px;
  align-items: center;
}

.pd-table-head {
  margin-top: 18px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #858297;
  background: #f5f5f8;
  font-size: 7px;
}

.pd-mini--table > p {
  margin: 0;
  padding: 16px 10px;
  border-bottom: 1px solid var(--pd-line);
  font-size: 8px;
}

.pd-mini--table > p span {
  color: #77748a;
}

.pd-mini--table > p em,
.pd-people-list em {
  justify-self: start;
  padding: 4px 6px;
  border-radius: 12px;
  color: #167f55;
  background: var(--pd-mint);
  font-size: 7px;
  font-style: normal;
}

.pd-people-list {
  margin-top: 16px;
}

.pd-people-list p {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 13px 4px;
  border-bottom: 1px solid var(--pd-line);
}

.pd-people-list .pd-avatar {
  width: 35px;
  height: 35px;
  flex-basis: 35px;
  font-size: 8px;
}

.pd-people-list b {
  font-size: 9px;
}

.pd-people-list small {
  display: block;
  color: #9693a6;
  font-size: 7px;
  font-weight: 500;
}

.pd-rubric {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-top: 18px;
}

.pd-rubric section {
  padding: 13px;
  border: 1px solid var(--pd-line);
  border-radius: 8px;
}

.pd-rubric section > small {
  color: #848196;
  font-size: 7px;
}

.pd-document {
  margin-top: 10px;
  padding: 12px;
  border-radius: 6px;
  background: #f8f8fa;
}

.pd-document i {
  height: 8px;
  background: #dedde7;
}

.pd-document i:nth-child(2n) {
  width: 72%;
}

.pd-rubric p {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--pd-line);
  font-size: 8px;
}

.pd-learning-chart .pd-bars {
  height: 210px;
  padding-top: 20px;
}

.pd-learning-chart section p {
  margin: 0 0 12px;
  padding: 14px;
  border-radius: 8px;
  background: var(--pd-soft);
}

.pd-learning-chart section b,
.pd-learning-chart section small {
  display: block;
}

.pd-learning-chart section b {
  font-size: 18px;
}

.pd-learning-chart section small {
  color: #77748a;
  font-size: 7px;
}

.pd-seat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  width: 92%;
  margin: 30px auto 22px;
}

.pd-seat-grid i {
  aspect-ratio: 1;
  border: 1px solid #9ed9b8;
  border-radius: 2px;
  background: var(--pd-mint);
}

.pd-seat-grid i.is-exception {
  border-color: #efa7a6;
  background: var(--pd-coral);
}

.pd-seat-grid i.is-focus {
  border: 2px solid var(--pd-blue);
  background: #fff;
}

.pd-seat-key {
  display: flex;
  justify-content: center;
  gap: 14px;
  color: #7e7b90;
  font-size: 7px;
}

.pd-connected {
  padding-block: 100px;
  border-top: 1px solid var(--pd-line);
  border-bottom: 1px solid var(--pd-line);
  background: var(--pd-mint);
}

.pd-connected > .pd-shell {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  align-items: center;
  gap: 90px;
}

.pd-connected__intro h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--pd-display);
  font-size: clamp(57px, 6vw, 87px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.pd-connected__intro p {
  max-width: 500px;
  margin: 24px 0 26px;
  color: #5f6c68;
  font-size: 13px;
}

.pd-connected__intro a {
  color: var(--pd-ink);
}

.pd-connected__map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
  gap: 14px;
}

.pd-connected__map::before {
  position: absolute;
  top: 50%;
  right: 6%;
  left: 6%;
  height: 1px;
  background: rgba(21, 20, 47, 0.2);
  content: "";
}

.pd-connected__core,
.pd-connected__map article {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(21, 20, 47, 0.15);
  background: #fff;
  text-align: center;
  flex-direction: column;
}

.pd-connected__core {
  order: 3;
  color: #fff;
  border-color: var(--pd-ink);
  background: var(--pd-ink);
}

.pd-connected__map article:nth-of-type(1) { order: 1; }
.pd-connected__map article:nth-of-type(2) { order: 2; }
.pd-connected__map article:nth-of-type(3) { order: 4; }
.pd-connected__map article:nth-of-type(4) { order: 5; }
.pd-connected__map article:nth-of-type(5) { order: 6; }

.pd-connected__map .pd-icon {
  width: 39px;
  height: 39px;
  margin-bottom: 17px;
  background: var(--pd-soft);
}

.pd-connected__core .pd-icon {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: transparent;
}

.pd-connected__map strong {
  font-size: 11px;
}

.pd-connected__map small,
.pd-connected__core span {
  display: block;
  margin-top: 7px;
  color: #777489;
  font-size: 7px;
  line-height: 1.4;
}

.pd-connected__core span {
  color: var(--pd-soft);
}

.pd-close {
  padding-block: 118px;
  background: #fff;
}

.pd-close__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 100px;
}

.pd-close h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--pd-display);
  font-size: clamp(68px, 7.5vw, 112px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-transform: uppercase;
}

.pd-close__inner > div:last-child > p {
  max-width: 490px;
  margin: 0 0 28px;
  color: #625f78;
  font-size: 15px;
}

.pd-close__inner > div:last-child > a:last-child {
  display: block;
  width: fit-content;
  margin-top: 18px;
  color: var(--pd-accent);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1240px) {
  .pd-hero__grid {
    grid-template-columns: minmax(380px, 0.8fr) minmax(560px, 1.2fr);
    gap: 48px;
  }

  .pd-hero__copy h1 {
    font-size: clamp(66px, 6.7vw, 88px);
  }

  .pd-lifecycle__grid {
    grid-template-columns: 210px 1fr;
  }

  .pd-lifecycle li {
    padding-inline: 12px;
  }

  .pd-workflow__frame {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .pd-stage-tabs button {
    grid-template-columns: 45px 1fr auto;
    padding-inline: 14px;
  }

  .pd-stage-panels article {
    grid-template-columns: minmax(270px, 0.68fr) minmax(400px, 1.32fr);
    padding-inline: 38px;
  }

  .pd-controls__grid {
    grid-template-columns: minmax(300px, 0.55fr) minmax(650px, 1.45fr);
    gap: 70px;
  }

  .pd-connected > .pd-shell {
    grid-template-columns: 0.48fr 1.52fr;
    gap: 50px;
  }
}

@media (max-width: 1040px) {
  .pd-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 144px 110px;
  }

  .pd-hero__copy {
    max-width: 780px;
  }

  .pd-hero__visual {
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .pd-lifecycle__grid {
    grid-template-columns: 1fr;
  }

  .pd-lifecycle .pd-section-kicker {
    padding-bottom: 26px;
  }

  .pd-lifecycle ol {
    overflow-x: auto;
    padding-bottom: 14px;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
  }

  .pd-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .pd-section-head > p {
    max-width: 640px;
  }

  .pd-workflow__frame {
    grid-template-columns: 1fr;
  }

  .pd-stage-tabs {
    display: grid;
    overflow-x: auto;
    grid-template-columns: repeat(6, minmax(145px, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--pd-line);
  }

  .pd-stage-tabs button {
    min-height: 90px;
    grid-template-columns: 38px 1fr;
    border-right: 1px solid var(--pd-line);
    border-bottom: 0;
  }

  .pd-stage-tabs button svg {
    display: none;
  }

  .pd-section-kicker--row {
    grid-template-columns: 160px 1fr;
  }

  .pd-roles__grid {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
  }

  .pd-controls__grid {
    grid-template-columns: 1fr;
  }

  .pd-controls__intro {
    max-width: 760px;
  }

  .pd-screens__grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .pd-screen-frame {
    min-height: 470px;
  }

  .pd-mini {
    min-height: 450px;
  }

  .pd-connected > .pd-shell {
    grid-template-columns: 1fr;
  }

  .pd-close__inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 760px) {
  .pd-shell {
    width: min(calc(100% - 32px), var(--pd-shell));
  }

  .pd-fallback-nav__inner nav,
  .pd-fallback-nav__inner > div > a:first-child {
    display: none;
  }

  .pd-fallback-nav__inner > a {
    width: 160px;
  }

  .pd-fallback-nav__inner .pd-button {
    min-height: 44px;
    padding-inline: 16px;
  }

  .pd-hero__grid {
    padding-block: 128px 94px;
  }

  .pd-hero__copy h1,
  .pd-page--butter .pd-hero__copy h1 {
    font-size: clamp(59px, 17vw, 82px);
  }

  .pd-hero__copy > p {
    margin-top: 24px;
    font-size: 15px;
  }

  .pd-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pd-button {
    width: 100%;
  }

  .pd-ui {
    min-height: 390px;
    grid-template-columns: 48px 1fr;
  }

  .pd-ui__sidebar {
    gap: 19px;
  }

  .pd-ui__sidebar b {
    width: 27px;
    height: 27px;
  }

  .pd-ui__sidebar i {
    width: 14px;
    height: 14px;
  }

  .pd-ui__main {
    padding: 12px;
  }

  .pd-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-kpis span:nth-child(2) {
    border-right: 0;
  }

  .pd-kpis span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pd-line);
  }

  .pd-finance-grid,
  .pd-course-grid {
    grid-template-columns: 1fr;
  }

  .pd-finance-grid > div:first-child {
    display: none;
  }

  .pd-exam-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-exam-grid > div:nth-child(n + 5) {
    display: none;
  }

  .pd-exam-grid > div {
    min-height: 130px;
  }

  .pd-hero__proof {
    right: 8px;
    bottom: -48px;
    max-width: 260px;
  }

  .pd-section-kicker {
    padding-block: 44px 24px;
  }

  .pd-lifecycle ol {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .pd-workflow,
  .pd-roles,
  .pd-screens {
    padding-block: 86px;
  }

  .pd-section-head h2 {
    font-size: clamp(54px, 15vw, 76px);
  }

  .pd-stage-panels article {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 44px 22px 34px;
  }

  .pd-stage-panel__copy h3 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .pd-stage-panel__visual .pd-ui,
  .pd-stage-panel__visual .pd-mini {
    min-height: 350px;
  }

  .pd-section-kicker--row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pd-section-kicker--row h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .pd-controls__grid {
    padding-block: 84px;
  }

  .pd-controls__intro h2 {
    font-size: clamp(59px, 17vw, 84px);
  }

  .pd-controls ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-controls li,
  .pd-controls li:nth-child(n + 4),
  .pd-controls li:nth-child(3n) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 0;
  }

  .pd-controls li:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .pd-controls li:nth-child(n + 5) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .pd-screen-frame {
    min-height: 370px;
    margin-top: 20px;
  }

  .pd-mini {
    min-height: 350px;
  }

  .pd-mini__years {
    grid-template-columns: 1fr;
  }

  .pd-mini__years section:nth-child(n + 2) {
    display: none;
  }

  .pd-mini__progress,
  .pd-learning-chart,
  .pd-rubric {
    grid-template-columns: 1fr;
  }

  .pd-learning-chart .pd-bars {
    height: 150px;
  }

  .pd-connected {
    padding-block: 84px;
  }

  .pd-connected__intro h2 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .pd-connected__map {
    overflow-x: auto;
    margin-inline: -16px;
    padding-inline: 16px;
    grid-template-columns: repeat(6, minmax(145px, 1fr));
  }

  .pd-close {
    padding-block: 92px;
  }

  .pd-close h2 {
    font-size: clamp(61px, 17vw, 87px);
  }
}

@media (max-width: 420px) {
  .pd-hero__trust {
    align-items: flex-start;
  }

  .pd-screen-meta {
    min-height: 0;
  }

  .pd-controls li {
    padding: 18px;
  }

  .pd-controls h3 {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pd-button,
  .pd-roles__grid article::before,
  .pd-button svg,
  .pd-controls a svg,
  .pd-connected__intro a svg {
    transition: none;
  }
}

@media (max-width: 760px) {
  .pd-ui--deep {
    min-height: 390px;
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .pd-deep-rail {
    gap: 13px;
  }

  .pd-deep-rail b,
  .pd-deep-rail em {
    width: 24px;
    height: 24px;
  }

  .pd-deep-rail span {
    width: 13px;
    height: 13px;
  }

  .pd-deep-app {
    padding: 9px;
  }

  .pd-deep-pipeline > span:nth-child(4),
  .pd-deep-pipeline > span:nth-child(5),
  .pd-deep-drawer,
  .pd-deep-outline,
  .pd-deep-courses {
    display: none;
  }

  .pd-deep-pipeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .pd-deep-grid--student,
  .pd-deep-grid--exam {
    grid-template-columns: 1fr;
  }

  .pd-deep-grid--course {
    grid-template-columns: minmax(0, 1fr) 0.55fr;
  }

  .pd-deep-toolbar nav span:nth-child(n + 3),
  .pd-deep-table__head i:nth-child(3),
  .pd-deep-table > p > span:nth-of-type(2) {
    display: none;
  }

  .pd-deep-table__head,
  .pd-deep-table > p {
    grid-template-columns: 1.45fr 0.72fr 0.9fr;
  }

  .pd-deep-programmes > p {
    grid-template-columns: 78px minmax(0, 1fr) 46px;
  }

  .pd-deep-readiness > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-deep-readiness > div > span:nth-child(3) {
    display: none;
  }
}
