:root {
  --bg: #fff9fb;
  --panel: #ffffff;
  --soft: #fce9ef;
  --text: #231f20;
  --muted: #5d5859;
  --accent: #ef4e42;
  --accent-dark: #d93f34;
  --line: #ecdce2;
  --shadow: 0 14px 28px rgba(205, 102, 102, 0.12);
  --headline-font: "Benzin-Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --display-title-size: clamp(1.4rem, 3vw, 2.3rem);
  --site-accent-rgb: 239, 78, 66;
  --site-warm-rgb: 255, 196, 120;
  --site-cool-rgb: 111, 171, 255;
  --site-glow-x: 50vw;
  --site-glow-y: 22vh;
  --site-pointer-glow: 0;
  --site-scroll-glow: 0.24;
  --site-scroll-shift: 0px;
}

@font-face {
  font-family: "Benzin-Bold";
  src: local("Benzin-Bold"), local("Benzin Bold"), url("Benzin-Bold.woff2") format("woff2"),
    url("Benzin-Bold.otf") format("opentype"), url("Benzin-Bold.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0 0, #ffe8d1 0%, transparent 35%),
    radial-gradient(circle at 100% 100%, #ffe3ea 0%, transparent 32%), var(--bg);
  line-height: 1.45;
}

img {
  max-width: 100%;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle 18rem at var(--site-glow-x) var(--site-glow-y),
      rgba(var(--site-accent-rgb), calc(0.18 * var(--site-pointer-glow))) 0%,
      rgba(var(--site-warm-rgb), calc(0.14 * var(--site-pointer-glow))) 22%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      circle 34rem at 14% calc(10% + var(--site-scroll-shift)),
      rgba(var(--site-accent-rgb), calc(0.08 + var(--site-scroll-glow) * 0.12)) 0%,
      rgba(var(--site-warm-rgb), calc(0.06 + var(--site-scroll-glow) * 0.08)) 26%,
      rgba(255, 255, 255, 0) 72%
    ),
    radial-gradient(
      circle 30rem at 88% calc(88% - var(--site-scroll-shift)),
      rgba(var(--site-cool-rgb), calc(0.05 + var(--site-scroll-glow) * 0.08)) 0%,
      rgba(255, 255, 255, 0) 72%
    );
  filter: blur(28px) saturate(114%);
  opacity: 1;
  transform: translateZ(0);
  will-change: background, filter;
}

.page-shell > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 249, 251, 0.94);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 10px 24px rgba(35, 31, 32, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

main {
  padding-top: 6.2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-img {
  display: block;
  width: clamp(76px, 8vw, 116px);
  height: auto;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-nav a,
.top-nav button {
  border: 1px solid transparent;
  background: transparent;
  font: inherit;
  cursor: pointer;
  padding: 0.56rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.top-nav a:hover,
.top-nav button:hover {
  border-color: var(--line);
  background: #fff;
}

.menu-btn {
  border-color: var(--accent) !important;
  color: var(--accent);
}

.caret {
  font-size: 0.63rem;
  vertical-align: middle;
}

.section-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2.7vw, 2.4rem);
  margin-bottom: 1.2rem;
}

.soft-bg {
  background: var(--soft);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
  gap: 1.4rem;
}

.hero.section-card {
  padding-right: 0;
}

.hero-content .eyebrow {
  margin: 0 0 0.95rem;
  text-transform: uppercase;
  color: #ef4e42;
  letter-spacing: 0.09em;
  font-weight: 800;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: var(--headline-font);
}

h1 {
  font-size: var(--display-title-size);
  text-transform: uppercase;
  max-width: 16ch;
}

.hero-content h1 .accent-word {
  color: #ef4e42 !important;
  -webkit-text-fill-color: #ef4e42 !important;
}

.hero-content p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 58ch;
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pill-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  padding: 0.58rem 1.3rem;
  transition: 0.2s ease;
}

.pill-btn:hover {
  transform: translateY(-1px);
  border-color: #cfc4c7;
}

.pill-btn.accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pill-btn.accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero-visual {
  border-radius: 0;
  overflow: visible;
  background: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-image {
  display: block;
  width: min(640px, 120%);
  max-width: none;
  height: auto;
}

.hero-progress {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(560px, 84%);
  margin-top: 0.45rem;
}

.hero-progress-label {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.45;
}

.hero-progress-track {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f7e6eb 0%, #f1d9e1 100%);
  border: 2px solid #e4c8d1;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(160, 88, 108, 0.16), 0 6px 12px rgba(205, 102, 102, 0.08);
}

.hero-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ef4e42 0%, #ff5a49 100%);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  transition: width 0.14s linear;
}

.hero-sun {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffbf2f;
  position: absolute;
  top: 1.1rem;
  left: 1.5rem;
}

.hero-ground {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -20%;
  height: 50%;
  background: #1f2430;
  border-radius: 50%;
}

.hero-city {
  position: absolute;
  bottom: 4.3rem;
  right: 2rem;
  width: 170px;
  height: 74px;
  border-radius: 12px;
  background: repeating-linear-gradient(
      90deg,
      #d8cbc4 0 22px,
      #c5b6ac 22px 28px
    ),
    linear-gradient(#d8cbc4, #d8cbc4);
}

.hero-figure {
  position: absolute;
  width: 28px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(#1e1e1e 0 42%, #ef4e42 42% 100%);
  bottom: 5rem;
}

.hero-figure.one {
  left: 46%;
  transform: rotate(-18deg);
}

.hero-figure.two {
  left: 56%;
  background: linear-gradient(#1e1e1e 0 42%, #ffca3a 42% 100%);
  transform: rotate(14deg);
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  font-size: var(--display-title-size);
  text-transform: uppercase;
}

.section-heading h2 span {
  color: var(--accent);
}

.section-heading p {
  margin: 0.45rem auto 0;
  color: var(--muted);
  max-width: 62ch;
}

.about {
  background: #f2f2f4;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.95fr);
  gap: 1.3rem 2rem;
  align-items: start;
}

.about-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 3rem);
  text-transform: uppercase;
  line-height: 0.92;
}

.about-title-rest {
  color: var(--accent);
}

.about-letter-o {
  color: var(--accent);
  line-height: 1;
}

.about-lead {
  margin: 0;
  max-width: 100%;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted);
}

.about-top-visual {
  justify-self: end;
  width: min(100%, 660px);
}

.about-top-visual--compact {
  position: relative;
  isolation: isolate;
  justify-self: start;
  width: min(100%, 346px);
  margin-left: clamp(3rem, 6vw, 5rem);
}

.about-top-visual--compact::before {
  content: "";
  position: absolute;
  inset: 14% 12% 12% 16%;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 55%,
    rgba(38, 98, 204, 0.14) 0%,
    rgba(255, 197, 52, 0.12) 42%,
    rgba(255, 255, 255, 0) 74%
  );
  filter: blur(20px);
  opacity: 0.72;
  z-index: 0;
  pointer-events: none;
  animation: about-book-aura 8.8s ease-in-out infinite;
}

.about-top-image {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  transform-origin: 56% 62%;
  filter: drop-shadow(0 16px 26px rgba(26, 41, 74, 0.18));
  will-change: transform, filter;
  animation: about-book-float 8.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.about-avatar-large {
  --illustration-float-duration: 9.8s;
  --illustration-float-delay: -1.1s;
  --illustration-shadow-color: rgba(104, 64, 31, 0.18);
  position: relative;
  isolation: isolate;
  width: min(100%, 384px);
  border-radius: 50%;
  overflow: hidden;
  justify-self: start;
  align-self: end;
}

.about-avatar-large::before {
  content: "";
  position: absolute;
  inset: auto 12% 10% 12%;
  height: 24%;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 199, 63, 0.28) 0%,
    rgba(255, 160, 84, 0.16) 40%,
    rgba(255, 255, 255, 0) 72%
  );
  filter: blur(20px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
  animation: illustration-aura var(--illustration-float-duration) ease-in-out infinite;
  animation-delay: var(--illustration-float-delay);
}

.about-avatar-image {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  transform-origin: 52% 72%;
  filter: drop-shadow(0 16px 24px var(--illustration-shadow-color));
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, filter;
  animation: illustration-float var(--illustration-float-duration)
    cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: var(--illustration-float-delay);
}

.about-main-text {
  width: min(100%, 460px);
  max-width: none;
  align-self: end;
  margin-bottom: 1.2rem;
}

.about-main-text p {
  margin: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted);
}

.about-main-text p + p {
  margin-top: 1rem;
}

.about .accent {
  color: var(--accent);
}

@keyframes about-book-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.3deg) scale(1);
    filter: drop-shadow(0 16px 26px rgba(26, 41, 74, 0.18));
  }

  25% {
    transform: translate3d(8px, -10px, 0) rotate(-0.1deg) scale(1.01);
    filter: drop-shadow(0 20px 30px rgba(26, 41, 74, 0.2));
  }

  50% {
    transform: translate3d(-3px, -16px, 0) rotate(1.05deg) scale(1.025);
    filter: drop-shadow(0 24px 34px rgba(26, 41, 74, 0.22));
  }

  75% {
    transform: translate3d(-10px, -7px, 0) rotate(0.15deg) scale(1.008);
    filter: drop-shadow(0 19px 28px rgba(26, 41, 74, 0.19));
  }
}

@keyframes about-book-aura {
  0%,
  100% {
    transform: translate3d(0, 12px, 0) scale(0.94);
    opacity: 0.5;
  }

  50% {
    transform: translate3d(0, -3px, 0) scale(1.05);
    opacity: 0.78;
  }
}

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

.role-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  min-height: 220px;
  transition: 0.2s ease;
}

.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(165, 96, 96, 0.18);
}

.role-icon {
  display: inline-flex;
  width: 3.2rem;
  height: 3.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.role-school .role-icon {
  background: #bdebf3;
}

.role-university .role-icon {
  background: #ffd8a4;
}

.role-company .role-icon {
  background: #bed6ff;
}

.role-card h3 {
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.role-card p {
  margin: 0;
  color: var(--muted);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.workflow-card {
  border: 1px solid #efdae2;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1rem 2.15rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: 0.2s ease;
}

.workflow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(165, 96, 96, 0.18);
}

.workflow-card h3 {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.1;
  height: 2.4em;
  margin: 0;
  color: var(--accent);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.workflow-card::after {
  content: attr(data-step);
  position: absolute;
  right: 0.85rem;
  bottom: 0.65rem;
  color: var(--accent);
  font-family: var(--headline-font);
  font-size: 1.15rem;
  line-height: 1;
  transform-origin: right bottom;
  transition: transform 0.2s ease;
}

.workflow-card:hover::after {
  transform: scale(1.25);
}

.workflow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.link-btn {
  margin-top: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.9rem;
}

.fit-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}

.fit-card h3 {
  text-transform: uppercase;
  margin: 0;
  color: var(--accent);
}

.fit-card p,
.fit-card li {
  margin: 0;
  color: var(--muted);
}

.fit-card.light {
  background: #fff6f8;
}

.fit-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.fit-card li + li {
  margin-top: 0.5rem;
}

.fit-animated-list li {
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.fit-animated-list li.is-pop {
  transform: scale(1.06);
}

.btn-row.compact {
  margin-top: 0;
}

.attention-btn {
  position: relative;
  animation: attention-glow 2.8s ease-in-out infinite;
}

@keyframes attention-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(239, 78, 66, 0), 0 0 0 rgba(239, 78, 66, 0);
  }
  38% {
    box-shadow: 0 0 0 4px rgba(239, 78, 66, 0.2), 0 0 16px rgba(239, 78, 66, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --site-pointer-glow: 0;
    --site-scroll-glow: 0.16;
    --site-scroll-shift: 0px;
  }

  .page-shell::before {
    opacity: 0.45;
    filter: blur(18px) saturate(105%);
  }

  .attention-btn {
    animation: none;
  }

  .cta h2 .cta-accent.is-bounce-drop {
    animation: none;
  }

  .about-top-visual--compact::before,
  .about-top-image {
    animation: none;
  }

  .about-avatar-large::before,
  .about-avatar-image,
  .schools-hero-visual::before,
  .schools-hero-visual img,
  .schools-join-visual::before,
  .schools-join-visual img,
  .universities-hero-visual::before,
  .universities-hero-visual img,
  .universities-join-visual::before,
  .universities-join-visual img,
  .employers-hero-visual::before,
  .employers-hero-visual img,
  .employers-join-visual::before,
  .employers-join-visual img {
    animation: none;
  }
}

.fit-card .link-btn {
  margin-top: 0;
  align-self: flex-start;
}

.partners-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.partners-window {
  overflow: hidden;
}

.partners-track {
  --partners-visible: 3;
  --partners-gap: 0.9rem;
  display: flex;
  gap: var(--partners-gap);
  transition: transform 0.42s ease;
  will-change: transform;
}

.partner-card {
  flex: 0 0
    calc((100% - (var(--partners-gap) * (var(--partners-visible) - 1))) / var(--partners-visible));
  border: 1px solid #ebd0d9;
  border-radius: 18px;
  background: #fff;
  padding: 1rem;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.partner-logo-slot {
  width: 100%;
  min-height: 84px;
  border: none;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8f8185;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.partner-logo-slot img {
  display: block;
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-card h3 {
  color: #4e65cc;
  margin: 0;
  text-transform: uppercase;
  font-family: var(--headline-font);
  font-size: 1.18rem;
  line-height: 1.05;
  width: 100%;
  text-align: center;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  width: 100%;
  text-align: center;
}

.partners-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e2ced6;
  background: #fff;
  color: var(--accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.26rem;
  line-height: 1;
  box-shadow: 0 6px 12px rgba(205, 102, 102, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    opacity 0.2s ease;
}

.partners-arrow:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: #d6b9c3;
  box-shadow: 0 10px 18px rgba(205, 102, 102, 0.18);
}

.partners-arrow:disabled {
  opacity: 0.42;
  cursor: default;
  box-shadow: none;
}

.cta {
  text-align: center;
  background: linear-gradient(120deg, #ffebd8, #ffe6ed 70%);
}

.cta h2 {
  text-transform: uppercase;
  font-size: var(--display-title-size);
  max-width: 27ch;
  margin: 0 auto;
}

.cta h2 .cta-accent {
  color: var(--accent);
  display: inline-block;
}

.cta h2 .cta-accent.is-bounce-drop {
  animation: cta-word-bounce-drop 760ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes cta-word-bounce-drop {
  0% {
    transform: translateY(-16px) scale(0.95);
    opacity: 0.15;
  }
  34% {
    transform: translateY(8px) scale(1.03);
    opacity: 1;
  }
  56% {
    transform: translateY(-6px) scale(1);
  }
  76% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.cta p {
  margin: 0.7rem auto 0;
  max-width: 64ch;
  color: var(--muted);
}

.cta .btn-row {
  justify-content: center;
}

.schools-main {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.schools-main .section-card {
  margin-bottom: 0;
}

.schools-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.schools-hero-copy .schools-eyebrow {
  margin: 0 0 0.95rem;
  text-transform: uppercase;
  color: #ef4e42;
  letter-spacing: 0.09em;
  font-weight: 800;
  font-size: 0.8rem;
}

.schools-hero-copy h1 {
  font-size: var(--display-title-size);
  text-transform: uppercase;
  max-width: 16ch;
}

.schools-hero-copy h1 span {
  color: var(--accent);
}

.schools-hero-copy p:not(.schools-eyebrow) {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 58ch;
}

.schools-hero-visual {
  --illustration-float-duration: 10.4s;
  --illustration-float-delay: -1.2s;
  --illustration-shadow-color: rgba(61, 72, 118, 0.18);
  position: relative;
  isolation: isolate;
  border: none;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: visible;
}

.schools-hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 12% 10% 12%;
  height: 24%;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 196, 74, 0.22) 0%,
    rgba(233, 108, 142, 0.12) 42%,
    rgba(255, 255, 255, 0) 76%
  );
  filter: blur(22px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
  animation: illustration-aura var(--illustration-float-duration) ease-in-out infinite;
  animation-delay: var(--illustration-float-delay);
}

.schools-hero-visual img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform-origin: 52% 70%;
  filter: drop-shadow(0 20px 30px var(--illustration-shadow-color));
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, filter;
  animation: illustration-float var(--illustration-float-duration)
    cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: var(--illustration-float-delay);
}

.schools-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.schools-why .section-heading p {
  margin-top: 0.7rem;
  max-width: 78ch;
}

.schools-why .schools-why-accent {
  color: var(--accent);
}

.schools-info-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.2s ease;
}

.schools-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(165, 96, 96, 0.18);
}

.schools-info-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}

.schools-info-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.schools-info-card:hover img {
  transform: scale(1.08);
}

.schools-info-card h3 {
  margin: 1.05rem 0 0;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 1rem;
  width: 100%;
  text-align: center;
}

.schools-info-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  width: 100%;
  text-align: center;
}

.schools-info-footer {
  width: 100%;
  margin-top: auto;
  padding-top: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.schools-info-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.32rem 0.72rem;
  transition: 0.2s ease;
}

.schools-info-more:hover {
  border-color: #d9bec8;
  color: #3c3738;
}

.schools-info-tag {
  display: inline-block;
  color: var(--accent);
  font-family: var(--headline-font);
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.02em;
  transform-origin: right bottom;
  transition: transform 0.2s ease;
}

.schools-info-card:hover .schools-info-tag {
  transform: scale(1.25);
}

.schools-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.schools-program-bar {
  position: relative;
  width: 100%;
  margin-top: 0.9rem;
  padding-top: 1.25rem;
}

.schools-program-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0.62rem;
  height: 2px;
  background: #231f20;
}

.schools-program-dot {
  position: absolute;
  top: 0.62rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--panel);
  transform: translate(-50%, -50%);
}

.schools-program-dot.dot-1 {
  left: 16.6667%;
}

.schools-program-dot.dot-2 {
  left: 50%;
}

.schools-program-dot.dot-3 {
  left: 83.3333%;
}

.schools-program-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0.62rem;
}

.schools-program-step {
  padding: 0 0.8rem;
  text-align: center;
}

.schools-program-step h3 {
  margin: 0;
  color: var(--accent);
  font-family: var(--headline-font);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.schools-program-step p {
  margin: 0.62rem 0 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.schools-module-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.85rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.schools-module-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 14px 28px rgba(165, 96, 96, 0.18);
}

.schools-module-title {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.schools-module-card img {
  width: 100%;
  margin-top: 0.55rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}

.schools-module-card h3 {
  margin: 0.7rem 0 0;
  text-transform: uppercase;
  font-size: 1rem;
}

.schools-module-card p:last-child {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.schools-outcomes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 0.8rem;
  align-items: stretch;
  height: var(--schools-outcomes-height, auto);
  transition: height 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.schools-outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-self: start;
}

.schools-outcome-card {
  border: 1px solid #ebd0d9;
  border-radius: 14px;
  padding: 0.9rem;
  background: #fff;
  overflow: hidden;
  transition: transform 0.48s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.48s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.schools-outcome-card:hover {
  transform: translateY(-2px);
  border-color: #d9bec8;
  box-shadow: 0 14px 28px rgba(165, 96, 96, 0.14);
}

.schools-outcome-card h3 {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.96rem;
}

.schools-outcome-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  height: var(--schools-outcome-collapsed-height, calc(1.45em * 2));
  overflow: hidden;
  transition: height 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.schools-outcome-card:hover p {
  height: var(--schools-outcome-expanded-height, calc(1.45em * 2));
}

.schools-outcomes-photo-slot {
  border: 1px dashed #ddc1cb;
  border-radius: 14px;
  background: #fffafb;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
  transition: height 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.schools-outcomes-photo-slot span {
  color: #8f8185;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.schools-outcomes-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.schools-students-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.schools-students .section-heading h2 span {
  display: block;
  margin-top: 0.1em;
}

.schools-student-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.schools-student-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(165, 96, 96, 0.18);
}

.schools-student-card h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.96rem;
}

.schools-student-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.schools-join-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
  align-items: center;
}

.schools-join .section-heading p {
  margin-left: 0;
  margin-right: 0;
}

.schools-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.schools-form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.schools-form span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.schools-form input,
.schools-form textarea {
  width: 100%;
  border: 1px solid #e1d4d9;
  border-radius: 10px;
  background: #fffbfc;
  color: var(--text);
  padding: 0.58rem 0.68rem;
  font: inherit;
  font-size: 0.92rem;
}

.schools-form textarea {
  resize: vertical;
  min-height: 84px;
}

.schools-form input:focus,
.schools-form textarea:focus {
  outline: none;
  border-color: #d9aebc;
  box-shadow: 0 0 0 3px rgba(239, 78, 66, 0.12);
}

.schools-form .pill-btn {
  margin-top: 0.45rem;
  align-self: flex-start;
}

.schools-join-visual {
  --illustration-float-duration: 10.6s;
  --illustration-float-delay: -0.8s;
  --illustration-shadow-color: rgba(61, 72, 118, 0.16);
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, #fff6e9 0%, #ffeef3 100%);
  padding: 0.65rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.schools-join-visual::before {
  content: "";
  position: absolute;
  inset: auto 12% 8% 12%;
  height: 28%;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 196, 74, 0.24) 0%,
    rgba(233, 108, 142, 0.14) 42%,
    rgba(255, 255, 255, 0) 76%
  );
  filter: blur(20px);
  opacity: 0.68;
  z-index: 0;
  pointer-events: none;
  animation: illustration-aura var(--illustration-float-duration) ease-in-out infinite;
  animation-delay: var(--illustration-float-delay);
}

.schools-join-visual img {
  display: block;
  position: relative;
  z-index: 1;
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
  transform-origin: 52% 74%;
  filter: drop-shadow(0 16px 24px var(--illustration-shadow-color));
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, filter;
  animation: illustration-float var(--illustration-float-duration)
    cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: var(--illustration-float-delay);
}

.universities-main {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.universities-main .section-card {
  margin-bottom: 0;
}

.universities-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.universities-eyebrow {
  margin: 0 0 0.95rem;
  text-transform: uppercase;
  color: #ef4e42;
  letter-spacing: 0.09em;
  font-weight: 800;
  font-size: 0.8rem;
}

.universities-hero-copy h1 {
  font-size: var(--display-title-size);
  text-transform: uppercase;
  max-width: 16ch;
}

.universities-hero-copy h1 span {
  color: var(--accent);
}

.universities-hero-copy p:not(.universities-eyebrow) {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.universities-hero-visual {
  --illustration-float-duration: 10.8s;
  --illustration-float-delay: -2.1s;
  --illustration-shadow-color: rgba(64, 88, 133, 0.18);
  position: relative;
  isolation: isolate;
  border: none;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: visible;
}

.universities-hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 12% 10% 12%;
  height: 24%;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 203, 83, 0.2) 0%,
    rgba(120, 175, 255, 0.12) 44%,
    rgba(255, 255, 255, 0) 76%
  );
  filter: blur(22px);
  opacity: 0.68;
  z-index: 0;
  pointer-events: none;
  animation: illustration-aura var(--illustration-float-duration) ease-in-out infinite;
  animation-delay: var(--illustration-float-delay);
}

.universities-hero-visual img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform-origin: 52% 70%;
  filter: drop-shadow(0 20px 30px var(--illustration-shadow-color));
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, filter;
  animation: illustration-float var(--illustration-float-duration)
    cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: var(--illustration-float-delay);
}

.universities-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.universities-step-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem 0.9rem 2.2rem;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.universities-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(165, 96, 96, 0.18);
}

.universities-step-card::after {
  content: attr(data-step);
  position: absolute;
  right: 0.9rem;
  bottom: 0.62rem;
  color: var(--accent);
  font-family: var(--headline-font);
  font-size: 1.18rem;
  line-height: 1;
  transform-origin: right bottom;
  transition: transform 0.22s ease;
}

.universities-step-card:hover::after {
  transform: translateY(-3px) scale(1.24);
}

.universities-step-card h3 {
  margin: 0;
  color: #222126;
  text-transform: uppercase;
  font-size: 0.98rem;
}

.universities-step-card p:last-child {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.universities-stories .schools-info-card {
  align-items: flex-start;
}

.universities-stories .universities-stories-black {
  color: var(--text);
}

.universities-stories .schools-info-card h3,
.universities-stories .schools-info-card p {
  text-align: left;
}

.universities-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.universities-benefit-card {
  border: 1px solid #ebd0d9;
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.universities-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(165, 96, 96, 0.16);
}

.universities-benefit-card h3 {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.universities-benefit-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.universities-roadmap .section-heading h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.universities-join-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
  align-items: center;
}

.universities-join .section-heading p {
  margin-left: 0;
  margin-right: 0;
}

.universities-join-visual {
  --illustration-float-duration: 10.9s;
  --illustration-float-delay: -1.9s;
  --illustration-shadow-color: rgba(64, 88, 133, 0.16);
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, #fff6e9 0%, #ffeef3 100%);
  padding: 0.65rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.universities-join-visual::before {
  content: "";
  position: absolute;
  inset: auto 12% 8% 12%;
  height: 28%;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 203, 83, 0.22) 0%,
    rgba(120, 175, 255, 0.13) 44%,
    rgba(255, 255, 255, 0) 76%
  );
  filter: blur(20px);
  opacity: 0.68;
  z-index: 0;
  pointer-events: none;
  animation: illustration-aura var(--illustration-float-duration) ease-in-out infinite;
  animation-delay: var(--illustration-float-delay);
}

.universities-join-visual img {
  display: block;
  position: relative;
  z-index: 1;
  width: min(384px, 100%);
  height: auto;
  object-fit: contain;
  transform-origin: 52% 74%;
  filter: drop-shadow(0 16px 24px var(--illustration-shadow-color));
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, filter;
  animation: illustration-float var(--illustration-float-duration)
    cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: var(--illustration-float-delay);
}

.employers-main {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.employers-main .section-card {
  margin-bottom: 0;
}

.employers-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.employers-eyebrow {
  margin: 0 0 0.95rem;
  text-transform: uppercase;
  color: #ef4e42;
  letter-spacing: 0.09em;
  font-weight: 800;
  font-size: 0.8rem;
}

.employers-hero-copy h1 {
  font-size: var(--display-title-size);
  text-transform: uppercase;
  max-width: 16ch;
}

.employers-hero-copy h1 span {
  color: var(--accent);
}

.employers-hero-copy p:not(.employers-eyebrow) {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 58ch;
}

.employers-hero-visual {
  --illustration-float-duration: 11.1s;
  --illustration-float-delay: -0.7s;
  --illustration-shadow-color: rgba(62, 82, 126, 0.17);
  position: relative;
  isolation: isolate;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
}

.employers-hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 12% 10% 12%;
  height: 24%;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 201, 73, 0.22) 0%,
    rgba(255, 128, 104, 0.12) 42%,
    rgba(255, 255, 255, 0) 76%
  );
  filter: blur(22px);
  opacity: 0.68;
  z-index: 0;
  pointer-events: none;
  animation: illustration-aura var(--illustration-float-duration) ease-in-out infinite;
  animation-delay: var(--illustration-float-delay);
}

.employers-hero-visual img {
  display: block;
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  height: auto;
  object-fit: contain;
  transform-origin: 52% 70%;
  filter: drop-shadow(0 20px 30px var(--illustration-shadow-color));
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, filter;
  animation: illustration-float var(--illustration-float-duration)
    cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: var(--illustration-float-delay);
}

.employers-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.employers-step-card {
  border: 1px solid #ebd0d9;
  border-radius: 16px;
  background: #fff;
  padding: 0.95rem;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.employers-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(165, 96, 96, 0.18);
}

.employers-step-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #ef4e42;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-family: var(--headline-font);
  font-size: 0.95rem;
  line-height: 1;
  transform-origin: center;
  transition: transform 0.22s ease;
}

.employers-step-card:hover .employers-step-badge {
  transform: scale(1.2);
}

.employers-step-card h3 {
  margin: 0.62rem 0 0;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.98rem;
}

.employers-step-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.employers-specialists-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.employers-specialist-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
}

.employers-specialist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.employers-specialist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 18, 0.1) 15%, rgba(20, 17, 18, 0.74) 100%);
}

.employers-specialist-content {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
}

.employers-specialist-content h3 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.96rem;
}

.employers-specialist-content p {
  margin: 0.44rem 0 0;
  color: #f3eaed;
  font-size: 0.88rem;
  line-height: 1.42;
}

.employers-specialist-card:hover img {
  transform: scale(1.08);
}

.employers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.employers-benefit-card {
  border: 1px solid #ebd0d9;
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem;
}

.employers-benefit-card h3 {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.employers-benefit-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.employers-benefits-media {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.employers-benefits-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #e7d6dd;
}

.employers-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.employers-solution-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.employers-solution-copy {
  padding: 0.9rem;
}

.employers-solution-copy h3 {
  margin: 0;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.96rem;
}

.employers-solution-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.employers-solution-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-top: 1px solid #e7d6dd;
}

.employers-join-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
  align-items: center;
}

.employers-join .section-heading p {
  margin-left: 0;
  margin-right: 0;
}

.employers-join-visual {
  --illustration-float-duration: 11.2s;
  --illustration-float-delay: -0.5s;
  --illustration-shadow-color: rgba(62, 82, 126, 0.15);
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, #fff6e9 0%, #ffeef3 100%);
  padding: 0.65rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.employers-join-visual::before {
  content: "";
  position: absolute;
  inset: auto 12% 8% 12%;
  height: 28%;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 201, 73, 0.24) 0%,
    rgba(255, 128, 104, 0.14) 42%,
    rgba(255, 255, 255, 0) 76%
  );
  filter: blur(20px);
  opacity: 0.68;
  z-index: 0;
  pointer-events: none;
  animation: illustration-aura var(--illustration-float-duration) ease-in-out infinite;
  animation-delay: var(--illustration-float-delay);
}

.employers-join-visual img {
  display: block;
  position: relative;
  z-index: 1;
  width: min(384px, 100%);
  height: auto;
  object-fit: contain;
  transform-origin: 52% 74%;
  filter: drop-shadow(0 16px 24px var(--illustration-shadow-color));
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, filter;
  animation: illustration-float var(--illustration-float-duration)
    cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: var(--illustration-float-delay);
}

@keyframes illustration-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg) scale(1);
    filter: drop-shadow(0 16px 24px var(--illustration-shadow-color, rgba(48, 62, 94, 0.16)));
  }

  25% {
    transform: translate3d(10px, -11px, 0) rotate(-0.15deg) scale(1.018);
    filter: drop-shadow(0 21px 30px var(--illustration-shadow-color, rgba(48, 62, 94, 0.17)));
  }

  50% {
    transform: translate3d(-5px, -20px, 0) rotate(1deg) scale(1.034);
    filter: drop-shadow(0 26px 36px var(--illustration-shadow-color, rgba(48, 62, 94, 0.2)));
  }

  75% {
    transform: translate3d(-12px, -8px, 0) rotate(0.2deg) scale(1.012);
    filter: drop-shadow(0 20px 29px var(--illustration-shadow-color, rgba(48, 62, 94, 0.17)));
  }
}

@keyframes illustration-aura {
  0%,
  100% {
    transform: translate3d(0, 11px, 0) scale(0.93);
    opacity: 0.46;
  }

  50% {
    transform: translate3d(0, -5px, 0) scale(1.08);
    opacity: 0.8;
  }
}

.site-footer {
  padding: 0.3rem 0 1rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.footer-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.47rem 0.86rem;
  font-size: 0.88rem;
}

.footer-nav a:hover {
  border-color: var(--line);
  background: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.legal-links a {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.85rem;
}

.toast {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 30px);
  background: #1f1b1d;
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
  font-size: 0.88rem;
  z-index: 20;
}

.toast.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.site-header,
.section-card,
.schools-form,
.footer-nav a,
.legal-links a {
  transition: box-shadow 0.38s ease, border-color 0.38s ease, background-color 0.38s ease,
    transform 0.38s ease;
}

.site-header:hover {
  border-color: #e6c7d1;
  box-shadow: 0 12px 28px rgba(35, 31, 32, 0.08), 0 0 28px rgba(255, 195, 132, 0.22);
}

.section-card:hover {
  border-color: #e7c8d2;
  box-shadow: 0 18px 36px rgba(205, 102, 102, 0.14), 0 0 34px rgba(255, 196, 136, 0.18);
}

.top-nav a:hover,
.top-nav button:hover,
.footer-nav a:hover,
.legal-links a:hover,
.pill-btn:hover,
.partners-arrow:hover:not(:disabled),
.schools-info-more:hover {
  box-shadow: 0 10px 24px rgba(205, 102, 102, 0.14), 0 0 22px rgba(255, 196, 120, 0.2);
}

.role-card:hover,
.partner-card:hover,
.schools-info-card:hover,
.schools-module-card:hover,
.schools-outcome-card:hover,
.universities-step-card:hover,
.universities-benefit-card:hover,
.employers-step-card:hover,
.employers-benefit-card:hover,
.employers-solution-card:hover {
  border-color: #e3c0ca;
  box-shadow: 0 16px 30px rgba(205, 102, 102, 0.18), 0 0 28px rgba(255, 196, 120, 0.18);
}

.schools-form:hover,
.schools-form:focus-within {
  border-color: #e3c0ca;
  box-shadow: 0 16px 30px rgba(205, 102, 102, 0.12), 0 0 26px rgba(255, 196, 120, 0.14);
}

@media (max-width: 1020px) {
  .hero,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-top-visual,
  .about-avatar-large {
    justify-self: start;
    width: min(100%, 336px);
  }

  .schools-hero-visual,
  .universities-hero-visual,
  .employers-hero-visual,
  .schools-join-visual,
  .universities-join-visual,
  .employers-join-visual {
    justify-self: center;
    margin-inline: auto;
  }

  .about-top-visual--compact {
    width: min(100%, 218px);
    margin-left: 0;
  }

  .about-main-text {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero.section-card {
    padding-right: clamp(1.2rem, 2.7vw, 2.4rem);
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
  }

  .hero-progress {
    width: min(560px, 92%);
    margin-top: 0.75rem;
  }

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

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

  .partners-track {
    --partners-visible: 2;
  }

  .schools-hero-grid,
  .schools-join-grid,
  .universities-hero-grid,
  .universities-join-grid,
  .employers-hero-grid,
  .employers-join-grid {
    grid-template-columns: 1fr;
  }

  .schools-why-grid,
  .schools-module-grid,
  .schools-students-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .universities-steps-grid,
  .universities-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .employers-steps-grid,
  .employers-specialists-grid,
  .employers-benefits-grid,
  .employers-benefits-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .employers-solutions-grid {
    grid-template-columns: 1fr;
  }

  .schools-program-steps {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 0.9rem;
  }

  .schools-program-bar::before,
  .schools-program-dot {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, calc(100% - 1rem));
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 0.72rem 0.8rem;
  }

  main {
    padding-top: 7.6rem;
  }

  .top-nav {
    justify-content: flex-start;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.12rem;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a,
  .top-nav button {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.52rem 0.78rem;
    font-size: 0.84rem;
  }

  .section-card {
    padding: 1rem;
    border-radius: 20px;
  }

  h1,
  .section-heading h2,
  .cta h2 {
    overflow-wrap: anywhere;
  }

  .hero-content h1,
  .schools-hero-copy h1,
  .universities-hero-copy h1,
  .employers-hero-copy h1 {
    font-size: clamp(1.2rem, 8vw, 1.9rem);
  }

  .role-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .partners-track {
    --partners-visible: 1;
  }

  .partners-carousel {
    grid-template-columns: 36px 1fr 36px;
    gap: 0.5rem;
  }

  .partners-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.02rem;
  }

  .hero,
  .schools-hero-grid,
  .universities-hero-grid,
  .employers-hero-grid,
  .schools-join-grid,
  .universities-join-grid,
  .employers-join-grid {
    gap: 1rem;
  }

  .hero-visual,
  .schools-hero-visual,
  .universities-hero-visual,
  .employers-hero-visual {
    justify-content: center;
  }

  .hero-image {
    width: min(100%, 420px);
  }

  .hero-progress {
    width: 100%;
  }

  .about-layout {
    gap: 0.9rem;
  }

  .about-top-visual,
  .about-avatar-large {
    justify-self: center;
  }

  .schools-hero-copy h1 {
    max-width: 100%;
  }

  .universities-hero-copy h1 {
    max-width: 100%;
  }

  .employers-hero-copy h1 {
    max-width: 100%;
  }

  .about-top-visual--compact {
    width: min(100%, 179px);
  }

  .about-avatar-large {
    width: min(100%, 224px);
  }

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

  .workflow-card {
    min-height: auto;
    padding: 0.9rem 0.9rem 1.9rem;
    gap: 0.75rem;
  }

  .workflow-card h3 {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    text-align: left;
  }

  .fit-card {
    padding: 1rem;
  }

  .partner-card {
    min-height: auto;
    padding: 0.9rem;
  }

  .partner-card h3 {
    font-size: 1rem;
  }

  .partner-card p {
    font-size: 0.9rem;
  }

  .schools-why-grid,
  .schools-module-grid,
  .schools-students-grid {
    grid-template-columns: 1fr;
  }

  .universities-steps-grid,
  .universities-benefits-grid {
    grid-template-columns: 1fr;
  }

  .employers-steps-grid,
  .employers-specialists-grid,
  .employers-benefits-grid,
  .employers-benefits-media,
  .employers-solutions-grid {
    grid-template-columns: 1fr;
  }

  .schools-outcomes-layout {
    grid-template-columns: 1fr;
    height: auto;
    transition: none;
  }

  .schools-outcomes-photo-slot {
    padding: 0.8rem;
    min-height: 180px;
    height: auto;
  }

  .schools-outcomes-photo-slot img {
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }

  .schools-outcome-card p {
    height: auto;
    overflow: visible;
    transition: none;
  }

  .schools-info-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .schools-info-more {
    width: 100%;
  }

  .schools-info-tag {
    align-self: flex-start;
  }

  .schools-program-step {
    padding: 0;
  }

  .schools-form {
    padding: 0.85rem;
  }

  .schools-form input,
  .schools-form textarea {
    font-size: 16px;
  }

  .schools-form .pill-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-self: stretch;
  }

  .schools-join-visual img,
  .universities-join-visual img,
  .employers-join-visual img {
    width: min(260px, 100%);
  }

  .universities-join-visual img {
    width: min(312px, 100%);
  }

  .employers-join-visual img {
    width: min(312px, 100%);
  }

  .employers-specialist-card {
    min-height: 260px;
  }

  .about-title {
    font-size: clamp(1.35rem, 8vw, 2.1rem);
  }

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

  .footer-bottom {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .footer-bottom p {
    text-align: center;
  }

  .legal-links {
    width: 100%;
  }

  .legal-links a {
    flex: 1 1 140px;
    text-align: center;
  }

  .toast {
    width: min(calc(100% - 1rem), 420px);
    border-radius: 18px;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1120px, calc(100% - 0.75rem));
  }

  .site-header {
    padding: 0.65rem;
  }

  .logo-img {
    width: 72px;
  }

  main {
    padding-top: 7rem;
  }

  .section-card {
    padding: 0.85rem;
    border-radius: 18px;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .pill-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }

  .hero-content .eyebrow,
  .schools-eyebrow,
  .universities-eyebrow,
  .employers-eyebrow {
    font-size: 0.72rem;
  }

  .hero-content h1,
  .schools-hero-copy h1,
  .universities-hero-copy h1,
  .employers-hero-copy h1 {
    font-size: clamp(1.05rem, 9vw, 1.5rem);
  }

  .section-heading h2,
  .cta h2 {
    font-size: clamp(1.05rem, 9vw, 1.45rem);
  }

  .about-title {
    font-size: clamp(1.15rem, 10vw, 1.65rem);
  }

  .hero-image {
    width: min(100%, 320px);
  }

  .about-top-visual--compact,
  .about-avatar-large {
    width: min(100%, 147px);
  }

  .partner-card {
    padding: 0.8rem;
  }

  .partner-logo-slot {
    min-height: 72px;
  }

  .partner-logo-slot img {
    max-height: 60px;
  }

  .partners-carousel {
    grid-template-columns: 32px 1fr 32px;
    gap: 0.4rem;
  }

  .partners-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.92rem;
  }

  .schools-info-card p,
  .schools-module-card p:last-child,
  .schools-outcome-card p,
  .schools-student-card p,
  .universities-step-card p:last-child,
  .universities-benefit-card p,
  .employers-step-card p,
  .employers-benefit-card p,
  .employers-solution-copy p,
  .partner-card p {
    font-size: 0.88rem;
  }

  .schools-outcomes-photo-slot {
    min-height: 140px;
  }

  .employers-specialist-card {
    min-height: 220px;
  }

  .footer-nav a,
  .legal-links a {
    width: 100%;
  }
}
