:root {
  --ink: #f8fbff;
  --muted: #b9c6d4;
  --night: #03111f;
  --night-2: #061b2e;
  --line: rgba(210, 226, 242, 0.26);
  --yellow: #ffd400;
  --red: #ff2b35;
  --blue-glow: rgba(32, 148, 214, 0.36);
  --ice: #edf4f7;
  --ice-2: #dce9ef;
  --ice-ink: #061725;
  --ice-muted: #476273;
  --steel: #9db4c1;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Source Sans 3", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night);
  color: var(--ink);
  font-family: var(--body);
  scroll-padding-top: 82px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1180px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(31, 113, 171, 0.23), transparent 32rem),
    linear-gradient(180deg, #020b14 0%, #04192a 100%);
  color: var(--ink);
}

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

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 32rem),
    var(--night);
}

.hero {
  position: relative;
  min-height: 602px;
  padding-top: 74px;
  border-bottom: 1px solid rgba(218, 235, 255, 0.28);
  background: #030d18;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 235px 1px 1fr;
  align-items: center;
  height: 74px;
  padding: 0 56px 0 78px;
  background: rgba(1, 12, 23, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  transform: rotate(-20deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  display: block;
  background: var(--yellow);
}

.brand-mark::before {
  top: 18px;
  left: 0;
  width: 44px;
  height: 8px;
  clip-path: polygon(0 48%, 100% 0, 70% 54%, 100% 100%);
}

.brand-mark::after {
  top: -3px;
  left: 20px;
  width: 9px;
  height: 47px;
  transform: skewX(-13deg);
}

.brand-mark span {
  top: 27px;
  left: 4px;
  width: 32px;
  height: 7px;
  transform: rotate(38deg);
}

.brand-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.44);
}

.nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
  padding-left: 304px;
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  color: rgba(255, 255, 255, 0.92);
}

.nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle,
.nav-scrim {
  display: none;
}

.hero-stage {
  position: relative;
  height: 528px;
  overflow: hidden;
  isolation: isolate;
}

.hero-panorama {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: url("./assets/sport-observatory-panorama.jpg");
  background-position: center 44%;
  background-size: cover;
  filter: saturate(0.96) contrast(1.05);
  transform: translate3d(var(--px, 0), var(--py, 0), 0) scale(1.035);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px) 0 0 / 280px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px) 0 0 / 100% 96px;
  mix-blend-mode: screen;
  opacity: 0.58;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 9, 18, 0.93) 0%, rgba(0, 12, 24, 0.78) 26%, rgba(0, 11, 22, 0.33) 52%, rgba(0, 8, 18, 0.86) 100%),
    linear-gradient(0deg, rgba(1, 10, 20, 0.94) 0%, rgba(2, 12, 22, 0.26) 46%, rgba(3, 12, 22, 0.18) 100%);
}

.hero-copy {
  position: absolute;
  top: 72px;
  left: 82px;
  z-index: 5;
  width: 606px;
}

.hero-copy h1 {
  max-width: 590px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 82px;
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: 0;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
  text-wrap: balance;
}

.red-rule {
  display: block;
  width: 74px;
  height: 4px;
  margin: 24px 0 16px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(255, 43, 53, 0.34);
}

.red-rule.small {
  width: 46px;
  height: 3px;
  margin: 12px 0 0;
}

.hero-copy p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: 26px;
  line-height: 1.12;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 186px;
  height: 48px;
  gap: 18px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 16px;
  font-weight: 700;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.button svg,
.method-button svg {
  width: 19px;
  height: 19px;
}

.button:hover,
.audience-row:hover,
.method-button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #06131e;
  background: linear-gradient(180deg, #ffe22e, #ffc400);
  border-color: var(--yellow);
}

.button.secondary {
  background: rgba(3, 18, 31, 0.64);
  backdrop-filter: blur(12px);
}

.founder-card {
  position: absolute;
  top: 22px;
  right: 58px;
  z-index: 6;
  width: 224px;
  height: 430px;
  border: 1px solid rgba(198, 215, 235, 0.42);
  background: rgba(2, 17, 31, 0.87);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.32);
}

.portrait {
  position: relative;
  height: 316px;
  overflow: hidden;
  border-bottom: 1px solid rgba(198, 215, 235, 0.42);
  background: #071829;
}

.portrait img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-angle {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 80px;
  height: 200px;
  background: rgba(255, 212, 0, 0.24);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.founder-meta {
  position: relative;
  height: 114px;
  padding: 23px 24px;
}

.founder-meta::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 82%;
  height: 3px;
  background: var(--red);
}

.founder-meta h2 {
  margin: 0 0 8px;
  font-family: var(--body);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
}

.founder-meta p {
  margin: 0;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 600;
}

.desk-strip {
  position: absolute;
  right: 332px;
  bottom: 0;
  left: 63px;
  z-index: 3;
  height: 196px;
  background-image:
    linear-gradient(180deg, rgba(1, 10, 18, 0), rgba(1, 10, 18, 0.42)),
    url("./assets/observatory-desk-strip.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.9;
  mask-image: linear-gradient(90deg, transparent 0, black 5%, black 95%, transparent 100%);
}

.growth {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 424px;
  gap: 38px;
  min-height: 286px;
  padding: 24px 58px 32px 78px;
  background:
    radial-gradient(circle at 60% 0%, var(--blue-glow), transparent 32rem),
    linear-gradient(180deg, #04182a 0%, #03101f 100%);
}

.growth::before {
  display: none;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--body);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.levers {
  position: relative;
  padding-right: 28px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 10px;
  min-height: 108px;
  margin-top: 34px;
  padding: 48px 8px 0;
}

.timeline-line {
  position: absolute;
  top: 17px;
  right: 34px;
  left: 24px;
  height: 3px;
  background: var(--yellow);
  transform-origin: left;
}

.timeline-arrow {
  position: absolute;
  top: 10px;
  right: 21px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--yellow);
}

.lever {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--yellow);
}

.lever:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -4px;
  height: 70px;
  border-right: 1px dashed rgba(220, 235, 255, 0.45);
}

.lever .number {
  position: absolute;
  top: -46px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  background: #041423;
  border: 3px solid var(--yellow);
  border-radius: 50%;
}

.lever svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.8;
}

.lever span:last-child {
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.method-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 254px;
  height: 39px;
  gap: 14px;
  margin: 23px 0 0 316px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 500;
  background: rgba(6, 21, 36, 0.74);
  border: 1px solid rgba(213, 232, 255, 0.58);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.audience {
  position: relative;
  align-self: start;
  padding-left: 2px;
}

.audience-list {
  display: grid;
  gap: 7px;
  margin-top: 26px;
}

.audience-row {
  display: grid;
  grid-template-columns: 38px 1fr 22px;
  align-items: center;
  min-height: 43px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(213, 232, 255, 0.25);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.audience-row:hover {
  background: rgba(255, 212, 0, 0.08);
  border-color: rgba(255, 212, 0, 0.58);
}

.audience-row svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.86);
  stroke-width: 1.75;
}

.audience-row span {
  font-size: 17px;
  line-height: 1;
}

.audience-row b {
  justify-self: end;
  font-size: 21px;
  font-weight: 400;
}

.intervention-areas,
.audience-paths {
  position: relative;
  padding: 88px 78px;
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 212, 0, 0.1), transparent 22rem),
    linear-gradient(180deg, #03101f 0%, #061b2e 54%, #03111f 100%);
  border-top: 1px solid rgba(213, 232, 255, 0.16);
}

.intervention-areas {
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 212, 0, 0.2), transparent 21rem),
    linear-gradient(180deg, var(--ice) 0%, var(--ice-2) 100%);
  border-top-color: rgba(6, 23, 37, 0.16);
}

.intervention-areas::before,
.audience-paths::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px) 0 0 / 280px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px) 0 0 / 100% 96px;
  opacity: 0.42;
}

.intervention-areas::before {
  background:
    linear-gradient(90deg, rgba(6, 23, 37, 0.09) 0 1px, transparent 1px) 0 0 / 280px 100%,
    linear-gradient(180deg, rgba(6, 23, 37, 0.07) 0 1px, transparent 1px) 0 0 / 100% 96px;
  opacity: 0.58;
}

.section-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: var(--yellow);
}

.section-kicker span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  font-weight: 800;
}

.section-kicker p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.intervention-areas .section-kicker p {
  color: rgba(6, 23, 37, 0.68);
}

.areas-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 348px minmax(0, 1fr) 326px;
  gap: 32px;
  align-items: stretch;
}

.areas-intro {
  padding: 6px 14px 0 0;
}

.areas-intro h2,
.paths-header h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.areas-intro p {
  max-width: 310px;
  margin: 28px 0 0;
  color: rgba(229, 239, 250, 0.78);
  font-size: 18px;
  line-height: 1.38;
}

.intervention-areas .areas-intro p {
  color: var(--ice-muted);
}

.inline-action,
.dossier-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: var(--yellow);
  font-weight: 800;
}

.intervention-areas .inline-action {
  color: #8a6f00;
}

.inline-action svg,
.dossier-link svg {
  width: 18px;
  height: 18px;
}

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

.area-card {
  min-height: 128px;
  padding: 18px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(213, 232, 255, 0.2);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.intervention-areas .area-card {
  color: var(--ice-ink);
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(6, 23, 37, 0.17);
}

.area-card:hover,
.area-card.is-active {
  transform: translateY(-3px);
  background: rgba(255, 212, 0, 0.075);
  border-color: rgba(255, 212, 0, 0.7);
}

.intervention-areas .area-card:hover,
.intervention-areas .area-card.is-active {
  background: rgba(255, 212, 0, 0.22);
  border-color: rgba(184, 145, 0, 0.72);
}

.area-card svg {
  width: 33px;
  height: 33px;
  color: var(--yellow);
  stroke-width: 1.8;
}

.area-card span {
  display: block;
  margin-top: 16px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.area-card small {
  display: block;
  margin-top: 8px;
  color: rgba(229, 239, 250, 0.72);
  font-size: 14px;
  line-height: 1.1;
}

.intervention-areas .area-card small {
  color: var(--ice-muted);
}

.area-dossier {
  min-height: 404px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(2, 17, 31, 0.88);
  border: 1px solid rgba(213, 232, 255, 0.28);
  box-shadow: inset 0 -3px 0 var(--red);
}

.dossier-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--yellow);
  font-weight: 800;
}

.dossier-topline b {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.area-dossier h3 {
  margin: 54px 0 0;
  font-family: var(--display);
  font-size: 42px;
  line-height: 0.98;
  letter-spacing: 0;
}

.area-dossier p {
  margin: 22px 0 0;
  color: rgba(229, 239, 250, 0.82);
  font-size: 18px;
  line-height: 1.36;
}

.dossier-meta {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(213, 232, 255, 0.22);
}

.dossier-meta span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.dossier-meta strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 17px;
}

.audience-paths {
  padding-top: 80px;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 43, 53, 0.1), transparent 24rem),
    linear-gradient(180deg, #03111f 0%, #04182a 100%);
}

.paths-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.paths-header .section-kicker {
  margin-bottom: 0;
}

.paths-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(213, 232, 255, 0.22);
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease;
}

.path-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 212, 0, 0.34);
  transform: rotate(45deg);
}

.path-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 212, 0, 0.58);
}

.path-card-wide {
  grid-column: span 2;
  min-height: 272px;
}

.path-index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #041423;
  font-weight: 900;
  background: var(--yellow);
}

.path-card h3 {
  max-width: 280px;
  margin: 38px 0 0;
  font-size: 25px;
  line-height: 1.03;
}

.path-card p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(229, 239, 250, 0.76);
  font-size: 17px;
  line-height: 1.34;
}

.path-card-wide p {
  max-width: 430px;
}

.path-card a {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  color: var(--yellow);
  font-weight: 800;
}

.method-lab {
  position: relative;
  padding: 86px 78px 96px;
  overflow: hidden;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 212, 0, 0.18), transparent 21rem),
    radial-gradient(circle at 18% 82%, rgba(32, 148, 214, 0.24), transparent 26rem),
    linear-gradient(180deg, #c9d8df 0%, #e8f0f4 100%);
  border-top: 1px solid rgba(6, 23, 37, 0.16);
}

.method-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 23, 37, 0.08) 0 1px, transparent 1px) 0 0 / 240px 100%,
    linear-gradient(180deg, rgba(6, 23, 37, 0.06) 0 1px, transparent 1px) 0 0 / 100% 88px;
  opacity: 0.5;
}

.method-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 330px minmax(360px, 1fr) 330px;
  gap: 28px;
  align-items: stretch;
}

.method-copy {
  align-self: end;
  padding-bottom: 18px;
}

.method-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.method-copy p {
  max-width: 310px;
  margin: 28px 0 0;
  color: var(--ice-muted);
  font-size: 18px;
  line-height: 1.38;
}

.method-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 430px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(6, 23, 37, 0.2);
}

.method-board::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  left: 18px;
  height: 1px;
  background: rgba(6, 23, 37, 0.16);
}

.method-board::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
  background: rgba(6, 23, 37, 0.16);
}

.method-stage {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 22px;
  color: var(--ice-ink);
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(6, 23, 37, 0.16);
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease;
}

.method-stage::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 212, 0, 0.34);
  transform: rotate(45deg);
  transition:
    transform 260ms ease,
    border-color 260ms ease;
}

.method-stage:hover,
.method-stage.is-active {
  transform: translateY(-3px);
  background: rgba(255, 212, 0, 0.24);
  border-color: rgba(184, 145, 0, 0.7);
}

.method-stage:hover::after,
.method-stage.is-active::after {
  border-color: rgba(255, 212, 0, 0.78);
  transform: rotate(45deg) scale(1.12);
}

.method-stage span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 46px;
  font-weight: 800;
  line-height: 0.8;
}

.method-stage strong {
  display: block;
  margin-top: 22px;
  font-size: 28px;
  line-height: 1;
}

.method-stage small {
  display: block;
  margin-top: 9px;
  color: var(--ice-muted);
  font-size: 15px;
}

.method-brief {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  color: #fff;
  background: rgba(2, 17, 31, 0.86);
  border: 1px solid rgba(213, 232, 255, 0.28);
  box-shadow: inset 0 -3px 0 var(--red);
}

.method-brief-label {
  display: grid;
  gap: 8px;
  color: var(--yellow);
  font-weight: 800;
}

.method-brief-label span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.method-brief-label b {
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.method-brief h3 {
  margin: 56px 0 0;
  font-family: var(--display);
  font-size: 42px;
  line-height: 0.98;
  letter-spacing: 0;
}

.method-brief p {
  margin: 22px 0 0;
  color: rgba(229, 239, 250, 0.82);
  font-size: 18px;
  line-height: 1.36;
}

.method-brief-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 14px;
  margin-top: auto;
  color: var(--yellow);
  font-weight: 800;
}

.method-brief-link svg {
  width: 18px;
  height: 18px;
}

.final-cta {
  position: relative;
  padding: 86px 78px;
  color: var(--ice-ink);
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.96), rgba(255, 226, 85, 0.9)),
    var(--yellow);
  border-top: 1px solid rgba(6, 23, 37, 0.18);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 23, 37, 0.13) 0 1px, transparent 1px) 0 0 / 260px 100%,
    linear-gradient(180deg, rgba(6, 23, 37, 0.1) 0 1px, transparent 1px) 0 0 / 100% 92px;
  opacity: 0.34;
}

.cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: end;
}

.cta-copy span {
  display: block;
  margin-bottom: 18px;
  color: rgba(6, 23, 37, 0.68);
  font-weight: 900;
}

.cta-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: 76px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.cta-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(6, 23, 37, 0.76);
  font-size: 21px;
  line-height: 1.32;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 900;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.cta-primary {
  color: #fff;
  background: var(--night);
  border: 1px solid var(--night);
}

.cta-secondary {
  color: var(--ice-ink);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(6, 23, 37, 0.34);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr) 260px;
  gap: 36px;
  align-items: start;
  padding: 48px 78px 42px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 212, 0, 0.08), transparent 18rem),
    #020b14;
  border-top: 1px solid rgba(213, 232, 255, 0.16);
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: rgba(229, 239, 250, 0.72);
  font-size: 17px;
  line-height: 1.35;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  padding-top: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  padding-top: 10px;
  color: rgba(229, 239, 250, 0.62);
  font-size: 15px;
  font-weight: 700;
}

.areas-page {
  background: var(--night);
}

.areas-hero,
.association-hero,
.representation-hero,
.training-hero,
.founder-hero,
.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: end;
  height: 520px;
  min-height: 520px;
  padding: 110px 78px 40px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 9, 18, 0.96) 0%, rgba(2, 14, 27, 0.8) 54%, rgba(5, 22, 36, 0.94) 100%),
    url("./assets/sport-observatory-panorama.jpg") center / cover;
  border-bottom: 1px solid rgba(213, 232, 255, 0.18);
}

.areas-hero-grid {
  position: absolute;
  inset: 74px 0 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px) 0 0 / 260px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px) 0 0 / 100% 92px;
  opacity: 0.52;
}

.areas-hero-copy,
.areas-signal {
  position: relative;
  z-index: 1;
}

.page-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--night);
  font-weight: 900;
  background: var(--yellow);
}

.areas-hero h1,
.association-hero h1,
.representation-hero h1,
.training-hero h1,
.founder-hero h1,
.contact-hero h1 {
  max-width: 640px;
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(58px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.areas-hero p,
.association-hero p,
.representation-hero p,
.training-hero p,
.founder-hero p,
.contact-hero p {
  max-width: 610px;
  margin: 16px 0 0;
  color: rgba(229, 239, 250, 0.84);
  font-size: 20px;
  line-height: 1.25;
}

.areas-signal {
  display: grid;
  gap: 10px;
}

.signal-frame {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  min-height: 96px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(213, 232, 255, 0.24);
}

.signal-frame span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 58px;
  font-weight: 800;
  line-height: 0.8;
}

.signal-frame strong {
  font-size: 22px;
  line-height: 1;
}

.area-system {
  position: relative;
  padding: 92px 78px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 76% 10%, rgba(255, 212, 0, 0.18), transparent 22rem),
    linear-gradient(180deg, var(--ice) 0%, var(--ice-2) 100%);
  border-top: 1px solid rgba(6, 23, 37, 0.16);
}

.area-system::before,
.problem-bank::before,
.area-method-strip::before,
.founder-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 23, 37, 0.08) 0 1px, transparent 1px) 0 0 / 260px 100%,
    linear-gradient(180deg, rgba(6, 23, 37, 0.06) 0 1px, transparent 1px) 0 0 / 100% 92px;
  opacity: 0.52;
}

.area-system .section-kicker p,
.area-method-strip .section-kicker p,
.founder-focus .section-kicker p {
  color: rgba(6, 23, 37, 0.68);
}

.area-system-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

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

.area-page-card {
  position: relative;
  scroll-margin-top: 150px;
  min-height: 214px;
  padding: 24px;
  overflow: hidden;
  color: var(--ice-ink);
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(6, 23, 37, 0.16);
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease;
}

.area-page-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 212, 0, 0.42);
  transform: rotate(45deg);
  transition: transform 260ms ease;
}

.area-card-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  color: var(--yellow);
  stroke-width: 1.8;
}

.area-page-card:hover,
.area-page-card.is-active {
  transform: translateY(-4px);
  background: rgba(255, 212, 0, 0.22);
  border-color: rgba(184, 145, 0, 0.72);
}

.area-page-card:hover::after,
.area-page-card.is-active::after {
  transform: rotate(45deg) scale(1.12);
}

.area-page-card span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  line-height: 0.8;
  text-shadow: 0 1px 0 rgba(6, 23, 37, 0.16);
}

.area-page-card h2 {
  margin: 62px 0 0;
  font-size: 30px;
  line-height: 1;
}

.area-page-card p {
  margin: 10px 0 0;
  color: var(--ice-muted);
  font-size: 16px;
}

.area-page-dossier {
  display: flex;
  flex-direction: column;
  min-height: 438px;
  padding: 30px;
  color: #fff;
  background: rgba(2, 17, 31, 0.9);
  border: 1px solid rgba(213, 232, 255, 0.26);
  box-shadow: inset 0 -3px 0 var(--red);
}

.area-page-dossier h2 {
  margin: 54px 0 0;
  font-family: var(--display);
  font-size: 44px;
  line-height: 0.98;
}

.area-page-dossier p {
  margin: 22px 0 0;
  color: rgba(229, 239, 250, 0.82);
  font-size: 18px;
  line-height: 1.36;
}

.area-tools {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(213, 232, 255, 0.22);
}

.area-tools span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.area-tools ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.area-tools li {
  color: var(--yellow);
  font-weight: 800;
}

.problem-bank {
  position: relative;
  padding: 88px 78px 98px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 43, 53, 0.1), transparent 24rem),
    linear-gradient(180deg, #03111f 0%, #04182a 100%);
  border-top: 1px solid rgba(213, 232, 255, 0.16);
}

.problem-bank::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px) 0 0 / 260px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px) 0 0 / 100% 92px;
}

.problem-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 310px minmax(0, 720px);
  gap: 56px;
  align-items: end;
  margin-bottom: 36px;
}

.problem-header .section-kicker {
  margin-bottom: 0;
}

.problem-header h2,
.comparison-shell h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 800;
  line-height: 0.96;
  text-wrap: balance;
}

.problem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.problem-card {
  min-height: 280px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(213, 232, 255, 0.22);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 212, 0, 0.58);
}

.problem-card span {
  color: var(--yellow);
  font-weight: 900;
}

.problem-card svg {
  width: 42px;
  height: 42px;
  margin-top: 34px;
  color: var(--yellow);
  stroke-width: 1.7;
}

.problem-card h3 {
  margin: 30px 0 0;
  font-size: 27px;
  line-height: 1.02;
}

.problem-card p {
  margin: 18px 0 0;
  color: rgba(229, 239, 250, 0.74);
  font-size: 17px;
  line-height: 1.34;
}

.area-method-strip {
  position: relative;
  padding: 92px 78px 100px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 18% 88%, rgba(32, 148, 214, 0.22), transparent 24rem),
    linear-gradient(180deg, #c9d8df 0%, #e8f0f4 100%);
  border-top: 1px solid rgba(6, 23, 37, 0.16);
}

.area-method-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
}

.area-method-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  line-height: 0.96;
}

.area-method-copy p {
  max-width: 310px;
  margin: 24px 0 0;
  color: var(--ice-muted);
  font-size: 18px;
  line-height: 1.38;
}

.area-method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.area-method-step {
  min-height: 300px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(6, 23, 37, 0.16);
}

.area-method-step span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  line-height: 0.8;
}

.area-method-step h3 {
  margin: 92px 0 0;
  font-size: 27px;
  line-height: 1;
}

.area-method-step p {
  margin: 16px 0 0;
  color: var(--ice-muted);
  font-size: 17px;
  line-height: 1.34;
}

.area-comparison {
  padding: 88px 78px 96px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 212, 0, 0.08), transparent 20rem),
    #020b14;
  border-top: 1px solid rgba(213, 232, 255, 0.16);
}

.comparison-shell {
  position: relative;
  z-index: 1;
}

.comparison-table {
  display: grid;
  margin-top: 34px;
  border: 1px solid rgba(213, 232, 255, 0.24);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 180px 1fr 1fr 1fr;
  min-height: 58px;
  border-bottom: 1px solid rgba(213, 232, 255, 0.18);
}

.comparison-table [role="row"]:last-child {
  border-bottom: 0;
}

.comparison-table span {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: rgba(229, 239, 250, 0.78);
  border-right: 1px solid rgba(213, 232, 255, 0.18);
}

.comparison-table span:last-child {
  border-right: 0;
}

.comparison-table [role="columnheader"],
.comparison-table [role="row"] span:first-child {
  color: #fff;
  font-weight: 900;
}

.comparison-table [role="columnheader"] {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.04);
}

.founder-focus,
.concept-focus {
  position: relative;
  padding: 92px 78px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 212, 0, 0.15), transparent 21rem),
    linear-gradient(180deg, var(--ice) 0%, var(--ice-2) 100%);
}

.founder-focus-card,
.concept-focus-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
  max-width: 1120px;
}

.founder-focus-card img,
.concept-focus-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid rgba(6, 23, 37, 0.2);
}

.founder-focus-card div,
.concept-focus-card div {
  display: grid;
  align-content: center;
  padding: 38px;
  color: #fff;
  background: rgba(2, 17, 31, 0.9);
  border: 1px solid rgba(213, 232, 255, 0.26);
  box-shadow: inset 0 -3px 0 var(--red);
}

.founder-focus-card span,
.concept-focus-card span {
  color: var(--yellow);
  font-weight: 900;
}

.founder-focus-card h2,
.concept-focus-card h2 {
  max-width: 720px;
  margin: 28px 0 0;
  font-family: var(--display);
  font-size: 58px;
  line-height: 0.96;
}

.founder-focus-card p,
.concept-focus-card p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(229, 239, 250, 0.78);
  font-size: 20px;
  line-height: 1.34;
}

.association-page {
  background: var(--night);
}

.association-hero {
  background: #020b14;
}

.association-hero-media {
  position: absolute;
  inset: 74px 0 0;
  background:
    linear-gradient(90deg, rgba(0, 9, 18, 0.96) 0%, rgba(0, 12, 24, 0.78) 55%, rgba(0, 8, 18, 0.92) 100%),
    url("./assets/sport-observatory-panorama.jpg") center / cover;
}

.association-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px) 0 0 / 260px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px) 0 0 / 100% 92px;
  opacity: 0.5;
}

.association-hero-copy,
.association-hero-panel {
  position: relative;
  z-index: 1;
}

.association-hero-panel {
  min-height: 280px;
  padding: 30px;
  color: #fff;
  background: rgba(2, 17, 31, 0.86);
  border: 1px solid rgba(213, 232, 255, 0.28);
  box-shadow: inset 0 -3px 0 var(--red);
}

.association-hero-panel svg {
  width: 54px;
  height: 54px;
  color: var(--yellow);
}

.association-hero-panel strong {
  display: block;
  margin-top: 72px;
  font-family: var(--display);
  font-size: 38px;
  line-height: 0.98;
}

.association-hero-panel span {
  display: block;
  margin-top: 14px;
  color: rgba(229, 239, 250, 0.72);
  font-weight: 800;
}

.association-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 48px;
  padding: 88px 78px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 212, 0, 0.2), transparent 22rem),
    linear-gradient(180deg, var(--ice) 0%, var(--ice-2) 100%);
}

.association-intro-text h2,
.federation-copy h2,
.association-levers-head h2,
.voice-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 800;
  line-height: 0.94;
  text-wrap: balance;
}

.association-intro-text p,
.federation-copy p,
.voice-panel p {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ice-muted);
  font-size: 21px;
  line-height: 1.35;
}

.association-proof-grid {
  display: grid;
  gap: 12px;
}

.association-proof {
  min-height: 178px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(6, 23, 37, 0.16);
}

.association-proof svg {
  width: 42px;
  height: 42px;
  color: var(--yellow);
}

.association-proof span,
.association-lever span {
  display: block;
  margin-top: 18px;
  color: #8a6f00;
  font-weight: 900;
}

.association-proof h3 {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.04;
}

.association-federation {
  position: relative;
  padding: 90px 78px 96px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 43, 53, 0.1), transparent 24rem),
    linear-gradient(180deg, #03111f 0%, #04182a 100%);
}

.federation-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: stretch;
}

.federation-copy p {
  color: rgba(229, 239, 250, 0.78);
}

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

.federation-board article {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(213, 232, 255, 0.22);
}

.federation-board svg {
  width: 46px;
  height: 46px;
  color: var(--yellow);
}

.federation-board span {
  margin-top: auto;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.04;
}

.association-levers {
  position: relative;
  padding: 92px 78px 100px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 212, 0, 0.18), transparent 23rem),
    linear-gradient(180deg, #c9d8df 0%, #e8f0f4 100%);
}

.association-levers .section-kicker p {
  color: rgba(6, 23, 37, 0.68);
}

.association-levers-head {
  max-width: 840px;
  margin-bottom: 36px;
}

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

.association-lever {
  min-height: 360px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(6, 23, 37, 0.16);
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease;
}

.association-lever:hover {
  transform: translateY(-4px);
  background: rgba(255, 212, 0, 0.2);
  border-color: rgba(184, 145, 0, 0.7);
}

.association-lever svg {
  width: 44px;
  height: 44px;
  color: var(--yellow);
}

.association-lever h3 {
  margin: 44px 0 0;
  font-size: 28px;
  line-height: 1;
}

.association-lever p {
  margin: 16px 0 0;
  color: var(--ice-muted);
  font-size: 17px;
  line-height: 1.32;
}

.association-lever strong {
  color: var(--ice-ink);
}

.association-voice {
  padding: 86px 78px;
  background: var(--yellow);
  color: var(--ice-ink);
}

.voice-panel {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.voice-panel svg {
  width: 82px;
  height: 82px;
  color: var(--ice-ink);
  stroke-width: 1.5;
}

.voice-panel p {
  margin-top: 0;
  color: rgba(6, 23, 37, 0.74);
}

.representation-hero {
  background: #020b14;
}

.representation-hero-media {
  position: absolute;
  inset: 74px 0 0;
  background:
    linear-gradient(90deg, rgba(0, 9, 18, 0.96) 0%, rgba(0, 12, 24, 0.78) 55%, rgba(0, 8, 18, 0.92) 100%),
    url("./assets/sport-observatory-panorama.jpg") center / cover;
}

.representation-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px) 0 0 / 260px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px) 0 0 / 100% 92px;
  opacity: 0.5;
}

.representation-hero-copy,
.representation-hero-photo,
.training-hero-copy,
.training-signal {
  position: relative;
  z-index: 1;
}

.representation-hero-photo {
  overflow: hidden;
  background: rgba(2, 17, 31, 0.9);
  border: 1px solid rgba(213, 232, 255, 0.28);
  box-shadow: inset 0 -3px 0 var(--red);
}

.representation-hero-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.representation-hero-photo div {
  padding: 24px;
}

.representation-hero-photo strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.representation-hero-photo span {
  display: block;
  margin-top: 8px;
  color: var(--yellow);
  font-weight: 900;
}

.institutional-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 48px;
  padding: 88px 78px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 212, 0, 0.2), transparent 22rem),
    linear-gradient(180deg, var(--ice) 0%, var(--ice-2) 100%);
}

.institutional-copy h2,
.institution-map-copy h2,
.strategic-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 800;
  line-height: 0.94;
  text-wrap: balance;
}

.institutional-copy p,
.institution-map-copy p,
.strategic-panel p {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ice-muted);
  font-size: 21px;
  line-height: 1.35;
}

.institutional-cards {
  display: grid;
  gap: 12px;
}

.institutional-card {
  min-height: 176px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(6, 23, 37, 0.16);
}

.institutional-card svg,
.representation-service svg {
  width: 44px;
  height: 44px;
  color: var(--yellow);
}

.institutional-card span {
  display: block;
  margin-top: 16px;
  color: #8a6f00;
  font-weight: 900;
}

.institutional-card h3 {
  margin: 10px 0 0;
  font-size: 25px;
  line-height: 1.04;
}

.institution-map {
  position: relative;
  padding: 90px 78px 96px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 43, 53, 0.1), transparent 24rem),
    linear-gradient(180deg, #03111f 0%, #04182a 100%);
}

.institution-map-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 44px;
}

.institution-map-copy p {
  color: rgba(229, 239, 250, 0.78);
}

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

.institution-nodes article {
  min-height: 360px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(213, 232, 255, 0.22);
}

.institution-nodes span {
  color: var(--yellow);
  font-weight: 900;
}

.institution-nodes h3 {
  margin: 72px 0 0;
  font-size: 29px;
  line-height: 1.02;
}

.institution-nodes p {
  margin: 18px 0 0;
  color: rgba(229, 239, 250, 0.74);
  font-size: 17px;
  line-height: 1.34;
}

.representation-services {
  position: relative;
  padding: 92px 78px 100px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 212, 0, 0.18), transparent 23rem),
    linear-gradient(180deg, #c9d8df 0%, #e8f0f4 100%);
}

.representation-services .section-kicker p,
.representation-strengths .section-kicker p {
  color: rgba(6, 23, 37, 0.68);
}

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

.representation-service {
  min-height: 330px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(6, 23, 37, 0.16);
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease;
}

.representation-service:hover {
  transform: translateY(-4px);
  background: rgba(255, 212, 0, 0.2);
  border-color: rgba(184, 145, 0, 0.7);
}

.representation-service h2 {
  margin: 76px 0 0;
  font-size: 30px;
  line-height: 1.02;
}

.representation-service p {
  margin: 18px 0 0;
  color: var(--ice-muted);
  font-size: 18px;
  line-height: 1.34;
}

.strategic-representation {
  padding: 86px 78px;
  color: var(--ice-ink);
  background: var(--yellow);
}

.strategic-panel {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.strategic-panel svg {
  width: 82px;
  height: 82px;
  color: var(--ice-ink);
  stroke-width: 1.5;
}

.strategic-panel span {
  display: block;
  margin-bottom: 18px;
  color: rgba(6, 23, 37, 0.68);
  font-weight: 900;
}

.strategic-panel p {
  color: rgba(6, 23, 37, 0.74);
}

.representation-strengths {
  position: relative;
  padding: 92px 78px 100px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 18% 88%, rgba(32, 148, 214, 0.22), transparent 24rem),
    linear-gradient(180deg, var(--ice) 0%, var(--ice-2) 100%);
}

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

.strength-card {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(6, 23, 37, 0.16);
}

.strength-card span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  line-height: 0.8;
}

.strength-card h3 {
  margin: 70px 0 0;
  font-size: 28px;
  line-height: 1.02;
}

.strength-card p {
  margin: 16px 0 0;
  color: var(--ice-muted);
  font-size: 18px;
  line-height: 1.34;
}

.training-page {
  background: var(--night);
}

.training-hero {
  background:
    linear-gradient(90deg, rgba(0, 9, 18, 0.96) 0%, rgba(2, 14, 27, 0.78) 54%, rgba(5, 22, 36, 0.94) 100%),
    url("./assets/observatory-desk-strip.jpg") center / cover;
}

.training-signal {
  display: grid;
  gap: 10px;
}

.training-signal article {
  min-height: 112px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(213, 232, 255, 0.24);
}

.training-signal svg {
  width: 38px;
  height: 38px;
  color: var(--yellow);
}

.training-signal strong {
  display: block;
  margin-top: 16px;
  font-size: 19px;
}

.training-signal span {
  display: block;
  margin-top: 4px;
  color: rgba(229, 239, 250, 0.72);
}

.training-channels {
  padding: 90px 78px 96px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 212, 0, 0.22), transparent 23rem),
    linear-gradient(180deg, var(--ice) 0%, var(--ice-2) 100%);
}

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

.training-channel {
  min-height: 340px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(6, 23, 37, 0.16);
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease;
}

.training-channel:hover {
  transform: translateY(-4px);
  background: rgba(255, 212, 0, 0.22);
  border-color: rgba(184, 145, 0, 0.7);
}

.training-channel svg {
  width: 46px;
  height: 46px;
  color: var(--yellow);
}

.training-channel span {
  display: block;
  margin-top: 20px;
  color: #8a6f00;
  font-weight: 900;
}

.training-channel h2 {
  margin: 64px 0 0;
  font-size: 31px;
  line-height: 1.02;
}

.training-channel p {
  margin: 18px 0 0;
  color: var(--ice-muted);
  font-size: 18px;
  line-height: 1.34;
}

.training-fields {
  padding: 92px 78px 100px;
  background:
    radial-gradient(circle at 20% 80%, rgba(32, 148, 214, 0.2), transparent 24rem),
    linear-gradient(180deg, #03111f 0%, #061b2e 100%);
}

.training-fields-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.training-fields-copy h2,
.training-method-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.94;
  text-wrap: balance;
}

.training-fields-copy p,
.training-method-copy p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(229, 239, 250, 0.76);
  font-size: 20px;
  line-height: 1.36;
}

.training-field-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.training-field-list span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(213, 232, 255, 0.2);
}

.training-method {
  padding: 88px 78px;
  color: var(--ice-ink);
  background: var(--yellow);
}

.training-method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 50px;
}

.founder-page {
  background: var(--night);
}

.founder-hero {
  background:
    linear-gradient(90deg, rgba(0, 9, 18, 0.96) 0%, rgba(0, 12, 24, 0.77) 56%, rgba(0, 8, 18, 0.9) 100%),
    url("./assets/sport-observatory-panorama.jpg") center / cover;
  border-bottom: 1px solid rgba(213, 232, 255, 0.18);
}

.founder-hero-grid {
  position: absolute;
  inset: 74px 0 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px) 0 0 / 260px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px) 0 0 / 100% 92px;
}

.founder-hero-copy,
.founder-hero-profile {
  position: relative;
  z-index: 1;
}

.founder-hero-profile {
  overflow: hidden;
  background: rgba(2, 17, 31, 0.9);
  border: 1px solid rgba(213, 232, 255, 0.3);
  box-shadow: inset 0 -3px 0 var(--red);
}

.founder-hero-profile img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
}

.founder-hero-profile div {
  padding: 20px 22px 24px;
}

.founder-hero-profile strong,
.founder-hero-profile span {
  display: block;
}

.founder-hero-profile strong {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.founder-hero-profile span {
  margin-top: 9px;
  color: var(--yellow);
  font-weight: 800;
  line-height: 1.15;
}

.founder-profile,
.founder-roles,
.founder-services,
.founder-path {
  position: relative;
  padding: 92px 78px;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1fr);
  gap: 62px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 212, 0, 0.18), transparent 23rem),
    linear-gradient(180deg, var(--ice) 0%, var(--ice-2) 100%);
}

.founder-profile-copy h2,
.founder-roles-intro h2,
.founder-services-heading h2,
.founder-path-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.94;
  text-wrap: balance;
}

.founder-profile-copy p,
.founder-roles-intro p,
.founder-services-heading p,
.founder-path-copy p {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--ice-muted);
  font-size: 20px;
  line-height: 1.38;
}

.founder-profile-copy p + p {
  margin-top: 16px;
}

.founder-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: stretch;
  background: rgba(6, 23, 37, 0.18);
  border: 1px solid rgba(6, 23, 37, 0.16);
}

.founder-principles article {
  min-height: 280px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
}

.founder-principles svg,
.founder-service svg {
  width: 42px;
  height: 42px;
  color: var(--yellow);
}

.founder-principles h3 {
  margin: 52px 0 0;
  font-size: 24px;
  line-height: 1;
}

.founder-principles p {
  margin: 15px 0 0;
  color: var(--ice-muted);
  line-height: 1.34;
}

.founder-roles {
  background:
    radial-gradient(circle at 10% 92%, rgba(32, 148, 214, 0.25), transparent 28rem),
    linear-gradient(180deg, #03111f 0%, #061b2e 100%);
}

.founder-roles-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: 62px;
  margin-top: 34px;
}

.founder-roles-intro h2,
.founder-path-copy h2 {
  color: #fff;
}

.founder-roles-intro p,
.founder-path-copy p {
  color: rgba(229, 239, 250, 0.76);
}

.founder-role-list {
  display: grid;
  gap: 1px;
  background: rgba(213, 232, 255, 0.18);
  border: 1px solid rgba(213, 232, 255, 0.2);
}

.founder-role-list article {
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  gap: 6px 28px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.045);
  transition: background-color 220ms ease, transform 220ms ease;
}

.founder-role-list article:hover {
  background: rgba(255, 212, 0, 0.09);
  transform: translateX(4px);
}

.founder-role-list span {
  grid-row: span 2;
  color: var(--yellow);
  font-weight: 900;
}

.founder-role-list strong {
  font-size: 20px;
  line-height: 1.1;
}

.founder-role-list p {
  margin: 0;
  color: rgba(229, 239, 250, 0.68);
  line-height: 1.25;
}

.founder-services {
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 43, 53, 0.11), transparent 22rem),
    linear-gradient(180deg, #cbdde5 0%, #edf4f7 100%);
}

.founder-services-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  gap: 48px;
  align-items: end;
}

.founder-services-heading p {
  margin: 0;
}

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

.founder-service {
  min-height: 340px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(6, 23, 37, 0.17);
  transition: transform 220ms ease, background-color 220ms ease;
}

.founder-service:hover {
  transform: translateY(-4px);
  background: rgba(255, 212, 0, 0.2);
}

.founder-service span {
  display: block;
  margin-top: 20px;
  color: #8a6f00;
  font-weight: 900;
}

.founder-service h3 {
  margin: 56px 0 0;
  font-size: 28px;
  line-height: 1.03;
}

.founder-service p {
  margin: 18px 0 0;
  color: var(--ice-muted);
  font-size: 18px;
  line-height: 1.34;
}

.founder-path {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: 62px;
  background:
    linear-gradient(90deg, rgba(0, 9, 18, 0.94), rgba(2, 16, 29, 0.77)),
    url("./assets/observatory-desk-strip.jpg") center / cover;
}

.founder-path-copy > span {
  color: var(--yellow);
  font-weight: 900;
}

.founder-path-steps {
  display: grid;
  align-content: center;
  gap: 0;
}

.founder-path-steps article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 82px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(213, 232, 255, 0.22);
}

.founder-path-steps article:first-child {
  border-top: 1px solid rgba(213, 232, 255, 0.22);
}

.founder-path-steps b {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
}

.founder-path-steps span {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
}

.contact-page {
  background: var(--night);
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(0, 9, 18, 0.96) 0%, rgba(2, 14, 27, 0.78) 54%, rgba(5, 22, 36, 0.94) 100%),
    url("./assets/sport-observatory-panorama.jpg") center / cover;
}

.contact-hero-copy,
.contact-hero-panel {
  position: relative;
  z-index: 1;
}

.contact-hero-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(213, 232, 255, 0.27);
  background: rgba(2, 17, 31, 0.88);
  box-shadow: inset 0 -3px 0 var(--red);
}

.contact-hero-panel a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  padding: 22px;
  transition: background-color 220ms ease;
}

.contact-hero-panel a + a {
  border-top: 1px solid rgba(213, 232, 255, 0.18);
}

.contact-hero-panel a:hover {
  background: rgba(255, 212, 0, 0.08);
}

.contact-hero-panel svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--yellow);
}

.contact-hero-panel span {
  color: rgba(229, 239, 250, 0.68);
  font-weight: 700;
}

.contact-hero-panel strong {
  font-size: 20px;
  line-height: 1.1;
}

.contact-direct,
.contact-form-section,
.contact-closing {
  position: relative;
  padding: 92px 78px;
}

.contact-direct {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1fr);
  gap: 62px;
  color: var(--ice-ink);
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 212, 0, 0.2), transparent 22rem),
    linear-gradient(180deg, var(--ice) 0%, var(--ice-2) 100%);
}

.contact-direct-copy h2,
.contact-form-intro h2,
.contact-closing-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.94;
  text-wrap: balance;
}

.contact-direct-copy p,
.contact-form-intro p,
.contact-closing-copy p {
  max-width: 620px;
  margin: 25px 0 0;
  font-size: 20px;
  line-height: 1.38;
}

.contact-direct-copy p {
  color: var(--ice-muted);
}

.contact-topic-list {
  display: grid;
  gap: 1px;
  background: rgba(6, 23, 37, 0.2);
  border: 1px solid rgba(6, 23, 37, 0.16);
}

.contact-topic-list span {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 18px 24px;
  font-size: 21px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.58);
}

.contact-topic-list svg {
  width: 34px;
  height: 34px;
  color: var(--yellow);
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: 64px;
  background:
    radial-gradient(circle at 8% 86%, rgba(32, 148, 214, 0.24), transparent 28rem),
    linear-gradient(180deg, #03111f 0%, #061b2e 100%);
}

.contact-form-intro > span,
.contact-closing-copy > span {
  color: var(--yellow);
  font-weight: 900;
}

.contact-form-intro h2,
.contact-closing-copy h2 {
  color: #fff;
  margin-top: 18px;
}

.contact-form-intro p,
.contact-closing-copy p {
  color: rgba(229, 239, 250, 0.76);
}

.contact-form {
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(213, 232, 255, 0.24);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(229, 239, 250, 0.86);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: #fff;
  font: inherit;
  background: rgba(3, 17, 30, 0.72);
  border: 1px solid rgba(213, 232, 255, 0.3);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(3, 17, 30, 0.95);
  border-color: var(--yellow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(229, 239, 250, 0.56);
}

.contact-form-message {
  margin-top: 18px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  margin-top: 24px;
  padding: 0 20px;
  color: #06131e;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  background: var(--yellow);
  border: 1px solid var(--yellow);
}

.contact-submit svg {
  width: 20px;
  height: 20px;
}

.contact-closing {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: stretch;
  color: var(--ice-ink);
  background: #cbdde5;
}

.contact-closing-image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid rgba(6, 23, 37, 0.18);
}

.contact-closing-copy {
  display: grid;
  align-content: center;
  padding: 34px;
  background: #061725;
  box-shadow: inset 0 -3px 0 var(--red);
}

.training-method-copy p {
  color: rgba(6, 23, 37, 0.74);
}

.training-method-grid {
  display: grid;
  gap: 12px;
}

.training-method-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(6, 23, 37, 0.18);
}

.training-method-grid svg {
  width: 42px;
  height: 42px;
  color: var(--ice-ink);
}

.training-method-grid h3 {
  margin: 0;
  font-size: 25px;
}

.training-method-grid p {
  margin: 8px 0 0;
  color: rgba(6, 23, 37, 0.74);
  font-size: 18px;
  line-height: 1.32;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-down {
  transform: none;
}

.reveal-right {
  transform: none;
}

.reveal-up {
  transform: none;
}

.is-visible {
  opacity: 1;
  animation: reveal-in 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.timeline.is-visible .timeline-line {
  animation: draw-line 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.timeline.is-visible .lever {
  animation: lever-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i) * 80ms);
}

.paths-grid .reveal {
  transition-delay: calc(var(--i) * 70ms);
}

@keyframes draw-line {
  from {
    transform: scaleX(0);
  }
}

@keyframes lever-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  body {
    min-width: 0;
  }

  .topbar {
    grid-template-columns: auto 1px minmax(0, 1fr);
    padding: 0 28px;
  }

  .nav {
    padding-left: 48px;
    gap: 18px;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

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

  .hero-copy {
    left: 40px;
    width: 520px;
  }

  .hero-copy h1 {
    font-size: 70px;
  }

  .founder-card {
    right: 30px;
  }

  .growth {
    grid-template-columns: 1fr;
    padding: 28px 40px 42px;
  }

  .audience {
    max-width: 520px;
  }

  .method-button {
    margin-left: calc(50% - 127px);
  }

  .intervention-areas,
  .audience-paths,
  .method-lab,
  .final-cta {
    padding: 72px 40px;
  }

  .cta-shell,
  .site-footer,
  .areas-hero,
  .area-system-shell,
  .problem-header,
  .area-method-layout,
  .founder-focus-card,
  .concept-focus-card,
  .association-hero,
  .association-intro,
  .federation-layout,
  .voice-panel,
  .representation-hero,
  .institutional-intro,
  .institution-map-layout,
  .strategic-panel,
  .training-hero,
  .training-fields-layout,
  .training-method-layout {
    grid-template-columns: 1fr;
  }

  .areas-hero,
  .representation-hero,
  .training-hero {
    padding-right: 40px;
    padding-left: 40px;
  }

  .areas-hero h1,
  .training-hero h1 {
    font-size: 74px;
  }

  .areas-signal {
    max-width: 520px;
  }

  .area-page-grid,
  .area-method-steps,
  .problem-grid,
  .association-lever-grid,
  .training-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .association-hero,
  .association-intro,
  .association-federation,
  .association-levers,
  .association-voice {
    padding-right: 40px;
    padding-left: 40px;
  }

  .association-hero,
  .representation-hero,
  .training-hero {
    min-height: 520px;
  }

  .association-hero h1,
  .representation-hero h1 {
    font-size: 74px;
  }

  .representation-hero,
  .institutional-intro,
  .institution-map,
  .representation-services,
  .strategic-representation,
  .representation-strengths,
  .training-channels,
  .training-fields,
  .training-method {
    padding-right: 40px;
    padding-left: 40px;
  }

  .representation-hero-photo {
    max-width: 520px;
  }

  .institutional-cards,
  .institution-nodes,
  .representation-service-grid,
  .strength-grid,
  .training-field-list {
    grid-template-columns: 1fr;
  }

  .institution-nodes article,
  .representation-service,
  .strength-card {
    min-height: 0;
  }

  .federation-board {
    grid-template-columns: 1fr;
  }

  .federation-board article {
    min-height: 180px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table [role="row"] {
    min-width: 860px;
  }

  .cta-actions {
    max-width: 430px;
  }

  .site-footer {
    padding: 44px 40px 38px;
  }

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

  .footer-meta {
    justify-items: start;
  }

  .areas-shell {
    grid-template-columns: 1fr;
  }

  .areas-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: end;
  }

  .areas-intro p {
    margin-top: 0;
  }

  .area-dossier {
    min-height: 0;
  }

  .paths-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .method-shell {
    grid-template-columns: 1fr;
  }

  .method-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: end;
    padding-bottom: 0;
  }

  .method-copy p {
    max-width: none;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-gutter: clamp(18px, 5vw, 26px);
    --mobile-max: 430px;
  }

  html,
  body,
  .site-shell {
    width: 100%;
    min-width: 0;
  }

  .topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    padding: 0 var(--mobile-gutter);
  }

  .hero {
    padding-top: 82px;
  }

  .areas-hero {
    display: block;
    min-height: 0;
    padding: 132px var(--mobile-gutter) 58px;
  }

  .areas-hero-copy,
  .areas-signal {
    width: 100%;
    max-width: var(--mobile-max);
    margin-right: auto;
    margin-left: auto;
  }

  .areas-hero h1 {
    font-size: clamp(52px, 15vw, 68px);
  }

  .areas-hero p {
    font-size: 20px;
  }

  .areas-signal {
    margin-top: 34px;
  }

  .signal-frame {
    min-height: 82px;
  }

  .brand {
    font-size: 30px;
  }

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

  .brand-divider {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 51;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(213, 232, 255, 0.24);
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: currentColor;
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .menu-toggle span + span {
    margin-top: 5px;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    width: min(82vw, 340px);
    height: 100dvh;
    gap: 0;
    padding: 96px 24px 32px;
    overflow: auto;
    font-size: 22px;
    background:
      radial-gradient(circle at 80% 10%, rgba(255, 212, 0, 0.12), transparent 14rem),
      #041423;
    border-left: 1px solid rgba(213, 232, 255, 0.28);
    box-shadow: -28px 0 60px rgba(0, 0, 0, 0.42);
    transform: translateX(104%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav a {
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
    min-height: 58px;
    border-bottom: 1px solid rgba(213, 232, 255, 0.16);
    font-family: var(--display);
    font-size: 30px;
  }

  .nav a::after {
    right: auto;
    left: 0;
    bottom: 8px;
    width: 54px;
    transform-origin: left;
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 49;
    display: block;
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
    border: 0;
    opacity: 0;
    transition:
      opacity 220ms ease,
      background-color 220ms ease;
  }

  body.nav-open .nav-scrim {
    pointer-events: auto;
    opacity: 1;
    background: rgba(0, 0, 0, 0.54);
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero-stage {
    height: auto;
    min-height: 0;
    padding: 42px var(--mobile-gutter) 32px;
  }

  .hero-panorama {
    background-position: 58% center;
    transform: translate3d(var(--px, 0), var(--py, 0), 0) scale(1.08);
  }

  .hero-grid {
    background-size: 160px 100%, 100% 86px;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(0, 9, 18, 0.96) 0%, rgba(0, 12, 24, 0.82) 60%, rgba(0, 8, 18, 0.92) 100%),
      linear-gradient(0deg, rgba(1, 10, 20, 0.96) 0%, rgba(2, 12, 22, 0.34) 58%, rgba(3, 12, 22, 0.28) 100%);
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, var(--mobile-max));
    margin: 0 auto;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(42px, 11.7vw, 56px);
    line-height: 0.94;
    text-wrap: balance;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .founder-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 320px);
    height: auto;
    margin-top: 34px;
    margin-right: auto;
    margin-left: auto;
  }

  .portrait {
    height: 300px;
  }

  .desk-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    height: 148px;
    width: min(100%, var(--mobile-max));
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    opacity: 0.72;
  }

  .growth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    padding: 34px var(--mobile-gutter) 46px;
  }

  .levers,
  .audience,
  .areas-shell,
  .paths-header,
  .paths-grid {
    width: 100%;
    max-width: var(--mobile-max);
    margin-right: auto;
    margin-left: auto;
  }

  .levers {
    padding-right: 0;
  }

  .section-heading,
  .timeline,
  .audience-list {
    width: 100%;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
    padding: 0;
    margin-top: 28px;
  }

  .timeline-line,
  .timeline-arrow,
  .lever:not(:last-of-type)::after {
    display: none;
  }

  .lever {
    align-content: start;
    min-height: 112px;
    padding: 18px 12px;
    border: 1px solid rgba(213, 232, 255, 0.18);
    background: rgba(255, 255, 255, 0.035);
  }

  .lever .number {
    position: static;
    margin-bottom: 8px;
  }

  .method-button {
    width: 100%;
    margin: 18px 0 0;
  }

  .audience {
    max-width: none;
  }

  .audience-row {
    min-height: 50px;
  }

  .intervention-areas,
  .audience-paths,
  .method-lab,
  .final-cta,
  .area-system,
  .problem-bank,
  .area-method-strip,
  .area-comparison,
  .founder-focus,
  .concept-focus,
  .association-intro,
  .association-federation,
  .association-levers,
  .association-voice,
  .institutional-intro,
  .institution-map,
  .representation-services,
  .strategic-representation,
  .representation-strengths,
  .training-channels,
  .training-fields,
  .training-method {
    padding: 58px var(--mobile-gutter);
  }

  .association-hero,
  .representation-hero,
  .training-hero {
    display: block;
    min-height: 0;
    padding: 132px var(--mobile-gutter) 58px;
  }

  .association-hero-copy,
  .association-hero-panel,
  .association-intro-text,
  .association-proof-grid,
  .federation-layout,
  .association-levers-head,
  .association-lever-grid,
  .voice-panel,
  .representation-hero-copy,
  .representation-hero-photo,
  .training-hero-copy,
  .training-signal,
  .institutional-copy,
  .institutional-cards,
  .institution-map-layout,
  .institution-nodes,
  .representation-service-grid,
  .strategic-panel,
  .strength-grid,
  .training-channel-grid,
  .training-fields-layout,
  .training-field-list,
  .training-method-layout,
  .training-method-grid {
    width: 100%;
    max-width: var(--mobile-max);
    margin-right: auto;
    margin-left: auto;
  }

  .association-hero h1,
  .representation-hero h1,
  .training-hero h1 {
    font-size: clamp(52px, 15vw, 68px);
  }

  .association-hero p,
  .representation-hero p,
  .training-hero p {
    font-size: 21px;
  }

  .association-hero-panel,
  .representation-hero-photo {
    min-height: 230px;
    margin-top: 34px;
  }

  .association-hero-panel strong {
    margin-top: 50px;
    font-size: 34px;
  }

  .association-intro,
  .federation-layout,
  .voice-panel,
  .institutional-intro,
  .institution-map-layout,
  .strategic-panel,
  .training-fields-layout,
  .training-method-layout {
    display: block;
  }

  .association-proof-grid,
  .federation-board,
  .association-lever-grid,
  .institutional-cards,
  .institution-nodes,
  .representation-service-grid,
  .strength-grid,
  .training-channel-grid,
  .training-field-list,
  .training-method-grid {
    margin-top: 30px;
  }

  .area-system-shell,
  .problem-header,
  .area-method-layout,
  .founder-focus-card,
  .concept-focus-card,
  .comparison-shell {
    width: 100%;
    max-width: var(--mobile-max);
    margin-right: auto;
    margin-left: auto;
  }

  .area-page-grid,
  .area-method-steps,
  .problem-grid,
  .association-lever-grid,
  .institutional-cards,
  .institution-nodes,
  .representation-service-grid,
  .strength-grid,
  .training-channel-grid,
  .training-field-list {
    grid-template-columns: 1fr;
  }

  .institutional-card,
  .institution-nodes article,
  .representation-service,
  .strength-card,
  .training-channel {
    min-height: 0;
  }

  .institution-nodes h3,
  .representation-service h2,
  .strength-card h3,
  .training-channel h2 {
    margin-top: 38px;
  }

  .area-page-card {
    min-height: 150px;
  }

  .area-page-card h2 {
    margin-top: 42px;
  }

  .area-page-dossier {
    min-height: 0;
    padding: 24px;
  }

  .area-page-dossier h2 {
    margin-top: 38px;
    font-size: 38px;
  }

  .problem-header {
    gap: 20px;
  }

  .problem-header h2,
  .comparison-shell h2,
  .area-method-copy h2,
  .founder-focus-card h2,
  .concept-focus-card h2,
  .association-intro-text h2,
  .federation-copy h2,
  .association-levers-head h2,
  .voice-panel h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .problem-card,
  .area-method-step {
    min-height: 220px;
  }

  .problem-card h3 {
    margin-top: 44px;
  }

  .area-method-step h3 {
    margin-top: 62px;
  }

  .comparison-table [role="row"] {
    min-width: 820px;
  }

  .founder-focus-card,
  .concept-focus-card {
    gap: 0;
  }

  .founder-focus-card img,
  .concept-focus-card img {
    height: 360px;
  }

  .founder-focus-card div,
  .concept-focus-card div {
    padding: 28px;
  }

  .association-proof,
  .association-lever {
    min-height: 0;
  }

  .association-lever h3 {
    margin-top: 34px;
  }

  .voice-panel svg {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
  }

  .section-kicker {
    width: min(100%, var(--mobile-max));
    margin-right: auto;
    margin-left: auto;
  }

  .section-kicker {
    margin-bottom: 22px;
  }

  .areas-intro {
    display: block;
  }

  .areas-intro h2,
  .paths-header h2,
  .method-copy h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .areas-intro p,
  .method-copy p {
    max-width: 100%;
    margin-top: 22px;
  }

  .inline-action {
    margin-top: 22px;
  }

  .area-grid,
  .paths-grid {
    grid-template-columns: 1fr;
  }

  .area-card {
    min-height: 112px;
  }

  .area-dossier {
    padding: 24px;
  }

  .area-dossier h3 {
    margin-top: 38px;
    font-size: 38px;
  }

  .path-card,
  .path-card-wide {
    grid-column: auto;
    min-height: 260px;
  }

  .method-shell {
    width: 100%;
    max-width: var(--mobile-max);
    margin-right: auto;
    margin-left: auto;
  }

  .method-copy {
    display: block;
  }

  .method-board {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    gap: 10px;
    background: transparent;
    border: 0;
  }

  .method-board::before,
  .method-board::after {
    display: none;
  }

  .method-stage {
    min-height: 132px;
  }

  .method-stage span {
    font-size: 38px;
  }

  .method-stage strong {
    margin-top: 18px;
    font-size: 25px;
  }

  .method-brief {
    min-height: 0;
    padding: 24px;
  }

  .method-brief h3 {
    margin-top: 38px;
    font-size: 38px;
  }

  .cta-shell {
    width: 100%;
    max-width: var(--mobile-max);
    margin-right: auto;
    margin-left: auto;
    gap: 30px;
  }

  .cta-copy h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .cta-copy p {
    font-size: 19px;
  }

  .cta-actions {
    width: 100%;
    max-width: none;
  }

  .cta-button {
    width: 100%;
  }

  .site-footer {
    padding: 42px var(--mobile-gutter) 36px;
  }

  .footer-brand,
  .footer-nav,
  .footer-meta {
    width: 100%;
    max-width: var(--mobile-max);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 420px) {
  :root {
    --mobile-gutter: 20px;
    --mobile-max: 100%;
  }

  .topbar {
    padding-inline: var(--mobile-gutter);
  }

  .hero-stage {
    padding-inline: var(--mobile-gutter);
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11.2vw, 47px);
  }

  .founder-card {
    width: 100%;
  }

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

  .section-heading h2 {
    font-size: 27px;
  }

  .areas-intro h2,
  .paths-header h2,
  .method-copy h2,
  .cta-copy h2,
  .problem-header h2,
  .comparison-shell h2,
  .area-method-copy h2,
  .founder-focus-card h2,
  .concept-focus-card h2,
  .association-intro-text h2,
  .federation-copy h2,
  .association-levers-head h2,
  .voice-panel h2,
  .institutional-copy h2,
  .institution-map-copy h2,
  .strategic-panel h2,
  .training-fields-copy h2,
  .training-method-copy h2 {
    font-size: 42px;
  }

  .areas-hero h1,
  .representation-hero h1,
  .association-hero h1,
  .training-hero h1 {
    font-size: clamp(48px, 14.6vw, 60px);
  }

  .signal-frame {
    grid-template-columns: 64px 1fr;
  }

  .signal-frame span {
    font-size: 48px;
  }
}

@media (max-width: 1100px) {
  .founder-hero,
  .founder-profile,
  .founder-roles-layout,
  .founder-services-heading,
  .founder-path {
    grid-template-columns: 1fr;
  }

  .founder-hero {
    height: auto;
    padding-right: 40px;
    padding-left: 40px;
  }

  .founder-hero-profile {
    max-width: 520px;
  }

  .founder-profile,
  .founder-roles,
  .founder-services,
  .founder-path {
    padding-right: 40px;
    padding-left: 40px;
  }

  .founder-principles {
    max-width: 760px;
  }

  .contact-hero,
  .contact-direct,
  .contact-form-section,
  .contact-closing {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    height: auto;
    padding-right: 40px;
    padding-left: 40px;
  }

  .contact-hero-panel,
  .contact-topic-list,
  .contact-form,
  .contact-closing-image,
  .contact-closing-copy {
    max-width: 760px;
  }

  .contact-direct,
  .contact-form-section,
  .contact-closing {
    padding-right: 40px;
    padding-left: 40px;
  }

  .contact-direct-copy,
  .contact-form-intro {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .areas-hero,
  .association-hero,
  .representation-hero,
  .training-hero {
    height: auto;
  }

  .founder-hero {
    display: block;
    min-height: 0;
    padding: 128px var(--mobile-gutter) 58px;
  }

  .founder-hero-copy,
  .founder-hero-profile,
  .founder-profile-copy,
  .founder-principles,
  .founder-roles-layout,
  .founder-services-heading,
  .founder-service-grid,
  .founder-path-copy,
  .founder-path-steps {
    width: 100%;
    max-width: var(--mobile-max);
    margin-right: auto;
    margin-left: auto;
  }

  .founder-hero h1 {
    font-size: clamp(52px, 15vw, 68px);
  }

  .founder-hero p {
    font-size: 20px;
  }

  .founder-hero-profile {
    margin-top: 34px;
  }

  .founder-hero-profile img {
    height: 310px;
  }

  .founder-profile,
  .founder-roles,
  .founder-services,
  .founder-path {
    display: block;
    padding: 58px var(--mobile-gutter);
  }

  .founder-principles,
  .founder-service-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .founder-principles article,
  .founder-service {
    min-height: 0;
  }

  .founder-principles h3,
  .founder-service h3 {
    margin-top: 34px;
  }

  .founder-roles-layout {
    margin-top: 28px;
  }

  .founder-role-list {
    margin-top: 34px;
  }

  .founder-role-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .founder-role-list span {
    grid-row: auto;
  }

  .founder-services-heading p {
    margin-top: 22px;
  }

  .founder-path-steps {
    margin-top: 34px;
  }

  .founder-path-steps article {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
  }

  .founder-path-steps b {
    font-size: 38px;
  }

  .founder-path-steps span {
    font-size: 18px;
  }

  .contact-hero {
    display: block;
    min-height: 0;
    padding: 128px var(--mobile-gutter) 58px;
  }

  .contact-hero-copy,
  .contact-hero-panel,
  .contact-direct-copy,
  .contact-topic-list,
  .contact-form-intro,
  .contact-form,
  .contact-closing-image,
  .contact-closing-copy {
    width: 100%;
    max-width: var(--mobile-max);
    margin-right: auto;
    margin-left: auto;
  }

  .contact-hero h1 {
    font-size: clamp(48px, 14.2vw, 60px);
  }

  .contact-hero p {
    font-size: 20px;
  }

  .contact-hero-panel {
    margin-top: 34px;
  }

  .contact-direct,
  .contact-form-section,
  .contact-closing {
    display: block;
    padding: 58px var(--mobile-gutter);
  }

  .contact-topic-list,
  .contact-form,
  .contact-closing-image,
  .contact-closing-copy {
    margin-top: 34px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-closing-copy {
    padding: 28px;
  }

  .contact-closing-image img {
    height: 260px;
  }
}
