/* Kairon Academy · visual system v10 */
.academy-body {
  --academy-accent: #d6cfb2;
  --academy-warm: rgba(214, 207, 178, 0.12);
  --academy-section-space: clamp(68px, 6.2vw, 88px);
  --muted: rgba(255, 255, 255, 0.74);
  --soft: rgba(255, 255, 255, 0.56);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);
  background: #050505;
}

.academy-body::before {
  display: none;
}

.page-academy {
  --page-gutter: clamp(28px, 4vw, 56px);
  padding: 0;
  background: #050505;
}

.page-academy .shell {
  background: #050505;
}

.academy-hero-stage::before {
  background:
    radial-gradient(circle at 72% 42%, rgba(214, 207, 178, 0.1), transparent 31%),
    radial-gradient(circle at 28% 50%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.66) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.26) 44%, rgba(0, 0, 0, 0.76) 100%);
}

.academy-hero-stage::after {
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0) 0%,
    rgba(5, 5, 5, 0.22) 40%,
    rgba(5, 5, 5, 0.62) 74%,
    #050505 100%
  );
}

.academy-hero-media::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.54) 0%,
    rgba(0, 0, 0, 0.3) 38%,
    rgba(0, 0, 0, 0.08) 72%,
    rgba(0, 0, 0, 0) 100%
  );
}

.academy-hero-media::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.16) 36%,
    rgba(0, 0, 0, 0.48) 74%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.academy-hero-video {
  filter: grayscale(1) contrast(1.1) brightness(0.8);
}

.academy-hero-endframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.academy-hero-endframe.is-visible {
  opacity: 1;
}

.academy-hero-endframe img {
  position: absolute;
  top: 50%;
  right: clamp(-26px, 1.5vw, 24px);
  display: block;
  width: min(48vw, 680px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  transform: translateY(-50%) scale(0.9);
  transform-origin: center;
}

.academy-hero {
  padding-bottom: clamp(48px, 7vh, 76px);
}

.academy-hero-inner {
  max-width: 1180px;
}

.academy-hero .hero-title {
  max-width: 13ch;
  font-size: clamp(3.5rem, 7.3vw, 7rem);
}

.academy-hero .hero-copy {
  max-width: 39rem;
}

.academy-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.academy-hero-meta span + span {
  position: relative;
}

.academy-hero-meta span + span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -17px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--academy-accent);
  transform: translateY(-50%);
}

.academy-manifesto,
.academy-principles,
.academy-cities,
.academy-collaborations,
.academy-ecosystem,
.academy-closing {
  width: calc(100% - var(--page-gutter) - var(--page-gutter));
  margin-inline: auto;
}

.academy-manifesto {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  margin-top: 0;
  padding-top: clamp(88px, 8vw, 112px);
  padding-bottom: var(--academy-section-space);
}

.academy-section-marker {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.academy-section-marker span {
  color: var(--academy-accent);
  font-size: 0.86rem;
}

.academy-section-marker p {
  margin: 0;
}

.academy-manifesto-copy h2,
.academy-section-head h2,
.academy-cities-intro h2,
.academy-ecosystem-copy h2,
.academy-closing h2 {
  margin: 0;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.academy-manifesto-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.7vw, 5.6rem);
  line-height: 0.96;
}

.academy-manifesto-copy h2 strong,
.academy-cities-intro h2 strong,
.academy-ecosystem-copy h2 strong {
  color: var(--academy-accent);
  font-weight: 600;
}

.academy-copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  max-width: 62rem;
  margin-top: clamp(38px, 6vw, 72px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.academy-copy-columns p,
.academy-cities-intro > p,
.academy-ecosystem-copy > p,
.academy-closing > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.78;
}

.academy-principles {
  margin-top: 0;
  padding-top: var(--academy-section-space);
  padding-bottom: var(--academy-section-space);
}

.academy-section-head {
  display: grid;
  grid-template-columns:
    minmax(130px, 0.24fr)
    minmax(340px, 0.98fr)
    minmax(250px, 0.68fr);
  column-gap: clamp(28px, 4vw, 72px);
  row-gap: 18px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.academy-section-head h2 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1;
}

.academy-method-origin {
  grid-column: 3;
  max-width: 31rem;
  margin: 0 0 0.22rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.68;
}

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

.academy-principle {
  position: relative;
  min-height: 280px;
  padding: clamp(28px, 3vw, 42px);
  border-bottom: 0;
  overflow: hidden;
}

.academy-principle + .academy-principle {
  border-left: 1px solid var(--line);
}

.academy-principle-index {
  position: absolute;
  top: 24px;
  right: 28px;
  margin: 0;
  color: rgba(214, 207, 178, 0.34);
  font-size: clamp(3.2rem, 5vw, 5.3rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.academy-principle h3 {
  position: relative;
  margin: 116px 0 14px;
  color: var(--text);
  font-size: 1.26rem;
  font-weight: 600;
}

.academy-principle > p:last-child {
  position: relative;
  max-width: 18rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.academy-kit-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  margin-top: clamp(56px, 6vw, 82px);
  padding-top: clamp(40px, 4.5vw, 62px);
  border-top: 0;
}

.academy-kit-copy {
  max-width: 31rem;
}

.academy-kit-copy h3 {
  max-width: 10ch;
  margin: 14px 0 0;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 0.98;
  text-wrap: balance;
}

.academy-kit-copy h3 strong {
  color: var(--academy-accent);
  font-weight: 600;
}

.academy-kit-copy > p:not(.academy-kicker, .academy-kit-meta) {
  max-width: 29rem;
  margin: clamp(22px, 2.5vw, 30px) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.74;
}

.academy-kit-meta {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.academy-kit-mockups {
  width: min(100%, 700px);
  margin: 0;
  justify-self: end;
}

.academy-kit-mockups img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.28));
}

.academy-cities {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  margin-top: 0;
  padding-top: var(--academy-section-space);
  padding-bottom: var(--academy-section-space);
}

.academy-cities-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.academy-cities-intro h2 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5.7vw, 5.6rem);
  line-height: 0.96;
}

.academy-cities-intro > p {
  max-width: 31rem;
  justify-self: end;
  padding-bottom: 0.35rem;
  font-size: 0.98rem;
  line-height: 1.68;
}

.academy-city-list {
  margin-top: clamp(46px, 7vw, 82px);
  border-top: 1px solid var(--line);
}

.academy-city {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 218px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.academy-city::before,
.academy-city::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.academy-city::before {
  z-index: 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 116%;
  filter: grayscale(1) contrast(1.18) brightness(1.24);
  opacity: 0.68;
}

.academy-city::after {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 5, 0.98) 0%,
    rgba(5, 5, 5, 0.86) 24%,
    rgba(5, 5, 5, 0.5) 46%,
    rgba(5, 5, 5, 0.18) 70%,
    rgba(5, 5, 5, 0.26) 100%
  );
}

.academy-city.is-geneva::before {
  background-image: url('/assets/academy-geneva-seal-v1.jpg');
}

.academy-city.is-valencia::before {
  background-image: url('/assets/academy-valencia-seal-v1.jpg');
}

.academy-city > * {
  position: relative;
  z-index: 2;
}

.academy-city-status {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.64);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.academy-city h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.academy-city > p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.86);
}

.academy-collaborations {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  margin-top: 0;
  padding-top: var(--academy-section-space);
  padding-bottom: var(--academy-section-space);
}

.academy-collaborations-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.academy-collaborations-intro h2 {
  max-width: 11ch;
  margin: 0;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: clamp(2.8rem, 5.7vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 0.96;
  text-wrap: balance;
}

.academy-collaborations-intro h2 strong {
  color: var(--academy-accent);
  font-weight: 600;
}

.academy-collaborations-intro > p {
  margin: 0;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.78;
}

.academy-collaboration-list {
  margin-top: clamp(48px, 7vw, 84px);
}

.academy-collaboration {
  display: grid;
  grid-template-columns: 58px minmax(230px, 0.72fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 46px);
  align-items: center;
  min-height: 154px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.academy-collaboration:last-child {
  border-bottom: 1px solid var(--line);
}

.academy-collaboration-index {
  margin: 0;
  color: var(--academy-accent);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.academy-collaboration-type {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.58);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.academy-collaboration h3 {
  max-width: 18ch;
  margin: 0;
  color: var(--text);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.academy-collaboration > p:last-child {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.72;
}

.academy-collaboration-boundary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  margin-top: 28px;
  padding: 22px 24px;
  background: rgba(214, 207, 178, 0.08);
}

.academy-collaboration-boundary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.academy-collaboration-boundary a {
  color: var(--academy-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.academy-collaboration-boundary a:hover,
.academy-collaboration-boundary a:focus-visible {
  color: var(--text);
}

.academy-ecosystem {
  display: grid;
  justify-items: center;
  margin-top: 0;
  padding-top: var(--academy-section-space);
  padding-bottom: var(--academy-section-space);
  text-align: center;
}

.academy-ecosystem-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 56rem;
}

.academy-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.academy-ecosystem-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
}

.academy-ecosystem-copy > p {
  max-width: 45rem;
}

.academy-method-guide {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(350px, 0.88fr) minmax(430px, 1.12fr);
  width: 100%;
  max-width: 1160px;
  min-height: 610px;
  margin-top: clamp(50px, 6.5vw, 82px);
  overflow: hidden;
  border: 1px solid rgba(214, 207, 178, 0.34);
  background: #d9d2b8;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  color: #090909;
  text-align: left;
  text-decoration: none;
}

.academy-method-guide::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(8, 8, 8, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 76% 42%, rgba(255, 255, 255, 0.3), transparent 34%);
  background-size: 100% 92px, 92px 100%, auto;
  pointer-events: none;
}

.academy-method-guide::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 44%;
  border-left: 1px solid rgba(8, 8, 8, 0.13);
  pointer-events: none;
}

.academy-method-guide-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 3.4vw, 46px) clamp(34px, 4.3vw, 60px) clamp(36px, 4.5vw, 56px);
}

.academy-method-guide-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(9, 9, 9, 0.22);
  color: rgba(9, 9, 9, 0.66);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.academy-method-guide-kicker {
  margin: clamp(45px, 5vw, 70px) 0 0;
  color: rgba(9, 9, 9, 0.58);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.academy-method-guide-copy h3 {
  max-width: 7.8ch;
  margin: 21px 0 0;
  color: #090909;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: clamp(3.15rem, 4.9vw, 5.1rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-wrap: balance;
}

.academy-method-guide-copy > p {
  max-width: 27rem;
  margin: 25px 0 0;
  color: rgba(9, 9, 9, 0.68);
  font-size: 0.96rem;
  line-height: 1.62;
}

.academy-method-guide-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 31px;
  border-top: 1px solid rgba(9, 9, 9, 0.18);
  border-bottom: 1px solid rgba(9, 9, 9, 0.18);
}

.academy-method-guide-index span {
  display: grid;
  gap: 7px;
  padding: 13px 12px 14px;
  border-left: 1px solid rgba(9, 9, 9, 0.13);
  color: rgba(9, 9, 9, 0.64);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.academy-method-guide-index span:first-child {
  padding-left: 0;
  border-left: 0;
}

.academy-method-guide-index b {
  color: #090909;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.87rem;
  letter-spacing: -0.02em;
}

.academy-method-guide-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: auto;
  padding-top: 29px;
  color: #090909;
  font-size: 0.96rem;
  font-weight: 600;
}

.academy-method-guide-action > span {
  display: grid;
  gap: 5px;
}

.academy-method-guide-action small {
  color: rgba(9, 9, 9, 0.54);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.academy-method-guide-action i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(9, 9, 9, 0.58);
  border-radius: 999px;
  font-size: 1.08rem;
  font-style: normal;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.academy-method-guide-visual {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 41%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(7, 7, 7, 0.025), rgba(7, 7, 7, 0.17));
}

.academy-method-guide-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  width: min(70%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(5, 5, 5, 0.15);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.academy-method-guide-visual::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgba(5, 5, 5, 0.1);
}

.academy-method-guide-edition {
  position: absolute;
  z-index: 5;
  top: 30px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(9, 9, 9, 0.64);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.academy-method-guide-edition b {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(9, 9, 9, 0.36);
  border-radius: 999px;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: -0.02em;
}

.academy-method-guide-pages {
  position: absolute;
  top: 50%;
  right: 1%;
  width: 94%;
  height: 80%;
  transform: translateY(-48%);
}

.academy-method-guide-page {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: min(48%, 300px);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #050505;
  object-fit: cover;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.33);
  transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.academy-method-guide-page-back {
  z-index: 1;
  opacity: 0.82;
  transform: translate(-73%, -47%) rotate(-7deg);
}

.academy-method-guide-page-front {
  z-index: 2;
  transform: translate(-27%, -51%) rotate(2.4deg);
}

.academy-method-guide-note {
  position: absolute;
  z-index: 5;
  right: 32px;
  bottom: 28px;
  color: rgba(9, 9, 9, 0.52);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.academy-method-guide:hover .academy-method-guide-page-front,
.academy-method-guide:focus-visible .academy-method-guide-page-front {
  transform: translate(-24%, -53%) rotate(1deg);
}

.academy-method-guide:hover .academy-method-guide-page-back,
.academy-method-guide:focus-visible .academy-method-guide-page-back {
  transform: translate(-77%, -48%) rotate(-8.5deg);
}

.academy-method-guide:hover .academy-method-guide-action i,
.academy-method-guide:focus-visible .academy-method-guide-action i {
  color: #d9d2b8;
  background: #090909;
  transform: rotate(5deg) scale(1.04);
}

.academy-closing {
  margin-top: 0;
  padding: var(--academy-section-space) clamp(28px, 7vw, 108px);
  background: transparent;
}

.academy-closing h2 {
  max-width: 12ch;
  margin-top: 20px;
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  line-height: 0.95;
}

.academy-closing > p {
  max-width: 38rem;
  margin-top: 28px;
}

.academy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.academy-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.academy-actions .academy-primary-action {
  border-color: var(--academy-accent);
  background: var(--academy-accent);
  color: #080808;
}

.academy-actions a:hover,
.academy-actions a:focus-visible {
  border-color: var(--text);
  background: var(--text);
  color: #080808;
}

@media (max-width: 980px) {
  .academy-manifesto,
  .academy-section-head,
  .academy-cities,
  .academy-collaborations {
    grid-template-columns: 1fr;
  }

  .academy-cities-intro,
  .academy-collaborations-intro {
    grid-template-columns: 1fr;
  }

  .academy-kit-feature {
    grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
    gap: clamp(24px, 4vw, 46px);
  }

  .academy-kit-copy > p:not(.academy-kicker, .academy-kit-meta) {
    max-width: 30rem;
  }

  .academy-cities-intro > p {
    max-width: 38rem;
    padding-bottom: 0;
  }

  .academy-collaborations-intro > p {
    max-width: 38rem;
    padding-bottom: 0;
  }

  .academy-method-guide {
    grid-template-columns: minmax(290px, 0.88fr) minmax(360px, 1.12fr);
  }

  .academy-method-origin {
    grid-column: 1;
    max-width: 42rem;
  }
}

@media (max-width: 720px) {
  .page-academy {
    --page-gutter: 22px;
  }

  .academy-hero-stage::before {
    background:
      radial-gradient(circle at 70% 38%, rgba(214, 207, 178, 0.08), transparent 32%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 46%, rgba(0, 0, 0, 0.94) 100%);
  }

  .academy-hero-video {
    object-position: 50% 24%;
  }

  .academy-hero-endframe img {
    top: clamp(58px, 8vh, 82px);
    right: auto;
    left: 50%;
    width: min(86vw, 360px);
    transform: translateX(-50%) scale(0.94);
  }

  .academy-hero .hero-title {
    max-width: 8.8ch;
    font-size: clamp(2.9rem, 13.3vw, 4.5rem);
  }

  .academy-hero-meta {
    display: grid;
    gap: 8px;
    margin-top: 28px;
  }

  .academy-hero-meta span + span::before {
    display: none;
  }

  .academy-manifesto,
  .academy-principles,
  .academy-cities,
  .academy-collaborations,
  .academy-ecosystem,
  .academy-closing {
    width: calc(100% - 44px);
  }

  .academy-manifesto {
    margin-top: 0;
    padding-top: 72px;
  }

  .academy-manifesto-copy h2,
  .academy-cities-intro h2,
  .academy-collaborations-intro h2 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .academy-copy-columns,
  .academy-principles-grid,
  .academy-city {
    grid-template-columns: 1fr;
  }

  .academy-copy-columns {
    gap: 22px;
  }

  .academy-section-head h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .academy-kit-feature {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 64px;
    padding-top: 38px;
  }

  .academy-kit-copy {
    max-width: 33rem;
  }

  .academy-kit-copy h3 {
    max-width: 9ch;
    font-size: clamp(2.35rem, 10.5vw, 3.7rem);
  }

  .academy-kit-mockups {
    width: min(100%, 520px);
    justify-self: center;
  }

  .academy-principle {
    min-height: 230px;
    padding: 26px 22px;
  }

  .academy-principle + .academy-principle {
    border-left: 0;
  }

  .academy-principle h3 {
    margin-top: 90px;
  }

  .academy-city {
    gap: 22px;
    min-height: 0;
    padding: 34px 0;
  }

  .academy-city::before {
    background-position: 64% center;
    background-size: auto 108%;
    filter: grayscale(1) contrast(1.16) brightness(1.18);
    opacity: 0.56;
  }

  .academy-city::after {
    background: linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.76) 48%,
      rgba(5, 5, 5, 0.3) 100%
    );
  }

  .academy-city h3 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .academy-collaboration {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px 18px;
    align-items: start;
    min-height: 0;
    padding: 28px 0;
  }

  .academy-collaboration > p:last-child {
    grid-column: 2;
    max-width: 34rem;
  }

  .academy-collaboration-boundary {
    align-items: flex-start;
    padding: 20px;
  }

  .academy-method-guide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .academy-method-guide::after {
    display: none;
  }

  .academy-method-guide-copy {
    min-height: 620px;
    padding: 28px 28px 34px;
  }

  .academy-method-guide-kicker {
    margin-top: 42px;
  }

  .academy-method-guide-copy h3 {
    max-width: 7.5ch;
    font-size: clamp(3.05rem, 13.8vw, 4.5rem);
  }

  .academy-method-guide-action {
    margin-top: 34px;
  }

  .academy-method-guide-visual {
    min-height: 500px;
  }

  .academy-method-guide-pages {
    right: 0;
    width: 100%;
    height: 78%;
  }

  .academy-method-guide-page {
    width: min(46%, 245px);
  }

  .academy-method-guide-edition {
    top: 25px;
    right: 26px;
  }

  .academy-method-guide-note {
    right: 26px;
    bottom: 23px;
  }

  .academy-ecosystem-copy h2,
  .academy-closing h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .academy-closing {
    padding: 64px 24px;
  }

  .academy-actions {
    display: grid;
  }
}

@media (max-width: 520px) {
  .page-academy {
    --page-gutter: 20px;
  }

  .academy-manifesto,
  .academy-principles,
  .academy-cities,
  .academy-collaborations,
  .academy-ecosystem,
  .academy-closing {
    width: calc(100% - 40px);
  }

  .academy-method-guide-copy {
    min-height: 590px;
    padding-inline: 23px;
  }

  .academy-method-guide-masthead {
    gap: 12px;
    font-size: 0.58rem;
  }

  .academy-method-guide-copy h3 {
    font-size: clamp(2.85rem, 13.5vw, 3.8rem);
  }

  .academy-method-guide-copy > p {
    font-size: 0.91rem;
  }

  .academy-method-guide-index span {
    padding-inline: 8px;
    font-size: 0.6rem;
  }

  .academy-method-guide-visual {
    min-height: 420px;
  }

  .academy-method-guide-page {
    width: min(47%, 205px);
  }

  .academy-method-guide-edition {
    right: 20px;
  }

  .academy-method-guide-note {
    right: 20px;
    max-width: 27ch;
    text-align: right;
  }

}

@media (prefers-reduced-motion: reduce) {
  .academy-hero-endframe {
    transition: none;
  }

  .academy-actions a {
    transition: none;
  }

  .academy-method-guide-page,
  .academy-method-guide-action i {
    transition: none;
  }

}
