:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9e0e8;
  --paper: #f8fafc;
  --white: #ffffff;
  --blue: #1457ff;
  --blue-dark: #0736a8;
  --green: #0f9f7a;
  --coral: #ff684a;
  --gold: #c58b16;
  --shadow: 0 18px 45px rgba(17, 24, 39, .12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  background: rgba(17, 24, 39, .78);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 74px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 8px 24px rgba(20, 87, 255, .35);
}

.brand-name {
  display: grid;
  line-height: 1.05;
}

.brand-name small {
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  color: var(--white);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(20, 87, 255, .22);
}

.button:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .35);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #111827 url("hero-main.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 12, 24, .86), rgba(7, 12, 24, .62) 48%, rgba(7, 12, 24, .28));
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 150px 22px 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #b7f4e0;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: 74px;
  line-height: .95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 21px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.section-actions-spaced {
  margin-top: 30px;
}

.hero-proof {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .2);
}

.hero-proof div {
  padding: 18px;
  background: rgba(17, 24, 39, .55);
}

.hero-proof strong {
  display: block;
  font-size: 24px;
}

.hero-proof span {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.section {
  padding: 94px 22px;
}

.section.alt {
  background: var(--paper);
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-text {
  max-width: 740px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.section-text + .section-text {
  margin-top: 14px;
}

.section a:not(.button):not(.text-link) {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.dark .section-text {
  color: rgba(255, 255, 255, .78);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.program-grid,
.proof-grid,
.ecosystem-grid {
  margin-top: 38px;
}

.system-grid {
  margin-top: 34px;
}

.system-card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(20, 87, 255, .08), rgba(255, 255, 255, 0) 42%),
    var(--white);
  box-shadow: 0 12px 26px rgba(17, 24, 39, .06);
}

.system-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.system-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.1;
}

.system-card p,
.system-card li {
  color: var(--muted);
}

.system-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
}

.card.pad {
  padding: 28px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

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

.card ul {
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--muted);
}

.card li {
  margin: 8px 0;
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-card .pad {
  padding: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #e8f0ff;
  font-size: 13px;
  font-weight: 850;
}

.method {
  margin-top: 42px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.method-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  border-bottom: 0;
}

.timeline b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.timeline h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote {
  padding: 30px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--white);
}

.quote p {
  color: var(--ink);
  font-size: 19px;
}

.quote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.visual-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.visual-stack img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-stack img:nth-child(2) {
  margin-top: 34px;
}

.list-clean {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  color: var(--muted);
}

.list-clean li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 3px;
  background: var(--green);
}

.faq {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 19px;
}

.faq p {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  padding: 62px;
  border-radius: 8px;
  background: linear-gradient(135deg, #13213f, #0f6e62);
  color: var(--white);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 52px;
  line-height: 1;
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
}

.page-hero {
  padding: 150px 22px 76px;
  color: var(--white);
  background: var(--ink);
}

.page-hero .wrap {
  max-width: var(--max);
}

.page-hero h1 {
  max-width: 880px;
  font-size: 64px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .8);
  font-size: 20px;
}

.standalone-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 30px;
  align-items: start;
}

.contact-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.ops-panel {
  display: grid;
  gap: 12px;
}

.ops-row {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
}

.ops-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1.1;
}

.ops-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.loop-map {
  display: grid;
  gap: 10px;
}

.loop-map div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.loop-map b {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.loop-map span {
  color: var(--white);
  font-weight: 900;
}

.loop-map p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.site-footer {
  padding: 48px 22px;
  color: rgba(255, 255, 255, .75);
  background: #0b1220;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-title {
  color: var(--white);
  font-weight: 850;
}

.footer-legal {
  max-width: var(--max);
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: 13px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 22px 24px;
    background: rgba(17, 24, 39, .97);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .button {
    width: 100%;
  }

  .hero-proof,
  .grid.three,
  .grid.four,
  .method,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .visual-stack img {
    height: 210px;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0 18px;
  }

  .hero-inner {
    padding: 118px 22px 46px;
    padding-bottom: 46px;
  }

  .hero {
    min-height: 0;
    background-position: 58% center;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .hero-lead,
  .section-text {
    font-size: 17px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 28px;
  }

  .hero-proof div {
    padding: 16px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .section {
    padding: 68px 18px;
  }

  .cta-band {
    padding: 34px 24px;
  }

  .visual-stack {
    grid-template-columns: 1fr;
  }

.visual-stack img:nth-child(2) {
    margin-top: 0;
  }
}


.nav-links a.active { color: var(--white); }
.sub-hero { padding: 148px 22px 78px; color: var(--white); background: linear-gradient(135deg, #111827, #1457ff 58%, #0f9f7a); }
.sub-hero h1 { max-width: 940px; margin-bottom: 22px; font-size: 68px; line-height: .96; }
.metric-grid { margin-top: 34px; }
.metric-grid article { min-height: 190px; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.metric-grid b { display: block; margin-bottom: 22px; color: var(--blue); font-size: 28px; }
.metric-grid h3 { margin-bottom: 8px; font-size: 22px; }
.metric-grid p { color: var(--muted); }
.program-card { display: flex; flex-direction: column; }
.program-card .text-link { margin-top: auto; padding-top: 20px; font-weight: 850; color: var(--blue-dark); text-decoration: none; }
.comparison { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--line); }
.comparison > div { padding: 28px; background: var(--white); }
.comparison h3 { margin-bottom: 8px; font-size: 22px; }
.comparison p { margin-bottom: 0; color: var(--muted); }
.comparison,
.value-stack,
.academy-card {
  backdrop-filter: saturate(120%);
}
.timeline.wide { max-width: 900px; }
.button.full { width: 100%; margin-top: 20px; }
.footer { padding: 58px 22px; color: rgba(255,255,255,.78); background: #0b1220; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; }
.footer .brand { color: var(--white); }
.footer p { max-width: 420px; }
.footer h3 { color: var(--white); font-size: 16px; }
.footer a:not(.brand) { display: block; margin: 8px 0; color: rgba(255,255,255,.78); text-decoration: none; }
@media (max-width: 900px) {
  .grid.four, .grid.three, .grid.two, .comparison, .footer-grid { grid-template-columns: 1fr; }
  .sub-hero { padding-top: 118px; }
}

.academy-header {
  background: rgba(9, 15, 27, .94);
}

.academy-nav {
  min-height: 74px;
}

.academy-links {
  gap: 18px;
}

.academy-ribbon {
  display: flex;
  justify-content: center;
  gap: 1px;
  padding: 0 18px 12px;
  overflow-x: auto;
}

.academy-ribbon a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.moon-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #09111f;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 24, .94), rgba(7, 12, 24, .72) 44%, rgba(7, 12, 24, .26)),
    url("/assets/hero-main.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.moon-hero-content {
  position: relative;
  padding: 185px 22px 72px;
}

.moon-hero h1 {
  max-width: 980px;
  font-size: 86px;
  line-height: .88;
}

.academy-proof {
  max-width: 980px;
}

.theme-band {
  background: #f4f8ff;
}

.theme-grid,
.pricing-grid,
.process-grid,
.proof-wall,
.application-grid,
.visual-grid {
  display: grid;
  gap: 18px;
}

.theme-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.visual-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
  margin-top: 34px;
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.visual-card.big {
  grid-row: span 2;
}

.visual-card.solo {
  max-width: 520px;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-card.big img {
  aspect-ratio: 4 / 5;
}

.visual-card div {
  padding: 24px;
}

.visual-card h3 {
  font-size: 26px;
}

.visual-card p {
  color: var(--muted);
}

.specialization-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.specialization-marquee span {
  display: inline-flex;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
}

.theme-tile,
.academy-card,
.price-card,
.process-card,
.case-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(17, 24, 39, .07);
}

.theme-tile {
  min-height: 220px;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(135deg, #102445, #1457ff 58%, #0f9f7a);
}

.theme-tile h2 {
  font-size: 30px;
  line-height: .98;
}

.theme-tile p {
  color: rgba(255, 255, 255, .82);
}

.academy-card {
  padding: 30px;
}

.academy-card h3 {
  font-size: 25px;
  line-height: 1.05;
}

.academy-card p,
.academy-card li {
  color: var(--muted);
}

.article-stack {
  display: grid;
  gap: 18px;
}

.article-note {
  box-shadow: none;
}

.article-note h2 {
  max-width: 900px;
  font-size: 34px;
  line-height: 1.05;
}

.article-note p {
  max-width: 920px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.wolf-panel {
  padding: 36px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 104, 74, .16), rgba(15, 159, 122, .2)),
    #0b1220;
  box-shadow: var(--shadow);
}

.wolf-panel h3 {
  font-size: 34px;
  line-height: 1;
}

.wolf-panel p {
  color: rgba(255, 255, 255, .78);
}

.standards-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.standards-panel h3 {
  font-size: 30px;
  line-height: 1;
}

.resource-card {
  min-height: 250px;
}

.dark-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.dark-card span {
  display: block;
  margin-bottom: 22px;
  color: #b7f4e0;
  font-weight: 950;
  font-size: 28px;
}

.dark-card p {
  color: rgba(255, 255, 255, .78);
}

.quote-stack {
  display: grid;
  gap: 18px;
}

.cta-section {
  background: linear-gradient(135deg, #eaf2ff, #f7fff9);
}

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

.price-card {
  padding: 34px;
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, #101a2e, #1457ff);
  transform: translateY(-16px);
}

.price-card.featured p {
  color: rgba(255, 255, 255, .82);
}

.price-card strong {
  display: block;
  margin: 22px 0;
  font-size: 34px;
  line-height: 1;
}

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

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

.process-card {
  padding: 26px;
}

.process-card b,
.application-grid b {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 28px;
}

.process-card h2,
.application-grid h2 {
  font-size: 22px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.process-card p,
.application-grid p,
.case-card p {
  color: var(--muted);
}

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

.case-card {
  padding: 30px;
}

.case-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #e8f0ff;
  font-weight: 900;
}

.value-stack {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.value-stack div {
  padding: 22px;
  background: var(--white);
}

.value-stack span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.value-stack strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.05;
}

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

.module-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(17, 24, 39, .07);
}

.module-grid b {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-size: 14px;
  text-transform: uppercase;
}

.module-grid h3 {
  font-size: 25px;
}

.module-grid p {
  color: var(--muted);
}

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

.application-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.team-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(20, 87, 255, .08), rgba(255, 255, 255, 0) 48%),
    var(--white);
  box-shadow: 0 16px 40px rgba(17, 24, 39, .07);
}

.team-card h2 {
  color: var(--blue-dark);
  font-size: 14px;
  text-transform: uppercase;
}

.team-card h3 {
  font-size: 25px;
}

.team-card p {
  color: var(--muted);
}

.offer-hero,
.call-hero {
  background: linear-gradient(135deg, #0b1220, #153fa8 62%, #0f9f7a);
}

.academy-faq {
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .academy-ribbon {
    justify-content: flex-start;
  }

  .theme-grid,
  .visual-grid,
  .pricing-grid,
  .process-grid,
  .process-grid.compact,
  .proof-wall,
  .application-grid,
  .team-grid,
  .module-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .academy-ribbon {
    display: none;
  }

  .moon-hero-content {
    padding: 118px 22px 48px;
  }

  .moon-hero {
    min-height: 0;
  }

  .moon-hero h1 {
    font-size: 54px;
    line-height: .9;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .theme-grid,
  .visual-grid,
  .pricing-grid,
  .process-grid,
  .process-grid.compact,
  .proof-wall,
  .application-grid,
  .team-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .visual-card.big {
    grid-row: auto;
  }

  .visual-card.big img {
    aspect-ratio: 16 / 10;
  }

  .theme-tile {
    min-height: 0;
  }
}

/* V12 premium academy layer */
:root {
  --ink: #0f1724;
  --ink-soft: #172033;
  --muted: #586272;
  --muted-strong: #3f4a5c;
  --line: #d8e1ec;
  --paper: #f4f7fb;
  --paper-strong: #eef4f7;
  --white: #ffffff;
  --blue: #0f63ff;
  --blue-dark: #063bba;
  --green: #0f8f78;
  --coral: #f06b50;
  --gold: #b88622;
  --shadow: 0 22px 60px rgba(15, 23, 36, .12);
  --shadow-soft: 0 12px 34px rgba(15, 23, 36, .08);
  --max: 1200px;
}

body {
  background:
    linear-gradient(180deg, #fbfcff 0, #ffffff 420px),
    var(--white);
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(9, 14, 24, .9);
  box-shadow: 0 10px 26px rgba(7, 12, 24, .18);
}

.nav {
  min-height: 72px;
}

.brand-mark {
  background: linear-gradient(135deg, #0f63ff, #0f8f78 58%, #f06b50);
}

.brand-name small {
  color: rgba(255, 255, 255, .64);
  letter-spacing: 0;
}

.nav-links {
  gap: 18px;
}

.nav-links a:not(.button) {
  padding: 9px 0;
}

.nav-links a.active {
  color: var(--white);
}

.academy-ribbon {
  display: none !important;
}

.button {
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(15, 99, 255, .32);
  outline-offset: 4px;
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .32);
}

h1 {
  font-size: 74px;
  line-height: .94;
}

.section-title {
  max-width: 820px;
  font-size: 50px;
  line-height: 1.04;
}

.section {
  padding: 98px 22px;
}

.section.alt {
  background:
    linear-gradient(180deg, #f6f9fc, #eef4f7);
}

.section.dark {
  background:
    linear-gradient(135deg, #07111f, #101827 56%, #0b2c32);
}

.section-kicker {
  color: var(--green);
  letter-spacing: 0;
}

.section-text {
  color: var(--muted-strong);
}

.sub-hero {
  position: relative;
  overflow: hidden;
  padding-top: 158px;
  padding-bottom: 88px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, .96), rgba(15, 38, 64, .94) 58%, rgba(15, 143, 120, .84));
}

.sub-hero::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
}

.sub-hero .wrap {
  position: relative;
}

.sub-hero h1 {
  max-width: 990px;
  font-size: 66px;
  line-height: .96;
}

.sub-hero .hero-lead {
  color: rgba(255, 255, 255, .82);
}

.moon-hero {
  min-height: 92vh;
  align-items: center;
  isolation: isolate;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 12, 24, .96), rgba(7, 12, 24, .72) 46%, rgba(7, 12, 24, .18)),
    linear-gradient(180deg, rgba(7, 12, 24, .1), rgba(7, 12, 24, .78)),
    url("/assets/hero-main.jpg") center / cover no-repeat;
  filter: saturate(105%) contrast(106%);
  transform: none;
}

.moon-hero-content {
  display: grid;
  gap: 22px;
  padding: 170px 22px 64px;
}

.moon-hero h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: 86px;
  line-height: .9;
}

.moon-hero .hero-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 22px;
}

.academy-proof {
  margin-top: 10px;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
}

.academy-proof div {
  padding: 22px;
  background: rgba(9, 14, 24, .62);
}

.academy-proof strong {
  font-size: 24px;
}

.hero-actions {
  margin-top: 8px;
}

.theme-band,
.visual-academy {
  background: var(--white);
}

.theme-grid,
.visual-grid,
.pricing-grid,
.process-grid,
.proof-wall,
.application-grid,
.module-grid,
.team-grid {
  gap: 20px;
}

.theme-tile {
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(15, 99, 255, .94), rgba(15, 143, 120, .9) 60%, rgba(240, 107, 80, .88));
  box-shadow: var(--shadow-soft);
}

.theme-tile:nth-child(2n) {
  background:
    linear-gradient(135deg, #10233f, #0f63ff 54%, #b88622);
}

.theme-tile:nth-child(3n) {
  background:
    linear-gradient(135deg, #0b2731, #0f8f78 58%, #f06b50);
}

.visual-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
}

.visual-card,
.academy-card,
.price-card,
.process-card,
.case-card,
.standards-panel,
.method-panel,
.quote,
.module-grid article,
.application-grid article,
.team-card {
  border-color: rgba(216, 225, 236, .9);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
}

.academy-card,
.price-card,
.process-card,
.case-card,
.module-grid article,
.application-grid article {
  display: flex;
  flex-direction: column;
}

.academy-card h3,
.price-card h2,
.process-card h2,
.module-grid h3,
.case-card h2 {
  color: var(--ink);
}

.dark .academy-card,
.dark .price-card,
.dark .process-card,
.dark .case-card,
.dark .module-grid article {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.dark .academy-card h3,
.dark .price-card h2,
.dark .process-card h2,
.dark .module-grid h3,
.dark .case-card h2 {
  color: var(--white);
}

.price-card.featured {
  background:
    linear-gradient(135deg, #08111f, #0f3e86 52%, #0f8f78);
  box-shadow: 0 26px 70px rgba(15, 63, 134, .26);
}

.price-card strong {
  color: var(--ink);
}

.price-card.featured strong {
  color: var(--white);
}

.comparison {
  border-color: var(--line);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.comparison > div {
  padding: 30px;
}

.value-stack {
  box-shadow: var(--shadow-soft);
}

.cta-section {
  background:
    linear-gradient(135deg, #eef5ff, #f7fbf6 52%, #fff4ef);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, #07111f, #0e416f 54%, #0f8f78);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-size: 50px;
  overflow-wrap: anywhere;
}

.ghost-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(135deg, #07111f, #0d1726 62%, #0b2c32);
}

.footer-grid {
  align-items: start;
}

.footer a:not(.brand):hover {
  color: var(--white);
}

.v12-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.v12-rail article {
  min-width: 0;
  padding: 28px;
  background: var(--white);
}

.v12-rail strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.05;
}

.v12-rail span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.v12-rail p {
  margin: 0;
  color: var(--muted);
}

.v12-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 34px;
  align-items: stretch;
}

.v12-spotlight-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.v12-spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.v12-spotlight-copy {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.v12-choice-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.v12-choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.v12-choice-row > div {
  min-width: 0;
  padding: 26px;
  background: var(--white);
}

.v12-choice-row.header > div {
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.v12-choice-row h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.08;
}

.v12-choice-row p {
  margin: 0;
  color: var(--muted);
}

.v12-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.v12-proof-strip article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 99, 255, .06), rgba(255, 255, 255, 0) 48%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.v12-proof-strip b {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #e8f1ff;
  font-size: 13px;
  text-transform: uppercase;
}

.v12-toc {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.v12-toc-panel,
.v12-contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.v12-toc-panel {
  position: sticky;
  top: 96px;
}

.v12-toc-panel h2,
.v12-contact-panel h2 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.05;
}

.v12-toc-panel a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.v12-toc-panel a:hover {
  color: var(--blue-dark);
}

.v12-legal-summary {
  display: grid;
  gap: 14px;
}

.v12-legal-summary div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.v12-legal-summary span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.v12-legal-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}

.legal-readable .section-title {
  max-width: 900px;
  font-size: 30px;
  line-height: 1.18;
}

.legal-readable .section-text {
  max-width: 880px;
}

.legal-readable .comparison,
.legal-readable .value-stack,
.legal-readable .academy-card {
  box-shadow: none;
}

@media (max-width: 980px) {
  h1 {
    font-size: 58px;
  }

  .section-title,
  .cta-band h2 {
    font-size: 42px;
  }

  .sub-hero h1,
  .moon-hero h1 {
    font-size: 58px;
  }

  .v12-rail,
  .v12-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v12-spotlight,
  .v12-toc {
    grid-template-columns: 1fr;
  }

  .v12-toc-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 66px;
    padding: 0 16px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
    top: 76px;
    width: auto;
    padding: 16px;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links a:not(.button) {
    width: 100%;
    padding: 12px 0;
  }

  .nav-links .button {
    width: 100%;
  }

  .moon-hero-content {
    padding: 118px 20px 44px;
  }

  .moon-hero {
    min-height: 0;
  }

  .moon-hero h1,
  .sub-hero h1,
  h1 {
    font-size: 42px;
    line-height: .98;
  }

  .hero-lead,
  .moon-hero .hero-lead,
  .sub-hero .hero-lead {
    font-size: 18px;
  }

  .section {
    padding: 70px 18px;
  }

  .section-title,
  .cta-band h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .section-text {
    font-size: 17px;
  }

  .academy-proof,
  .v12-rail,
  .v12-proof-strip,
  .v12-choice-row {
    grid-template-columns: 1fr;
  }

  .v12-choice-row.header {
    display: none;
  }

  .v12-choice-row > div,
  .v12-rail article,
  .v12-spotlight-copy,
  .v12-toc-panel,
  .v12-contact-panel {
    padding: 22px;
  }

  .v12-spotlight-media img {
    min-height: 260px;
  }

  .cta-band {
    padding: 34px 24px;
  }

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

/* V12 visual density pass */
.sub-hero {
  padding-top: 132px;
  padding-bottom: 62px;
}

.sub-hero h1 {
  font-size: 58px;
}

.sub-hero .hero-lead {
  max-width: 820px;
}

.section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.v12-spotlight {
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 22px;
}

.v12-spotlight-media img {
  min-height: 340px;
}

.v12-spotlight-copy {
  padding: 36px;
}

.v12-spotlight-copy .section-title {
  font-size: 42px;
  line-height: 1.04;
}

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

.visual-program-card {
  overflow: hidden;
  padding: 0;
}

.program-card-media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.program-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0), rgba(7, 17, 31, .22));
}

.program-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .22s ease;
}

.visual-program-card:hover .program-card-media img {
  transform: scale(1.035);
}

.program-card-media.generated {
  display: grid;
  align-content: end;
  min-height: 185px;
  padding: 22px;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.program-card-media.generated::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .28), transparent 30%),
    linear-gradient(135deg, #0b1630, #0f63ff 48%, #0f8f78);
}

.program-card-media.generated::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% 22%;
  height: 150px;
  z-index: -1;
  transform: rotate(-8deg);
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10);
}

.program-card-media.generated-mission-libre-complet::before {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, .24), transparent 30%),
    linear-gradient(135deg, #08111f, #2364f2 42%, #d7a33c);
}

.program-card-media.generated-programme-ia-focus::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .26), transparent 32%),
    linear-gradient(135deg, #111827, #6948d9 44%, #0f8f78);
}

.program-card-media.generated span {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 44px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.program-card-media.generated strong {
  display: block;
  max-width: 220px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
}

.program-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.program-card-body h3 {
  font-size: 24px;
}

.program-card-body ul {
  margin-bottom: 0;
}

.program-card-body .text-link {
  margin-top: auto;
}

.v12-choice-table {
  margin-top: 26px;
}

.v12-rail {
  margin-top: 24px;
}

/* V12 final polish: make inner pages feel like a premium academy, not flat blocks. */
.sub-hero {
  isolation: isolate;
  padding-top: 116px;
  padding-bottom: 50px;
  background: #07111f;
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .96), rgba(7, 17, 31, .74) 48%, rgba(7, 17, 31, .36)),
    linear-gradient(180deg, rgba(7, 17, 31, .1), rgba(7, 17, 31, .82)),
    url("/assets/hero-main.jpg") center / cover no-repeat;
  filter: saturate(108%) contrast(106%);
}

.offer-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .96), rgba(7, 17, 31, .7) 48%, rgba(7, 17, 31, .28)),
    linear-gradient(180deg, rgba(7, 17, 31, .08), rgba(7, 17, 31, .78)),
    url("/assets/mission-fondation.jpg") center / cover no-repeat;
}

.call-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .96), rgba(7, 17, 31, .7) 48%, rgba(7, 17, 31, .3)),
    linear-gradient(180deg, rgba(7, 17, 31, .08), rgba(7, 17, 31, .78)),
    url("/assets/mission-visibilite.jpg") center / cover no-repeat;
}

.legal-readable.sub-hero::before,
.legal-readable .sub-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .98), rgba(7, 17, 31, .78) 52%, rgba(7, 17, 31, .48)),
    linear-gradient(180deg, rgba(7, 17, 31, .16), rgba(7, 17, 31, .86)),
    url("/assets/og.jpg") center / cover no-repeat;
}

.sub-hero .wrap {
  position: relative;
  z-index: 2;
}

.sub-hero::after {
  z-index: 1;
}

.sub-hero h1 {
  max-width: 900px;
  font-size: 52px;
  text-wrap: balance;
}

.sub-hero .hero-lead {
  max-width: 760px;
  font-size: 20px;
}

.catalogue-first {
  padding-top: 58px;
}

.catalogue-first .section-title {
  max-width: 780px;
}

.catalogue-first .program-grid {
  margin-top: 28px;
}

.visual-program-card {
  border-color: rgba(172, 187, 204, .88);
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(15, 23, 36, .12);
}

.program-card-media {
  min-height: 174px;
}

.program-card-media img {
  display: block;
  min-height: 174px;
  aspect-ratio: 1.38 / 1;
}

.program-card-body {
  gap: 12px;
  min-height: 300px;
  padding: 26px;
}

.program-card-body .pill {
  align-self: flex-start;
  color: var(--blue-dark);
  background: #e8f1ff;
}

.program-card-body h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.03;
  text-wrap: balance;
}

.program-card-body p {
  color: var(--muted-strong);
}

.program-card-body ul {
  color: var(--muted);
}

.visual-card {
  overflow: hidden;
}

.visual-card img {
  filter: saturate(106%) contrast(104%);
}

.v12-spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v12-spotlight-copy .button {
  align-self: flex-start;
  margin-top: 10px;
}

.price-card,
.academy-card,
.process-card,
.case-card {
  border-radius: 8px;
}

.dark-card {
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.moon-hero {
  min-height: 84vh;
}

.moon-hero-content {
  padding-top: 148px;
  padding-bottom: 42px;
}

.moon-hero + .section {
  padding-top: 54px;
}

@media (max-width: 980px) {
  .sub-hero {
    padding-top: 116px;
    padding-bottom: 54px;
  }

  .v12-spotlight {
    grid-template-columns: 1fr;
  }

  .v12-spotlight-copy .section-title {
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  .moon-hero-content {
    gap: 18px;
    padding: 96px 20px 28px;
  }

  .moon-hero + .section {
    padding-top: 44px;
  }

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

  .academy-proof div {
    min-width: 0;
    padding: 14px 10px;
  }

  .academy-proof strong {
    font-size: 18px;
  }

  .academy-proof span {
    font-size: 12px;
    line-height: 1.25;
  }

  .sub-hero {
    padding-top: 96px;
    padding-bottom: 38px;
  }

  .sub-hero h1 {
    font-size: 38px;
  }

  .sub-hero .hero-lead {
    font-size: 17px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .catalogue-first {
    padding-top: 42px;
  }

  .program-card-body {
    min-height: 0;
  }

  .v12-spotlight-copy .section-title {
    font-size: 30px;
  }

  .program-card-body {
    padding: 20px;
  }
}

/* V15 quality loop polish: premium components measured by the continuous score. */
.premium-panel {
  position: relative;
}

.premium-panel::before {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin: 0 0 26px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--coral));
}

.split-proof {
  background:
    linear-gradient(180deg, #ffffff 0, #f5f9fc 100%);
}

.gallery-strip,
.command-steps {
  display: grid;
  gap: 14px;
}

.gallery-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.gallery-strip article,
.command-steps article {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(216, 225, 236, .95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 99, 255, .06), rgba(15, 143, 120, .05)),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.gallery-strip span,
.command-steps b {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 900;
}

.gallery-strip strong,
.command-steps h3 {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.05;
}

.gallery-strip p,
.command-steps p {
  margin: 0;
  color: var(--muted-strong);
}

.gallery-strip.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.fit-comparison h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fit-comparison h3::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
}

.fit-comparison div:nth-child(n+3) h3::before {
  background: var(--coral);
}

.legal-toc {
  scroll-margin-top: 110px;
}

.legal-toc .v12-toc-panel {
  border-color: rgba(15, 99, 255, .18);
  background:
    linear-gradient(180deg, rgba(15, 99, 255, .06), rgba(255, 255, 255, 0) 62%),
    #ffffff;
}

.legal-toc .v12-toc-panel a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.legal-toc .v12-toc-panel a::after {
  content: "→";
  color: var(--green);
}

.v16-decision-table {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.v16-decision-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(160px, .85fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 225, 236, .95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.v16-decision-row.header {
  border-color: rgba(13, 24, 42, .88);
  color: #ffffff;
  background: var(--ink);
  box-shadow: none;
}

.v16-decision-row > div {
  min-width: 0;
  padding: 20px;
  border-left: 1px solid rgba(216, 225, 236, .76);
}

.v16-decision-row > div:first-child {
  border-left: 0;
}

.v16-decision-row.header > div {
  border-color: rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v16-decision-row h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.v16-decision-row p {
  margin: 0;
  color: var(--muted-strong);
}

.v16-decision-row strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
}

@media (max-width: 980px) {
  .gallery-strip,
  .gallery-strip.compact,
  .command-steps {
    grid-template-columns: 1fr 1fr;
  }

  .v16-decision-row {
    grid-template-columns: 1fr 1fr;
  }

  .v16-decision-row > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(216, 225, 236, .76);
  }

  .v16-decision-row > div:nth-child(4) {
    border-top: 1px solid rgba(216, 225, 236, .76);
  }
}

@media (max-width: 640px) {
  .gallery-strip,
  .gallery-strip.compact,
  .command-steps {
    grid-template-columns: 1fr;
  }

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

  .visual-card.big {
    grid-row: auto;
  }

  .visual-card.big img {
    aspect-ratio: 16 / 10;
  }

  .moon-hero-content {
    padding: 116px 18px 52px;
  }

  .moon-hero h1 {
    font-size: 42px;
    line-height: .96;
  }

  .v16-decision-row,
  .v16-decision-row.header {
    grid-template-columns: 1fr;
  }

  .v16-decision-row.header {
    display: none;
  }

  .v16-decision-row > div {
    border-left: 0;
    border-top: 1px solid rgba(216, 225, 236, .76);
  }

  .v16-decision-row > div:first-child {
    border-top: 0;
  }
}

/* V17 perception upgrade: visual density, academy catalogue, stronger premium rhythm. */
:root {
  --gold-bright: #e8ad35;
  --gold-soft: #fff4d6;
  --deep: #070d17;
  --deep-2: #0d1726;
}

.v17-hero .hero-media {
  background:
    linear-gradient(90deg, rgba(7, 13, 23, .98), rgba(7, 13, 23, .84) 42%, rgba(7, 13, 23, .45) 64%, rgba(7, 13, 23, .72)),
    linear-gradient(180deg, rgba(7, 13, 23, .04), rgba(7, 13, 23, .82)),
    url("/assets/hero-main.jpg") center / cover no-repeat;
}

.v17-hero-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  align-items: center;
  gap: 44px;
  min-height: 92vh;
}

.v17-hero-copy {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.v17-hero-copy .eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  color: #ffe7ad;
  background: rgba(255, 255, 255, .10);
}

.v17-hero-board {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 14px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06)),
    rgba(5, 10, 18, .54);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(14px);
}

.v17-board-card,
.v17-board-metric {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 178px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.v17-board-card.large {
  grid-row: span 2;
  min-height: 372px;
}

.v17-board-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(104%) contrast(104%);
}

.v17-board-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, .04), rgba(5, 10, 18, .80));
}

.v17-board-card div,
.v17-board-metric {
  z-index: 1;
}

.v17-board-card div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.v17-board-card span,
.v17-board-metric strong {
  display: block;
  margin-bottom: 6px;
  color: #ffe7ad;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v17-board-card strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
}

.v17-board-metric {
  display: grid;
  align-content: end;
  padding: 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 99, 255, .34), rgba(15, 143, 120, .24)),
    rgba(255, 255, 255, .08);
}

.v17-board-metric.gold {
  background:
    linear-gradient(135deg, rgba(232, 173, 53, .38), rgba(240, 107, 80, .24)),
    rgba(255, 255, 255, .08);
}

.v17-board-metric span {
  display: block;
  color: #ffffff;
  font-size: 46px;
  line-height: .9;
  font-weight: 950;
}

.v17-board-metric p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .76);
}

.v17-signal-strip {
  position: relative;
  z-index: 2;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(216, 225, 236, .7);
  background: #ffffff;
}

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

.v17-signal-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(216, 225, 236, .95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f7fafc);
  box-shadow: 0 10px 28px rgba(15, 23, 36, .07);
}

.v17-signal-grid span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v17-signal-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
}

.visual-program-card {
  border-color: rgba(15, 23, 36, .12);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 36, .10);
}

.visual-program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 64px rgba(15, 23, 36, .14);
}

.program-card-media {
  min-height: 220px;
}

.program-card-media img {
  min-height: 220px;
  aspect-ratio: 4 / 3;
}

.program-card-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  pointer-events: none;
}

.program-card-body {
  border-top: 4px solid var(--gold-bright);
}

.program-card-body .pill {
  color: #7a5207;
  background: var(--gold-soft);
}

.program-card-body h3 {
  font-size: 26px;
  line-height: 1.02;
}

.v17-catalogue-prime {
  background:
    linear-gradient(180deg, #ffffff 0, #f4f7fb 100%);
}

.v17-training-gallery-wrap .section-title,
.v17-catalogue-prime .section-title {
  max-width: 930px;
}

.v17-training-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.v17-training-gallery article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  min-height: 252px;
  border: 1px solid rgba(15, 23, 36, .12);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 16px 42px rgba(15, 23, 36, .12);
}

.v17-training-gallery img {
  width: 100%;
  height: 100%;
  min-height: 252px;
  object-fit: cover;
  filter: saturate(105%) contrast(104%);
  transition: transform .22s ease;
}

.v17-training-gallery article:hover img {
  transform: scale(1.035);
}

.v17-training-gallery article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 23, .08), rgba(7, 13, 23, .82));
}

.v17-training-gallery div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}

.v17-training-gallery span {
  display: block;
  margin-bottom: 6px;
  color: #ffe7ad;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v17-training-gallery strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.06;
}

.sub-hero.v17-training-hero {
  background:
    linear-gradient(135deg, rgba(7, 13, 23, .98), rgba(13, 23, 38, .96) 55%, rgba(184, 134, 34, .82)),
    url("/assets/mission-visibilite.jpg") center / cover no-repeat;
}

.sub-hero.v17-training-hero .wrap {
  display: grid;
  gap: 20px;
}

.sub-hero.v17-training-hero .eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  color: #ffe7ad;
  background: rgba(255, 255, 255, .10);
}

.price-card.featured,
.cta-band {
  border-color: rgba(184, 134, 34, .34);
}

.cta-band .button:first-of-type,
.price-card.featured .button {
  background: linear-gradient(135deg, #0f63ff, #0f8f78 58%, #d89d2f);
  box-shadow: 0 16px 40px rgba(15, 99, 255, .20);
}

@media (max-width: 1080px) {
  .v17-hero-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .v17-hero-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .v17-board-card.large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 230px;
  }

  .v17-board-card,
  .v17-board-metric {
    min-height: 230px;
  }

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

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

@media (max-width: 720px) {
  .v17-hero-copy .eyebrow,
  .sub-hero.v17-training-hero .eyebrow {
    width: 100%;
  }

  .v17-hero-board {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
  }

  .v17-board-card.large {
    grid-column: 1 / -1;
    min-height: 250px;
  }

  .v17-board-card,
  .v17-board-metric {
    min-height: 156px;
  }

  .v17-board-metric span {
    font-size: 34px;
  }

  .v17-signal-grid {
    grid-template-columns: 1fr;
  }

  .program-card-media,
  .program-card-media img {
    min-height: 210px;
  }

  .v17-training-gallery {
    grid-template-columns: 1fr;
  }

  .v17-training-gallery article,
  .v17-training-gallery img {
    min-height: 230px;
  }

  .site-header {
    z-index: 40;
  }

  .nav-links {
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(7, 13, 23, .985);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    min-height: calc(100vh - 92px);
  }
}

/* V18 pixel benchmark polish: academy-level visual density without copying the reference. */
.academy-header,
.site-header.academy-header {
  border-bottom: 1px solid rgba(15, 23, 36, .10);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 34px rgba(15, 23, 36, .08);
  backdrop-filter: blur(16px);
}

.academy-header .brand,
.academy-header .nav-links {
  color: #040926;
}

.academy-header .brand-name small {
  color: rgba(4, 9, 38, .62);
}

.academy-header .nav-links a:hover,
.academy-header .nav-links a.active {
  color: var(--blue-dark);
}

.academy-header .nav-toggle {
  color: #040926;
  border-color: rgba(4, 9, 38, .18);
  background: rgba(4, 9, 38, .03);
}

.academy-header .nav-links .button {
  color: #07111f;
  background: #ffb703;
  box-shadow: 0 14px 32px rgba(255, 183, 3, .28);
}

.moon-hero,
.hero {
  margin-top: 74px;
}

.moon-hero-content {
  padding-top: 92px;
}

.v17-hero-layout {
  min-height: calc(92vh - 74px);
}

.v17-hero-copy .eyebrow {
  border-color: rgba(255, 183, 3, .55);
  color: #ffe7ad;
  background: rgba(255, 183, 3, .12);
}

.v17-hero-board {
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.v17-board-card,
.v17-board-metric,
.visual-program-card,
.v18-image-wall article,
.v18-offer-cards article {
  border-radius: 8px;
}

.sub-hero {
  min-height: 505px;
  padding-top: 132px;
  padding-bottom: 138px;
  background: #040926;
}

.sub-hero::before {
  background:
    radial-gradient(circle at 76% 38%, rgba(255, 183, 3, .18), transparent 0 22%, transparent 42%),
    linear-gradient(90deg, rgba(4, 9, 38, .98), rgba(4, 9, 38, .86) 52%, rgba(4, 9, 38, .64)),
    url("/assets/mission-visibilite.jpg") center / cover no-repeat;
}

.sub-hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 112px;
  max-width: none;
  background: #ffffff;
  clip-path: ellipse(72% 66% at 50% 100%);
}

.offer-hero::before,
.legal-readable.sub-hero::before,
.legal-readable .sub-hero::before,
.call-hero::before,
.sub-hero.v17-training-hero::before {
  background:
    radial-gradient(circle at 76% 38%, rgba(255, 183, 3, .18), transparent 0 22%, transparent 42%),
    linear-gradient(90deg, rgba(4, 9, 38, .98), rgba(4, 9, 38, .86) 52%, rgba(4, 9, 38, .64)),
    url("/assets/mission-visibilite.jpg") center / cover no-repeat;
}

.sub-hero h1 {
  max-width: 820px;
  font-size: 56px;
  line-height: .98;
}

.sub-hero .hero-lead {
  max-width: 690px;
  font-size: 19px;
}

.catalogue-first,
.v17-catalogue-prime,
.v18-visual-wall-section {
  padding-top: 58px;
  padding-bottom: 74px;
}

.catalogue-first .section-title,
.v17-catalogue-prime .section-title,
.v18-visual-wall-section .section-title,
.v18-offer-showcase .section-title {
  max-width: 900px;
  font-size: 44px;
  line-height: 1.04;
}

.v18-image-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.v18-image-wall article {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 36, .12);
  background: #07111f;
  box-shadow: 0 18px 46px rgba(15, 23, 36, .10);
}

.v18-image-wall img {
  width: 100%;
  height: 100%;
  min-height: 238px;
  object-fit: cover;
  filter: saturate(106%) contrast(105%);
}

.v18-image-wall article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 38, .04), rgba(4, 9, 38, .84));
}

.v18-image-wall div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}

.v18-image-wall span,
.v18-offer-cards span {
  display: block;
  margin-bottom: 6px;
  color: #ffcf5f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v18-image-wall strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.08;
}

.v18-offer-showcase {
  background: #040926;
}

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

.v18-offer-cards article {
  overflow: hidden;
  border: 1px solid rgba(255, 183, 3, .40);
  background: #050b2d;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
}

.v18-offer-cards article:nth-child(2) {
  transform: translateY(-18px);
  border-color: rgba(255, 183, 3, .82);
  box-shadow: 0 34px 90px rgba(255, 183, 3, .18);
}

.v18-offer-cards img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: .92;
}

.v18-offer-cards div {
  padding: 28px;
}

.v18-offer-cards h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
}

.v18-offer-cards p {
  min-height: 82px;
  color: rgba(255, 255, 255, .76);
}

.v18-offer-cards .button {
  width: 100%;
  margin-top: 10px;
  color: #07111f;
  background: #ffb703;
  box-shadow: none;
}

.section-title {
  text-wrap: balance;
}

.visual-program-card,
.academy-card,
.price-card,
.v12-contact-panel,
.v12-toc-panel {
  box-shadow: 0 18px 46px rgba(15, 23, 36, .09);
}

.footer .brand-name small {
  color: rgba(255, 255, 255, .68);
}

@media (max-width: 1080px) {
  .v18-image-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .v18-offer-cards article:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 920px) {
  .academy-header .nav-links {
    color: #ffffff;
    background: rgba(4, 9, 38, .985);
  }

  .academy-header .nav-links a:hover,
  .academy-header .nav-links a.active {
    color: #ffffff;
  }
}

@media (max-width: 720px) {
  .moon-hero,
  .hero {
    margin-top: 66px;
  }

  .v17-hero-layout {
    min-height: 0;
  }

  .moon-hero-content {
    padding-top: 58px;
  }

  .sub-hero {
    min-height: 0;
    padding-top: 94px;
    padding-bottom: 92px;
  }

  .sub-hero::after {
    height: 72px;
  }

  .sub-hero h1 {
    font-size: 42px;
  }

  .catalogue-first .section-title,
  .v17-catalogue-prime .section-title,
  .v18-visual-wall-section .section-title,
  .v18-offer-showcase .section-title {
    font-size: 34px;
  }

  .v18-image-wall {
    grid-template-columns: 1fr;
  }

  .v18-image-wall article,
  .v18-image-wall img {
    min-height: 220px;
  }
}

/* V19 visual upgrade: stronger proprietary visuals and premium page rhythm */
.v19-proof-section {
  background:
    linear-gradient(90deg, rgba(255, 183, 3, .10), transparent 34%),
    #f6f2ea;
}

.v19-proof-section .section-title,
.v19-product-strip .section-title,
.v19-program-feature .section-title,
.v19-order-prime .section-title {
  max-width: 880px;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: .98;
}

.v19-proof-wall {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 16px;
  margin-top: 34px;
}

.v19-proof-wall article {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(8, 22, 42, .14);
  border-radius: 8px;
  background: #07111f;
  box-shadow: 0 26px 70px rgba(15, 23, 36, .14);
}

.v19-proof-wall article:first-child {
  grid-row: span 2;
  min-height: 616px;
}

.v19-proof-wall img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(112%) contrast(106%);
}

.v19-proof-wall article::after,
.v19-feature-media::after,
.v19-product-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 38, .02), rgba(4, 9, 38, .80));
  pointer-events: none;
}

.v19-proof-wall div,
.v19-product-grid span,
.v19-feature-media div {
  position: absolute;
  z-index: 1;
}

.v19-proof-wall div {
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.v19-proof-wall span,
.v19-feature-media span,
.v19-product-grid span {
  display: block;
  margin-bottom: 8px;
  color: #ffcf5f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v19-proof-wall strong,
.v19-feature-media strong {
  display: block;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.03;
  text-wrap: balance;
}

.v19-product-strip {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(18, 168, 153, .18), transparent 42%),
    #050b2d;
}

.v19-product-strip .section-kicker,
.v19-program-feature .section-kicker {
  color: #ffcf5f;
}

.v19-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.v19-product-grid a {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #07111f;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .26);
}

.v19-product-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .24s ease, filter .24s ease;
}

.v19-product-grid a:hover img {
  transform: scale(1.035);
  filter: saturate(118%) contrast(108%);
}

.v19-product-grid span {
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}

.v19-program-feature {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 183, 3, .13), transparent 36%),
    linear-gradient(225deg, rgba(18, 168, 153, .18), transparent 42%),
    #040926;
}

.v19-feature-layout,
.v19-order-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(26px, 4vw, 62px);
  align-items: center;
}

.v19-feature-copy .section-text,
.v19-program-feature .button.secondary {
  color: rgba(255, 255, 255, .78);
}

.v19-feature-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: #07111f;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .30);
}

.v19-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.v19-feature-media div {
  left: 26px;
  right: 26px;
  bottom: 26px;
}

.v19-order-prime {
  background:
    linear-gradient(90deg, rgba(255, 183, 3, .12), transparent 38%),
    #fffdf8;
}

.v19-order-layout img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 36, .13);
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(15, 23, 36, .14);
}

.program-card-media img,
.v17-board-card img,
.visual-card img,
.v12-spotlight-media img {
  filter: saturate(112%) contrast(106%);
}

.program-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.v18-offer-showcase {
  padding-top: 76px;
  padding-bottom: 88px;
}

.pricing-grid .price-card {
  border-radius: 8px;
}

@media (max-width: 1080px) {
  .v19-proof-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v19-proof-wall article:first-child {
    grid-column: span 2;
    grid-row: auto;
    min-height: 420px;
  }

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

  .v19-feature-layout,
  .v19-order-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .v19-proof-section,
  .v19-product-strip,
  .v19-program-feature,
  .v19-order-prime {
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .v19-proof-wall,
  .v19-product-grid {
    grid-template-columns: 1fr;
  }

  .v19-proof-wall article,
  .v19-proof-wall article:first-child,
  .v19-product-grid a,
  .v19-feature-media,
  .v19-order-layout img {
    grid-column: auto;
    min-height: 250px;
  }

  .v19-feature-media img,
  .v19-product-grid img {
    min-height: 250px;
  }

  .v19-proof-wall div,
  .v19-feature-media div,
  .v19-product-grid span {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

/* V20 direction: lighter editorial academy, stronger identity, no ugly cropped hero cards */
:root {
  --v20-ink: #05051f;
  --v20-paper: #fbf6ea;
  --v20-paper-2: #fffdf7;
  --v20-amber: #ffb703;
  --v20-cyan: #11b7b2;
  --v20-line: rgba(5, 5, 31, .12);
}

body {
  background: var(--v20-paper-2);
}

.academy-header,
.site-header.academy-header {
  border-bottom: 1px solid rgba(5, 5, 31, .10);
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 10px 30px rgba(5, 5, 31, .06);
  backdrop-filter: blur(18px);
}

.academy-header .brand,
.academy-header .nav-links {
  color: var(--v20-ink);
}

.academy-header .brand-name small {
  color: rgba(5, 5, 31, .58);
}

.academy-header .nav-links a:hover,
.academy-header .nav-links a.active {
  color: #b65f00;
}

.academy-header .nav-toggle {
  border-color: rgba(5, 5, 31, .18);
  color: var(--v20-ink);
  background: #ffffff;
}

.academy-header .nav-links .button,
.button {
  color: var(--v20-ink);
  background: var(--v20-amber);
  border-color: rgba(5, 5, 31, .08);
  box-shadow: 0 12px 28px rgba(255, 183, 3, .24);
}

.academy-header .nav-links .button:hover,
.button:hover {
  color: var(--v20-ink);
  background: #ffc83d;
}

.button.secondary,
.button.ghost {
  color: var(--v20-ink);
  background: rgba(255, 255, 255, .74);
  border-color: rgba(5, 5, 31, .16);
  box-shadow: none;
}

.moon-hero {
  min-height: 96vh;
  color: var(--v20-ink);
  background:
    linear-gradient(90deg, #fffdf7 0%, #fbf6ea 52%, #f1eadb 100%);
}

.moon-hero::before {
  content: "MISSION\A LIBRE";
  position: absolute;
  right: -44px;
  bottom: 10px;
  z-index: 0;
  color: rgba(5, 5, 31, .055);
  font-size: 178px;
  font-weight: 950;
  line-height: .78;
  white-space: pre;
  pointer-events: none;
}

.v17-hero .hero-media {
  background: transparent;
  opacity: 1;
}

.hero-media::before {
  content: "";
  position: absolute;
  right: 7vw;
  top: 20vh;
  width: 430px;
  height: 430px;
  border: 2px solid rgba(255, 183, 3, .72);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-media::after {
  content: "";
  position: absolute;
  right: 4vw;
  top: 31vh;
  width: 520px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 5, 31, .20), transparent);
  transform: rotate(-18deg);
}

.moon-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 138px;
  padding-bottom: 78px;
}

.v17-hero-layout {
  min-height: 720px;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .82fr);
  align-items: center;
}

.v17-hero-copy .eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(255, 183, 3, .55);
  color: #7d4a00;
  background: rgba(255, 183, 3, .14);
}

.moon-hero h1 {
  max-width: 760px;
  color: var(--v20-ink);
  font-size: 92px;
  line-height: .86;
}

.moon-hero .hero-lead {
  max-width: 690px;
  color: rgba(5, 5, 31, .72);
  font-size: 22px;
  line-height: 1.52;
}

.moon-hero .hero-proof {
  max-width: 690px;
  border-color: rgba(5, 5, 31, .12);
  background: rgba(5, 5, 31, .10);
  box-shadow: 0 20px 60px rgba(5, 5, 31, .08);
}

.moon-hero .hero-proof div {
  background: rgba(255, 255, 255, .86);
}

.moon-hero .hero-proof strong {
  color: var(--v20-ink);
}

.moon-hero .hero-proof span {
  color: rgba(5, 5, 31, .60);
}

.v20-hero-system {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 560px;
  padding: 24px;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 36px 100px rgba(5, 5, 31, .12);
  overflow: hidden;
}

.v20-hero-system::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(5, 5, 31, .10);
  border-radius: 50%;
  pointer-events: none;
}

.v20-compass {
  position: absolute;
  right: 32px;
  top: 30px;
  z-index: 2;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(5, 5, 31, .16);
  border-radius: 50%;
  color: var(--v20-ink);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(5, 5, 31, .10);
}

.v20-compass::before,
.v20-compass::after {
  content: "";
  position: absolute;
  background: var(--v20-amber);
}

.v20-compass::before {
  width: 76px;
  height: 3px;
  transform: rotate(-26deg);
}

.v20-compass::after {
  width: 3px;
  height: 76px;
  transform: rotate(-26deg);
}

.v20-compass span {
  position: relative;
  z-index: 1;
  font-size: 34px;
  font-weight: 950;
}

.v20-system-card {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(5, 5, 31, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.v20-system-card.main {
  grid-row: span 2;
  min-height: 434px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(5, 5, 31, .96), rgba(9, 28, 62, .86)),
    var(--v20-ink);
}

.v20-system-card.gold {
  background: #fff2bf;
}

.v20-system-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: auto;
  padding: 7px 10px;
  border-radius: 8px;
  color: #7d4a00;
  background: rgba(255, 183, 3, .18);
  font-size: 13px;
  font-weight: 950;
}

.v20-system-card.main span {
  color: #ffdd75;
  background: rgba(255, 183, 3, .15);
}

.v20-system-card strong {
  display: block;
  margin-top: 28px;
  font-size: 34px;
  line-height: .96;
}

.v20-system-card p {
  max-width: 260px;
  margin: 10px 0 0;
  color: rgba(5, 5, 31, .62);
  font-weight: 650;
}

.v20-system-card.main p {
  color: rgba(255, 255, 255, .76);
}

.sub-hero {
  position: relative;
  min-height: 70vh;
  color: var(--v20-ink);
  background:
    linear-gradient(90deg, #fffdf7 0%, #fbf6ea 60%, #f2ead9 100%);
  overflow: hidden;
}

.sub-hero::before {
  content: "MISSION LIBRE";
  position: absolute;
  right: -40px;
  bottom: 10px;
  color: rgba(5, 5, 31, .055);
  font-size: 132px;
  font-weight: 950;
  line-height: .85;
  white-space: nowrap;
  inset: auto -40px 10px auto;
  z-index: 0;
  background: none !important;
  filter: none;
}

.offer-hero::before {
  content: "OFFRES";
}

.call-hero::before {
  content: "APPEL";
}

.sub-hero::after {
  content: "";
  position: absolute;
  left: auto;
  right: 8vw;
  top: 154px;
  bottom: auto;
  z-index: 1;
  display: block !important;
  width: 350px;
  height: 230px;
  max-width: none;
  margin: 0;
  border: 1px solid rgba(5, 5, 31, .14);
  border-radius: 8px;
  clip-path: none;
  background:
    linear-gradient(90deg, var(--v20-amber) 0 18%, transparent 18% 100%) 0 28px / 100% 16px no-repeat,
    linear-gradient(90deg, var(--v20-cyan) 0 12%, transparent 12% 100%) 0 72px / 100% 16px no-repeat,
    linear-gradient(90deg, rgba(5, 5, 31, .92) 0 52%, #ffffff 52% 100%);
  box-shadow: 0 28px 90px rgba(5, 5, 31, .13);
}

.sub-hero .wrap {
  position: relative;
  z-index: 1;
}

.sub-hero .eyebrow {
  color: #7d4a00;
}

.sub-hero h1 {
  max-width: 770px;
  color: var(--v20-ink);
  font-size: 72px;
  line-height: .90;
}

.sub-hero .hero-lead {
  max-width: 760px;
  color: rgba(5, 5, 31, .66);
}

.sub-hero .button.ghost {
  color: var(--v20-ink);
  background: #ffffff;
  border-color: rgba(5, 5, 31, .14);
}

.v19-proof-section,
.section.alt {
  background: #f7f1e4;
}

.v18-offer-showcase,
.v19-product-strip,
.v19-program-feature {
  background:
    linear-gradient(90deg, rgba(255, 183, 3, .10), transparent 44%),
    #05051f;
}

@media (max-width: 1080px) {
  .v17-hero-layout {
    grid-template-columns: 1fr;
  }

  .v20-hero-system {
    min-height: 0;
  }

  .moon-hero::before {
    right: -24px;
    bottom: 180px;
    font-size: 118px;
  }
}

@media (max-width: 920px) {
  .academy-header .nav-links {
    color: #ffffff;
    background: rgba(5, 5, 31, .985);
  }

  .academy-header .nav-links .button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .moon-hero {
    min-height: 0;
  }

  .moon-hero-content {
    padding-top: 102px;
    padding-bottom: 54px;
  }

  .moon-hero h1,
  .sub-hero h1 {
    font-size: 50px;
    line-height: .90;
  }

  .moon-hero .hero-lead,
  .sub-hero .hero-lead {
    font-size: 18px;
  }

  .moon-hero::before,
  .sub-hero::before {
    display: none;
  }

  .hero-media::before,
  .hero-media::after,
  .sub-hero::after {
    display: none !important;
  }

  .v20-hero-system {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .v20-hero-system::before,
  .v20-compass {
    display: none;
  }

  .v20-system-card,
  .v20-system-card.main {
    grid-row: auto;
    min-height: 150px;
    padding: 20px;
  }

  .v20-system-card strong {
    font-size: 28px;
  }

  .sub-hero {
    min-height: 0;
    padding-top: 96px;
    padding-bottom: 72px;
  }
}

/* V21: put the human back into the first impression */
.v21-human-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 36px 100px rgba(5, 5, 31, .14);
}

.v21-human-panel img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 62% 50%;
  filter: saturate(104%) contrast(101%);
}

.v21-human-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(5, 5, 31, .24)),
    linear-gradient(90deg, rgba(255, 253, 247, .08), transparent 48%);
  pointer-events: none;
}

.v21-human-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 430px;
  padding: 24px;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: rgba(255, 253, 247, .92);
  box-shadow: 0 20px 60px rgba(5, 5, 31, .12);
  backdrop-filter: blur(12px);
}

.v21-human-note span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #7d4a00;
  background: rgba(255, 183, 3, .18);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.v21-human-note strong {
  display: block;
  color: var(--v20-ink);
  font-size: 28px;
  line-height: 1.03;
}

.v21-human-note p {
  margin: 10px 0 0;
  color: rgba(5, 5, 31, .62);
  font-weight: 650;
}

@media (max-width: 1080px) {
  .v21-human-panel,
  .v21-human-panel img {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  .v21-human-panel,
  .v21-human-panel img {
    min-height: 330px;
  }

  .v21-human-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -86px 14px 14px;
    padding: 18px;
  }

  .v21-human-note strong {
    font-size: 22px;
  }
}

/* V22: remove the ugly generated dark tiles, use human editorial cards instead */
.v18-visual-wall-section {
  background: #fffdf7;
}

.v18-image-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.v18-image-wall article {
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(5, 5, 31, .08);
}

.v18-image-wall article::after {
  display: none;
}

.v18-image-wall img {
  width: 100%;
  height: 210px;
  min-height: 0;
  object-fit: cover;
  filter: saturate(102%) contrast(101%);
}

.v18-image-wall div {
  position: static;
  padding: 22px;
}

.v18-image-wall span {
  color: #7d4a00;
  font-size: 12px;
}

.v18-image-wall strong {
  color: var(--v20-ink);
  font-size: 24px;
  line-height: 1.08;
}

.v18-offer-showcase {
  color: var(--v20-ink);
  background: #f7f1e4;
}

.v18-offer-showcase .section-kicker {
  color: #7d4a00;
}

.v18-offer-showcase .section-title {
  color: var(--v20-ink);
}

.v18-offer-cards article,
.v18-offer-cards article:nth-child(2) {
  transform: none;
  border-color: rgba(5, 5, 31, .12);
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(5, 5, 31, .10);
}

.v18-offer-cards h3 {
  color: var(--v20-ink);
}

.v18-offer-cards p {
  color: rgba(5, 5, 31, .64);
}

.v19-proof-section {
  background: #fffdf7;
}

.v19-proof-wall article {
  border-color: rgba(5, 5, 31, .12);
  background: #ffffff;
}

.v19-proof-wall img,
.v19-product-grid img,
.v18-offer-cards img {
  filter: saturate(102%) contrast(101%);
}

.v19-product-strip,
.v19-program-feature {
  background: #05051f;
}

@media (max-width: 1080px) {
  .v18-image-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .v18-image-wall {
    grid-template-columns: 1fr;
  }

  .v18-image-wall img {
    height: 190px;
  }
}

/* V23: editorial premium cleanup, no dark catalogue walls */
.v17-training-gallery,
.v19-product-grid {
  gap: 18px;
}

.v17-training-gallery article,
.v19-product-grid a {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(5, 5, 31, .08);
}

.v17-training-gallery article::after,
.v19-product-grid a::after {
  display: none;
}

.v17-training-gallery img,
.v19-product-grid img {
  height: 220px;
  min-height: 0;
  object-fit: cover;
  filter: saturate(104%) contrast(101%);
}

.v17-training-gallery div,
.v19-product-grid span {
  position: static;
  padding: 20px;
}

.v17-training-gallery span,
.v19-product-grid span {
  margin: 0;
  color: #7d4a00;
  font-size: 12px;
}

.v17-training-gallery strong {
  margin-top: 8px;
  color: var(--v20-ink);
  font-size: 22px;
  line-height: 1.08;
}

.v19-product-strip {
  color: var(--v20-ink);
  background:
    linear-gradient(90deg, rgba(255, 183, 3, .13), transparent 38%),
    #f7f1e4;
}

.v19-product-strip .section-kicker {
  color: #047f74;
}

.v19-product-strip .section-title {
  color: var(--v20-ink);
}

.v19-product-grid a {
  min-height: 0;
  text-decoration: none;
}

.v19-product-grid span {
  color: var(--v20-ink);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.v19-proof-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.v19-proof-wall article {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 58px rgba(5, 5, 31, .09);
}

.v19-proof-wall article:first-child {
  grid-row: auto;
  min-height: 0;
}

.v19-proof-wall article::after {
  display: none;
}

.v19-proof-wall img {
  height: 260px;
  min-height: 0;
  object-fit: cover;
  filter: saturate(104%) contrast(101%);
}

.v19-proof-wall article:first-child img {
  height: 260px;
}

.v19-proof-wall div {
  position: static;
  padding: 22px;
}

.v19-proof-wall span {
  color: #047f74;
  font-size: 12px;
}

.v19-proof-wall strong {
  color: var(--v20-ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.06;
}

@media (max-width: 1080px) {
  .v17-training-gallery,
  .v19-product-grid,
  .v19-proof-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v19-proof-wall article:first-child {
    grid-row: auto;
  }

  .v19-proof-wall article:first-child img,
  .v19-proof-wall img {
    height: 240px;
  }
}

@media (max-width: 720px) {
  .v17-training-gallery,
  .v19-product-grid,
  .v19-proof-wall {
    grid-template-columns: 1fr;
  }

  .v17-training-gallery img,
  .v19-product-grid img,
  .v19-proof-wall article:first-child img,
  .v19-proof-wall img {
    height: 210px;
  }
}

/* V24/V25: human-eye polish on weak public sections */
.offer-hero::after {
  top: 146px;
  width: 360px;
  height: 270px;
  border: 1px solid rgba(5, 5, 31, .10);
  background:
    linear-gradient(180deg, rgba(5, 5, 31, .00), rgba(5, 5, 31, .08)),
    url("/assets/v25-hero-dashboard.jpg") center / cover no-repeat;
  box-shadow: 0 28px 90px rgba(5, 5, 31, .14);
}

.v17-training-gallery article:nth-child(3) img,
.v17-training-gallery article:nth-child(5) img {
  object-position: 62% center;
}

.v17-training-gallery article:nth-child(4) img {
  object-position: center 38%;
}

.v17-training-gallery article:nth-child(6) img {
  object-position: 72% center;
}

@media (max-width: 920px) {
  .offer-hero::after {
    display: none !important;
  }
}

/* V25: proprietary AI visuals + fix narrow process cards */
.v25-hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 32px 90px rgba(5, 5, 31, .16);
}

.v25-hero-panel img {
  display: block;
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.v25-hero-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(5, 5, 31, .10);
  border-radius: 8px;
  background: rgba(255, 253, 247, .92);
  box-shadow: 0 18px 48px rgba(5, 5, 31, .15);
  backdrop-filter: blur(12px);
}

.v25-hero-note span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 11px;
  border-radius: 8px;
  color: #7d4a00;
  background: #fff0c2;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.v25-hero-note strong {
  display: block;
  color: var(--v20-ink);
  font-size: 28px;
  line-height: 1.02;
}

.v25-hero-note p {
  margin: 10px 0 0;
  color: rgba(5, 5, 31, .66);
  font-weight: 750;
}

.process-card h2,
.process-card p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.split > .process-grid,
.split > .process-grid.compact {
  align-self: start;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  grid-auto-rows: minmax(285px, auto);
  gap: 18px;
  min-width: 0;
}

.split > .process-grid .process-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 285px;
  padding: 30px;
  border-color: rgba(171, 187, 211, .78);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(250, 248, 241, .94)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(5, 5, 31, .09);
}

.split > .process-grid .process-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(16, 143, 120, .13);
  border-radius: 50%;
}

.split > .process-grid .process-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: #087a67;
  background: #e9fff8;
  font-size: 24px;
  line-height: 1;
}

.split > .process-grid .process-card h2 {
  font-size: 30px;
  line-height: 1.02;
}

.split > .process-grid .process-card p {
  max-width: 28ch;
  font-size: 17px;
  line-height: 1.5;
}

.offer-hero::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 31, .00), rgba(5, 5, 31, .06)),
    url("/assets/v25-hero-dashboard.jpg") center / cover no-repeat;
}

.v17-training-gallery img,
.v18-image-wall img,
.v18-offer-cards img,
.v19-proof-wall img,
.v19-product-grid img,
.v19-feature-media img,
.program-card-media img,
.v12-spotlight-media img {
  filter: saturate(101%) contrast(102%);
}

@media (max-width: 1120px) {
  .split > .process-grid,
  .split > .process-grid.compact {
    grid-template-columns: 1fr;
  }

  .split > .process-grid .process-card p {
    max-width: 46ch;
  }
}

@media (max-width: 720px) {
  .v25-hero-panel img {
    min-height: 360px;
  }

  .v25-hero-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -70px 14px 14px;
    padding: 18px;
  }

  .v25-hero-note strong {
    font-size: 22px;
  }
}

/* V26: academy-product direction */
:root {
  --v26-ink: #05051f;
  --v26-ink-soft: #151731;
  --v26-cream: #fbf7ed;
  --v26-paper: #fffdf8;
  --v26-line: #d9d2c3;
  --v26-teal: #068977;
  --v26-gold: #d89b14;
  --v26-rust: #8d4f3d;
}

.site-header.academy-header {
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: rgba(5, 5, 31, .86);
}

.site-header.academy-header .brand,
.site-header.academy-header .nav-links,
.site-header.academy-header .nav-links a:not(.button) {
  color: rgba(255, 255, 255, .9);
}

.site-header.academy-header .brand-name small {
  color: rgba(255, 255, 255, .62);
}

.site-header.academy-header .nav-links a:not(.button):hover,
.site-header.academy-header .nav-links a.active {
  color: #ffe39b;
}

.nav-links .button {
  color: var(--v26-ink);
  background: #ffe39b;
  border-color: rgba(255, 255, 255, .25);
  box-shadow: 0 16px 36px rgba(216, 155, 20, .22);
}

.v26-hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  padding: 138px 22px 64px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(5, 5, 31, .95), rgba(5, 5, 31, .82) 48%, rgba(6, 137, 119, .28)),
    url("/assets/v25-academy-system.jpg") center / cover no-repeat;
}

.v26-hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 227, 155, .6), transparent);
}

.v26-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  align-items: center;
  gap: 58px;
}

.v26-hero-copy h1 {
  max-width: 840px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(68px, 8vw, 128px);
  line-height: .82;
  letter-spacing: 0;
}

.v26-hero-copy .hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.22;
}

.v26-hero-copy .eyebrow,
.v26-sub-hero .eyebrow {
  color: #ffe39b;
}

.v26-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .16);
}

.v26-hero-metrics div {
  padding: 22px;
  background: rgba(5, 5, 31, .48);
}

.v26-hero-metrics strong {
  display: block;
  color: #ffe39b;
  font-size: 44px;
  line-height: .9;
}

.v26-hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.v26-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 44px 120px rgba(0, 0, 0, .34);
}

.v26-hero-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.v26-floating-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  color: var(--v26-ink);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

.v26-floating-note span,
.v26-cover-body span,
.v26-program-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8b5b00;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.v26-floating-note strong {
  display: block;
  font-size: 26px;
  line-height: 1.05;
}

.v26-signal-band {
  padding: 0 22px;
  color: var(--v26-ink);
  background: var(--v26-cream);
}

.v26-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--v26-line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: var(--v26-line);
}

.v26-signal-grid article {
  padding: 26px;
  background: var(--v26-paper);
}

.v26-signal-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--v26-teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.v26-signal-grid strong {
  display: block;
  font-size: 22px;
  line-height: 1.08;
}

.v26-sub-hero {
  background:
    linear-gradient(135deg, rgba(5, 5, 31, .94), rgba(5, 5, 31, .78)),
    url("/assets/v25-academy-system.jpg") center / cover no-repeat;
}

.sub-hero.v26-sub-hero {
  color: #ffffff;
}

.sub-hero.v26-sub-hero::after {
  display: none !important;
}

.sub-hero.v26-sub-hero .eyebrow {
  color: #ffe39b;
}

.sub-hero.v26-sub-hero h1 {
  color: #ffffff;
  line-height: .96;
}

.sub-hero.v26-sub-hero .hero-lead {
  color: rgba(255, 255, 255, .78);
}

.sub-hero.v26-sub-hero .button.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
}

.sub-hero h1 {
  line-height: .96;
}

.v26-product-section {
  background:
    linear-gradient(180deg, #fffdf8, #f7efe0);
}

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

.v26-cover-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 74px rgba(5, 5, 31, .10);
}

.v26-cover-media {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 265px;
}

.v26-cover-media img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  transition: transform .5s ease;
}

.v26-cover-card:hover .v26-cover-media img {
  transform: scale(1.035);
}

.v26-cover-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.v26-cover-body h3 {
  margin: 0 0 12px;
  color: var(--v26-ink);
  font-size: 30px;
  line-height: 1.02;
}

.v26-cover-body p {
  color: rgba(5, 5, 31, .68);
  font-weight: 650;
}

.v26-cover-body ul,
.v26-fit-list ul,
.v26-diagnostic-panel ul {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.v26-cover-body li,
.v26-fit-list li,
.v26-diagnostic-panel li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-top: 1px solid rgba(5, 5, 31, .08);
  color: rgba(5, 5, 31, .72);
  font-weight: 750;
}

.v26-cover-body li::before,
.v26-fit-list li::before,
.v26-diagnostic-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v26-teal);
}

.v26-cover-body .button {
  margin-top: auto;
}

.v26-editorial {
  background: #fffdf8;
}

.v26-diagnostic-panel,
.v26-program-card,
.v26-fit-list {
  padding: 34px;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(5, 5, 31, .08);
}

.v26-diagnostic-panel h3,
.v26-program-card h3,
.v26-fit-list h3 {
  margin-top: 0;
  color: var(--v26-ink);
  font-size: 30px;
  line-height: 1.05;
}

.v26-split-dark {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 38px;
  padding: 44px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(5, 5, 31, .96), rgba(5, 5, 31, .86)),
    url("/assets/v25-hero-dashboard.jpg") center / cover no-repeat;
  box-shadow: 0 34px 100px rgba(5, 5, 31, .18);
}

.v26-split-dark .section-title,
.v26-split-dark .section-kicker {
  color: #ffffff;
}

.v26-split-dark p {
  color: rgba(255, 255, 255, .78);
}

.v26-module-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: rgba(5, 5, 31, .12);
}

.v26-module-row {
  display: grid;
  grid-template-columns: 92px minmax(180px, .8fr) minmax(260px, 1.2fr) minmax(170px, .7fr);
  align-items: center;
  gap: 22px;
  padding: 24px;
  background: #ffffff;
}

.v26-split-dark .v26-module-row {
  background: rgba(255, 255, 255, .08);
}

.v26-module-row span {
  display: inline-flex;
  justify-content: center;
  padding: 11px 12px;
  border-radius: 8px;
  color: #7d4a00;
  background: #fff0c2;
  font-weight: 950;
}

.v26-module-row h3,
.v26-module-row p {
  margin: 0;
}

.v26-module-row h3 {
  color: var(--v26-ink);
  font-size: 24px;
  line-height: 1.06;
}

.v26-split-dark .v26-module-row h3 {
  color: #ffffff;
}

.v26-module-row p {
  color: rgba(5, 5, 31, .66);
  font-weight: 650;
}

.v26-split-dark .v26-module-row p {
  color: rgba(255, 255, 255, .72);
}

.v26-module-row strong {
  color: var(--v26-teal);
  font-size: 15px;
}

.v26-split-dark .v26-module-row strong {
  color: #ffe39b;
}

.v26-admission-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.v26-admission-steps article,
.v26-large-number {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 32px;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 66px rgba(5, 5, 31, .08);
}

.v26-admission-steps b,
.v26-large-number span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--v26-teal);
  font-size: 44px;
  line-height: .9;
}

.v26-admission-steps h3,
.v26-large-number h2 {
  margin: 0 0 14px;
  color: var(--v26-ink);
  font-size: 32px;
  line-height: 1.02;
}

.v26-admission-steps p,
.v26-large-number p {
  color: rgba(5, 5, 31, .68);
  font-size: 18px;
  font-weight: 650;
}

.v26-proof-rail {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.v26-proof-rail article {
  overflow: hidden;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 74px rgba(5, 5, 31, .10);
}

.v26-proof-rail img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.v26-proof-rail span,
.v26-proof-rail strong {
  display: block;
  margin: 0 26px;
}

.v26-proof-rail span {
  margin-top: 24px;
  color: #8b5b00;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.v26-proof-rail strong {
  margin-top: 10px;
  margin-bottom: 28px;
  color: var(--v26-ink);
  font-size: 28px;
  line-height: 1.05;
}

.v26-fit-section {
  background:
    linear-gradient(180deg, #fffdf8, #f7efe0);
}

.v26-fit-grid {
  display: grid;
  grid-template-columns: 1fr .9fr .9fr;
  gap: 24px;
  align-items: stretch;
}

.v26-fit-list.good {
  border-top: 5px solid var(--v26-teal);
}

.v26-fit-list.bad {
  border-top: 5px solid var(--v26-rust);
}

.v26-product-shell {
  background: #fffdf8;
}

.v26-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: stretch;
}

.v26-program-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.v26-program-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin: -34px -34px 26px;
  max-width: calc(100% + 68px);
}

.v26-program-card strong {
  display: block;
  margin-top: auto;
  padding: 18px;
  border-radius: 8px;
  color: var(--v26-ink);
  background: #fff0c2;
  font-size: 18px;
}

.cta-band .button + .button,
.hero-actions .button + .button {
  margin-left: 10px;
}

@media (max-width: 1120px) {
  .v26-hero-grid,
  .v26-product-grid,
  .v26-fit-grid,
  .v26-split-dark {
    grid-template-columns: 1fr;
  }

  .v26-cover-grid,
  .v26-admission-steps,
  .v26-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v26-hero-copy h1 {
    font-size: clamp(58px, 12vw, 92px);
  }
}

@media (max-width: 820px) {
  .v26-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .v26-hero-visual,
  .v26-hero-visual img {
    min-height: 0;
    height: auto;
  }

  .v26-floating-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -56px 14px 14px;
  }

  .v26-cover-grid,
  .v26-admission-steps,
  .v26-signal-grid,
  .v26-proof-rail,
  .v26-hero-metrics {
    grid-template-columns: 1fr;
  }

  .v26-module-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .v26-split-dark {
    padding: 28px;
  }

  .v26-cover-media,
  .v26-cover-media img,
  .v26-proof-rail img {
    height: 220px;
    min-height: 0;
  }

  .v26-admission-steps article,
  .v26-large-number {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .v26-hero-copy h1 {
    font-size: 54px;
  }

  .v26-hero-copy .hero-lead {
    font-size: 20px;
  }

  .v26-cover-body,
  .v26-diagnostic-panel,
  .v26-program-card,
  .v26-fit-list {
    padding: 24px;
  }

  .v26-program-card img {
    margin: -24px -24px 22px;
    max-width: calc(100% + 48px);
  }

  .hero-actions {
    gap: 10px;
  }

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

  .cta-band .button + .button,
  .hero-actions .button + .button {
    margin-left: 0;
  }
}

/* V27: signature academy layer */
.v26-sub-hero {
  background:
    linear-gradient(135deg, rgba(5, 5, 31, .94), rgba(5, 5, 31, .78)),
    url("/assets/v27-hero-atlas.jpg") center / cover no-repeat;
}

.v27-hero-visual img {
  filter: saturate(1.04) contrast(1.02);
}

.v27-manifest {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fffdf8 0%, #f7efe0 100%);
}

.v27-manifest::before,
.v27-catalogue-signature::before,
.v27-program-signature::before,
.v27-focus-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 137, 119, .08), transparent 34%),
    linear-gradient(180deg, transparent, rgba(216, 155, 20, .08));
}

.v27-manifest-grid,
.v27-proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .95fr);
  gap: 48px;
  align-items: center;
}

.v27-framed-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 38px 100px rgba(5, 5, 31, .14);
}

.dark .v27-framed-visual {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .28);
}

.v27-framed-visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  background: #fffdf8;
}

.v27-framed-visual figcaption {
  padding: 18px 22px;
  color: rgba(5, 5, 31, .68);
  font-weight: 750;
  background: rgba(255, 253, 248, .94);
}

.v27-proof-section {
  background:
    linear-gradient(135deg, rgba(5, 5, 31, .96), rgba(42, 35, 54, .94)),
    url("/assets/v27-proof-wall.jpg") center / cover no-repeat;
}

.v27-proof-section .section-title,
.v27-proof-section p {
  color: #ffffff;
}

.v27-proof-section p {
  color: rgba(255, 255, 255, .78);
}

.v27-catalogue-signature,
.v27-focus-signature {
  position: relative;
  overflow: hidden;
  background: #fffdf8;
}

.v27-program-signature {
  position: relative;
  overflow: hidden;
  background: #f7efe0;
}

.v27-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.v27-guide-card {
  display: grid;
  gap: 12px;
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(5, 5, 31, .12);
  border-radius: 8px;
  color: var(--v26-ink);
  background: rgba(255, 255, 255, .82);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(5, 5, 31, .06);
}

.v27-guide-card span {
  color: var(--v26-teal);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.v27-guide-card strong {
  font-size: 23px;
  line-height: 1.08;
}

.v27-guide-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 137, 119, .32);
  box-shadow: 0 26px 70px rgba(5, 5, 31, .10);
}

.v27-guide-hero {
  min-height: 66vh;
}

@media (max-width: 980px) {
  .v27-manifest-grid,
  .v27-proof-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .v27-framed-visual img {
    min-height: 0;
    max-height: none;
  }

  .v27-guide-grid {
    grid-template-columns: 1fr;
  }

  .v27-guide-card {
    min-height: 0;
  }
}

/* V28: direction artistique academie premium */
.site-header.academy-header {
  background: rgba(5, 7, 31, .92);
  backdrop-filter: blur(18px);
}

.v28-hero {
  min-height: 94vh;
  padding-top: 128px;
  background:
    linear-gradient(120deg, rgba(5, 7, 31, .98), rgba(5, 7, 31, .9) 42%, rgba(5, 7, 31, .42)),
    url("/assets/v28-academy-hero.jpg") center / cover no-repeat;
}

.v28-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 31, .86) 0%, rgba(5, 7, 31, .44) 54%, rgba(5, 7, 31, .12) 100%),
    radial-gradient(circle at 20% 76%, rgba(255, 183, 3, .18), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(9, 137, 119, .18), transparent 34%);
}

.v28-hero .v26-hero-grid {
  z-index: 1;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1fr);
  gap: 52px;
}

.v28-hero .v26-hero-copy h1 {
  max-width: 820px;
  font-size: 104px;
  line-height: .86;
}

.v28-hero .v26-hero-copy .hero-lead {
  max-width: 700px;
  font-size: 27px;
  line-height: 1.24;
}

.v28-hero .v26-hero-metrics {
  max-width: 660px;
  background: rgba(255, 255, 255, .08);
}

.v28-hero-visual {
  min-height: 560px;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 48px 130px rgba(0, 0, 0, .40);
}

.v28-hero-visual img {
  height: 560px;
  object-fit: cover;
  object-position: 72% center;
}

.v28-hero .v26-floating-note {
  left: 32px;
  right: 32px;
  bottom: 32px;
}

.v28-spine {
  color: #ffffff;
  background:
    linear-gradient(135deg, #05071f 0%, #082c31 100%);
}

.v28-spine .section-title,
.v28-spine .section-text {
  color: #ffffff;
}

.v28-spine .section-text {
  color: rgba(255, 255, 255, .74);
}

.v28-spine-head {
  max-width: 880px;
  margin-bottom: 34px;
}

.v28-spine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
}

.v28-spine-grid article {
  min-height: 250px;
  padding: 30px;
  background: rgba(255, 255, 255, .06);
}

.v28-spine-grid span {
  display: block;
  margin-bottom: 56px;
  color: #ffe39b;
  font-size: 46px;
  font-weight: 950;
  line-height: .9;
}

.v28-spine-grid h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 29px;
  line-height: 1.02;
}

.v28-spine-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.v28-manifest {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f4ebdb 100%);
}

.v28-framed-visual {
  border-color: rgba(5, 7, 31, .14);
  box-shadow: 0 34px 92px rgba(5, 7, 31, .13);
}

.v28-framed-visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}

.v28-catalogue-board {
  background:
    linear-gradient(180deg, #f7efe0 0%, #fffdf8 100%);
}

.v28-product-signature {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f7efe0 100%);
}

.v27-program-signature,
.v27-focus-signature,
.v27-catalogue-signature {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f7efe0 100%);
}

.v26-cover-grid {
  align-items: stretch;
}

.v26-cover-card {
  box-shadow: 0 22px 64px rgba(5, 7, 31, .09);
}

.v26-cover-card:first-child {
  grid-column: span 2;
}

.v26-cover-card:first-child .v26-cover-media,
.v26-cover-card:first-child .v26-cover-media img {
  min-height: 330px;
  height: 330px;
}

.v26-cover-card:first-child .v26-cover-body h3 {
  font-size: 38px;
}

.v26-cover-media img {
  object-position: center;
}

.v27-proof-section {
  background:
    linear-gradient(135deg, rgba(5, 7, 31, .96), rgba(38, 31, 42, .94)),
    url("/assets/v28-proof-ledger.jpg") center / cover no-repeat;
}

.v26-sub-hero {
  background:
    linear-gradient(135deg, rgba(5, 7, 31, .98), rgba(5, 7, 31, .90)),
    url("/assets/v28-catalogue-wall.jpg") center / cover no-repeat;
}

@media (max-width: 980px) {
  .v28-hero .v26-hero-grid {
    grid-template-columns: 1fr;
  }

  .v28-hero .v26-hero-copy h1 {
    font-size: 68px;
  }

  .v28-hero .v26-hero-copy .hero-lead {
    font-size: 24px;
  }

  .v28-hero-visual,
  .v28-hero-visual img {
    min-height: 0;
    height: auto;
  }

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

  .v26-cover-card:first-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .v28-hero {
    min-height: 0;
    padding-top: 150px;
    padding-bottom: 52px;
  }

  .v28-hero .v26-hero-copy h1 {
    font-size: 50px;
    line-height: .92;
  }

  .v28-hero .v26-hero-copy .hero-lead {
    font-size: 22px;
  }

  .v28-hero .v26-floating-note {
    position: static;
    margin: 16px;
  }

  .v28-spine-grid {
    grid-template-columns: 1fr;
  }

  .v28-spine-grid article {
    min-height: 0;
    padding: 24px;
  }

  .v28-spine-grid span {
    margin-bottom: 22px;
  }

  .v26-cover-card:first-child .v26-cover-media,
  .v26-cover-card:first-child .v26-cover-media img {
    min-height: 240px;
    height: 240px;
  }

  .v26-cover-card:first-child .v26-cover-body h3 {
    font-size: 30px;
  }
}

/* V29: identité visuelle Mission Libre */
.brand-logo-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.footer .brand-logo-mark {
  box-shadow: none;
}

.site-header.academy-header .brand {
  gap: 13px;
}

.site-header.academy-header .brand-name {
  color: #fff8ea;
}

.site-header.academy-header .brand-name small {
  color: rgba(255, 248, 234, .68);
}

.v28-hero {
  background:
    linear-gradient(120deg, rgba(5, 7, 31, .94), rgba(5, 7, 31, .76) 42%, rgba(5, 7, 31, .26)),
    url("/assets/v29-hero-identity.jpg") center / cover no-repeat;
}

.v28-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 31, .88) 0%, rgba(5, 7, 31, .48) 56%, rgba(5, 7, 31, .14) 100%),
    linear-gradient(180deg, rgba(5, 7, 31, .08), rgba(5, 7, 31, .64));
}

.v29-hero-visual {
  border-color: rgba(255, 248, 234, .24);
  background: rgba(5, 7, 31, .42);
}

.v29-hero-visual img {
  object-position: center;
}

.v29-identity-section {
  position: relative;
  overflow: hidden;
  color: var(--v20-ink);
  background:
    linear-gradient(180deg, #fff8ea 0%, #f7efe0 100%);
}

.v29-identity-section::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -180px;
  width: 640px;
  height: 640px;
  border: 2px solid rgba(255, 183, 3, .34);
  border-radius: 50%;
  pointer-events: none;
}

.v29-identity-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .8fr);
  gap: 46px;
  align-items: center;
}

.v29-identity-copy .section-title {
  max-width: 760px;
}

.v29-brand-lockup {
  padding: 30px;
  border: 1px solid rgba(5, 7, 31, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 26px 80px rgba(5, 7, 31, .10);
}

.v29-brand-lockup img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
}

.v29-brand-lockup span {
  display: block;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(5, 7, 31, .10);
  color: rgba(5, 7, 31, .64);
  font-weight: 800;
}

.v29-framed-visual {
  background: #fff8ea;
}

.v29-framed-visual img {
  background: #fff8ea;
}

.v27-proof-section {
  background:
    linear-gradient(135deg, rgba(5, 7, 31, .94), rgba(8, 44, 49, .90)),
    url("/assets/v29-proof-system.jpg") center / cover no-repeat;
}

.v26-sub-hero {
  background:
    linear-gradient(135deg, rgba(5, 7, 31, .96), rgba(8, 44, 49, .86)),
    url("/assets/v29-catalogue-identity.jpg") center / cover no-repeat;
}

.v26-cover-card {
  overflow: hidden;
}

.v26-cover-card:hover {
  border-color: rgba(7, 138, 120, .30);
}

.v26-cover-card .v26-cover-body span,
.section-kicker {
  color: #078a78;
}

.v26-cover-card .button.secondary {
  background: #fff8ea;
}

.v26-split-dark .v26-module-row {
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: start;
}

.v26-split-dark .v26-module-row p,
.v26-split-dark .v26-module-row strong {
  grid-column: 2;
}

@media (max-width: 1180px) {
  .v26-module-row {
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: start;
  }

  .v26-module-row p,
  .v26-module-row strong {
    grid-column: 2;
  }
}

@media (max-width: 980px) {
  .v29-identity-grid {
    grid-template-columns: 1fr;
  }

  .v29-brand-lockup {
    max-width: 640px;
  }
}

@media (max-width: 620px) {
  .brand-logo-mark {
    width: 40px;
    height: 40px;
  }

  .v29-identity-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .v29-brand-lockup {
    padding: 20px;
  }

  .v26-module-row,
  .v26-split-dark .v26-module-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v26-module-row p,
  .v26-module-row strong,
  .v26-split-dark .v26-module-row p,
  .v26-split-dark .v26-module-row strong {
    grid-column: auto;
  }
}

/* V30: polish premier écran et différenciation des pages produit */
.v30-formations-hero {
  background:
    linear-gradient(105deg, rgba(5, 7, 31, .96) 0%, rgba(8, 44, 49, .82) 56%, rgba(5, 7, 31, .40) 100%),
    url("/assets/v29-catalogue-identity.jpg") center / cover no-repeat;
}

.v30-webmarketing-hero {
  background:
    linear-gradient(105deg, rgba(5, 7, 31, .96) 0%, rgba(5, 7, 31, .72) 52%, rgba(5, 7, 31, .24) 100%),
    url("/assets/v29-program-webmarketing.jpg") center / cover no-repeat;
}

.v30-focus-hero {
  background:
    linear-gradient(105deg, rgba(5, 7, 31, .94) 0%, rgba(8, 44, 49, .74) 54%, rgba(255, 248, 234, .10) 100%),
    url("/assets/v29-focus-sprint.jpg") center / cover no-repeat;
}

.v30-formations-hero .wrap,
.v30-webmarketing-hero .wrap,
.v30-focus-hero .wrap {
  max-width: 980px;
  margin-left: max(22px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
}

.v30-formations-hero::before,
.v30-webmarketing-hero::before,
.v30-focus-hero::before {
  content: "";
  position: absolute;
  right: 6vw;
  bottom: -130px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(255, 183, 3, .34);
  border-radius: 50%;
  background: none;
  pointer-events: none;
}

.v30-formations-hero h1,
.v30-webmarketing-hero h1,
.v30-focus-hero h1 {
  max-width: 820px;
}

.v30-formations-hero .hero-lead,
.v30-webmarketing-hero .hero-lead,
.v30-focus-hero .hero-lead {
  max-width: 660px;
}

@media (max-width: 620px) {
  .v28-hero {
    padding-top: 116px;
  }

  .v28-hero .v26-hero-copy h1 {
    font-size: 46px;
    line-height: .94;
  }

  .v28-hero .v26-hero-copy .hero-lead {
    font-size: 18px;
    line-height: 1.34;
  }

  .v26-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .v26-hero-metrics div {
    min-width: 0;
    padding: 14px 10px;
  }

  .v26-hero-metrics strong {
    font-size: 28px;
  }

  .v26-hero-metrics span {
    margin-top: 5px;
    font-size: 9px;
    line-height: 1.15;
  }

  .v30-formations-hero,
  .v30-webmarketing-hero,
  .v30-focus-hero {
    min-height: 0;
    padding-top: 112px;
    padding-bottom: 64px;
    background-position: center;
  }

  .v30-formations-hero {
    background:
      linear-gradient(105deg, rgba(5, 7, 31, .98) 0%, rgba(8, 44, 49, .92) 64%, rgba(5, 7, 31, .74) 100%),
      url("/assets/v29-catalogue-identity.jpg") center / cover no-repeat;
  }

  .v30-webmarketing-hero {
    background:
      linear-gradient(105deg, rgba(5, 7, 31, .98) 0%, rgba(5, 7, 31, .94) 64%, rgba(5, 7, 31, .72) 100%),
      url("/assets/v29-program-webmarketing.jpg") center / cover no-repeat;
  }

  .v30-focus-hero {
    background:
      linear-gradient(105deg, rgba(5, 7, 31, .98) 0%, rgba(8, 44, 49, .94) 64%, rgba(5, 7, 31, .74) 100%),
      url("/assets/v29-focus-sprint.jpg") center / cover no-repeat;
  }

  .v30-formations-hero::before,
  .v30-webmarketing-hero::before,
  .v30-focus-hero::before {
    right: -150px;
    bottom: -180px;
    width: 360px;
    height: 360px;
  }

  .v30-formations-hero .wrap,
  .v30-webmarketing-hero .wrap,
  .v30-focus-hero .wrap {
    margin-left: auto;
    margin-right: auto;
  }
}

/* V31: les assets de marque V29 ne doivent jamais être recadrés */
img[src*="/assets/v29-"] {
  object-fit: contain !important;
  object-position: center !important;
}

.v26-hero-visual:has(img[src*="/assets/v29-"]),
.v26-cover-media:has(img[src*="/assets/v29-"]),
.v26-program-card:has(img[src*="/assets/v29-"]),
.program-card-media:has(img[src*="/assets/v29-"]),
.v12-spotlight-media:has(img[src*="/assets/v29-"]),
.v27-framed-visual:has(img[src*="/assets/v29-"]),
.v28-framed-visual:has(img[src*="/assets/v29-"]) {
  background:
    linear-gradient(135deg, #05071f 0%, #082c31 100%);
}

.v26-cover-media:has(img[src*="/assets/v29-"]),
.program-card-media:has(img[src*="/assets/v29-"]),
.v12-spotlight-media:has(img[src*="/assets/v29-"]) {
  display: grid;
  place-items: center;
  padding: 14px;
}

.v26-cover-media img[src*="/assets/v29-"],
.program-card-media img[src*="/assets/v29-"],
.v12-spotlight-media img[src*="/assets/v29-"],
.v26-program-card img[src*="/assets/v29-"] {
  width: 100%;
  height: 100%;
  max-height: 360px;
  background: #05071f;
}

.v29-hero-visual img[src*="/assets/v29-hero-identity"] {
  padding: 16px;
  background: #05071f;
}

.v27-framed-visual img[src*="/assets/v29-"],
.v28-framed-visual img[src*="/assets/v29-"],
.v29-framed-visual img[src*="/assets/v29-"] {
  width: 100%;
  height: auto !important;
  max-height: none;
  padding: 0;
  background: transparent;
}

@media (max-width: 620px) {
  .v26-cover-media:has(img[src*="/assets/v29-"]),
  .program-card-media:has(img[src*="/assets/v29-"]),
  .v12-spotlight-media:has(img[src*="/assets/v29-"]) {
    padding: 10px;
  }

  .v26-cover-media img[src*="/assets/v29-"],
  .program-card-media img[src*="/assets/v29-"],
  .v12-spotlight-media img[src*="/assets/v29-"],
  .v26-program-card img[src*="/assets/v29-"] {
    max-height: 280px;
  }
}
