:root {
  --ink: #06111f;
  --muted: #253347;
  --blue: #0a67ff;
  --lime: #cbff16;
  --green: #14d875;
  --cyan: #0ce4d3;
  --violet: #a96cff;
  --yellow: #e8ff10;
  --paper: #fbf7ee;
  --paper-2: #f3eee4;
  --line: #bcd1e8;
  --dark: #061017;
  --dark-2: #091722;
  --white: #fffdfa;
  --landing-max: 1180px;
  --landing-gutter: 56px;
  --section-space: 68px;
  --section-heading-gap: 28px;
  --radius: 6px;
  --shadow: 0 18px 50px rgba(6, 17, 31, 0.1);
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("./assets/media/4e1c87b7aa9e2f2f-s.p.12gpghvmuotht.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("./assets/media/b59689b1142d37ce-s.p.0f8~qglggluhl.woff2") format("woff2");
}

@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/media/270434222f265782-s.p.0rtojvf6j4b-r.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/media/e3455d3d95db5f62-s.p.0apr75vkxnef-.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: linear-gradient(#fbf8f0 0%, #f7f2e8 46%, #fbf8f0 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: normal;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

button,
input,
textarea {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.landing {
  width: min(100%, var(--landing-max));
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px 0 0;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffffbd, #faf6edd1), var(--paper);
}

.site-header,
.course-section,
.application-section {
  width: 100%;
  margin-inline: 0;
  padding-left: var(--landing-gutter);
  padding-right: var(--landing-gutter);
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  height: 48px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
}

.logo span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: transparent;
  font-family: inherit;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

.logo strong {
  max-width: 190px;
  font-size: 14px;
  line-height: 1.15;
}

.lab-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-height: 48px;
  font-size: 13px;
}

.lab-nav-item {
  position: relative;
}

.lab-nav-item::after {
  position: absolute;
  top: 36px;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.lab-nav-item > a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 10px;
  border-radius: 7px;
  color: rgba(6, 17, 31, 0.78);
  font-size: 13px;
  font-weight: 820;
}

.lab-nav-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 9;
  display: grid;
  width: 260px;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(6, 17, 31, 0.16);
  border-radius: 10px;
  background: rgba(251, 247, 238, 0.98);
  box-shadow: 0 18px 34px rgba(6, 17, 31, 0.18);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.14s;
}

.lab-nav-item:hover .lab-nav-dropdown,
.lab-nav-item:focus-within .lab-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.lab-nav-dropdown a {
  padding: 10px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.15;
}

.lab-nav-item > a,
.lab-nav-dropdown a,
.mobile-menu a,
.lab-footer a {
  transition: color 160ms ease;
}

.lab-nav-item > a:hover,
.lab-nav-dropdown a:hover,
.mobile-menu a:hover,
.lab-footer a:hover {
  color: var(--blue);
}

.lab-nav-item > a:hover {
  color: var(--ink);
  background: rgba(10, 103, 255, 0.07);
}

.lab-nav-dropdown a:hover {
  color: var(--ink);
  background: rgba(10, 103, 255, 0.08);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
}

.mobile-menu div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 210px;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-menu div a {
  padding: 13px 10px;
  font-size: 15px;
  font-weight: 800;
}

.course-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  border-top: 1px solid rgba(10, 103, 255, 0.18);
  scroll-margin-top: 96px;
}

.lab-page-hero {
  padding-top: 84px;
  padding-bottom: var(--section-space);
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.course-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 940px);
  gap: var(--hero-gap);
  align-items: start;
}

.course-hero-copy {
  max-width: 760px;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lab-page-hero h1,
.section-heading h2,
.expectations-band h2,
.pricing-copy h2,
.application-copy h2,
.faq-section h2 {
  font-family: inherit;
  font-weight: 780;
  line-height: 1;
}

.lab-page-hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: 56px;
  font-weight: 880;
  line-height: 0.98;
}

.lab-page-hero p {
  max-width: 720px;
  margin: 0 0 18px;
  color: #142235;
  font-size: 19px;
  line-height: 1.42;
}

.intro-actions {
  width: 270px;
  margin-top: 18px;
}

.btn {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 820;
  line-height: normal;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(6, 17, 31, 0.16);
}

.btn-main {
  background: linear-gradient(135deg, #040a0f, #071622);
  color: var(--lime);
  box-shadow: 0 14px 30px rgba(6, 17, 31, 0.16);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-blue {
  border-color: var(--blue);
  background: transparent;
  color: var(--ink);
}

.btn span {
  margin-left: 22px;
  font-size: 25px;
  line-height: 0;
}

.hero-panel {
  display: none;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--dark);
  background-size: 28px 28px;
  color: #f7fbff;
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-topline strong {
  color: #f7fbff;
  font-size: 12px;
}

.workboard {
  display: grid;
  gap: 18px;
  padding: 22px 18px 4px;
}

.workboard-row {
  display: grid;
  grid-template-columns: 1fr 0.58fr 0.28fr;
  gap: 10px;
  height: 48px;
}

.workboard-row span,
.workboard-row i,
.workboard-row b,
.workboard-grid span,
.workboard-thread span {
  border: 1px solid rgba(188, 209, 232, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
}

.workboard-row i {
  background: rgba(12, 228, 211, 0.18);
}

.workboard-row b {
  background: rgba(203, 255, 22, 0.18);
}

.workboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.workboard-grid span {
  min-height: 68px;
}

.workboard-grid span:nth-child(2),
.workboard-grid span:nth-child(5) {
  background: rgba(10, 103, 255, 0.18);
}

.workboard-thread {
  display: grid;
  gap: 8px;
  padding: 14px 0 20px;
}

.workboard-thread span {
  height: 8px;
  background: rgba(247, 251, 255, 0.2);
}

.workboard-thread span:nth-child(2) {
  width: 82%;
}

.workboard-thread span:nth-child(3) {
  width: 64%;
}

.hero-panel dl {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 15px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel dt {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.25;
}

.course-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1040px;
  margin: 34px 0 0;
}

.course-facts div {
  --fact-gradient-x: 0px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(6, 17, 31, 0.16);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, #06111f07 0 1px, #0000 1px 12px),
    radial-gradient(circle at calc(60px + var(--fact-gradient-x)) 18px, rgba(203, 255, 22, 0.3), transparent 170px),
    radial-gradient(circle at calc(520px + var(--fact-gradient-x)) 48px, rgba(10, 103, 255, 0.08), transparent 180px),
    radial-gradient(circle at calc(820px + var(--fact-gradient-x)) 120px, rgba(12, 228, 211, 0.1), transparent 170px),
    radial-gradient(circle at calc(1010px + var(--fact-gradient-x)) 16px, rgba(203, 255, 22, 0.2), transparent 150px),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(6, 17, 31, 0.07);
}

.course-facts div:nth-child(2) {
  --fact-gradient-x: -263px;
}

.course-facts div:nth-child(3) {
  --fact-gradient-x: -526px;
}

.course-facts div:nth-child(4) {
  --fact-gradient-x: -789px;
}

.course-facts dt {
  color: var(--blue);
  margin: 0 0 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.course-facts dd {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
}

.course-facts strong {
  font-family: inherit;
  font-size: 24px;
  line-height: 1.04;
}

.course-facts span {
  color: #253347;
  font-size: 13px;
  line-height: 1.32;
}

.section-heading {
  max-width: 740px;
  margin-bottom: var(--section-heading-gap);
}

.section-heading h2,
.expectations-band h2,
.pricing-copy h2,
.application-copy h2,
.faq-section h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 46px;
  font-weight: 780;
  line-height: 1;
}

.section-heading .section-kicker,
.pricing-copy .section-kicker,
.application-copy .section-kicker,
.expectations-band .section-kicker {
  display: none;
}

.position-section {
  padding-top: 18px;
  padding-bottom: var(--section-space);
  border-top: 0;
}

.position-section h2 {
  margin: 0 0 var(--section-heading-gap);
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.position-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.position-grid.format-grid {
  grid-template-columns: repeat(3, 1fr);
}

.position-grid article,
.audience-card,
.project-grid article,
.rhythm-grid article,
.pricing-card,
.faq-list details,
.application-form {
  border: 1px solid rgba(6, 17, 31, 0.16);
  border-radius: 8px;
  background: radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.78), transparent 34%),
    repeating-linear-gradient(0deg, rgba(6, 17, 31, 0.024) 0 1px, transparent 1px 12px), #f7f2e8;
  box-shadow: 0 12px 28px rgba(6, 17, 31, 0.08);
}

.position-grid article {
  min-height: 224px;
  padding: 24px;
}

.position-grid article span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(10, 103, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 103, 255, 0.08);
  color: var(--blue);
  font-size: 15px;
  font-weight: 780;
}

.project-grid article span {
  display: inline-flex;
  min-width: 44px;
  min-height: 34px;
  align-items: center;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
}

.position-grid article p {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.34;
}

.position-grid article h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 780;
  line-height: 1.08;
}

.method-white {
  background: rgba(255, 253, 250, 0.22);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.outcome-list article,
.expectations-list article {
  min-height: 208px;
  padding: 22px;
  border: 1px solid rgba(6, 17, 31, 0.18);
  border-radius: 8px;
  background: radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.78), transparent 34%),
    repeating-linear-gradient(0deg, rgba(6, 17, 31, 0.024) 0 1px, transparent 1px 12px), #f7f2e8;
  box-shadow: 0 12px 26px rgba(6, 17, 31, 0.08);
}

.outcome-list article span,
.expectations-list article span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
  line-height: normal;
}

.outcome-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: inherit;
  font-size: 18px;
  font-weight: 780;
  line-height: 1.15;
}

.outcome-list p,
.expectations-list p {
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.34;
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.audience-card {
  min-height: 300px;
  padding: 30px;
}

.audience-card h3 {
  font-family: inherit;
  font-size: 25px;
  font-weight: 780;
  line-height: 1.1;
}

.audience-card p,
.audience-card li {
  color: #253347;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.38;
}

.audience-card p {
  margin-top: 18px;
}

.audience-card ul {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.audience-card li {
  position: relative;
  padding-left: 24px;
}

.audience-card li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
}

.audience-card.is-primary {
  background: radial-gradient(circle at 11% 10%, rgba(203, 255, 22, 0.3), transparent 32%),
    repeating-linear-gradient(0deg, rgba(6, 17, 31, 0.024) 0 1px, transparent 1px 12px), rgba(255, 253, 250, 0.92);
}

.audience-card.is-muted {
  background: radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.78), transparent 34%),
    repeating-linear-gradient(0deg, rgba(6, 17, 31, 0.024) 0 1px, transparent 1px 12px), #f7f2e8;
}

.help-dark {
  width: 100%;
  max-width: none;
  padding: var(--section-space) var(--landing-gutter);
  border-top: 1px solid rgba(10, 103, 255, 0.18);
  background: transparent;
  color: var(--ink);
}

.help-dark h2 {
  margin: 0 0 var(--section-heading-gap);
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.help-dark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  margin-inline: auto;
}

.service-card {
  position: relative;
  min-height: 212px;
  overflow: hidden;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(5, 13, 20, 0.9), rgba(5, 13, 20, 0.68)),
    url("./assets/media/blueprint-dark.png");
  background-size: auto, cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

.service-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
  margin-bottom: 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
}

.service-card.lime .service-icon {
  color: var(--lime);
}

.service-card.cyan .service-icon {
  color: var(--cyan);
}

.service-card.violet .service-icon {
  color: var(--violet);
}

.service-card.yellow .service-icon {
  color: var(--yellow);
}

.service-card h3 {
  font-family: inherit;
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: #fff;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.36;
}

.inside-details {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  margin-top: 42px;
}

.inside-details article {
  padding: 24px;
  border: 1px solid rgba(6, 17, 31, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.78), transparent 34%),
    repeating-linear-gradient(0deg, rgba(6, 17, 31, 0.024) 0 1px, transparent 1px 12px), #f7f2e8;
  box-shadow: 0 12px 26px rgba(6, 17, 31, 0.06);
}

.inside-details h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: inherit;
  font-size: 24px;
  font-weight: 780;
  line-height: 1.1;
}

.inside-details ol {
  display: grid;
  gap: 12px;
  counter-reset: rhythm;
}

.inside-details ol li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid rgba(6, 17, 31, 0.1);
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
}

.inside-details ol li:first-child {
  padding-top: 0;
  border-top: 0;
}

.inside-details ol span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.inside-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inside-details ul li {
  padding: 9px 12px;
  border: 1px solid rgba(10, 103, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 103, 255, 0.06);
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.1;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.project-grid article {
  min-height: 150px;
  padding: 22px;
}

.project-grid p {
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.34;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.program-section {
  background: rgba(243, 238, 228, 0.4);
}

.program-section .section-heading h2 {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-list article {
  --timeline-gradient-y: 0px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px 34px;
  border: 1px solid rgba(6, 17, 31, 0.16);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(6, 17, 31, 0.024) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 8% calc(80px + var(--timeline-gradient-y)), rgba(203, 255, 22, 0.34), transparent 260px),
    radial-gradient(circle at 86% calc(120px + var(--timeline-gradient-y)), rgba(10, 103, 255, 0.11), transparent 250px),
    radial-gradient(circle at 17% calc(360px + var(--timeline-gradient-y)), rgba(203, 255, 22, 0.24), transparent 270px),
    radial-gradient(circle at 70% calc(560px + var(--timeline-gradient-y)), rgba(12, 228, 211, 0.11), transparent 240px),
    rgba(255, 253, 250, 0.78);
  box-shadow: 0 12px 32px rgba(6, 17, 31, 0.06);
}

.timeline-list article:nth-child(2) {
  --timeline-gradient-y: -188px;
}

.timeline-list article:nth-child(3) {
  --timeline-gradient-y: -376px;
}

.timeline-list strong {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.timeline-list h3 {
  font-family: inherit;
  margin: 0 0 12px;
  font-size: 25px;
  font-weight: 780;
  line-height: 1.15;
}

.timeline-list p,
.timeline-list li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.38;
}

.timeline-list p {
  margin-top: 12px;
}

.timeline-list ul {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.timeline-list li {
  position: relative;
  padding-left: 18px;
}

.timeline-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue);
  content: "";
}

.program-expectations {
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid rgba(6, 17, 31, 0.16);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(6, 17, 31, 0.024) 0 1px, transparent 1px 12px),
    rgba(255, 253, 250, 0.72);
  box-shadow: 0 12px 26px rgba(6, 17, 31, 0.06);
}

.program-expectations h3 {
  margin: 0 0 16px;
  font-family: inherit;
  font-size: 24px;
  font-weight: 780;
  line-height: 1.1;
}

.program-expectations ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.program-expectations li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.34;
}

.program-expectations li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.rhythm-grid article {
  min-height: 148px;
  padding: 18px;
}

.rhythm-grid span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rhythm-grid h3 {
  margin-top: 18px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.18;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.topics-section .section-heading h2 {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.topic-list article {
  --topic-gradient-x: 0px;
  min-height: 122px;
  padding: 22px 24px;
  border: 1px solid rgba(6, 17, 31, 0.18);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(6, 17, 31, 0.024) 0 1px, transparent 1px 12px),
    radial-gradient(circle at calc(48px + var(--topic-gradient-x)) 16px, rgba(203, 255, 22, 0.18), transparent 150px),
    radial-gradient(circle at calc(350px + var(--topic-gradient-x)) 68px, rgba(10, 103, 255, 0.08), transparent 150px),
    radial-gradient(circle at calc(610px + var(--topic-gradient-x)) 104px, rgba(12, 228, 211, 0.08), transparent 140px),
    rgba(255, 253, 250, 0.84);
  color: var(--muted);
  box-shadow: 0 12px 26px rgba(6, 17, 31, 0.06);
}

.topic-list article:nth-child(2),
.topic-list article:nth-child(5) {
  --topic-gradient-x: -360px;
}

.topic-list article:nth-child(3),
.topic-list article:nth-child(6) {
  --topic-gradient-x: -720px;
}

.topic-list h3 {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 17px;
  font-weight: 780;
  line-height: 1.16;
}

.topic-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.34;
}

.expectations-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 36px;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  background: #030c12;
  color: #f8fbff;
}

.expectations-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(93, 226, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 226, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), #000 48%, rgba(0, 0, 0, 0.76));
  pointer-events: none;
  animation: expectations-grid-pan 18s linear infinite;
}

.expectations-band::after {
  position: absolute;
  top: 54px;
  left: 72px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(203, 255, 22, 0.1);
  background: rgba(203, 255, 22, 0.025);
  box-shadow:
    378px 84px 0 rgba(10, 103, 255, 0.03),
    672px 42px 0 rgba(12, 228, 211, 0.035),
    210px 252px 0 rgba(203, 255, 22, 0.025),
    882px 210px 0 rgba(10, 103, 255, 0.03),
    1074px 126px 0 rgba(12, 228, 211, 0.025);
  content: "";
  pointer-events: none;
  animation: expectations-grid-cells 9s steps(3, end) infinite;
}

@keyframes expectations-grid-pan {
  to {
    background-position: 42px 42px, 42px 42px;
  }
}

@keyframes expectations-grid-cells {
  0% {
    opacity: 0.32;
    transform: translate3d(0, 0, 0);
  }

  33% {
    opacity: 0.58;
    transform: translate3d(42px, 0, 0);
  }

  66% {
    opacity: 0.42;
    transform: translate3d(42px, 42px, 0);
  }

  100% {
    opacity: 0.32;
    transform: translate3d(84px, 42px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .expectations-band::before,
  .expectations-band::after {
    animation: none;
  }
}

.expectations-band > * {
  position: relative;
  z-index: 1;
}

.expectations-band .section-kicker {
  color: var(--lime);
}

.expectations-band h2 {
  color: #f8fbff;
}

.expectations-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.expectations-list article {
  min-height: 188px;
  padding: 26px 24px;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(17, 27, 36, 0.92), rgba(17, 27, 36, 0.74)),
    url("./assets/media/blueprint-dark.png");
  background-size: auto, cover;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 18px 32px rgba(0, 0, 0, 0.12);
}

.expectations-list p {
  color: rgba(248, 251, 255, 0.76);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.38;
}

.expectations-list article span {
  color: var(--lime);
  font-size: 36px;
  line-height: 1;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
  padding: 24px;
}

.final-section {
  display: grid;
  gap: 34px;
  padding-top: 51px;
  padding-bottom: 51px;
}

.final-grid {
  display: grid;
  gap: 34px;
}

.faq-section {
  margin-top: 12px;
}

.pricing-copy p {
  max-width: 640px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.pricing-side {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 22px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(10, 103, 255, 0.05);
}

.pricing-side span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-side strong {
  font-family: inherit;
  font-size: 24px;
  line-height: 1.04;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--blue);
  content: "+";
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 20px;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 860px;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.application-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
  overflow: hidden;
  margin-bottom: var(--section-space);
  padding: 34px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #f8fbff;
}

.interactive-grid-pattern {
  position: absolute;
  inset: -30% -8%;
  z-index: 1;
  transform: skewY(12deg);
  opacity: 0.9;
  mask-image: radial-gradient(520px circle at center, #fff 10%, transparent 76%);
  pointer-events: auto;
}

.interactive-grid-pattern svg {
  display: block;
  width: 100%;
  height: 100%;
}

.interactive-grid-pattern rect {
  fill: transparent;
  stroke: rgba(248, 251, 255, 0.2);
  stroke-width: 1;
  transition:
    fill 1000ms ease-in-out,
    stroke 1000ms ease-in-out;
}

.interactive-grid-pattern rect.is-near {
  fill: rgba(248, 251, 255, 0.08);
  stroke: rgba(248, 251, 255, 0.28);
  transition-duration: 160ms;
}

.interactive-grid-pattern rect.is-hovered {
  fill: rgba(248, 251, 255, 0.28);
  stroke: rgba(248, 251, 255, 0.52);
  transition-duration: 100ms;
}

.application-copy {
  position: sticky;
  top: 24px;
  z-index: 2;
}

.application-copy .section-kicker {
  color: var(--lime);
}

.application-copy h2 {
  color: #f8fbff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.application-copy p {
  margin-top: 18px;
  color: rgba(248, 251, 255, 0.8);
  font-size: 20px;
  line-height: 1.45;
}

.application-copy small {
  display: block;
  margin-top: 24px;
  color: rgba(248, 251, 255, 0.6);
  font-size: 13px;
  line-height: 1.4;
}

.application-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  padding: 22px;
  background: var(--paper);
  color: var(--ink);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 14px;
  font-weight: 400;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 2px solid rgba(6, 17, 31, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
}

.form-row input {
  min-height: 50px;
  padding: 0 14px;
}

.form-row textarea {
  min-height: 96px;
  resize: vertical;
  padding: 12px 14px;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(10, 103, 255, 0.16);
}

.application-form .btn {
  width: 100%;
  margin-top: 4px;
}

.form-success {
  padding: 16px;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  background: rgba(20, 216, 117, 0.12);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.lab-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 0 38px;
  border-top: 1px solid rgba(10, 103, 255, 0.18);
}

.lab-footer strong {
  font-size: 15px;
}

.lab-footer p {
  max-width: 390px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.lab-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1060px) {
  :root {
    --landing-gutter: 32px;
    --section-space: 56px;
    --section-heading-gap: 24px;
  }

  .lab-page-hero h1 {
    font-size: 46px;
  }

  .lab-page-hero p {
    font-size: 20px;
  }

  .course-hero-inner,
  .application-section,
  .pricing-card,
  .expectations-band,
  .inside-details,
  .program-expectations ul {
    grid-template-columns: 1fr;
  }

  .application-copy {
    position: static;
  }

  .course-facts,
  .rhythm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-dark-grid,
  .outcome-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --landing-gutter: 20px;
    --section-space: 46px;
    --section-heading-gap: 22px;
  }

  .site-header {
    padding-top: 14px;
  }

  .lab-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .logo strong {
    font-size: 11px;
  }

  .lab-page-hero {
    padding-top: 36px;
  }

  .lab-page-hero h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .section-heading h2,
  .expectations-band h2,
  .pricing-copy h2,
  .application-copy h2,
  .faq-section h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .lab-page-hero p,
  .pricing-copy p,
  .application-copy p {
    font-size: 17px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .intro-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .course-facts,
  .position-grid,
  .outcome-list,
  .audience-grid,
  .help-dark-grid,
  .project-grid,
  .rhythm-grid,
  .expectations-list,
  .inside-details,
  .program-expectations ul {
    grid-template-columns: 1fr;
  }

  .inside-details ol li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .course-facts div,
  .position-grid article,
  .project-grid article,
  .rhythm-grid article,
  .service-card {
    min-height: auto;
  }

  .help-dark {
    padding-inline: var(--landing-gutter);
  }

  .expectations-band,
  .application-section {
    padding: 22px;
  }

  .pricing-side {
    padding: 18px;
  }

  .pricing-side strong {
    font-size: 24px;
  }

  .application-section {
    width: min(var(--landing-max), calc(100vw - var(--landing-gutter) * 2));
  }

  .lab-footer {
    display: grid;
  }

  .lab-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .lab-page-hero h1 {
    font-size: 30px;
  }

  .hero-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .workboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .course-facts strong {
    font-size: 19px;
  }

  .audience-card,
  .pricing-card,
  .application-form {
    padding: 18px;
  }
}
