:root {
  color-scheme: light;
  --site-bg: #ffffff;
  --site-bg-alt: #f5f5f7;
  --site-surface: #ffffff;
  --site-surface-muted: rgba(0, 0, 0, 0.03);
  --site-border: rgba(0, 0, 0, 0.12);
  --site-border-subtle: rgba(0, 0, 0, 0.08);
  --site-text: #1d1d1f;
  --site-text-2: #6e6e73;
  --site-muted: #86868b;
  --site-accent: #0071e3;
  --site-accent-hover: #0077ed;
  --site-danger: #d70015;
  --site-radius: 26px;
  --site-radius-sm: 18px;
  --site-shadow: 0 16px 50px rgba(0, 0, 0, 0.10);
  --site-shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.06), 0 12px 30px rgba(0, 0, 0, 0.06);
  --site-header-height: 64px;
  --site-brand-mark-size: 0px;
  --site-font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --site-font-serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--site-font-sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--site-bg);
  color: var(--site-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:not(.academy) {
  --site-header-height: 150px;
  --site-brand-mark-size: 150px;
  --site-bg: #fbfaf7;
  --site-bg-alt: #ffffff;
  --site-surface: #ffffff;
  --site-surface-muted: rgba(20, 20, 20, 0.03);
  --site-border: rgba(20, 20, 20, 0.16);
  --site-border-subtle: rgba(20, 20, 20, 0.10);
  --site-text: #141414;
  --site-text-2: rgba(20, 20, 20, 0.72);
  --site-muted: rgba(20, 20, 20, 0.56);
  --site-accent: #3D5BA0;
  --site-accent-hover: #2a4a90;
  --site-accent-green: #4A8A35;
  --site-accent-navy: #1B2345;
  --site-radius: 18px;
  --site-radius-sm: 14px;
  --site-shadow: 0 24px 64px rgba(0, 0, 0, 0.10);
  --site-shadow-soft: 0 14px 46px rgba(0, 0, 0, 0.08);
  font-size: 18px;
}

body.academy {
  background: var(--site-bg);
  font-family: var(--site-font-sans);
}

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

* {
  box-sizing: border-box;
}

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

.btn {
  appearance: none;
  border: 1px solid var(--site-border-subtle);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.03);
  color: var(--site-text);
  box-shadow: none;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

body:not(.academy) .btn {
  background: transparent;
  border-color: var(--site-border);
  padding: 11px 22px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 8px;
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.35);
  outline-offset: 2px;
}

body:not(.academy) .btn:focus-visible {
  outline-color: rgba(20, 20, 20, 0.22);
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.14);
}

.btn:active {
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.06);
}

.btn-primary {
  background: var(--site-accent);
  border-color: var(--site-accent);
  color: #ffffff;
}

body:not(.academy) .btn-primary {
  background: var(--site-accent);
  border-color: var(--site-accent);
  color: #ffffff;
}

body:not(.academy) .btn-primary:hover {
  background: var(--site-accent-hover);
  border-color: var(--site-accent-hover);
}

.btn-primary:hover {
  background: var(--site-accent-hover);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.03);
}

body:not(.academy) .btn-secondary {
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--site-header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--site-border-subtle);
  backdrop-filter: blur(12px);
}

body:not(.academy) .site-header {
  background: #1B2345;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
}

body:not(.academy) .site-header::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: var(--site-brand-mark-size);
  height: var(--site-brand-mark-size);
  border-radius: 999px;
  background: url("./ludodidactiek-patch.png") center / cover no-repeat;
  box-shadow: var(--site-shadow-soft);
}

.site-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body:not(.academy) .site-header__inner {
  padding-left: calc(var(--site-brand-mark-size) + 18px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--site-border-subtle);
  background: rgba(0, 0, 0, 0.03);
}

.site-nav__links a {
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: var(--site-text-2);
}

.site-nav__links a:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.35);
  outline-offset: 2px;
}

body:not(.academy) .site-nav__links {
  padding: 0;
  gap: 18px;
  border: 0;
  background: transparent;
}

body:not(.academy) .site-nav__links a {
  padding: 6px 0;
  border-radius: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: 1px solid transparent;
  color: rgba(255, 255, 255, 0.68);
}

body:not(.academy) .site-nav__links a:hover,
body:not(.academy) .site-nav__links a:focus-visible {
  color: #ffffff;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.38);
  outline: none;
}

body:not(.academy) .site-nav__links a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.3);
  outline-offset: 4px;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  color: var(--site-text);
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--site-border-subtle);
  background: rgba(0, 0, 0, 0.03);
}

body:not(.academy) .site-lang {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

body:not(.academy) .site-header .site-brand {
  color: rgba(255, 255, 255, 0.95);
}

body:not(.academy) .site-header .site-lang-btn {
  color: rgba(255, 255, 255, 0.65);
}

body:not(.academy) .site-header .site-lang-btn.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.site-lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--site-text-2);
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

body:not(.academy) .site-lang-btn {
  text-transform: uppercase;
}

.site-lang-btn.is-active {
  background: rgba(0, 0, 0, 0.08);
  color: var(--site-text);
  box-shadow: none;
}

.site-menu-btn {
  display: none;
}

.site-menu-panel {
  display: none;
}

.site-main {
  padding: 28px 0 56px;
  background: var(--site-bg);
}

.hero {
  padding: 22px 0 20px;
}

body:not(.academy) .hero h1,
body:not(.academy) .section h2,
body:not(.academy) .card h3,
body:not(.academy) .feature h3,
body:not(.academy) .profile-name {
  font-family: var(--site-font-sans);
}

body:not(.academy) .hero {
  padding: clamp(28px, 5.2vw, 48px) 0 clamp(18px, 3.6vw, 34px);
}

body:not(.academy) .hero h1 {
  letter-spacing: -0.025em;
  line-height: 1.02;
}

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

.hero__grid--with-media {
  align-items: center;
}

.hero__media {
  display: flex;
  justify-content: flex-end;
}

.hero__patch {
  width: min(220px, 32vw);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.18));
}

.hero h1 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.hero p {
  margin: 10px 0 0;
  font-size: 1em;
  line-height: 1.5;
  color: var(--site-text-2);
  max-width: 62ch;
}

.hero p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--site-border);
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.surface {
  border-radius: var(--site-radius);
  border: 1px solid var(--site-border-subtle);
  background: var(--site-bg-alt);
  box-shadow: var(--site-shadow-soft);
}

body:not(.academy) .surface {
  background: var(--site-surface);
  box-shadow: none;
}

.section {
  margin-top: 18px;
  padding: clamp(18px, 3.4vw, 34px);
}

.section h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

body:not(.academy) .section {
  margin-top: 22px;
  padding: clamp(22px, 4.4vw, 42px);
}

body:not(.academy) .section h2 {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 650;
  letter-spacing: -0.015em;
}

.section .lead {
  margin: 0;
  color: var(--site-text-2);
  font-size: 1em;
  line-height: 1.5;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--site-border-subtle);
  background: #ffffff;
  font-weight: 800;
  font-size: 12px;
  color: var(--site-text-2);
}

body:not(.academy) .chip {
  background: transparent;
}

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

.card {
  padding: 14px;
  border-radius: var(--site-radius-sm);
  border: 1px solid var(--site-border-subtle);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
}

body:not(.academy) .card {
  padding: 18px;
  box-shadow: none;
}

.card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

body:not(.academy) .card h3 {
  font-weight: 650;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--site-text-2);
  font-size: 1em;
  line-height: 1.5;
}

.card .card__actions {
  margin-top: auto;
}

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

.profile-card {
  padding: 16px;
  border-radius: var(--site-radius-sm);
  border: 1px solid var(--site-border-subtle);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body:not(.academy) .profile-card {
  padding: 18px;
  box-shadow: none;
}

.profile-photo {
  width: clamp(104px, 18vw, 132px);
  height: clamp(104px, 18vw, 132px);
  border-radius: 999px;
  border: 1px solid var(--site-border-subtle);
  object-fit: cover;
  align-self: center;
  background: #ffffff;
}

.profile-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--site-text-2);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.02));
}

.profile-photo--zoom {
  transform: scale(1.06);
}

.profile-photo-stack {
  align-self: center;
  display: grid;
  place-items: center;
}

.profile-photo-stack > .profile-photo {
  grid-area: 1 / 1;
}

.profile-name {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
}

body:not(.academy) .profile-name {
  font-weight: 650;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.profile-role {
  align-self: center;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--site-border-subtle);
  background: rgba(0, 0, 0, 0.03);
  font-weight: 800;
  font-size: 12px;
  color: var(--site-text-2);
}

.profile-patches {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-patches:empty {
  display: none;
}

.profile-patch {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 1px solid var(--site-border-subtle);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.03);
}

.profile-patch--honorary {
  width: 72px;
  height: 72px;
}

.profile-bio {
  margin: 0;
  color: var(--site-text-2);
  font-size: 0.875em;
  line-height: 1.55;
}

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

.feature {
  padding: 14px;
  border-radius: var(--site-radius-sm);
  border: 1px solid var(--site-border-subtle);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

body:not(.academy) .feature {
  padding: 18px;
  box-shadow: none;
}

.feature h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.feature p {
  margin: 10px 0 0;
  color: var(--site-text-2);
  font-size: 1em;
  line-height: 1.5;
}

.feature ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--site-text-2);
  font-size: 1em;
}

.feature .feature__actions {
  margin-top: 12px;
}

.pullquote {
  margin-top: 14px;
  border-radius: var(--site-radius-sm);
  border: 1px solid var(--site-border-subtle);
  background: #ffffff;
  padding: 14px;
}

.pullquote p {
  margin: 0;
  font-size: 1em;
  line-height: 1.55;
  color: var(--site-text-2);
}

.book-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.book-callout__actions {
  margin-top: 14px;
}

.book-callout__media {
  display: flex;
  justify-content: flex-end;
}

.book-callout__image {
  width: min(240px, 32vw);
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--site-border-subtle);
  box-shadow: var(--site-shadow-soft);
  background: rgba(0, 0, 0, 0.03);
}

.site-footer {
  border-top: 1px solid var(--site-border-subtle);
  padding: 28px 0 36px;
  background: var(--site-bg-alt);
}

body:not(.academy) .site-footer {
  background: #1B2345;
  border-top-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

body:not(.academy) .footer-tagline {
  color: rgba(255, 255, 255, 0.5);
}

body:not(.academy) .footer-col h4 {
  color: rgba(255, 255, 255, 0.88);
}

body:not(.academy) .footer-col a {
  color: rgba(255, 255, 255, 0.5);
}

body:not(.academy) .footer-col a:hover,
body:not(.academy) .footer-col a:focus-visible {
  color: rgba(255, 255, 255, 0.9);
}

body:not(.academy) .footer-fineprint {
  color: rgba(255, 255, 255, 0.32);
}

body:not(.academy) .site-footer .site-brand {
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.footer-tagline {
  color: var(--site-text-2);
  font-size: 0.9em;
  line-height: 1.5;
  margin-top: 8px;
}

.footer-col h4 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
}

.footer-col a {
  display: block;
  color: var(--site-text-2);
  font-size: 0.9em;
  padding: 4px 0;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--site-text);
  outline: none;
}

.footer-fineprint {
  margin-top: 18px;
  color: var(--site-muted);
  font-size: 0.85em;
}

.footer-book-cover {
  display: block;
  width: 64px;
  height: auto;
  border-radius: 5px;
  margin-top: 8px;
  opacity: 0.88;
  transition: opacity 120ms ease;
}

.footer-book-cover:hover {
  opacity: 1;
}

.footer-book-meta {
  margin: 8px 0 6px;
  font-size: 0.82em;
  color: rgba(255, 255, 255, 0.44);
  line-height: 1.45;
}

body:not(.academy) .footer-col a.footer-book-order {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.2);
}

body:not(.academy) .footer-col a.footer-book-order:hover {
  color: rgba(255, 255, 255, 0.88);
}

/* Motto — italic serif subtitle under the headline */
.hero__motto {
  margin: 10px 0 0;
  font-size: 1.05em;
  font-family: var(--site-font-sans);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--site-text-2);
  line-height: 1.4;
}

/* Dark pullquote island — full surface, no wrapper padding waste */
body:not(.academy) .section:has(.pullquote):not(:has(h2)) {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

body:not(.academy) .pullquote {
  background: #1B2345;
  border: none;
  border-radius: var(--site-radius);
  padding: clamp(28px, 4.5vw, 52px) clamp(32px, 5vw, 60px);
}

body:not(.academy) .pullquote p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1em, 2.2vw, 1.45em);
  line-height: 1.55;
  font-style: italic;
  font-family: var(--site-font-sans);
  letter-spacing: -0.01em;
  margin: 0;
}

/* Feature card accent borders */
body:not(.academy) .feature-grid .feature {
  border-top-width: 3px;
  border-top-color: var(--site-accent);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

body:not(.academy) .feature-grid .feature:last-child {
  border-top-color: var(--site-accent-green);
}

/* Members teaser banner */
.members-banner,
body:not(.academy) .members-banner {
  background: #1B2345;
  border-color: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.members-banner h2,
body:not(.academy) .members-banner h2 {
  color: #ffffff;
  margin: 0 0 6px;
}

.members-banner p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.5;
  max-width: 54ch;
}

.members-banner__actions {
  flex-shrink: 0;
}

.members-banner .btn-primary {
  background: var(--site-accent-green);
  border-color: var(--site-accent-green);
  color: #ffffff;
}

.members-banner .btn-primary:hover {
  background: #3d7a2c;
  border-color: #3d7a2c;
}

/* Case story layout */
.case-story {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.case-story__text p {
  margin: 0 0 14px;
  font-size: 1em;
  line-height: 1.6;
}

.case-story__text p:last-child {
  margin-bottom: 0;
}

.case-story__aside {
  padding: clamp(16px, 2.4vw, 24px);
  border-radius: var(--site-radius-sm);
  border: 1px solid var(--site-border-subtle);
  background: var(--site-bg);
}

.case-story__label {
  margin: 0 0 12px;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.case-story__pillars {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--site-text-2);
  font-size: 0.95em;
  line-height: 1.6;
}

.case-story__pillars li {
  margin-bottom: 6px;
}

.case-story__context {
  margin: 0;
  font-size: 0.85em;
  color: var(--site-muted);
  line-height: 1.5;
  border-top: 1px solid var(--site-border-subtle);
  padding-top: 12px;
}

/* Start grid — 3 cards */
.start-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.start-card {
  padding: clamp(16px, 2.4vw, 24px);
  border-radius: var(--site-radius-sm);
  border: 1px solid var(--site-border-subtle);
  background: var(--site-bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.start-card h3 {
  margin: 0;
  font-size: 17px;
  font-family: var(--site-font-sans);
  font-weight: 650;
  letter-spacing: -0.01em;
}

.start-card p {
  margin: 0;
  color: var(--site-text-2);
  font-size: 0.95em;
  line-height: 1.55;
  flex: 1;
}

.start-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 960px) {
  .case-story {
    grid-template-columns: 1fr;
  }

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

/* Academy: prevent tool topbar from acting as global fixed header */
.academy .topbar {
  position: relative;
}

.academy-tool {
  padding: 10px 0 0;
}

@media (max-width: 960px) {
  body:not(.academy) {
    --site-header-height: 92px;
    --site-brand-mark-size: 92px;
  }

  .book-callout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .book-callout__media {
    justify-content: center;
  }

  .book-callout__actions {
    display: flex;
    justify-content: center;
  }

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

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

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

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

  .site-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--site-border-subtle);
    background: rgba(0, 0, 0, 0.03);
    color: var(--site-text);
    cursor: pointer;
  }

  body:not(.academy) .site-menu-btn {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.9);
  }

  .site-nav__links {
    display: none;
  }

  .site-menu-panel {
    display: block;
    position: fixed;
    inset: var(--site-header-height) 0 auto 0;
    padding: 14px 18px 18px;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--site-border-subtle);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  body:not(.academy) .site-menu-panel {
    background: rgba(27, 35, 69, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  body:not(.academy) .site-menu-panel a {
    color: rgba(255, 255, 255, 0.72);
  }

  body:not(.academy) .site-menu-panel a:hover,
  body:not(.academy) .site-menu-panel a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  .site-menu-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-menu-panel a {
    display: block;
    padding: 12px 10px;
    border-radius: 12px;
    font-weight: 900;
    color: var(--site-text-2);
  }

  .site-menu-panel a:hover,
  .site-menu-panel a:focus-visible {
    background: rgba(0, 0, 0, 0.04);
    color: var(--site-text);
    outline: none;
  }
}

@media (min-width: 960px) {
  .hero__grid--with-media {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
  }
}

@media (max-width: 640px) {
  body:not(.academy) {
    --site-header-height: 76px;
    --site-brand-mark-size: 76px;
  }

  .hero__media {
    justify-content: center;
  }

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

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .site-menu-panel {
    transition: none;
  }
}
