:root {
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --ink: #111114;
  --muted: #6f7480;
  --line: rgba(17, 17, 20, 0.12);
  --gold: #c88a09;
  --gold-strong: #f0b313;
  --blue: #2a6df4;
  --mint: #2dbd91;
  --violet: #7b61ff;
  --shadow: 0 24px 80px rgba(22, 26, 34, 0.12);
  --radius: 8px;
  --radius-lg: 8px;
  --max: 1180px;
  --section-gap: clamp(68px, 6.6vw, 104px);
  --section-gap-tight: clamp(46px, 4.8vw, 74px);
  --section-divider: linear-gradient(
    90deg,
    rgba(17, 17, 20, 0),
    rgba(17, 17, 20, 0.12),
    rgba(200, 138, 9, 0.24),
    rgba(17, 17, 20, 0.12),
    rgba(17, 17, 20, 0)
  );
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(240, 179, 19, 0.12), transparent 28rem),
    radial-gradient(circle at 80% 0%, rgba(42, 109, 244, 0.10), transparent 25rem),
    linear-gradient(180deg, #fbfbfd 0%, var(--bg) 45%, #ffffff 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

section[id] {
  scroll-margin-top: 118px;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--max));
  height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 60px rgba(20, 23, 31, 0.10);
  backdrop-filter: blur(24px) saturate(1.2);
  transition:
    top 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 70px rgba(20, 23, 31, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(200, 138, 9, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.brand-mark img {
  width: 62px;
  height: 50px;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(17, 17, 20, 0.72);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(17, 17, 20, 0.06);
}

.site-nav a.is-active {
  color: var(--ink);
  background: rgba(17, 17, 20, 0.075);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 20, 0.04);
}

.nav-cta,
.button,
.program-card button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.nav-cta::after,
.button::after,
.program-card button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.46) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: opacity 220ms ease, transform 560ms ease;
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: #111114;
  box-shadow: 0 12px 28px rgba(17, 17, 20, 0.18);
}

.nav-cta:hover,
.button:hover,
.program-card button:hover {
  transform: translateY(-3px);
}

.nav-cta:hover::after,
.button:hover::after,
.program-card button:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 700;
  line-height: 1;
}

.button.primary {
  color: #111114;
  background:
    linear-gradient(135deg, #ffe38a 0%, var(--gold-strong) 55%, #f7a800 100%);
  box-shadow: 0 18px 42px rgba(200, 138, 9, 0.24);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(17, 17, 20, 0.12);
  backdrop-filter: blur(18px);
}

.button.dark {
  color: #fff;
  background: #111114;
}

.section-panel,
.section-block,
.quick-search,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 28px);
  display: grid;
  align-items: center;
  padding: 118px 0 36px;
  overflow: hidden;
}

.hero-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 72%) var(--my, 28%), rgba(255, 216, 107, 0.38), transparent 22rem),
    radial-gradient(circle at 15% 85%, rgba(45, 189, 145, 0.14), transparent 18rem);
  filter: blur(8px);
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 48px;
  align-items: center;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6.4vw, 6.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-text,
.section-heading p,
.career-copy p,
.contact-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions,
.filter-tabs,
.hero-proof,
.signal-row,
.footer-links,
.partner-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 12px;
  margin: 30px 0 34px;
}

.hero-proof {
  gap: 12px;
}

.hero-proof div {
  min-width: 130px;
  padding: 14px 18px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
}

.hero-proof strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.orbital-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.54));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.2);
}

.main-card {
  position: relative;
  z-index: 2;
  width: min(420px, 88vw);
  padding: 18px;
  border-radius: 34px;
  animation: floatCard 7s ease-in-out infinite;
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(45, 189, 145, 0.12);
}

.hero-logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(17, 17, 20, 0.08);
}

.signal-row {
  gap: 8px;
  margin-top: 14px;
}

.signal-row span {
  flex: 1 1 84px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #1b1d24;
  background: rgba(245, 245, 247, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 142px;
  padding: 18px;
  border-radius: 22px;
}

.floating-card strong {
  font-size: 2rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.card-one {
  top: 82px;
  right: 8px;
}

.card-two {
  left: 8px;
  bottom: 86px;
}

.orbit-line {
  position: absolute;
  border: 1px solid rgba(200, 138, 9, 0.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 520px;
  height: 330px;
}

.orbit-two {
  width: 430px;
  height: 520px;
  border-color: rgba(42, 109, 244, 0.16);
  transform: rotate(24deg);
}

.quick-search {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: end;
  margin-top: clamp(48px, 5vw, 78px);
  padding: 28px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 55px rgba(20, 23, 31, 0.08);
  backdrop-filter: blur(20px);
}

.quick-search h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.9rem);
}

.course-search {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: 0;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 13px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(42, 109, 244, 0.55);
  box-shadow: 0 0 0 4px rgba(42, 109, 244, 0.10);
  background: #fff;
}

.section-block {
  position: relative;
  padding: var(--section-gap) 0 0;
}

.section-block::before {
  content: "";
  position: absolute;
  top: calc(var(--section-gap) * 0.38);
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  height: 1px;
  transform: translateX(-50%);
  background: var(--section-divider);
  opacity: 0.72;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: clamp(26px, 3vw, 42px);
}

.filter-tabs {
  gap: 8px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.filter-tabs button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(17, 17, 20, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(17, 17, 20, 0.68);
  cursor: pointer;
}

.filter-tabs button.active {
  color: #fff;
  background: #111114;
  border-color: #111114;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.program-card,
.value-card,
.placement-card,
.mini-service {
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 45px rgba(20, 23, 31, 0.07);
  backdrop-filter: blur(18px);
}

.program-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 16px;
  min-height: 390px;
  padding: 24px;
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border 220ms ease,
    box-shadow 260ms ease,
    opacity 180ms ease;
}

.program-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 138, 9, 0.32);
  box-shadow: 0 34px 86px rgba(20, 23, 31, 0.14);
}

.program-card.is-hidden {
  display: none;
}

.program-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.program-card p,
.program-card li,
.value-card p,
.placement-card p,
.mini-service p,
.service-feature p,
.timeline p,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.program-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.program-card button {
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(240, 179, 19, 0.16);
  font-weight: 800;
}

.domain-band {
  padding-top: var(--section-gap-tight);
}

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

.domain-grid a {
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56));
  color: #1d2028;
  font-weight: 800;
  box-shadow: 0 12px 38px rgba(20, 23, 31, 0.06);
  transition: transform 180ms ease, background 180ms ease;
}

.domain-grid a:hover {
  transform: translateY(-3px);
  background: #fff;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(22px, 2.4vw, 34px);
}

.service-feature {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(17, 17, 20, 0.88), rgba(17, 17, 20, 0.72)),
    radial-gradient(circle at 18% 22%, rgba(240, 179, 19, 0.68), transparent 18rem),
    radial-gradient(circle at 80% 20%, rgba(42, 109, 244, 0.42), transparent 20rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  color: #111114;
  background: #fff;
  font-weight: 900;
}

.service-feature p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

.service-feature a {
  width: fit-content;
  margin-top: 12px;
  color: #111114;
  background: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
}

.service-stack {
  display: grid;
  gap: 22px;
}

.mini-service {
  padding: 26px;
}

.mini-service span {
  color: var(--gold);
  font-weight: 900;
}

.career-lab {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 40px;
  align-items: start;
  margin-top: var(--section-gap-tight);
  padding: 42px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: var(--radius-lg);
  background: #111114;
  color: #fff;
  box-shadow: var(--shadow);
}

.career-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.timeline div {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  display: block;
  margin-bottom: 46px;
  color: #ffd86b;
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.timeline p {
  color: rgba(255, 255, 255, 0.66);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 30px);
}

.value-card {
  padding: 26px;
}

.value-card {
  min-height: 220px;
}

.partner-strip {
  gap: 10px;
  margin-top: 18px;
}

.partner-strip span {
  flex: 1 1 170px;
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 38px;
  align-items: start;
  margin-top: var(--section-gap-tight);
  padding: 42px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.contact-points span {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(245, 245, 247, 0.9);
  color: var(--muted);
  font-weight: 700;
}

.contact-form,
.modal-form {
  display: grid;
  gap: 14px;
}

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

details {
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 34px rgba(20, 23, 31, 0.05);
}

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

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111114;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: -6px 22px 22px;
  max-width: 880px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: var(--section-gap-tight);
  padding: 54px 0 42px;
  border-top: 1px solid rgba(17, 17, 20, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(200, 138, 9, 0.20);
}

.footer-brand strong {
  display: block;
}

.footer-brand p,
.fine-print {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-links {
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.fine-print {
  grid-column: 1 / -1;
  font-size: 0.86rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal.is-open .modal-backdrop,
.course-modal.is-open .modal-backdrop {
  animation: modalFade 220ms ease both;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 20, 0.44);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.modal.is-open .modal-card {
  animation: modalLift 340ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.modal-card h2 {
  font-size: 2rem;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 20, 0.10);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.subpage-main {
  padding-top: 104px;
  padding-bottom: var(--section-gap-tight);
}

.page-hero,
.page-section,
.site-cta {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.page-hero {
  position: relative;
  min-height: clamp(500px, calc(100svh - 104px), 620px);
  display: grid;
  align-items: center;
  margin-bottom: var(--section-gap-tight);
  padding: clamp(42px, 6vh, 70px) 0 clamp(38px, 5vh, 62px);
}

.page-hero::after,
.course-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, var(--max));
  height: 1px;
  transform: translateX(-50%);
  background: var(--section-divider);
  opacity: 0.72;
}

.page-hero-grid,
.course-hero-grid,
.contact-layout,
.editorial-grid,
.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.page-hero h1,
.course-hero h1 {
  max-width: 780px;
  font-size: clamp(2.95rem, 5.4vw, 5.35rem);
  line-height: 0.98;
}

.page-lede {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.hero-panel,
.insight-panel,
.mini-dashboard,
.program-listing-card,
.process-step,
.platform-card,
.contact-card,
.quote-panel,
.metric-tile {
  border: 1px solid rgba(17, 17, 20, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(20, 23, 31, 0.08);
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.hero-panel.dark,
.mini-dashboard.dark,
.site-cta {
  color: #fff;
  background: #111114;
  border-color: rgba(255, 255, 255, 0.10);
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel.dark .hero-panel-header,
.mini-dashboard.dark .dashboard-row span,
.site-cta p {
  color: rgba(255, 255, 255, 0.66);
}

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

.stat-grid div,
.metric-tile {
  display: grid;
  gap: 4px;
  min-height: 94px;
  align-content: center;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(245, 245, 247, 0.88);
}

.metric-tile {
  min-height: 140px;
  align-content: space-between;
  padding: clamp(20px, 2vw, 26px);
}

.hero-panel.dark .stat-grid div {
  background: rgba(255, 255, 255, 0.08);
}

.stat-grid strong,
.metric-tile strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.stat-grid span,
.metric-tile span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-panel.dark .stat-grid span {
  color: rgba(255, 255, 255, 0.62);
}

.page-section {
  position: relative;
  padding: 0;
}

.page-section + .page-section,
.page-section + .site-cta,
.course-shell + .site-cta {
  margin-top: var(--section-gap);
}

.course-shell + .course-projects {
  margin-top: var(--section-gap-tight);
}

.page-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: clamp(26px, 3.4vw, 42px);
  background: var(--section-divider);
  opacity: 0.72;
}

.page-section.alt {
  width: 100%;
  padding: var(--section-gap-tight) max(16px, calc((100% - var(--max)) / 2)) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 245, 247, 0.76));
}

.section-title-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: end;
  margin-bottom: clamp(26px, 3.4vw, 42px);
}

.section-title-row p {
  max-width: 520px;
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-row,
.process-grid,
.platform-grid,
.program-directory,
.metric-row,
.team-grid {
  display: grid;
  gap: clamp(20px, 2.2vw, 30px);
}

.feature-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-row,
.process-grid,
.metric-row {
  align-items: stretch;
}

.platform-grid,
.program-directory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid,
.metric-row,
.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  align-items: stretch;
}

.platform-card,
.process-step,
.program-listing-card,
.contact-card,
.quote-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 2.8vw, 34px);
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.platform-card::after,
.process-step::after,
.program-listing-card::after,
.contact-card::after,
.quote-panel::after,
.sidebar-card::after,
.course-facts div::after,
.metric-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 38%),
    radial-gradient(circle at 18% 0%, rgba(240, 179, 19, 0.12), transparent 34%);
  transition: opacity 260ms ease;
}

.sidebar-card,
.course-facts div,
.metric-tile {
  position: relative;
  overflow: hidden;
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    box-shadow 260ms ease;
}

@media (hover: hover) {
  .platform-card:hover,
  .process-step:hover,
  .program-listing-card:hover,
  .contact-card:hover,
  .quote-panel:hover,
  .sidebar-card:hover,
  .course-facts div:hover,
  .metric-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 138, 9, 0.22);
    box-shadow: 0 32px 82px rgba(20, 23, 31, 0.12);
  }

  .platform-card:hover::after,
  .process-step:hover::after,
  .program-listing-card:hover::after,
  .contact-card:hover::after,
  .quote-panel:hover::after,
  .sidebar-card:hover::after,
  .course-facts div:hover::after,
  .metric-tile:hover::after {
    opacity: 1;
  }
}

.platform-card {
  min-height: 220px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 12px;
  height: 100%;
}

.platform-card span,
.process-step span,
.program-listing-card .program-label,
.course-facts span,
.data-table th {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-card h3,
.process-step h3,
.program-listing-card h3,
.contact-card h3 {
  margin-bottom: 0;
}

.platform-card p,
.process-step p,
.program-listing-card p,
.contact-card p,
.quote-panel p,
.course-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.process-step {
  min-height: 220px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 24px;
  height: 100%;
}

.process-step strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111114;
  background: linear-gradient(135deg, #ffd86b, var(--gold-strong));
  box-shadow: 0 14px 26px rgba(200, 138, 9, 0.20);
}

.process-step div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.process-step h3,
.process-step p {
  margin-bottom: 0;
}

.program-directory {
  align-items: stretch;
}

.program-listing-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.program-listing-card .course-stack {
  margin-top: auto;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(17, 17, 20, 0.06);
  font-weight: 900;
}

.mini-dashboard {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(245, 245, 247, 0.86);
}

.mini-dashboard.dark .dashboard-row {
  background: rgba(255, 255, 255, 0.07);
}

.dashboard-row strong {
  font-size: 0.94rem;
}

.dashboard-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 20, 0.08);
}

.mini-dashboard.dark .dashboard-bar {
  background: rgba(255, 255, 255, 0.14);
}

.dashboard-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-strong), var(--mint));
}

.course-hero {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  margin-bottom: var(--section-gap-tight);
  padding: 118px 0 clamp(42px, 5vh, 62px);
}

.course-hero h1 {
  margin-bottom: 18px;
}

.course-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  margin-top: clamp(26px, 3.4vw, 42px);
}

.course-facts div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.course-shell {
  width: min(calc(100% - 32px), var(--max));
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.32fr);
  gap: clamp(26px, 3vw, 42px);
  align-items: start;
  margin: 0 auto;
}

.course-copy {
  display: grid;
  gap: 0;
}

.syllabus-grid,
.data-table {
  border: 1px solid rgba(17, 17, 20, 0.09);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.module-list {
  display: grid;
}

.module-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 20px;
  border-top: 1px solid rgba(17, 17, 20, 0.08);
}

.module-list article:first-child {
  border-top: 0;
}

.module-list span {
  color: var(--gold);
  font-weight: 900;
}

.module-list p {
  margin-bottom: 0;
}

.course-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.sidebar-card {
  padding: 22px;
  border: 1px solid rgba(17, 17, 20, 0.09);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 55px rgba(20, 23, 31, 0.07);
}

.sidebar-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 18px;
  border-top: 1px solid rgba(17, 17, 20, 0.08);
  text-align: left;
  vertical-align: top;
}

.data-table tr:first-child th,
.data-table tr:first-child td {
  border-top: 0;
}

.site-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: var(--section-gap);
  padding: clamp(30px, 3vw, 42px);
}

.site-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.site-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.quote-panel {
  min-height: 280px;
  display: grid;
  align-content: space-between;
}

.quote-panel blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.32;
}

.contact-layout {
  align-items: start;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 22px;
}

.split-heading {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 34px;
}

.split-heading > p {
  justify-self: end;
  max-width: 460px;
  margin-bottom: 6px;
}

.premium-console {
  position: relative;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border-color: rgba(17, 17, 20, 0.10);
  background: #fff;
  box-shadow: 0 28px 90px rgba(20, 23, 31, 0.10);
}

.console-copy {
  padding: 36px;
}

.console-copy p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.console-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(17, 17, 20, 0.96), rgba(17, 17, 20, 0.86)),
    linear-gradient(180deg, #ffffff, #f5f5f7);
  color: #fff;
}

.console-card .course-search {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.console-card label span {
  color: rgba(255, 255, 255, 0.62);
}

.console-card input,
.console-card select {
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.95);
}

.console-card .button.dark {
  color: #111114;
  background: #fff;
}

.route-output {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(240, 179, 19, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(240, 179, 19, 0.16), rgba(45, 189, 145, 0.12));
}

.route-output span {
  color: #ffd86b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-output strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.route-output p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.program-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(34px, 4vw, 48px);
  border: 1px solid rgba(17, 17, 20, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(20, 23, 31, 0.06);
  overflow: hidden;
}

.program-overview div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
}

.program-overview div + div {
  border-left: 1px solid rgba(17, 17, 20, 0.08);
}

.program-overview span,
.program-card-top,
.course-modal-meta span,
.course-modal-stat span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-overview strong {
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
}

.program-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  overflow: hidden;
  border-color: rgba(17, 17, 20, 0.10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(240, 179, 19, 0.09), rgba(42, 109, 244, 0.06));
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--mint));
  opacity: 0.85;
}

.program-card.featured {
  color: #fff;
  background:
    linear-gradient(140deg, rgba(17, 17, 20, 0.98), rgba(17, 17, 20, 0.88)),
    linear-gradient(135deg, rgba(240, 179, 19, 0.18), rgba(42, 109, 244, 0.12));
}

.program-card.featured p,
.program-card.featured .program-outcomes span,
.program-card.featured .program-card-top,
.program-card.featured .course-stack span {
  color: rgba(255, 255, 255, 0.70);
}

.program-card h3 {
  margin-bottom: -4px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.program-card p {
  margin-bottom: 0;
}

.program-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.course-stack,
.program-outcomes,
.modal-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-stack span,
.modal-chip-list span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(245, 245, 247, 0.82);
  color: #1d2028;
  font-size: 0.78rem;
  font-weight: 900;
}

.program-card.featured .course-stack span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.program-outcomes {
  display: grid;
  margin-top: auto;
}

.program-outcomes span {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.program-outcomes span::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.program-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.program-actions button,
.program-card button {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.program-actions button:first-child {
  color: #111114;
  background: linear-gradient(135deg, #ffd86b, var(--gold-strong));
}

.program-actions .text-action {
  color: var(--ink);
  background: rgba(17, 17, 20, 0.06);
}

.program-card.featured .program-actions .text-action,
.program-card.featured .card-actions .text-action {
  color: #111114;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.program-card.featured .program-actions .text-action:hover,
.program-card.featured .card-actions .text-action:hover {
  background: #fff;
  transform: translateY(-1px);
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: stretch;
}

.ecosystem-panel {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 20, 0.10);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 70px rgba(20, 23, 31, 0.08);
}

.ecosystem-core {
  display: grid;
  align-content: center;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: #111114;
}

.ecosystem-core span {
  color: #ffd86b;
  font-weight: 900;
  text-transform: uppercase;
}

.ecosystem-core strong {
  font-size: 2rem;
  line-height: 1;
}

.ecosystem .domain-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ecosystem .domain-grid a {
  min-height: 66px;
  border-color: rgba(17, 17, 20, 0.08);
  box-shadow: none;
}

.premium-services .service-feature {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 26px;
  align-items: end;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(17, 17, 20, 0.98), rgba(17, 17, 20, 0.84)),
    linear-gradient(180deg, #24242a, #111114);
}

.service-feature-copy {
  display: grid;
  gap: 8px;
}

.service-feature h3 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 0.98;
}

.lab-window {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.lab-window span {
  color: #ffd86b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-window strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
}

.lab-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.lab-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-strong), var(--mint));
}

.lab-window ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lab-window li {
  color: rgba(255, 255, 255, 0.72);
}

.mini-service,
.value-card,
.placement-card,
.contact-form,
details {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 55px rgba(20, 23, 31, 0.07);
}

.mini-service {
  min-height: 162px;
  display: grid;
  align-content: center;
  border-left: 4px solid var(--gold);
}

.mini-service:nth-child(2) {
  border-left-color: var(--blue);
}

.mini-service:nth-child(3) {
  border-left-color: var(--mint);
}

.career-lab {
  background:
    linear-gradient(135deg, #111114, #1b1c22 52%, #101113);
}

.career-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.career-metrics div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.career-metrics strong {
  color: #ffd86b;
  font-size: 1.35rem;
  line-height: 1;
}

.career-metrics span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.learning-os .value-card {
  position: relative;
  min-height: 270px;
  display: grid;
  align-content: end;
  gap: 10px;
  overflow: hidden;
}

.value-card > span {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.value-card h3 {
  font-size: 1.45rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 28px;
  border: 1px solid rgba(17, 17, 20, 0.10);
  border-radius: var(--radius);
  background: #111114;
  overflow: hidden;
}

.proof-strip div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
}

.proof-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.proof-strip strong {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.company-carousel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 20, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.94)),
    radial-gradient(circle at 8% 0%, rgba(240, 179, 19, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 100%, rgba(42, 109, 244, 0.13), transparent 22rem);
  box-shadow: 0 26px 82px rgba(20, 23, 31, 0.10);
}

.company-carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(17, 17, 20, 0.08);
}

.company-carousel-head span {
  color: #9f6b08;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-carousel-head strong {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  text-align: right;
}

.company-marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0 22px;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.company-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-inline: clamp(34px, 4vw, 58px);
  animation: logoMarquee 34s linear infinite;
}

.company-carousel:hover .company-track {
  animation-play-state: paused;
}

.company-logo {
  --logo-accent-soft: rgba(17, 17, 20, 0.08);
  --logo-accent-strong: #111114;
  position: relative;
  min-width: 238px;
  min-height: 112px;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 8px;
  padding: 20px 24px 15px;
  border: 1px solid rgba(17, 17, 20, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.92));
  box-shadow:
    0 18px 44px rgba(20, 23, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.company-logo::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 0%, var(--logo-accent-soft), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 58%);
  opacity: 0.9;
}

.company-logo::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, var(--logo-accent-strong), transparent);
  opacity: 0.82;
}

.company-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 20, 0.18);
  box-shadow: 0 22px 52px rgba(20, 23, 31, 0.12);
}

.company-logo img {
  position: relative;
  z-index: 1;
  width: min(176px, 100%);
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(20, 23, 31, 0.08));
}

.company-logo span {
  position: relative;
  z-index: 1;
  color: rgba(41, 47, 58, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.company-logo.logo-tcs {
  --logo-accent-soft: rgba(101, 74, 205, 0.13);
  --logo-accent-strong: #522fb8;
}

.company-logo.logo-cognizant {
  --logo-accent-soft: rgba(0, 51, 160, 0.14);
  --logo-accent-strong: #0033a0;
}

.company-logo.logo-turing {
  --logo-accent-soft: rgba(89, 113, 244, 0.32);
  --logo-accent-strong: #5f7bff;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, #101116, #172033 54%, #21306c);
  box-shadow:
    0 22px 58px rgba(20, 23, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.company-logo.logo-turing span {
  color: rgba(255, 255, 255, 0.76);
}

.company-logo.logo-adp {
  --logo-accent-soft: rgba(215, 25, 32, 0.14);
  --logo-accent-strong: #d71920;
}

.company-logo.logo-mindtree {
  --logo-accent-soft: rgba(255, 94, 79, 0.16);
  --logo-accent-strong: #ff5e4f;
}

.company-logo.logo-mahindra {
  --logo-accent-soft: rgba(215, 25, 32, 0.14);
  --logo-accent-strong: #c4161c;
}

.company-logo.logo-infosys {
  --logo-accent-soft: rgba(0, 124, 195, 0.14);
  --logo-accent-strong: #007cc3;
}

.company-logo.logo-capgemini {
  --logo-accent-soft: rgba(0, 112, 173, 0.13);
  --logo-accent-strong: #0070ad;
}

.company-logo.logo-adp img,
.company-logo.logo-mindtree img {
  max-width: 142px;
}

.company-logo.logo-tcs img {
  max-width: 94px;
  max-height: 54px;
  filter: invert(25%) sepia(90%) saturate(1799%) hue-rotate(242deg) brightness(92%) contrast(92%);
}

.company-logo.logo-adp img {
  max-width: 78px;
  max-height: 54px;
  filter: invert(14%) sepia(97%) saturate(3749%) hue-rotate(348deg) brightness(94%) contrast(96%);
}

.company-logo.logo-mahindra img {
  max-width: 184px;
  max-height: 52px;
}

.company-logo.logo-capgemini img,
.company-logo.logo-infosys img {
  max-width: 188px;
}

.placement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.placement-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  grid-template-rows: 260px 1fr;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.92)),
    radial-gradient(circle at 18% 0%, rgba(240, 179, 19, 0.16), transparent 22rem);
  box-shadow: 0 24px 70px rgba(20, 23, 31, 0.10);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.placement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 48%),
    linear-gradient(90deg, var(--gold), var(--blue), var(--mint));
  background-size: 100% 100%, 100% 4px;
  background-repeat: no-repeat;
  background-position: 0 0, 0 0;
  opacity: 0.72;
}

.placement-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 17, 20, 0.14);
  box-shadow: 0 34px 90px rgba(20, 23, 31, 0.14);
}

.placement-photo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 16px 16px 0;
  border-radius: calc(var(--radius) - 6px);
  background: #f5f5f7;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 20, 0.08);
}

.placement-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
}

.placement-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px 22px;
}

.placement-company {
  width: 100%;
  max-width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(20, 23, 31, 0.06);
}

.placement-company img {
  width: 62px;
  max-height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.placement-company span {
  min-width: 0;
  color: rgba(20, 23, 31, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.18;
  text-transform: uppercase;
  white-space: normal;
}

.placement-company.accenture-badge img {
  width: 28px;
  filter: invert(16%) sepia(97%) saturate(5273%) hue-rotate(271deg) brightness(91%) contrast(104%);
}

.placement-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.24rem, 1.65vw, 1.65rem);
  line-height: 1.05;
}

.placement-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
}

.partner-strip span {
  min-height: 64px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(20, 23, 31, 0.05);
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(17, 17, 20, 0.98), rgba(17, 17, 20, 0.86)),
    linear-gradient(180deg, #24242a, #111114);
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-panel .contact-points span {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.70);
}

.contact-form {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.premium-faq details {
  overflow: hidden;
}

.premium-faq summary {
  min-height: 76px;
  padding-inline: 26px;
}

.premium-faq details[open] {
  border-color: rgba(200, 138, 9, 0.28);
}

.course-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.course-modal.is-open {
  display: flex;
}

.course-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(90vh, 860px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 110px rgba(17, 17, 20, 0.26);
  backdrop-filter: blur(20px);
}

.course-modal.is-open .course-modal-card {
  animation: modalLift 340ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.course-modal-hero {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  padding: 34px 34px 28px;
  color: #fff;
  background: #111114;
}

.course-modal-hero h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.course-modal-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.course-modal-stat {
  align-self: end;
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.course-modal-stat strong {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.12;
}

.course-modal-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(17, 17, 20, 0.08);
}

.course-modal-meta div {
  display: grid;
  gap: 5px;
  min-height: 94px;
  align-content: center;
  padding: 20px 34px;
}

.course-modal-meta div + div {
  border-left: 1px solid rgba(17, 17, 20, 0.08);
}

.course-modal-meta strong {
  font-size: 1.05rem;
}

.course-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 34px 10px;
}

.course-modal-grid section {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: var(--radius);
  background: #fbfbfd;
}

.course-modal-grid h3 {
  margin-bottom: 14px;
}

.course-modal-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.course-modal-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 34px 34px;
  border-top: 1px solid rgba(17, 17, 20, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  animation: revealIn 640ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.hero .reveal,
.page-hero .reveal,
.course-hero .reveal {
  --reveal-delay: 0ms !important;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-14px) rotateX(2deg) rotateY(-2deg);
  }
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalLift {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .nav-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
  }

  .site-nav {
    top: 92px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(17, 17, 20, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
  }

  .nav-cta {
    top: 392px;
    min-height: 52px;
  }

  body.menu-open .site-nav,
  body.menu-open .nav-cta {
    display: flex;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-grid,
  .quick-search,
  .service-layout,
  .career-lab,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .course-search {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .value-grid,
  .placement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 900px) and (max-height: 820px) {
  :root {
    --section-gap: 72px;
    --section-gap-tight: 48px;
  }

  .site-header {
    top: 12px;
    height: 64px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 0 30px;
  }

  h1 {
    max-width: 700px;
    font-size: clamp(3rem, 5.8vw, 5.45rem);
    line-height: 0.97;
  }

  .hero-text {
    max-width: 610px;
    line-height: 1.56;
  }

  .hero-visual {
    min-height: 430px;
  }

  .main-card {
    width: min(380px, 36vw);
  }

  .floating-card {
    padding: 16px 18px;
  }

  .subpage-main {
    padding-top: 92px;
  }

  .page-hero {
    min-height: calc(100svh - 92px);
    padding-block: 38px;
  }

  .course-hero {
    min-height: calc(100svh - 76px);
    display: grid;
    align-content: center;
    padding: 96px 0 38px;
  }

  .page-hero h1,
  .course-hero h1 {
    max-width: 720px;
    font-size: clamp(2.85rem, 4.8vw, 4.65rem);
    line-height: 0.99;
  }

  .page-lede {
    max-width: 590px;
  }

  .hero-panel,
  .mini-dashboard {
    padding: 18px;
  }

  .stat-grid div,
  .metric-tile,
  .course-facts div {
    min-height: 78px;
    padding: 14px;
  }

  .section-heading,
  .section-title-row,
  .filter-tabs {
    margin-bottom: 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --section-gap: clamp(56px, 14vw, 78px);
    --section-gap-tight: clamp(40px, 11vw, 58px);
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    height: 62px;
    grid-template-columns: minmax(0, 1fr) 44px;
    padding: 8px 10px;
  }

  .site-header.is-scrolled {
    top: 10px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.74rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    background: #111114;
    border-color: #111114;
  }

  .menu-toggle span {
    background: #fff;
  }

  .section-panel,
  .section-block,
  .quick-search,
  .site-footer {
    width: min(calc(100% - 20px), var(--max));
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-width: 0;
  }

  .hero-visual {
    min-height: 430px;
  }

  .main-card {
    width: min(330px, 86vw);
    border-radius: 24px;
  }

  .hero-logo {
    border-radius: 20px;
  }

  .floating-card {
    min-width: 118px;
    padding: 14px;
  }

  .card-one {
    right: 0;
    top: 32px;
  }

  .card-two {
    left: 0;
    bottom: 38px;
  }

  .orbit-one {
    width: 360px;
    height: 230px;
  }

  .orbit-two {
    width: 300px;
    height: 390px;
  }

  .quick-search,
  .career-lab,
  .contact-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .section-block {
    padding-top: var(--section-gap);
  }

  .section-block::before {
    top: calc(var(--section-gap) * 0.36);
    width: min(calc(100% - 20px), var(--max));
  }

  .section-heading,
  .filter-tabs {
    margin-bottom: 30px;
  }

  .program-grid,
  .value-grid,
  .placement-grid,
  .timeline,
  .domain-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
  }

  .service-feature {
    min-height: 420px;
    padding: 26px;
    border-radius: 22px;
  }

  .timeline div {
    min-height: 0;
  }

  .timeline span {
    margin-bottom: 26px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .company-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 1040px) {
  .page-hero-grid,
  .course-hero-grid,
  .contact-layout,
  .editorial-grid,
  .split-showcase,
  .course-shell,
  .split-heading,
  .premium-console,
  .ecosystem-layout,
  .ecosystem-panel,
  .premium-services .service-feature,
  .course-modal-hero,
  .course-modal-grid {
    grid-template-columns: 1fr;
  }

  .course-sidebar {
    position: static;
  }

  .split-heading > p {
    justify-self: start;
    max-width: 720px;
  }

  .feature-row,
  .platform-grid,
  .program-directory,
  .process-grid,
  .metric-row,
  .team-grid,
  .program-overview,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-overview div:nth-child(3) {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 20, 0.08);
  }

  .ecosystem-core {
    min-height: 160px;
  }

  .course-modal-stat {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .page-hero,
  .page-section,
  .course-hero,
  .course-shell,
  .site-cta {
    width: min(calc(100% - 20px), var(--max));
  }

  .page-hero-grid,
  .course-hero-grid,
  .contact-layout,
  .editorial-grid,
  .split-showcase,
  .course-shell,
  .page-hero-grid > *,
  .course-hero-grid > *,
  .contact-layout > *,
  .editorial-grid > *,
  .split-showcase > *,
  .course-shell > * {
    min-width: 0;
    max-width: 100%;
  }

  .subpage-main {
    padding-top: 88px;
  }

  .page-hero {
    min-height: auto;
    margin-bottom: var(--section-gap-tight);
    padding: 48px 0 42px;
  }

  .page-section::before {
    margin-bottom: 34px;
  }

  .section-title-row {
    margin-bottom: 32px;
  }

  .page-hero h1,
  .course-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .page-lede {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-hero .hero-actions,
  .course-hero .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel,
  .insight-panel,
  .mini-dashboard {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-panel-header {
    flex-direction: column;
    gap: 6px;
  }

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

  .dashboard-row {
    grid-template-columns: minmax(72px, 92px) minmax(0, 1fr);
  }

  .section-title-row,
  .site-cta {
    grid-template-columns: 1fr;
  }

  .console-copy,
  .console-card,
  .contact-form {
    padding: 22px;
  }

  .quick-search {
    margin-top: var(--section-gap-tight);
  }

  .program-card,
  .program-listing-card,
  .platform-card,
  .process-step,
  .contact-card,
  .quote-panel {
    min-height: auto;
    padding: 24px;
  }

  .course-hero {
    margin-bottom: var(--section-gap-tight);
    padding-bottom: 44px;
  }

  .course-facts {
    margin-top: 34px;
    gap: 12px;
  }

  .course-shell {
    gap: var(--section-gap-tight);
  }

  .site-cta {
    padding: 28px;
  }

  .feature-row,
  .platform-grid,
  .program-directory,
  .process-grid,
  .metric-row,
  .team-grid,
  .course-facts,
  .program-overview,
  .proof-strip,
  .career-metrics,
  .course-modal-meta {
    grid-template-columns: 1fr;
  }

  .program-overview div + div,
  .course-modal-meta div + div,
  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 20, 0.08);
  }

  .proof-strip div + div {
    border-top-color: rgba(255, 255, 255, 0.10);
  }

  .program-actions {
    grid-template-columns: 1fr;
  }

  .company-carousel-head {
    display: grid;
    align-items: start;
    gap: 6px;
    padding: 18px;
  }

  .company-carousel-head strong {
    text-align: left;
  }

  .company-marquee {
    padding: 14px 0 16px;
  }

  .company-logo {
    min-width: 196px;
    min-height: 98px;
    padding: 16px 18px 13px;
  }

  .company-logo img {
    max-width: 144px;
    max-height: 40px;
  }

  .company-logo span {
    font-size: 0.62rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9.5vw, 2.65rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.65rem, 7.8vw, 2.2rem);
    line-height: 1.04;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
  }

  .section-heading h2,
  .console-copy h2,
  .contact-copy h2 {
    max-width: 13ch;
  }

  .hero-copy,
  .hero-grid,
  .hero-visual,
  .console-copy,
  .section-heading {
    width: 100%;
    max-width: calc(100vw - 20px);
    min-width: 0;
  }

  .hero-text,
  .section-heading p,
  .console-copy p,
  .contact-copy p,
  .course-modal-hero p {
    max-width: min(100%, 32ch);
  }

  .card-one {
    display: none;
  }

  .floating-card {
    width: 112px;
    min-width: 0;
    max-width: 112px;
    padding: 12px;
  }

  .floating-card strong {
    font-size: 1.55rem;
  }

  .floating-card span {
    font-size: 0.74rem;
  }

  .program-actions .text-action {
    width: 100%;
  }

  .ecosystem-panel {
    padding: 12px;
  }

  .ecosystem .domain-grid {
    grid-template-columns: 1fr;
  }

  .premium-services .service-feature {
    min-height: auto;
  }

  .lab-window {
    padding: 18px;
  }

  .course-modal {
    padding: 10px;
  }

  .course-modal-card {
    width: calc(100vw - 20px);
    max-height: 94vh;
  }

  .course-modal-hero h2 {
    max-width: 12ch;
    font-size: 1.7rem;
  }

  .course-modal-hero,
  .course-modal-grid,
  .course-modal-meta div,
  .course-modal-actions {
    padding-inline: 20px;
  }

  .course-modal-actions {
    flex-direction: column;
  }

  .course-modal-actions .button {
    width: 100%;
  }

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

  .site-cta-actions {
    justify-content: flex-start;
  }
}
