:root {
  --navy: #0a192f;
  --navy-deep: #071323;
  --navy-soft: #0d1b2a;
  --gold: #d4af37;
  --gold-muted: #c5a880;
  --white: #ffffff;
  --silver: #e0e1dd;
  --silver-dim: #aeb7c2;
  --line: rgba(212, 175, 55, 0.28);
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 74px;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 48%, var(--navy-soft) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(7, 19, 35, 0.92), rgba(7, 19, 35, 0.58));
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  backdrop-filter: blur(18px);
}

.top-nav {
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.brand:hover {
  color: var(--white);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.32);
}

.top-nav {
  gap: clamp(14px, 2.5vw, 28px);
  color: var(--silver);
  font-size: 0.92rem;
  font-weight: 600;
}

.top-nav a {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.top-nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

.top-nav .nav-luminapp-cta {
  padding: 9px 14px;
  border: 1px solid rgba(212, 175, 55, 0.58);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.top-nav .nav-luminapp-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
  text-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    radial-gradient(circle at 64% 42%, rgba(36, 65, 91, 0.9), transparent 34rem),
    #071323;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 19, 35, 0.96) 0%, rgba(7, 19, 35, 0.72) 38%, rgba(7, 19, 35, 0.38) 72%),
    linear-gradient(180deg, rgba(7, 19, 35, 0.1), rgba(7, 19, 35, 0.94));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(58vw, 720px);
  margin: 0 0 clamp(48px, 8vw, 86px) clamp(20px, 6vw, 86px);
  padding-top: 120px;
}

.eyebrow,
.founder-role,
.publication-card span,
.news-card-meta,
.media-card-meta {
  margin: 0 0 12px;
  color: var(--gold-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.button,
.icon-link {
  min-height: 52px;
  border: 1px solid rgba(212, 175, 55, 0.58);
  transition: all 0.3s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  color: #081321;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.22);
}

.button-secondary {
  border-color: rgba(212, 175, 55, 0.62);
  background: rgba(7, 19, 35, 0.54);
  color: var(--gold);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(212, 175, 55, 0.14);
  color: var(--white);
}

.button:hover,
.icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.36);
}

.icon-link {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.icon-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.72), transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.28);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.pillar-grid,
.founder-grid,
.publication-list {
  display: grid;
  gap: 22px;
}

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

.pillar-card,
.founder-card,
.publication-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
}

.pillar-card {
  min-height: 316px;
  padding: 28px;
}

.training-evidence {
  display: grid;
  gap: 24px;
  margin-top: clamp(40px, 7vw, 76px);
}

.training-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.training-story-media {
  position: relative;
  min-height: 410px;
  margin: 0;
  overflow: hidden;
  background: #06101e;
}

.training-story-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 60%, rgba(7, 19, 35, 0.66));
  pointer-events: none;
}

.training-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.04);
}

.training-story-media figcaption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  max-width: calc(100% - 36px);
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(7, 19, 35, 0.82);
  color: var(--silver);
  font-size: 0.75rem;
}

.training-story-content {
  align-self: center;
  padding: clamp(30px, 5vw, 58px);
}

.training-story-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.training-story-content > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--silver);
}

.training-story-note {
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  color: var(--white) !important;
}

.training-story-advanced {
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
}

.training-story-marker {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.18), transparent 14rem),
    linear-gradient(145deg, #0e2540, #071323);
  text-align: center;
}

.training-story-marker span,
.training-story-marker small {
  color: var(--gold-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.training-story-marker strong {
  margin: 14px 0 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  font-weight: 400;
  line-height: 1;
}

.evidence-link {
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 26px;
  color: var(--gold);
  font-weight: 800;
  line-height: 1.4;
  transition: color 0.25s ease, transform 0.25s ease;
}

.evidence-link:hover {
  color: var(--white);
  transform: translateX(3px);
}

.card-index {
  display: inline-block;
  margin-bottom: 30px;
  color: rgba(212, 175, 55, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.pillar-card p,
.science-copy p,
.publication-card p,
.founder-card li,
.site-footer p {
  color: var(--silver);
}

.institutional-photo {
  overflow: hidden;
  margin: 0 0 26px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.institutional-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.88;
}

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

.founder-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  padding: 26px;
}

.founder-card img {
  width: 132px;
  height: 132px;
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.18);
}

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

.founder-card li + li {
  margin-top: 10px;
}

.lattes-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 800;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.lattes-link:hover {
  color: var(--white);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

.founder-media-proof {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(212, 175, 55, 0.07);
  transition: background 0.3s ease, transform 0.3s ease;
}

.founder-media-proof:hover {
  background: rgba(212, 175, 55, 0.13);
  transform: translateX(3px);
}

.founder-media-proof-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.54);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.7rem;
}

.founder-media-proof strong,
.founder-media-proof small {
  display: block;
}

.founder-media-proof strong {
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.35;
}

.founder-media-proof small {
  margin-top: 2px;
  color: var(--silver-dim);
  font-size: 0.75rem;
}

.section-media {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 16%, rgba(212, 175, 55, 0.14), transparent 25rem),
    linear-gradient(155deg, rgba(5, 15, 29, 0.96), rgba(13, 27, 42, 0.88));
}

.section-media .section-inner {
  position: relative;
  z-index: 2;
}

.media-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(212, 175, 55, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.media-orbit::before,
.media-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(212, 175, 55, 0.07);
  border-radius: inherit;
  content: "";
  transform: translate(-50%, -50%);
}

.media-orbit-one {
  top: -330px;
  right: -280px;
  width: 760px;
  height: 760px;
}

.media-orbit-one::before {
  width: 76%;
  height: 76%;
}

.media-orbit-one::after {
  width: 48%;
  height: 48%;
}

.media-orbit-two {
  bottom: -290px;
  left: -220px;
  width: 590px;
  height: 590px;
}

.media-orbit-two::before {
  width: 68%;
  height: 68%;
}

.media-orbit-two::after {
  width: 34%;
  height: 34%;
}

.media-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(42px, 8vw, 108px);
  align-items: center;
  margin-bottom: clamp(52px, 8vw, 92px);
}

.media-copy h2 {
  max-width: 720px;
}

.media-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--silver);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.media-lead strong {
  color: var(--white);
}

.media-metrics {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(220px, 1.28fr);
  margin-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.media-metrics div {
  padding: 20px 20px 20px 0;
}

.media-metrics div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.media-metrics strong,
.media-metrics span {
  display: block;
}

.media-metrics strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
}

.media-metrics span {
  margin-top: 8px;
  color: var(--silver-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.media-channel-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s ease;
}

.media-channel-link:hover {
  gap: 14px;
  color: var(--white);
}

.media-signature {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(212, 175, 55, 0.44);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.12), transparent 48%),
    rgba(2, 11, 24, 0.76);
  box-shadow: var(--shadow), 0 0 48px rgba(212, 175, 55, 0.1);
  transform: rotate(1.4deg);
}

.media-signature::before {
  position: absolute;
  inset: 16px -14px -14px 16px;
  z-index: -1;
  border: 1px solid rgba(212, 175, 55, 0.17);
  border-radius: 14px;
  content: "";
  transform: rotate(-3deg);
}

.media-signature::after {
  position: absolute;
  top: 34px;
  right: 34px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.52);
  border-radius: 50%;
  color: var(--gold);
  content: "▶";
  font-size: 1rem;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.14);
}

.media-signature span,
.media-signature small {
  color: var(--gold-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-signature strong {
  margin: 14px 0 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.6vw, 5.1rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.84;
}

.media-carousel {
  position: relative;
}

.media-carousel-toolbar {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.media-carousel-toolbar p {
  margin: 0;
  color: var(--silver-dim);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-carousel-toolbar p span:first-child {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.media-carousel-controls {
  display: flex;
  gap: 10px;
}

.media-carousel-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.media-carousel-button:hover:not(:disabled) {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.media-carousel-button:disabled {
  cursor: default;
  opacity: 0.32;
}

.media-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 18px 4px 38px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.media-track::-webkit-scrollbar {
  display: none;
}

.media-card {
  display: grid;
  flex: 0 0 clamp(300px, 31vw, 374px);
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 34, 52, 0.98), rgba(7, 19, 35, 0.98));
  color: inherit;
  cursor: pointer;
  font: inherit;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  scroll-snap-align: start;
  text-align: left;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.media-card:hover,
.media-card.is-active {
  border-color: rgba(212, 175, 55, 0.58);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 34px rgba(212, 175, 55, 0.12);
  transform: translateY(-9px);
}

.media-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020b18;
}

.media-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 11, 24, 0.84));
  content: "";
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.55s ease;
}

.media-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.media-card-index {
  position: absolute;
  top: 15px;
  left: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.media-card-play {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(7, 19, 35, 0.7);
  color: var(--white);
  font-size: 0.78rem;
  backdrop-filter: blur(10px);
}

.media-card-body {
  display: flex;
  min-height: 214px;
  flex-direction: column;
  padding: 23px 24px 24px;
}

.media-card-meta {
  margin-bottom: 12px;
  font-size: 0.7rem;
}

.media-card h3 {
  display: -webkit-box;
  overflow: hidden;
  color: var(--white);
  font-size: clamp(1.22rem, 1.8vw, 1.48rem);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.media-card-action {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-progress {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(224, 225, 221, 0.13);
}

.media-progress span {
  display: block;
  width: calc(100% / 22);
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.64);
  transform-origin: left center;
  transition: transform 0.3s ease, width 0.3s ease;
}

.media-loading,
.media-noscript {
  color: var(--silver-dim);
}

.video-dialog {
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 12px;
  background: #071323;
  color: var(--white);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.68);
}

.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.video-dialog article {
  position: relative;
}

.video-dialog-frame {
  aspect-ratio: 16 / 9;
  background: #020b18;
}

.video-dialog-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-dialog-body {
  padding: clamp(24px, 4vw, 38px);
}

.video-dialog-body h2 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(1.55rem, 3.4vw, 2.75rem);
}

.video-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.54);
  border-radius: 50%;
  background: rgba(7, 19, 35, 0.88);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.section-science {
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 175, 55, 0.1), transparent 26rem),
    rgba(3, 13, 26, 0.28);
}

.science-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 64px);
}

.science-heading > p {
  margin: 0 0 6px;
  color: var(--silver);
  font-size: 1.05rem;
}

.joint-research {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.11), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.joint-research-intro {
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid rgba(212, 175, 55, 0.22);
}

.joint-research-intro > span,
.researcher-publications header span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.joint-research-intro p {
  margin: 18px 0 0;
  color: var(--silver-dim);
}

.joint-research-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.joint-research-links a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px);
  transition: background 0.25s ease;
}

.joint-research-links a + a {
  border-left: 1px solid rgba(212, 175, 55, 0.18);
}

.joint-research-links a:hover {
  background: rgba(212, 175, 55, 0.08);
}

.joint-research-links small,
.article-list small {
  color: var(--gold-muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.joint-research-links strong,
.article-list strong {
  margin: 12px 0 20px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.3;
}

.joint-research-links span,
.article-list span,
.researcher-lattes {
  margin-top: auto;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
}

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

.researcher-publications {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
}

.researcher-publications header {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.19);
}

.researcher-publications header img {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 50%;
  object-fit: cover;
}

.researcher-publications header span {
  margin-bottom: 6px;
}

.researcher-publications header h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.article-list {
  display: grid;
}

.article-list a {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px 0;
  transition: transform 0.25s ease;
}

.article-list a + a {
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.article-list a:hover {
  transform: translateX(4px);
}

.article-list p {
  margin: 0 0 22px;
  color: var(--silver-dim);
  font-size: 0.94rem;
}

.researcher-lattes {
  align-self: flex-start;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.19);
  transition: color 0.25s ease;
}

.researcher-lattes:hover {
  color: var(--white);
}

.section-luminapp {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(7, 19, 35, 0.12), rgba(7, 19, 35, 0.5));
}

.luminapp-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  margin-bottom: clamp(42px, 7vw, 82px);
}

.luminapp-brand-lockup {
  display: grid;
  min-height: 270px;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 14px;
  background: rgba(2, 11, 24, 0.55);
  box-shadow: var(--shadow), 0 0 44px rgba(212, 175, 55, 0.1);
}

.luminapp-brand-lockup img {
  width: min(100%, 420px);
  max-height: 290px;
  object-fit: contain;
}

.luminapp-lead {
  max-width: 720px;
  margin: 24px 0 28px;
  color: var(--silver);
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
}

.luminapp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: clamp(62px, 9vw, 110px);
}

.luminapp-feature-card,
.video-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
}

.luminapp-feature-card {
  min-height: 238px;
  padding: 26px;
}

.story-label {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.luminapp-feature-card p {
  color: var(--silver);
}

.luminapp-feature-card p:last-child {
  margin-bottom: 0;
}

.story-source {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 0.25s ease;
}

.story-source:hover {
  color: var(--white);
}

.model-note {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 20px;
  color: var(--gold-muted) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.model-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.1), 0 0 18px rgba(212, 175, 55, 0.72);
}

.luminapp-videos .section-heading {
  margin-bottom: 28px;
}

.luminapp-page-hero {
  position: relative;
  display: grid;
  min-height: min(720px, 88svh);
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 7vw, 96px) 86px;
  background:
    radial-gradient(circle at 18% 38%, rgba(212, 175, 55, 0.16), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(212, 175, 55, 0.1), transparent 28rem),
    linear-gradient(135deg, #071323, #0d1b2a 58%, #071323);
}

.luminapp-page-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.luminapp-page-logo {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  background: rgba(2, 11, 24, 0.56);
  box-shadow: var(--shadow), 0 0 54px rgba(212, 175, 55, 0.12);
}

.luminapp-page-logo img {
  width: min(100%, 450px);
  max-height: 300px;
  object-fit: contain;
}

.section-luminapp-page,
.section-luminapp-videos {
  background: rgba(7, 19, 35, 0.28);
}

.section-mentoria {
  background:
    radial-gradient(circle at 84% 40%, rgba(212, 175, 55, 0.1), transparent 24rem),
    rgba(13, 27, 42, 0.72);
}

.mentoria-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}

.mentoria-copy > p:not(.eyebrow):not(.model-note) {
  max-width: 720px;
  margin-top: 24px;
  color: var(--silver);
  font-size: 1.08rem;
}

.mentoria-benefits {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.mentoria-benefits li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--silver);
  font-size: 0.92rem;
}

.mentoria-benefits li::before {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.42);
  transform: translateY(-50%);
}

.mentor-model-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 22px;
  background:
    linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, rgba(212, 175, 55, 0.1), transparent 40%),
    linear-gradient(155deg, rgba(4, 14, 28, 0.97), rgba(13, 27, 42, 0.88));
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: var(--shadow), inset 0 0 70px rgba(212, 175, 55, 0.045);
}

.mentor-model-visual::before,
.mentor-model-visual::after {
  position: absolute;
  z-index: 4;
  width: 54px;
  height: 54px;
  content: "";
  pointer-events: none;
}

.mentor-model-visual::before {
  top: 18px;
  left: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.7);
  border-left: 1px solid rgba(212, 175, 55, 0.7);
}

.mentor-model-visual::after {
  right: 18px;
  bottom: 18px;
  border-right: 1px solid rgba(212, 175, 55, 0.7);
  border-bottom: 1px solid rgba(212, 175, 55, 0.7);
}

.mentor-model-stage {
  position: absolute;
  top: 24px;
  bottom: 108px;
  left: 50%;
  z-index: 2;
  width: calc(100% - 48px);
  max-width: 500px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  background: radial-gradient(circle at 50% 44%, rgba(212, 175, 55, 0.12), rgba(2, 11, 24, 0.96) 64%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4), 0 0 32px rgba(212, 175, 55, 0.08);
  transform: translateX(-50%);
}

.mentor-model-viewer {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
}

.mentor-model-viewer::part(default-progress-bar) {
  height: 2px;
  background-color: var(--gold);
}

.mentor-model-status,
.mentor-model-instruction {
  position: absolute;
  left: 50%;
  z-index: 3;
  margin: 0;
  transform: translateX(-50%);
}

.mentor-model-status {
  top: 50%;
  padding: 7px 10px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  background: rgba(2, 11, 24, 0.78);
  color: var(--gold-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mentor-model-stage[data-model-state="ready"] .mentor-model-status {
  opacity: 0;
  visibility: hidden;
}

.mentor-model-stage[data-model-state="error"] .mentor-model-status {
  color: #f1c9c9;
}

.mentor-model-instruction {
  bottom: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  background: rgba(2, 11, 24, 0.68);
  color: rgba(224, 225, 221, 0.72);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.mentor-model-chip {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 5;
  display: grid;
  width: min(82%, 350px);
  padding: 14px 18px;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 9px;
  background: rgba(4, 14, 28, 0.84);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38), 0 0 24px rgba(212, 175, 55, 0.08);
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.mentor-model-chip span,
.mentor-model-chip small {
  color: var(--gold-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mentor-model-chip strong {
  margin: 2px 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: 0.04em;
}

.mentor-signal {
  position: absolute;
  z-index: 4;
  padding: 5px 8px;
  border-left: 1px solid rgba(212, 175, 55, 0.48);
  color: rgba(224, 225, 221, 0.62);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mentor-signal-one { top: 19%; left: 8%; }
.mentor-signal-two { top: 31%; right: 7%; }
.mentor-signal-three { bottom: 23%; left: 7%; }

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

.video-card {
  overflow: hidden;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #020b18;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3,
.video-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.video-card h3 {
  margin-top: 22px;
}

.video-card p {
  margin-bottom: 24px;
  color: var(--silver);
}

.section-news .section-heading p:last-child {
  max-width: 760px;
  color: var(--silver);
  font-size: 1.05rem;
}

.news-carousel {
  position: relative;
}

.news-carousel-controls {
  position: absolute;
  top: -74px;
  right: 0;
  display: flex;
  gap: 10px;
}

.carousel-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background: var(--gold);
  color: #071323;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.28);
}

.carousel-button:disabled {
  cursor: default;
  opacity: 0.38;
}

.news-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 6px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.55) rgba(255, 255, 255, 0.08);
}

.news-grid::-webkit-scrollbar {
  height: 8px;
}

.news-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.news-grid::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.55);
  border-radius: 999px;
}

.news-card {
  flex: 0 0 clamp(300px, 32vw, 390px);
  padding: 0;
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  color: inherit;
  cursor: pointer;
  font: inherit;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  text-align: left;
  appearance: none;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  border-color: rgba(212, 175, 55, 0.58);
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38), 0 0 28px rgba(212, 175, 55, 0.16);
}

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

.news-card-body {
  padding: 22px;
}

.news-card h3 {
  margin-bottom: 12px;
}

.news-card p {
  margin: 0;
  color: var(--silver);
}

.news-empty {
  margin: 0;
  color: var(--silver);
}

.news-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 10px;
}

.news-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(224, 225, 221, 0.32);
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--gold);
}

.news-dialog {
  width: min(840px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #071323;
  color: var(--white);
  box-shadow: var(--shadow);
}

.news-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(6px);
}

.news-dialog article {
  position: relative;
}

.news-dialog img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.news-dialog-body {
  padding: clamp(24px, 5vw, 42px);
}

.news-dialog-body h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.news-dialog-body p:not(.eyebrow) {
  color: var(--silver);
  font-size: 1.05rem;
}

.news-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 50%;
  background: rgba(7, 19, 35, 0.82);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.closing-visual {
  position: relative;
  min-height: clamp(260px, 42vw, 520px);
  overflow: hidden;
  isolation: isolate;
  background: #071323;
}

.closing-visual::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.62), transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.22);
}

.closing-visual-image {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.46;
  filter: saturate(0.78) contrast(0.96);
  animation: closingDrift 18s ease-in-out infinite alternate;
}

.closing-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 19, 35, 0.92), rgba(7, 19, 35, 0.46) 46%, rgba(7, 19, 35, 0.88)),
    linear-gradient(180deg, rgba(7, 19, 35, 0.98), rgba(13, 27, 42, 0.22) 42%, rgba(7, 19, 35, 0.96));
}

.closing-visual-content {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: clamp(260px, 42vw, 520px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 92px) 0;
}

.closing-visual-content h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
}

.closing-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--silver);
  font-size: 1.05rem;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@keyframes closingDrift {
  from {
    transform: scale(1) translate3d(-0.6%, 0, 0);
  }

  to {
    transform: scale(1.035) translate3d(0.6%, -0.8%, 0);
  }
}

.site-footer {
  padding: 38px clamp(20px, 5vw, 72px) 42px;
  background: #071323;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 0 0 20px;
  color: var(--white);
  font-weight: 700;
}

.footer-links a {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.site-footer .footer-copyright-white {
  margin: 0;
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 961px) {
  .institutional-photo {
    height: clamp(520px, 56vw, 720px);
    display: grid;
    place-items: center;
  }

  .institutional-photo img {
    width: auto;
    height: clamp(520px, 56vw, 710px);
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }
}

@media (min-width: 961px) and (max-width: 1160px) {
  .site-header {
    padding-right: 26px;
    padding-left: 26px;
  }

  .top-nav {
    gap: 12px;
    font-size: 0.8rem;
  }

  .top-nav .nav-luminapp-cta {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 0.7rem;
  }
}

@media (max-width: 960px) {
  .site-header {
    position: absolute;
  }

  .top-nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: min(720px, calc(100% - 40px));
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 19, 35, 0.98), rgba(7, 19, 35, 0.62)),
      linear-gradient(180deg, rgba(7, 19, 35, 0.08), rgba(7, 19, 35, 0.96));
  }

  .pillar-grid,
  .founder-grid,
  .science-layout,
  .science-heading,
  .training-story,
  .training-story-advanced,
  .joint-research,
  .researcher-grid,
  .luminapp-intro,
  .luminapp-feature-grid,
  .video-grid,
  .luminapp-page-inner,
  .mentoria-layout,
  .media-intro {
    grid-template-columns: 1fr;
  }

  .training-story-media {
    min-height: min(62vw, 520px);
  }

  .training-story-media::after {
    background: linear-gradient(180deg, transparent 68%, rgba(7, 19, 35, 0.56));
  }

  .training-story-marker {
    min-height: 260px;
  }

  .joint-research-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  }

  .media-signature {
    width: min(620px, calc(100% - 18px));
    min-height: 300px;
    transform: rotate(0.8deg);
  }

  .media-card {
    flex-basis: min(72vw, 374px);
  }

  .news-carousel-controls {
    position: static;
    justify-content: flex-end;
    margin: -12px 0 14px;
  }

  .science-copy {
    position: static;
  }

  .closing-visual {
    min-height: 340px;
  }

  .closing-visual-content {
    min-height: 340px;
  }

  .closing-visual-image {
    object-position: 54% center;
    opacity: 0.4;
  }

}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 14px 18px;
  }

  .top-nav {
    display: none;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 42px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-copy {
    color: var(--silver);
  }

  .button {
    width: 100%;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-card img {
    width: 116px;
    height: 116px;
  }

  .media-metrics {
    grid-template-columns: 1fr;
  }

  .media-metrics div {
    padding: 18px 0;
  }

  .media-metrics div + div {
    padding-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 0;
  }

  .media-signature {
    min-height: 260px;
    padding: 26px;
  }

  .media-signature::after {
    top: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
  }

  .media-signature strong {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .media-card {
    flex-basis: min(84vw, 334px);
  }

  .media-card-body {
    min-height: 222px;
    padding: 20px;
  }

  .media-carousel-toolbar {
    align-items: flex-end;
  }

  .media-carousel-button {
    width: 44px;
    height: 44px;
  }

  .video-dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
  }

  .video-dialog-close {
    top: 10px;
    right: 10px;
  }

  .pillar-card,
  .founder-card,
  .publication-card,
  .news-card-body {
    padding: 22px;
  }

  .pillar-card {
    min-height: 0;
  }

  .pillar-card .card-index {
    margin-bottom: 18px;
  }

  .training-story-content {
    padding: 28px 22px 32px;
  }

  .training-story-media {
    min-height: 250px;
  }

  .training-story-media figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
    max-width: none;
  }

  .training-story-marker {
    min-height: 220px;
    padding: 32px 20px;
  }

  .joint-research-links {
    grid-template-columns: 1fr;
  }

  .joint-research-links a {
    min-height: 240px;
    padding: 26px 22px;
  }

  .joint-research-links a + a {
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-left: 0;
  }

  .researcher-publications {
    padding: 24px 22px;
  }

  .researcher-publications header img {
    width: 60px;
    height: 60px;
  }

  .article-list a {
    min-height: 0;
  }

  .news-card {
    flex-basis: min(86vw, 340px);
  }

  .closing-visual {
    min-height: 280px;
  }

  .closing-visual-content {
    min-height: 280px;
  }

  .closing-visual-image {
    object-position: 58% center;
  }

  .closing-visual-content {
    min-height: 420px;
    align-items: start;
    padding-top: 44px;
  }

  .closing-visual-content h2 {
    max-width: 100%;
  }

  .closing-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .closing-visual-image {
    animation: none;
  }
}

/* Authority-led institutional update */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  background: rgba(7, 19, 35, 0.72);
  color: var(--gold);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  min-height: min(900px, 94svh);
  align-items: center;
}

.hero-media img {
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 14, 28, 0.36) 0%, rgba(4, 14, 28, 0.12) 42%, rgba(4, 14, 28, 0.05) 66%),
    linear-gradient(180deg, rgba(4, 14, 28, 0.05), rgba(4, 14, 28, 0.84));
}

.hero-content {
  width: min(49vw, 720px);
  margin: 76px 0 0 clamp(20px, 6vw, 86px);
  padding-top: 36px;
}

.hero-content h1 {
  color: #f4e2a8;
  font-size: clamp(2.6rem, 5vw, 4.85rem);
}

.hero-copy {
  max-width: 650px;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-credentials span::before {
  margin-right: 8px;
  color: var(--gold);
  content: "•";
}

.authority-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: -2px auto 0;
  border-right: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  border-left: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(5, 16, 30, 0.9);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.authority-strip a {
  padding: 22px clamp(18px, 3vw, 38px);
  transition: background 0.25s ease;
}

.authority-strip a + a { border-left: 1px solid rgba(212, 175, 55, 0.18); }
.authority-strip a:hover { background: rgba(212, 175, 55, 0.09); }
.authority-strip small,
.authority-strip strong { display: block; }
.authority-strip small { color: var(--gold-muted); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.authority-strip strong { margin-top: 5px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; }

.section { padding-top: clamp(64px, 8vw, 106px); padding-bottom: clamp(64px, 8vw, 106px); }

.section-governance {
  background:
    radial-gradient(circle at 78% 24%, rgba(130, 12, 199, 0.18), transparent 27rem),
    linear-gradient(145deg, #071323, #0d2038);
}

.governance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
}

.governance-lead { max-width: 720px; margin: 25px 0 0; color: var(--silver); font-size: 1.08rem; }
.governance-lead strong { color: var(--white); }

.governance-event {
  display: grid;
  gap: 3px;
  max-width: 570px;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid #c8ff00;
  background: rgba(128, 0, 196, 0.16);
}

.governance-event span { color: #d8ff57; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.governance-event strong { color: var(--white); font-size: 1.08rem; }
.governance-event small { color: var(--silver-dim); }

.governance-poster { position: relative; overflow: hidden; margin: 0; border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 12px; box-shadow: var(--shadow); transform: rotate(1deg); }
.governance-poster img { width: 100%; }
.governance-poster figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 9px 12px; border-radius: 5px; background: rgba(5, 14, 28, 0.88); color: var(--silver); font-size: 0.72rem; }

.governance-method { margin-top: clamp(58px, 8vw, 92px); }
.governance-method-heading { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: end; margin-bottom: 30px; }
.governance-steps { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 0; border-top: 1px solid rgba(212, 175, 55, 0.28); list-style: none; }
.governance-steps li { min-height: 235px; padding: 26px 24px; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.governance-steps li + li { border-left: 1px solid rgba(212, 175, 55, 0.2); }
.governance-steps span,
.governance-steps strong { display: block; }
.governance-steps span { color: var(--gold); font-size: 0.72rem; font-weight: 900; }
.governance-steps strong { margin-top: 28px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; }
.governance-steps p { margin: 12px 0 0; color: var(--silver-dim); font-size: 0.92rem; }

.bioethics-proof { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border: 1px solid rgba(212, 175, 55, 0.24); border-radius: 10px; background: rgba(255, 255, 255, 0.035); }
.bioethics-proof > * { padding: 24px; }
.bioethics-proof > * + * { border-left: 1px solid rgba(212, 175, 55, 0.18); }
.bioethics-proof small,
.bioethics-proof strong { display: block; }
.bioethics-proof small { color: var(--gold-muted); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.bioethics-proof strong { margin-top: 7px; color: var(--white); font-family: Georgia, "Times New Roman", serif; }
.bioethics-proof p { margin: 8px 0 0; color: var(--silver-dim); font-size: 0.86rem; }
.bioethics-proof a span { display: inline-block; margin-top: 13px; color: var(--gold); font-size: 0.82rem; font-weight: 800; }

.luminapp-story-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 24px; margin-top: 40px; }
.luminapp-story-card,
.research-evidence-card { padding: clamp(24px, 3vw, 38px); border: 1px solid rgba(212, 175, 55, 0.24); border-radius: 10px; background: rgba(255, 255, 255, 0.045); }
.luminapp-story-card p,
.research-evidence-card p { margin: 18px 0 0; color: var(--silver); }
.luminapp-hypothesis { background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(255, 255, 255, 0.035)); }
.luminapp-hypothesis blockquote { margin: 18px 0 0; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2.4vw, 2.05rem); line-height: 1.35; }

.learning-cycle { display: flex; gap: 14px; align-items: center; justify-content: space-between; margin: 26px 0; padding: 20px 24px; border-top: 1px solid rgba(212, 175, 55, 0.24); border-bottom: 1px solid rgba(212, 175, 55, 0.24); }
.learning-cycle span { color: var(--white); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.035em; text-align: center; text-transform: uppercase; }
.learning-cycle i { color: var(--gold); font-style: normal; }

.research-evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.research-evidence-card h3 { color: var(--white); }
.research-evidence-caveat { border-color: rgba(212, 175, 55, 0.48); }

.luminapp-difference { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 32px; align-items: center; margin-top: 24px; padding: 28px clamp(24px, 4vw, 46px); border-left: 3px solid var(--gold); background: rgba(212, 175, 55, 0.08); }
.luminapp-difference p { margin: 0; color: var(--gold-muted); font-weight: 800; }
.luminapp-difference h3 { color: var(--white); font-size: clamp(1.2rem, 2.2vw, 1.75rem); }

.video-facade { position: relative; width: 100%; padding: 0; border: 0; cursor: pointer; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; }
.video-facade span { position: absolute; top: 50%; left: 50%; display: grid; width: 62px; height: 62px; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(7,19,35,.82); color: var(--white); transform: translate(-50%, -50%); transition: background .25s ease, color .25s ease, scale .25s ease; }
.video-facade:hover span { background: var(--gold); color: var(--navy-deep); scale: 1.06; }

.media-metrics { grid-template-columns: repeat(4, 1fr); }
.media-metrics div { padding: 18px 14px; }
.media-metrics div + div { padding-left: 14px; }
.media-metrics strong { font-size: clamp(1.35rem, 2.3vw, 2rem); }

.media-signature { min-height: 430px; overflow: hidden; justify-content: flex-end; transform: none; }
.media-signature::after { display: none; }
.media-signature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.38; filter: saturate(0.65) contrast(1.08); }
.media-signature::before { inset: 0; z-index: 0; border: 0; background: linear-gradient(180deg, rgba(2, 11, 24, 0.05) 18%, rgba(2, 11, 24, 0.98) 83%); transform: none; }
.media-signature > span,
.media-signature > strong,
.media-signature > small,
.media-signature > a { position: relative; z-index: 1; }
.media-signature > a { margin-top: 14px; color: var(--gold); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }

.joint-research-links em,
.article-list em { display: block; margin-top: 8px; color: var(--silver-dim); font-family: inherit; font-size: 0.76rem; font-style: normal; line-height: 1.45; }

@media (max-width: 1120px) {
  .top-nav { gap: 12px; font-size: 0.78rem; }
  .top-nav .nav-luminapp-cta { display: none; }
}

@media (max-width: 960px) {
  body.nav-open { overflow: hidden; }
  .site-header { position: fixed; }
  .nav-toggle { position: relative; z-index: 12; display: block; }
  .top-nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    padding: 90px 28px 32px;
    background: rgba(4, 14, 27, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-open .top-nav { opacity: 1; pointer-events: auto; transform: none; visibility: visible; }
  .top-nav a { padding: 13px 8px; border-bottom: 1px solid rgba(212,175,55,.16); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
  .top-nav .nav-luminapp-cta { display: inline-flex; justify-content: center; margin-top: 18px; font-family: inherit; font-size: .82rem; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero { min-height: 880px; align-items: end; }
  .hero-content { width: min(650px, calc(100% - 40px)); margin: 0 20px 50px; padding-top: 100px; }
  .hero-media img { object-position: 69% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(4,14,28,.05) 18%, rgba(4,14,28,.56) 48%, rgba(4,14,28,.98) 78%); }
  .authority-strip { grid-template-columns: 1fr; }
  .authority-strip a + a { border-top: 1px solid rgba(212,175,55,.18); border-left: 0; }
  .governance-layout,
  .governance-method-heading,
  .luminapp-story-grid,
  .research-evidence-grid,
  .luminapp-difference { grid-template-columns: 1fr; }
  .governance-poster { width: min(560px, 90%); justify-self: center; }
  .governance-steps { grid-template-columns: repeat(2, 1fr); }
  .governance-steps li:nth-child(3) { border-left: 0; }
  .bioethics-proof { grid-template-columns: 1fr; }
  .bioethics-proof > * + * { border-top: 1px solid rgba(212,175,55,.18); border-left: 0; }
  .learning-cycle { flex-wrap: wrap; justify-content: center; }
  .media-metrics { grid-template-columns: repeat(2, 1fr); }
  .media-metrics div:nth-child(3) { border-top: 1px solid rgba(212,175,55,.2); border-left: 0; }
  .media-metrics div:nth-child(4) { border-top: 1px solid rgba(212,175,55,.2); }
}

@media (max-width: 620px) {
  .hero { min-height: 820px; }
  .hero-media img {
    height: 82%;
    object-position: 76% top;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  }
  .hero-content h1 { font-size: clamp(2.25rem, 12vw, 3.35rem); }
  .hero-content { margin-bottom: 34px; }
  .hero-credentials { display: none; }
  .authority-strip a { padding: 17px 20px; }
  .governance-steps { grid-template-columns: 1fr; }
  .governance-steps li + li { border-left: 0; }
  .governance-steps li { min-height: 0; }
  .learning-cycle { display: grid; grid-template-columns: 1fr; }
  .learning-cycle i { transform: rotate(90deg); text-align: center; }
  .media-metrics { grid-template-columns: 1fr 1fr; }
  .media-metrics div { padding: 15px 10px; }
  .media-signature { min-height: 390px; }
}

/* Compact authority narrative */
.training-evidence {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.training-story,
.training-story-advanced {
  grid-template-columns: 1fr;
}

.training-story-media,
.training-story-marker {
  min-height: 210px;
  max-height: 230px;
}

.training-story-content {
  padding: 28px 30px 32px;
}

.training-story-content h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.training-story-content > p:not(.eyebrow) {
  margin-top: 15px;
}

.training-story-note {
  display: none;
}

.training-story-marker strong {
  font-size: clamp(3.6rem, 6vw, 5.2rem);
}

.section-governance {
  padding-top: clamp(58px, 7vw, 88px);
  padding-bottom: clamp(52px, 6vw, 76px);
}

.governance-compact {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
}

.governance-compact .governance-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  column-gap: clamp(42px, 7vw, 88px);
  align-items: end;
}

.governance-compact .governance-copy > .eyebrow { grid-column: 1; grid-row: 1; }
.governance-compact .governance-copy > h2 { grid-column: 1; grid-row: 2; }
.governance-compact .governance-copy > .governance-lead { grid-column: 2; grid-row: 1 / span 2; align-self: end; }
.governance-compact .governance-copy > .governance-steps { grid-column: 1 / -1; grid-row: 3; }

.governance-compact .governance-poster {
  width: min(100%, 330px);
  justify-self: center;
  transform: rotate(-1deg);
}

.governance-compact .governance-poster img {
  height: auto;
}

.governance-compact .governance-copy h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.7vw, 3.3rem);
}

.governance-compact .governance-lead {
  max-width: 780px;
  margin-top: 18px;
}

.governance-compact .governance-event {
  display: flex;
  gap: 12px 22px;
  align-items: baseline;
  max-width: 760px;
  margin-top: 18px;
  padding: 12px 16px;
}

.governance-steps-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 820px;
  margin-top: 22px;
}

.governance-steps-compact li {
  min-height: 0;
  padding: 14px 12px;
}

.governance-steps-compact strong {
  margin-top: 5px;
  font-size: 1rem;
}

.governance-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 18px;
}

.governance-links a {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.bioethics-line {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--silver-dim);
  font-size: 0.88rem;
  text-align: center;
}

.bioethics-line strong { color: var(--white); }

.section-luminapp .luminapp-intro {
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  margin-bottom: 30px;
}

.section-luminapp .luminapp-brand-lockup {
  min-height: 190px;
}

.section-luminapp .luminapp-brand-lockup img {
  max-height: 180px;
}

.luminapp-story-grid { margin-top: 26px; }
.luminapp-story-card { padding: 25px 28px; }
.luminapp-hypothesis blockquote { font-size: clamp(1.2rem, 2vw, 1.65rem); }
.learning-cycle { margin: 20px 0; padding: 16px 20px; }
.luminapp-difference { margin-top: 0; padding: 24px 30px; }
.luminapp-research-status { margin: 12px 0 0 !important; color: var(--silver-dim) !important; font-size: 0.85rem; }

.section-founders {
  padding-bottom: clamp(58px, 7vw, 88px);
}

.founder-card {
  grid-template-columns: 104px 1fr;
  padding: 24px;
}

.founder-card img { width: 104px; height: 104px; }
.founder-card ul { margin-top: 15px; }
.founder-card li + li { margin-top: 7px; }

.publication-proof {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 24px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.publication-proof-heading { padding: 26px; }
.publication-proof-heading h3 { color: var(--white); font-size: 1.35rem; }
.publication-proof-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.publication-proof-links a { display: flex; min-height: 142px; flex-direction: column; padding: 22px; border-left: 1px solid rgba(212,175,55,.16); border-bottom: 1px solid rgba(212,175,55,.16); transition: background .25s ease; }
.publication-proof-links a:nth-child(3),
.publication-proof-links a:nth-child(4) { border-bottom: 0; }
.publication-proof-links a:hover { background: rgba(212,175,55,.08); }
.publication-proof-links small { color: var(--gold-muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.publication-proof-links strong { margin-top: 7px; color: var(--white); font-family: Georgia, "Times New Roman", serif; line-height: 1.25; }
.publication-proof-links span { margin-top: auto; padding-top: 10px; color: var(--gold); font-size: .76rem; font-weight: 800; }

.media-show-all {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(212,175,55,.42);
  border-radius: 999px;
  background: rgba(212,175,55,.08);
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: .74rem;
  font-weight: 800;
}

.media-show-all[hidden] { display: none; }

@media (max-width: 960px) {
  .training-evidence,
  .governance-compact,
  .section-luminapp .luminapp-intro,
  .publication-proof { grid-template-columns: 1fr; }
  .governance-compact .governance-poster { width: min(260px, 70vw); }
  .publication-proof-links a:nth-child(odd) { border-left: 0; }
  .governance-compact .governance-copy { grid-template-columns: 1fr; }
  .governance-compact .governance-copy > .eyebrow,
  .governance-compact .governance-copy > h2,
  .governance-compact .governance-copy > .governance-lead,
  .governance-compact .governance-copy > .governance-steps { grid-column: 1; grid-row: auto; }
  .mentor-model-visual { width: min(620px, 100%); justify-self: center; }
}

@media (max-width: 620px) {
  .authority-strip { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .authority-strip a { flex: 0 0 76vw; border-top: 0 !important; border-left: 1px solid rgba(212,175,55,.18) !important; scroll-snap-align: start; }
  .training-story-media,
  .training-story-marker { min-height: 190px; }
  .governance-compact { gap: 28px; }
  .governance-compact .governance-event { display: grid; }
  .governance-steps-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .governance-steps-compact li:nth-child(3) { border-left: 0; }
  .bioethics-line { text-align: left; }
  .luminapp-story-grid { gap: 16px; }
  .luminapp-difference { gap: 12px; }
  .publication-proof-links { grid-template-columns: 1fr; }
  .publication-proof-links a { min-height: 118px; border-left: 0; border-bottom: 1px solid rgba(212,175,55,.16) !important; }
  .publication-proof-links a:last-child { border-bottom: 0 !important; }
  .media-carousel-toolbar { align-items: center; }
  .media-carousel-controls { flex-wrap: wrap; justify-content: flex-end; }
  .media-show-all { order: 3; width: 100%; }
  .mentor-model-visual { min-height: 430px; border-radius: 14px; }
  .mentor-model-stage { top: 18px; bottom: 102px; width: calc(100% - 28px); }
  .mentor-model-chip { bottom: 20px; width: calc(100% - 40px); }
  .mentor-signal-two { right: 4%; }
  .mentor-signal-three { display: none; }
}

/* LuminAPP product page */
.luminapp-page {
  background:
    radial-gradient(circle at 86% 3%, rgba(212, 175, 55, 0.1), transparent 26rem),
    linear-gradient(180deg, #071323, #09182b 48%, #071323);
}

.luminapp-page .section-inner {
  width: min(1180px, calc(100% - 40px));
}

.luminapp-page-hero {
  min-height: min(860px, 96svh);
  padding-top: 126px;
  padding-bottom: 96px;
}

.luminapp-page-inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.88fr);
  gap: clamp(42px, 7vw, 94px);
}

.luminapp-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.5vw, 5.15rem);
}

.luminapp-hero-copy .hero-copy {
  max-width: 700px;
  color: var(--silver);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

.luminapp-hero-footnote {
  margin: 22px 0 0;
  color: var(--silver-dim);
  font-size: 0.82rem;
}

.luminapp-product-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 18px;
  background: rgba(3, 13, 26, 0.9);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 52px rgba(212, 175, 55, 0.08);
}

.luminapp-product-preview::before {
  position: absolute;
  top: -38%;
  right: -28%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 68%);
  pointer-events: none;
}

.product-preview-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.025);
}

.product-preview-topbar img {
  width: 132px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.product-preview-topbar span,
.product-preview-heading small,
.product-preview-recommendation span,
.product-preview-caption {
  color: var(--gold-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-preview-body {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 36px);
}

.product-preview-heading {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.product-preview-heading div {
  display: grid;
  gap: 7px;
}

.product-preview-heading strong {
  max-width: 260px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.15;
}

.product-preview-score {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4rem);
  line-height: 0.8;
}

.product-preview-score small {
  font-size: 0.9rem;
}

.product-preview-chart {
  position: relative;
  height: 164px;
  margin: 32px 0 24px;
  padding: 0 8px 22px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(212, 175, 55, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(212, 175, 55, 0.035), rgba(2, 11, 24, 0.1));
}

.product-preview-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.performance-grid path {
  fill: none;
  stroke: rgba(224, 225, 221, 0.08);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.performance-area {
  fill: url(#performanceArea);
  opacity: 0;
  animation: performanceAreaIn 1.1s ease-out 1.45s forwards;
}

.performance-line {
  fill: none;
  stroke: #e2c262;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  filter: url(#performanceGlow);
  animation: performanceLineDraw 2.4s cubic-bezier(0.33, 0.02, 0.17, 1) 0.3s forwards;
}

.performance-points circle {
  fill: #f0d47c;
  stroke: #071323;
  stroke-width: 2;
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  animation: performancePointIn 0.35s ease-out forwards;
}

.performance-points circle:nth-child(1) { animation-delay: 0.38s; }
.performance-points circle:nth-child(2) { animation-delay: 0.86s; }
.performance-points circle:nth-child(3) { animation-delay: 1.34s; }
.performance-points circle:nth-child(4) { animation-delay: 1.82s; }
.performance-points circle:nth-child(5) { animation-delay: 2.28s; }

.performance-current circle:first-child {
  fill: rgba(212, 175, 55, 0.12);
  stroke: rgba(226, 194, 98, 0.55);
  stroke-width: 1;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: performancePulse 2.3s ease-out 2.55s infinite;
}

.performance-current circle:last-child {
  fill: #f4dc91;
  opacity: 0;
  animation: performanceAreaIn 0.35s ease-out 2.45s forwards;
}

.performance-periods {
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(174, 183, 194, 0.56);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.performance-periods span:last-child {
  color: var(--gold-muted);
}

@keyframes performanceLineDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes performanceAreaIn {
  to { opacity: 1; }
}

@keyframes performancePointIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes performancePulse {
  0% { opacity: 0; transform: scale(0.45); }
  34% { opacity: 0.75; }
  100% { opacity: 0; transform: scale(2.15); }
}

.product-preview-recommendation {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(212, 175, 55, 0.23);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.065);
}

.product-preview-recommendation strong {
  color: var(--white);
  font-size: 0.83rem;
}

.product-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.product-preview-tags span {
  padding: 5px 9px;
  border: 1px solid rgba(224, 225, 221, 0.13);
  border-radius: 999px;
  color: var(--silver-dim);
  font-size: 0.62rem;
}

.product-preview-caption {
  display: block;
  padding: 0 34px 20px;
  color: rgba(174, 183, 194, 0.56);
}

.luminapp-audience-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(2, 11, 24, 0.54);
}

.luminapp-audience-paths a {
  display: grid;
  gap: 3px;
  min-height: 154px;
  align-content: center;
  padding: 30px clamp(28px, 7vw, 96px);
  transition: background 0.25s ease;
}

.luminapp-audience-paths a + a {
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.luminapp-audience-paths a:hover {
  background: rgba(212, 175, 55, 0.075);
}

.luminapp-audience-paths small,
.student-value-cards small,
.institution-outcomes small {
  color: var(--gold-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.luminapp-audience-paths strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.luminapp-audience-paths span {
  color: var(--silver-dim);
  font-size: 0.8rem;
}

.luminapp-audience-paths b {
  margin-left: 8px;
  color: var(--gold);
}

.luminapp-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.58fr);
  gap: 20px 70px;
  align-items: end;
}

.luminapp-section-heading .eyebrow,
.luminapp-section-heading h2 {
  grid-column: 1;
}

.luminapp-section-heading p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--silver);
}

.luminapp-cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 54px 0 0;
  list-style: none;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.luminapp-cycle-grid li {
  position: relative;
  min-height: 240px;
  padding: 28px 24px;
}

.luminapp-cycle-grid li + li {
  border-left: 1px solid rgba(212, 175, 55, 0.18);
}

.luminapp-cycle-grid li:not(:last-child)::after {
  position: absolute;
  top: 31px;
  right: -12px;
  z-index: 2;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  content: "→";
  background: #09182b;
  color: var(--gold);
  font-size: 0.65rem;
}

.luminapp-cycle-grid li > span {
  color: rgba(212, 175, 55, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.luminapp-cycle-grid h3 {
  margin-top: 28px;
  color: var(--white);
}

.luminapp-cycle-grid p {
  margin-bottom: 0;
  color: var(--silver-dim);
  font-size: 0.9rem;
}

.section-student-value {
  background:
    radial-gradient(circle at 8% 50%, rgba(212, 175, 55, 0.11), transparent 28rem),
    rgba(13, 27, 42, 0.56);
}

.student-value-layout,
.measurement-layout,
.traceability-layout,
.video-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.student-value-copy > p:not(.eyebrow),
.measurement-copy > p:not(.eyebrow),
.video-feature-layout .section-heading > p:last-child {
  margin: 24px 0 30px;
  color: var(--silver);
}

.student-value-cards {
  display: grid;
  gap: 16px;
}

.student-value-cards article {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.student-value-cards h3 {
  margin-top: 12px;
  color: var(--white);
}

.student-value-cards p {
  margin-bottom: 0;
  color: var(--silver-dim);
}

.section-institutions {
  background: rgba(4, 14, 28, 0.5);
}

.institution-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.62fr);
  gap: clamp(36px, 8vw, 104px);
  align-items: end;
}

.institution-heading > p {
  margin: 0;
  color: var(--silver);
}

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

.institution-flow article {
  min-height: 214px;
  padding: 24px;
  border-top: 2px solid rgba(212, 175, 55, 0.55);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.075), rgba(255, 255, 255, 0.025));
}

.institution-flow article > span {
  color: rgba(212, 175, 55, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.institution-flow h3 {
  margin-top: 26px;
  color: var(--white);
}

.institution-flow p {
  margin-bottom: 0;
  color: var(--silver-dim);
  font-size: 0.88rem;
}

.institution-outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
}

.institution-outcomes p {
  display: grid;
  gap: 7px;
  padding: 24px;
  margin: 0;
}

.institution-outcomes p + p {
  border-left: 1px solid rgba(212, 175, 55, 0.18);
}

.institution-outcomes strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

.section-measurement {
  background:
    radial-gradient(circle at 88% 48%, rgba(212, 175, 55, 0.09), transparent 24rem),
    rgba(13, 27, 42, 0.64);
}

.measurement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 10px;
  background: rgba(2, 11, 24, 0.36);
}

.measurement-grid span {
  position: relative;
  min-height: 70px;
  padding: 24px 18px 18px 44px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  color: var(--silver);
  font-size: 0.84rem;
  font-weight: 700;
}

.measurement-grid span:nth-child(odd) {
  border-right: 1px solid rgba(212, 175, 55, 0.12);
}

.measurement-grid span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.measurement-grid span::before {
  position: absolute;
  top: 29px;
  left: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

.section-traceability {
  background: rgba(4, 14, 28, 0.68);
}

.traceability-layout {
  align-items: start;
}

.traceability-content {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.traceability-content > p {
  margin-top: 0;
  color: var(--silver);
  font-size: 1.02rem;
}

.traceability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0;
}

.traceability-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  color: var(--gold-muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.traceability-content > small {
  display: block;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.13);
  color: var(--silver-dim);
  line-height: 1.6;
}

.video-feature-layout .section-heading {
  margin-bottom: 0;
}

.video-feature-layout .video-card {
  width: 100%;
}

.luminapp-closing {
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background:
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.13), transparent 30rem),
    #071323;
}

.luminapp-closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.luminapp-closing-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 12px;
  overflow: hidden;
}

.luminapp-closing-actions a {
  display: grid;
  gap: 5px;
  min-height: 180px;
  align-content: center;
  padding: 26px;
  background: rgba(255, 255, 255, 0.025);
  transition: background 0.25s ease;
}

.luminapp-closing-actions a + a {
  border-left: 1px solid rgba(212, 175, 55, 0.22);
}

.luminapp-closing-actions a:hover {
  background: rgba(212, 175, 55, 0.09);
}

.luminapp-closing-actions small {
  color: var(--gold-muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.luminapp-closing-actions strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.luminapp-closing-actions span {
  color: var(--silver-dim);
  font-size: 0.76rem;
}

.luminapp-closing-actions b {
  color: var(--gold);
}

@media (max-width: 960px) {
  .luminapp-page-hero { min-height: 0; }
  .luminapp-page-inner,
  .luminapp-section-heading,
  .student-value-layout,
  .institution-heading,
  .measurement-layout,
  .traceability-layout,
  .video-feature-layout,
  .luminapp-closing-inner { grid-template-columns: 1fr; }
  .luminapp-section-heading p:last-child { grid-column: 1; grid-row: auto; margin-top: 10px; }
  .luminapp-hero-preview { width: min(620px, 100%); justify-self: center; }
  .luminapp-cycle-grid,
  .institution-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .luminapp-cycle-grid li:nth-child(3),
  .institution-flow article:nth-child(3) { border-top: 1px solid rgba(212, 175, 55, 0.18); }
  .luminapp-cycle-grid li:nth-child(3) { border-left: 0; }
  .luminapp-cycle-grid li:nth-child(2)::after { display: none; }
}

@media (max-width: 620px) {
  .luminapp-page-hero { padding-top: 104px; padding-bottom: 62px; }
  .luminapp-hero-copy h1 { font-size: clamp(2.45rem, 12vw, 3.55rem); }
  .luminapp-audience-paths { grid-template-columns: 1fr; }
  .luminapp-audience-paths a { min-height: 132px; padding: 24px 20px; }
  .luminapp-audience-paths a + a { border-top: 1px solid rgba(212, 175, 55, 0.2); border-left: 0; }
  .product-preview-topbar { min-height: 62px; padding: 9px 14px; }
  .product-preview-topbar img { width: 104px; }
  .product-preview-topbar span { font-size: 0.54rem; }
  .product-preview-body { padding: 22px 18px; }
  .product-preview-chart { height: 136px; margin-top: 24px; }
  .product-preview-caption { padding: 0 18px 16px; }
  .luminapp-cycle-grid,
  .institution-flow,
  .institution-outcomes,
  .measurement-grid,
  .luminapp-closing-actions { grid-template-columns: 1fr; }
  .luminapp-cycle-grid li { min-height: 0; }
  .luminapp-cycle-grid li + li { border-top: 1px solid rgba(212, 175, 55, 0.18); border-left: 0; }
  .luminapp-cycle-grid li:not(:last-child)::after { top: auto; right: 24px; bottom: -12px; transform: rotate(90deg); }
  .luminapp-cycle-grid li:nth-child(2)::after { display: grid; }
  .institution-flow { gap: 1px; }
  .institution-flow article { min-height: 0; }
  .institution-outcomes p + p { border-top: 1px solid rgba(212, 175, 55, 0.18); border-left: 0; }
  .measurement-grid span:nth-child(odd) { border-right: 0; }
  .measurement-grid span:nth-last-child(2) { border-bottom: 1px solid rgba(212, 175, 55, 0.12); }
  .luminapp-closing-actions a { min-height: 142px; }
  .luminapp-closing-actions a + a { border-top: 1px solid rgba(212, 175, 55, 0.22); border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .performance-line {
    stroke-dashoffset: 0;
    animation: none;
  }

  .performance-area,
  .performance-points circle,
  .performance-current circle:last-child {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .performance-current circle:first-child {
    opacity: 0.35;
    transform: none;
    animation: none;
  }
}
/* MAGI portfolio case study */
.governance-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
}

.governance-case-copy h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
}

.governance-case-copy .governance-lead {
  max-width: 760px;
  margin-top: 24px;
  line-height: 1.75;
}

.magi-pillars {
  margin-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.magi-pillars article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
}

.magi-pillars article + article {
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.magi-pillars article > span {
  padding-top: 3px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.magi-pillars h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
}

.magi-pillars p {
  margin: 6px 0 0;
  color: var(--silver-dim);
  font-size: 0.9rem;
  line-height: 1.55;
}

.magi-guardrail {
  margin: 26px 0 0;
  padding: 17px 19px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--silver);
  font-size: 0.92rem;
  line-height: 1.6;
}

.magi-guardrail strong {
  color: var(--gold-muted);
}

.magi-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.magi-actions .button {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px 20px;
}

.magi-actions p,
.magi-actions strong,
.magi-actions p span {
  display: block;
}

.magi-actions p {
  margin: 0;
  color: var(--silver-dim);
  font-size: 0.76rem;
  line-height: 1.45;
}

.magi-actions strong {
  color: var(--white);
  font-size: 0.78rem;
}

.governance-media {
  display: grid;
  gap: 18px;
}

.magi-video-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 14px;
  background: rgba(2, 10, 22, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.magi-video-frame {
  position: relative;
  aspect-ratio: 1280 / 804;
  overflow: hidden;
  background: #020914;
}

.magi-video-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

.magi-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magi-video-card figcaption {
  display: grid;
  gap: 5px;
  padding: 18px 20px 20px;
}

.magi-video-card figcaption span,
.magi-event-proof span {
  color: var(--gold-muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.magi-video-card figcaption strong,
.magi-event-proof strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  line-height: 1.3;
}

.magi-video-card figcaption small,
.magi-event-proof small {
  color: var(--silver-dim);
  line-height: 1.45;
}

.magi-event-proof {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.magi-event-proof img {
  width: 76px;
  height: 94px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.magi-event-proof div {
  display: grid;
  gap: 5px;
}

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

  .governance-media {
    width: min(680px, 100%);
  }
}

@media (max-width: 620px) {
  .governance-showcase {
    gap: 34px;
  }

  .governance-case-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  .magi-actions {
    display: grid;
  }

  .magi-actions .button {
    width: 100%;
  }

  .magi-event-proof {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 13px;
  }

  .magi-event-proof img {
    width: 62px;
    height: 80px;
  }
}

/* LUMINAI octopus mascot */
.octopus-mascot {
  --octopus-size: clamp(118px, 11vw, 172px);
  --octopus-x: calc(100vw - var(--octopus-size) - 22px);
  --octopus-y: calc(100svh - var(--octopus-size) - 24px);
  --octopus-travel-time: 0s;
  position: fixed;
  top: var(--octopus-y);
  left: var(--octopus-x);
  z-index: 9;
  width: var(--octopus-size);
  height: var(--octopus-size);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: grab;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.34));
  outline: none;
  touch-action: none;
  transition: left var(--octopus-travel-time) cubic-bezier(0.42, 0, 0.22, 1), top var(--octopus-travel-time) cubic-bezier(0.42, 0, 0.22, 1), filter 0.25s ease;
  user-select: none;
  -webkit-user-select: none;
}

.octopus-mascot:focus-visible {
  border-radius: 50%;
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.octopus-mascot[data-model-state="loading"] {
  opacity: 0.35;
}

.octopus-mascot[data-model-state="ready"] {
  opacity: 0.96;
  transition: left var(--octopus-travel-time) cubic-bezier(0.42, 0, 0.22, 1), top var(--octopus-travel-time) cubic-bezier(0.42, 0, 0.22, 1), filter 0.25s ease, opacity 0.35s ease;
}

.octopus-mascot[data-model-state="error"] {
  display: none;
}

.octopus-scroll-layer {
  position: relative;
  width: 100%;
  height: 100%;
}

.octopus-model {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  --poster-color: transparent;
  contain: layout paint style;
  isolation: isolate;
  overflow: hidden;
}

.octopus-model::part(default-progress-bar),
.octopus-model::part(interaction-prompt) {
  display: none;
}

.octopus-bubble {
  position: absolute;
  top: -4px;
  left: 50%;
  width: max-content;
  max-width: min(248px, 78vw);
  padding: 8px 11px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  background: rgba(4, 14, 27, 0.94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, 10px) scale(0.92);
  transition: opacity 0.2s ease, transform 0.25s ease;
  white-space: normal;
}

.octopus-mascot.is-speaking .octopus-bubble {
  opacity: 1;
  transform: translate(-50%, -10px) scale(1);
}

.octopus-mascot.bubble-align-left .octopus-bubble {
  right: 8px;
  left: auto;
  transform: translateY(10px) scale(0.92);
}

.octopus-mascot.bubble-align-left.is-speaking .octopus-bubble {
  transform: translateY(-10px) scale(1);
}

.octopus-mascot.bubble-align-right .octopus-bubble {
  right: auto;
  left: 8px;
  transform: translateY(10px) scale(0.92);
}

.octopus-mascot.bubble-align-right.is-speaking .octopus-bubble {
  transform: translateY(-10px) scale(1);
}

.octopus-mascot.is-dragging {
  cursor: grabbing;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.42)) brightness(1.08);
}

.octopus-mascot.is-dragging .octopus-model {
  opacity: 0.9;
}

.octopus-mascot.is-reacting {
  filter: drop-shadow(0 22px 24px rgba(212, 175, 55, 0.34)) brightness(1.12);
}


@media (max-width: 620px) {
  .octopus-mascot {
    --octopus-size: clamp(92px, 27vw, 116px);
    --octopus-x: calc(100vw - var(--octopus-size) - 12px);
    --octopus-y: calc(100svh - var(--octopus-size) - 18px);
  }

  .octopus-bubble {
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .octopus-mascot,
  .octopus-bubble {
    transition: none;
  }

}

@media print {
  .octopus-mascot {
    display: none;
  }
}
