:root {
  --black: #060606;
  --black-2: #0b0b0c;
  --black-3: #131315;
  --paper: #f0ede6;
  --white: #fffdf8;
  --ink: #141312;
  --muted: #aaa69e;
  --muted-dark: #625e57;
  --gold: #d3a23b;
  --gold-light: #f2cf70;
  --gold-deep: #8d5e12;
  --red: #e0244f;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(20, 19, 18, 0.16);
  --container: 1240px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

figure,
blockquote {
  margin: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--gold-light);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 6, 6, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 76px;
  height: 40px;
  object-fit: cover;
  object-position: center;
}

.brand span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: #d8d5cf;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.nav-cta) {
  color: #d6d3cd;
  font-size: 14px;
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(231, 185, 76, 0.65);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  color: var(--black);
  background: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: max(740px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.045);
  animation: hero-cinematic-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-cinematic-drift {
  0% {
    transform: scale(1.045) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.09) translate3d(-0.8%, -0.45%, 0);
  }
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.98) 24%, rgba(5, 5, 5, 0.79) 44%, rgba(5, 5, 5, 0.08) 74%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.45), transparent 38%, rgba(5, 5, 5, 0.68));
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 8%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent 12%, rgba(224, 36, 79, 0.44) 38%, rgba(211, 162, 59, 0.34) 75%, transparent);
}

.hero-inner {
  min-height: max(740px, 100svh);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 44px);
  padding-bottom: 108px;
}

.hero-copy {
  width: min(620px, 58%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.eyebrow span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(58px, 6.6vw, 100px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-lead {
  margin: 30px 0 0;
  color: #d8d5ce;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

.hero-support {
  max-width: 530px;
  margin: 15px 0 0;
  color: #b5b1aa;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: #080704;
  background: linear-gradient(115deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 36px rgba(189, 131, 22, 0.2);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
}

.button-primary:hover {
  box-shadow: 0 16px 42px rgba(218, 168, 57, 0.32);
}

.button-primary:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(8, 8, 8, 0.38);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

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

.button-dark:hover {
  color: var(--gold-light);
  box-shadow: 0 14px 36px rgba(19, 19, 19, 0.2);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 34px 0 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts div {
  padding: 0 16px;
  border-left: 1px solid var(--line);
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #aaa69e;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-dark,
.section-light,
.section-paper {
  position: relative;
  padding: 104px 0;
}

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

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

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

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.visual-heading h2,
.program-intro h2,
.criteria-copy h2,
.method-head h2,
.included-copy h2,
.faculty-copy h2,
.lead-copy h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(38px, 4.45vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 18px;
}

.visual-story {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(213, 162, 59, 0.08), transparent 29%),
    var(--black-2);
}

.visual-heading,
.program-intro,
.method-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 44px;
}

.visual-heading > p,
.program-intro > p,
.method-head > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 18px;
}

.visual-heading strong {
  color: var(--white);
}

.story-figure,
.roadmap-figure,
.criteria-figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224, 185, 91, 0.3);
  background: #0a0a0a;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.32);
}

.story-figure::before,
.roadmap-figure::before,
.criteria-figure::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -1px auto auto -1px;
  width: 36%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), transparent);
}

.story-figure img,
.roadmap-figure img,
.criteria-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-figure figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(242, 207, 112, 0.42);
  color: var(--gold-light);
  background: rgba(6, 6, 6, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  backdrop-filter: blur(12px);
}

.story-figure figcaption span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(224, 36, 79, 0.72);
}

.outcomes {
  overflow: hidden;
}

.outcomes::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(213, 166, 61, 0.16);
  border-radius: 50%;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.outcome-card {
  min-height: 188px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.42);
  transition: background 200ms ease, transform 200ms ease;
}

.outcome-card:hover {
  z-index: 1;
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 20px 54px rgba(25, 19, 9, 0.08);
}

.outcome-card > span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.outcome-card h3 {
  margin: 26px 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.outcome-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
}

.program {
  border-top: 1px solid var(--line-dark);
}

.program-intro > p {
  color: var(--muted-dark);
}

.program-intro > p strong {
  color: var(--ink);
}

.roadmap-figure {
  border-color: rgba(92, 68, 21, 0.36);
  box-shadow: 0 28px 70px rgba(45, 32, 9, 0.17);
}

.program-stages {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.program-stages li {
  min-height: 185px;
  padding: 25px 20px 22px;
  border-right: 1px solid var(--line-dark);
}

.program-stages li:first-child {
  border-left: 1px solid var(--line-dark);
}

.program-stages li > span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.program-stages h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.program-stages p {
  margin: 9px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

.center-action p {
  margin: 12px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
}

.criteria {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 50%, rgba(213, 162, 59, 0.08), transparent 34%),
    var(--black);
}

.criteria-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  align-items: center;
  gap: 62px;
}

.criteria-figure img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.criteria-copy > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: #bbb7af;
  font-size: 17px;
}

.criteria-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.criteria-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  color: #d4d0c9;
  font-size: 12px;
}

.criteria-copy blockquote {
  margin-top: 28px;
  padding: 17px 0 17px 20px;
  border-left: 3px solid;
  border-image: linear-gradient(var(--red), var(--gold)) 1;
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 750;
}

.ai-act-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) minmax(0, 1.9fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 0;
  padding: 30px 32px;
  border: 1px solid rgba(242, 207, 112, 0.34);
  background:
    linear-gradient(120deg, rgba(224, 36, 79, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.ai-act-meta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.ai-act-meta span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ai-act-meta strong {
  margin-top: 22px;
  color: #e9e5dd;
  font-size: 13px;
  line-height: 1.45;
}

.ai-act-content h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.ai-act-content p {
  margin: 12px 0 0;
  color: #bbb7af;
  font-size: 14px;
}

.ai-act-content .ai-act-clarification {
  color: #8f8a82;
  font-size: 12px;
}

.ai-act-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.045em;
  white-space: nowrap;
  text-transform: uppercase;
}

.ai-act-link:hover {
  color: var(--white);
}

.method-head > p {
  color: var(--muted-dark);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.method-steps li {
  min-height: 190px;
  padding: 28px 25px;
  border-right: 1px solid var(--line-dark);
}

.method-steps li:first-child {
  border-left: 1px solid var(--line-dark);
}

.method-steps span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.method-steps strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.method-steps p {
  margin: 7px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.fit-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  margin-top: 36px;
  padding: 24px 28px;
  border: 1px solid var(--line-dark);
  background: #f7f5ef;
}

.fit-strip small {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fit-strip p {
  margin: 5px 0 0;
  color: #4d4943;
}

.fit-strip strong {
  max-width: 320px;
  color: var(--gold-deep);
  text-align: right;
}

.included {
  border-top: 1px solid var(--line-dark);
}

.included-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 74px;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  list-style: none;
}

.included-list li {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 19px 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.included-list strong {
  color: var(--gold-deep);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.included-list span {
  margin-top: 5px;
  color: var(--muted-dark);
  font-size: 14px;
}

.faculty {
  background:
    linear-gradient(120deg, transparent 0 68%, rgba(213, 162, 59, 0.045) 68%),
    var(--black-2);
}

.faculty-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 78px;
}

.faculty-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  margin-top: 28px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 800;
}

.faculty-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faculty-areas span {
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid var(--line);
  color: #e2ded6;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent);
  font-size: 15px;
  font-weight: 750;
}

.faculty-areas span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin: 0 10px 7px 0;
  border-radius: 50%;
  background: var(--gold);
}

.lead-section {
  overflow: hidden;
  padding: 116px 0;
  background:
    linear-gradient(125deg, transparent 0 66%, rgba(211, 162, 59, 0.035) 66%),
    #050505;
}

.lead-glow {
  position: absolute;
  top: 0;
  left: -120px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 132, 21, 0.13), rgba(224, 36, 79, 0.025) 45%, transparent 68%);
  pointer-events: none;
}

.lead-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  align-items: center;
  gap: 74px;
}

.lead-copy h2 {
  font-size: clamp(40px, 4vw, 58px);
}

.lead-copy > img {
  width: 112px;
  height: 56px;
  margin-bottom: 38px;
  object-fit: cover;
}

.lead-copy > p:not(.section-kicker):not(.lead-promise) {
  max-width: 520px;
  margin: 24px 0 0;
  color: #bbb7af;
  font-size: 18px;
}

.lead-promise {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 28px 0 0;
  color: #99958e;
  font-size: 13px;
}

.lead-promise span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
}

.form-shell {
  position: relative;
  min-height: 500px;
  padding: 36px;
  border: 1px solid rgba(230, 185, 81, 0.32);
  background: rgba(15, 15, 16, 0.88);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.form-shell::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold) 38%, transparent 78%);
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.field {
  display: block;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  display: block;
  margin-bottom: 7px;
  color: #d2cfc8;
  font-size: 13px;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease;
}

.field textarea {
  resize: vertical;
}

.field select {
  color-scheme: dark;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.075);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: #d95e72;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 17px;
  color: #aaa69f;
  font-size: 13px;
  line-height: 1.45;
}

.check-field + .check-field {
  margin-top: 9px;
}

.check-field input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}

.check-field a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.submit-button {
  width: 100%;
  margin-top: 23px;
  border: 0;
}

.form-note,
.form-error {
  margin: 11px 0 0;
  font-size: 12px;
}

.form-note {
  color: #a39f97;
  line-height: 1.55;
  text-align: left;
}

.form-error {
  color: #ff96a7;
}

.form-success {
  min-height: 420px;
  display: grid;
  place-content: center;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 25px;
}

.form-success h3 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.035em;
}

.form-success p {
  max-width: 440px;
  margin: 15px auto 0;
  color: var(--muted);
}

.success-download {
  width: fit-content;
  margin: 26px auto 0;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: #85817a;
  background: #030303;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 46px;
}

.footer-inner strong {
  color: var(--gold-light);
  font-size: 22px;
  letter-spacing: 0.05em;
}

.footer-inner p {
  margin: 3px 0 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1060px) {
  :root {
    --header-h: 72px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero-copy {
    width: min(620px, 66%);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.97) 28%, rgba(5, 5, 5, 0.75) 54%, rgba(5, 5, 5, 0.22) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.4), transparent 45%, rgba(5, 5, 5, 0.74));
  }

  .program-stages {
    grid-template-columns: repeat(3, 1fr);
  }

  .program-stages li:nth-child(4) {
    border-left: 1px solid var(--line-dark);
  }

  .criteria-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 42px;
  }

  .ai-act-panel {
    grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1.52fr);
  }

  .ai-act-link {
    grid-column: 2;
    justify-self: start;
    padding: 0;
  }

  .included-grid,
  .faculty-layout,
  .lead-grid {
    gap: 46px;
  }

  .faculty-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .lead-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

@media (max-width: 780px) {
  :root {
    --header-h: 66px;
  }

  body {
    padding-bottom: 62px;
  }

  .container {
    width: min(100% - 34px, var(--container));
  }

  .site-header {
    background: rgba(6, 6, 6, 0.9);
    border-bottom-color: var(--line);
    backdrop-filter: blur(16px);
  }

  .brand img {
    width: 66px;
    height: 34px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 22px 17px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 6, 6, 0.98);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.45);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav > a:not(.nav-cta) {
    display: block;
    padding: 14px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .nav-cta {
    margin-top: 18px;
    text-align: center;
  }

  .menu-open .menu-toggle span:not(.sr-only):nth-child(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-open .menu-toggle span:not(.sr-only):nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    min-height: 790px;
  }

  .hero-image {
    object-position: 64% center;
    opacity: 0.72;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.83) 25%, rgba(5, 5, 5, 0.65) 55%, #050505 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.16));
  }

  .hero-inner {
    min-height: 790px;
    align-items: flex-start;
    padding-top: 112px;
    padding-bottom: 82px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 70px);
    letter-spacing: -0.06em;
  }

  .hero-lead {
    max-width: 450px;
    font-size: 22px;
  }

  .hero-support {
    max-width: 410px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 380px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    max-width: 410px;
    padding: 0;
  }

  .hero-facts div {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-bottom: 0;
  }

  .hero-facts div:nth-child(4) {
    border-bottom: 0;
  }

  .hero-scroll {
    display: none;
  }

  .section-dark,
  .section-light,
  .section-paper,
  .lead-section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .visual-heading h2,
  .program-intro h2,
  .criteria-copy h2,
  .method-head h2,
  .included-copy h2,
  .faculty-copy h2,
  .lead-copy h2 {
    font-size: clamp(35px, 10vw, 49px);
  }

  .visual-heading,
  .program-intro,
  .method-head,
  .criteria-grid,
  .included-grid,
  .faculty-layout,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .visual-heading,
  .program-intro,
  .method-head {
    gap: 18px;
    margin-bottom: 32px;
  }

  .visual-heading > p,
  .program-intro > p,
  .method-head > p {
    font-size: 16px;
  }

  .story-figure figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    padding: 14px 15px;
    border: 0;
    border-top: 1px solid rgba(242, 207, 112, 0.32);
    font-size: 12px;
  }

  .story-figure img,
  .roadmap-figure img,
  .criteria-figure img {
    aspect-ratio: 16 / 9;
    object-position: center;
  }

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

  .outcome-card {
    min-height: 176px;
    padding: 23px;
  }

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

  .roadmap-figure img {
    object-position: center;
  }

  .program-stages {
    grid-template-columns: 1fr;
  }

  .program-stages li,
  .program-stages li:first-child,
  .program-stages li:nth-child(4) {
    min-height: 0;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding: 22px 18px;
    border-left: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .program-stages li > span {
    margin: 4px 0 0;
  }

  .center-action .button {
    width: 100%;
  }

  .criteria-grid {
    gap: 38px;
  }

  .ai-act-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
    padding: 24px 20px;
  }

  .ai-act-meta {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ai-act-meta strong {
    margin-top: 10px;
  }

  .ai-act-link {
    grid-column: auto;
  }

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

  .method-steps li:nth-child(3) {
    border-left: 1px solid var(--line-dark);
  }

  .method-steps li {
    min-height: 174px;
    border-bottom: 1px solid var(--line-dark);
  }

  .method-steps span {
    margin-bottom: 30px;
  }

  .fit-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fit-strip strong {
    text-align: left;
  }

  .included-grid,
  .faculty-layout,
  .lead-grid {
    gap: 34px;
  }

  .lead-copy h2 {
    font-size: clamp(34px, 9vw, 43px);
    line-height: 1.04;
  }

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

  .lead-copy > img {
    width: 96px;
    height: 48px;
    margin-bottom: 32px;
  }

  .form-shell {
    min-height: 0;
    padding: 27px 20px;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .footer-links {
    gap: 13px 18px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #090704;
    background: linear-gradient(110deg, var(--gold-light), var(--gold));
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.35);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    transform: translateY(110%);
    transition: transform 220ms ease;
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 470px) {
  .hero {
    min-height: 815px;
  }

  .hero-inner {
    min-height: 815px;
  }

  .outcome-grid,
  .method-steps,
  .included-list,
  .faculty-areas {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 148px;
  }

  .method-steps li,
  .method-steps li:nth-child(3) {
    min-height: auto;
    border-left: 1px solid var(--line-dark);
  }

  .method-steps span {
    margin-bottom: 20px;
  }

  .included-list li,
  .faculty-areas span {
    min-height: 96px;
  }
}

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

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

/* ==========================================================
   EDICIÓN PREMIUM 2026 · profundidad y movimiento audiovisual
   Capa completamente aislada de la web corporativa de BRR.
   ========================================================== */

.site-header {
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.76), rgba(4, 4, 4, 0));
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.26);
}

.brand img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.hero {
  --hero-pointer-x: 0px;
  --hero-pointer-y: 0px;
  --hero-atmosphere-x: 0px;
  --hero-atmosphere-y: 0px;
  --hero-scroll-y: 0px;
  min-height: max(780px, 100svh);
  background:
    radial-gradient(circle at 70% 45%, rgba(211, 162, 59, 0.08), transparent 34%),
    #050505;
}

/* La línea vertical anterior parecía un fallo de maquetación. */
.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.9));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: -4;
  inset: -3.5%;
  overflow: hidden;
  transform: translate3d(var(--hero-pointer-x), calc(var(--hero-pointer-y) + var(--hero-scroll-y)), 0);
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.hero-media .hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.98) contrast(1.08) brightness(0.94);
  transform: scale(1.04);
  animation: hero-cinematic-drift 14s cubic-bezier(.45, 0, .55, 1) infinite alternate;
  will-change: transform;
}

@keyframes hero-cinematic-drift {
  0% { transform: scale(1.045) translate3d(0, 0, 0); }
  50% { transform: scale(1.085) translate3d(-0.5%, -0.35%, 0); }
  100% { transform: scale(1.12) translate3d(0.65%, -0.75%, 0); }
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 47%, transparent 0 19%, rgba(5, 5, 5, 0.08) 34%, rgba(5, 5, 5, 0.25) 53%),
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.97) 23%, rgba(5, 5, 5, 0.76) 43%, rgba(5, 5, 5, 0.06) 73%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.42), transparent 39%, rgba(5, 5, 5, 0.76));
}

.hero-atmosphere,
.hero-matrix {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-atmosphere {
  z-index: -1;
  overflow: hidden;
  transform: translate3d(var(--hero-atmosphere-x), var(--hero-atmosphere-y), 0);
  transition: transform 900ms cubic-bezier(.2, .8, .2, 1);
}

.hero-matrix {
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(242, 207, 112, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 207, 112, 0.07) 1px, transparent 1px);
  background-size: 86px 86px;
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, 0.3) 42%, #000 74%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, 0.3) 42%, #000 74%, transparent 100%);
  animation: matrix-drift 20s linear infinite;
}

.hero-halo,
.hero-orbit,
.hero-node {
  position: absolute;
  display: block;
}

.hero-halo {
  border-radius: 50%;
  filter: blur(2px);
  mix-blend-mode: screen;
}

.hero-halo-a {
  top: 17%;
  right: 14%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(242, 207, 112, 0.19), rgba(211, 162, 59, 0.035) 44%, transparent 69%);
  animation: halo-breathe 6.8s ease-in-out infinite alternate;
}

.hero-halo-b {
  right: 38%;
  bottom: 5%;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(224, 36, 79, 0.1), transparent 67%);
  animation: halo-breathe 8.4s ease-in-out -2.5s infinite alternate-reverse;
}

.hero-orbit {
  border: 1px solid rgba(242, 207, 112, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 36px rgba(211, 162, 59, 0.035), 0 0 28px rgba(211, 162, 59, 0.025);
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px 4px rgba(242, 207, 112, 0.5);
}

.hero-orbit-a {
  top: 7%;
  right: -7%;
  width: 520px;
  height: 520px;
  animation: orbit-drift-a 12s ease-in-out infinite alternate;
}

.hero-orbit-b {
  right: 24%;
  bottom: -25%;
  width: 390px;
  height: 390px;
  border-color: rgba(224, 36, 79, 0.13);
  animation: orbit-drift-b 15s ease-in-out -4s infinite alternate;
}

.hero-node {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 253, 248, 0.8);
  border-radius: 50%;
  background: rgba(242, 207, 112, 0.45);
  box-shadow: 0 0 14px 3px rgba(242, 207, 112, 0.26);
}

.hero-node-a { top: 27%; right: 18%; animation: node-float 5.4s ease-in-out infinite alternate; }
.hero-node-b { top: 66%; right: 43%; animation: node-float 7.2s ease-in-out -2s infinite alternate-reverse; }
.hero-node-c { top: 79%; right: 8%; animation: node-float 6.2s ease-in-out -3.6s infinite alternate; }

@keyframes matrix-drift {
  to { background-position: 86px 43px, 43px 86px; }
}

@keyframes halo-breathe {
  from { opacity: 0.42; transform: scale(0.88) translate3d(-12px, 8px, 0); }
  to { opacity: 0.94; transform: scale(1.12) translate3d(18px, -14px, 0); }
}

@keyframes orbit-drift-a {
  from { opacity: 0.28; transform: rotate(-12deg) scale(0.92); }
  to { opacity: 0.78; transform: rotate(18deg) scale(1.08); }
}

@keyframes orbit-drift-b {
  from { opacity: 0.22; transform: rotate(16deg) translate3d(-10px, 0, 0); }
  to { opacity: 0.58; transform: rotate(-15deg) translate3d(18px, -15px, 0); }
}

@keyframes node-float {
  from { opacity: 0.35; transform: translate3d(-8px, 8px, 0) scale(0.8); }
  to { opacity: 1; transform: translate3d(15px, -18px, 0) scale(1.35); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: max(780px, 100svh);
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -90px;
  left: -120px;
  width: 680px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.5), transparent 69%);
  filter: blur(12px);
  pointer-events: none;
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(105deg, #fff0ba 4%, var(--gold-light) 38%, #c68c20 76%, #f8dea0 100%);
  background-size: 180% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gold-text-flow 6s ease-in-out infinite alternate;
}

@keyframes gold-text-flow {
  to { background-position: 100% 50%; }
}

.hero-facts {
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.45);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 18px 54px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.hero-facts div,
.hero-facts div:first-child {
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012));
  transition: background 220ms ease, transform 220ms ease;
}

.hero-facts div:hover {
  background: linear-gradient(145deg, rgba(242, 207, 112, 0.12), rgba(255, 255, 255, 0.02));
  transform: translateY(-2px);
}

.hero-scroll {
  z-index: 3;
}

.hero-scroll span {
  position: relative;
  overflow: hidden;
}

.hero-scroll span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-110%);
  animation: scroll-signal 2.4s ease-in-out infinite;
}

@keyframes scroll-signal {
  55%, 100% { transform: translateX(110%); }
}

.button-primary {
  overflow: hidden;
  isolation: isolate;
}

.button-primary::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -40%;
  left: -36%;
  width: 23%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: rotate(14deg);
  animation: button-sheen 4.8s ease-in-out 1.2s infinite;
}

@keyframes button-sheen {
  0%, 56% { left: -38%; }
  78%, 100% { left: 125%; }
}

.section-dark,
.section-light,
.section-paper {
  isolation: isolate;
}

.section-dark::after,
.section-light::after,
.section-paper::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto auto 50%;
  width: min(72vw, 980px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 162, 59, 0.28), rgba(224, 36, 79, 0.16), transparent);
  transform: translateX(-50%);
}

.story-figure,
.roadmap-figure,
.criteria-figure {
  border-radius: 22px;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.025);
  transform: translateZ(0);
}

.story-figure img,
.roadmap-figure img,
.criteria-figure img {
  transform: scale(1.035);
  transition: transform 1.35s cubic-bezier(.2, .8, .2, 1), filter 700ms ease;
}

.story-figure.is-visible img,
.roadmap-figure.is-visible img,
.criteria-figure.is-visible img {
  transform: scale(1);
}

.story-figure:hover img,
.roadmap-figure:hover img,
.criteria-figure:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}

.story-figure::after,
.roadmap-figure::after,
.criteria-figure::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 38%, rgba(255, 245, 210, 0.12) 48%, transparent 58%);
  transform: translateX(-120%);
  animation: figure-light-pass 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes figure-light-pass {
  0%, 62% { transform: translateX(-120%); }
  82%, 100% { transform: translateX(120%); }
}

.story-figure figcaption {
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.outcomes {
  background:
    radial-gradient(circle at 92% 5%, rgba(211, 162, 59, 0.095), transparent 24%),
    linear-gradient(180deg, #fffdf8, #f8f5ee);
}

.outcome-grid {
  gap: 12px;
  border: 0;
}

.outcome-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 32px rgba(43, 30, 6, 0.035);
}

.outcome-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), transparent 72%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.outcome-card:hover::before {
  transform: scaleX(1);
}

.program {
  background:
    radial-gradient(circle at 12% 16%, rgba(211, 162, 59, 0.09), transparent 25%),
    var(--paper);
}

.program-stages {
  gap: 10px;
  border: 0;
}

.program-stages li,
.program-stages li:first-child,
.program-stages li:nth-child(4) {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: rgba(255, 253, 248, 0.52);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.program-stages li::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(211, 162, 59, 0.11);
}

.program-stages li:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(45, 32, 9, 0.1);
  transform: translateY(-4px);
}

.criteria {
  background:
    radial-gradient(circle at 88% 16%, rgba(211, 162, 59, 0.11), transparent 27%),
    radial-gradient(circle at 8% 88%, rgba(224, 36, 79, 0.055), transparent 25%),
    #050505;
}

.criteria-tags span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.ai-act-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 0%, rgba(224, 36, 79, 0.14), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(16px);
}

.ai-act-panel::before {
  content: "";
  position: absolute;
  top: -90%;
  left: -18%;
  width: 28%;
  height: 280%;
  background: linear-gradient(90deg, transparent, rgba(242, 207, 112, 0.1), transparent);
  transform: rotate(16deg);
  animation: ai-act-sheen 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ai-act-sheen {
  0%, 62% { left: -28%; }
  86%, 100% { left: 125%; }
}

.method {
  background:
    linear-gradient(180deg, rgba(242, 207, 112, 0.025), transparent 26%),
    var(--white);
}

.method-steps {
  gap: 10px;
  border: 0;
}

.method-steps li,
.method-steps li:first-child,
.method-steps li:nth-child(3) {
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.method-steps li:hover {
  box-shadow: 0 18px 42px rgba(45, 32, 9, 0.08);
  transform: translateY(-4px);
}

.fit-strip,
.included-list {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(45, 32, 9, 0.06);
}

.fit-strip {
  background: linear-gradient(120deg, #fff, #f6f1e7);
}

.included-list li {
  background: rgba(255, 253, 248, 0.5);
  transition: background 180ms ease;
}

.included-list li:hover {
  background: #fff;
}

.lead-section {
  background:
    radial-gradient(circle at 14% 38%, rgba(211, 162, 59, 0.105), transparent 26%),
    radial-gradient(circle at 90% 68%, rgba(224, 36, 79, 0.052), transparent 23%),
    #040404;
}

.lead-glow {
  animation: lead-glow-float 8.5s ease-in-out infinite alternate;
}

@keyframes lead-glow-float {
  from { opacity: 0.55; transform: translate3d(-30px, 30px, 0) scale(0.9); }
  to { opacity: 1; transform: translate3d(54px, -34px, 0) scale(1.13); }
}

.form-shell {
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(22px);
}

.form-shell::before {
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold) 42%, var(--gold-light) 70%, transparent);
}

.field input {
  border-radius: 8px;
}

.mobile-cta {
  overflow: hidden;
}

.outcome-grid .reveal:nth-child(2),
.program-stages .reveal:nth-child(2),
.method-steps .reveal:nth-child(2) { transition-delay: 70ms; }

.outcome-grid .reveal:nth-child(3),
.program-stages .reveal:nth-child(3),
.method-steps .reveal:nth-child(3) { transition-delay: 140ms; }

.outcome-grid .reveal:nth-child(4),
.program-stages .reveal:nth-child(4),
.method-steps .reveal:nth-child(4) { transition-delay: 210ms; }

.outcome-grid .reveal:nth-child(5),
.program-stages .reveal:nth-child(5) { transition-delay: 280ms; }

.outcome-grid .reveal:nth-child(6) { transition-delay: 350ms; }

@media (max-width: 1060px) {
  .hero-atmosphere { opacity: 0.8; }
  .hero-orbit-a { right: -18%; }
  .hero-halo-a { right: 4%; }
}

@media (max-width: 780px) {
  .site-header { background: rgba(5, 5, 5, 0.84); }

  .hero,
  .hero-inner {
    min-height: max(835px, 100svh);
  }

  .hero-media {
    inset: -2.5%;
  }

  .hero-media .hero-image {
    object-position: 65% center;
    opacity: 0.78;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 65% 30%, transparent 0 13%, rgba(5, 5, 5, 0.11) 36%),
      linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.72) 27%, rgba(5, 5, 5, 0.62) 53%, #050505 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.12));
  }

  .hero-atmosphere { opacity: 0.58; }
  .hero-matrix { opacity: 0.13; background-size: 58px 58px; }
  .hero-orbit-a { top: 9%; right: -64%; width: 470px; height: 470px; }
  .hero-orbit-b { right: 28%; bottom: -17%; width: 300px; height: 300px; }
  .hero-halo-a { top: 18%; right: -28%; width: 360px; height: 360px; }
  .hero-halo-b { right: 28%; bottom: 3%; }
  .hero-node-a { right: 12%; }
  .hero-node-b { right: 78%; }

  .hero-inner {
    padding-top: 104px;
  }

  .hero-copy::after {
    top: -70px;
    left: -220px;
  }

  .hero-facts {
    gap: 6px;
    padding: 6px;
    border-radius: 11px;
  }

  .hero-facts div,
  .hero-facts div:first-child,
  .hero-facts div:nth-child(3),
  .hero-facts div:nth-child(4) {
    padding: 12px;
    border: 0;
  }

  .story-figure,
  .roadmap-figure,
  .criteria-figure,
  .form-shell,
  .ai-act-panel {
    border-radius: 16px;
  }

  .story-figure figcaption {
    border-radius: 0;
  }

  .outcome-grid {
    gap: 8px;
  }

  .outcome-card,
  .program-stages li,
  .program-stages li:first-child,
  .program-stages li:nth-child(4),
  .method-steps li,
  .method-steps li:first-child,
  .method-steps li:nth-child(3) {
    border-radius: 12px;
  }

  .program-stages,
  .method-steps {
    gap: 8px;
  }

  .form-shell {
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.42);
  }

  .outcome-grid .reveal,
  .program-stages .reveal,
  .method-steps .reveal {
    transition-delay: 0ms !important;
  }
}

@media (max-width: 470px) {
  .hero,
  .hero-inner {
    min-height: max(855px, 100svh);
  }

  .hero h1 {
    font-size: clamp(51px, 15.4vw, 66px);
  }

  .hero-facts {
    max-width: none;
  }

  .outcome-grid,
  .method-steps,
  .included-list {
    gap: 8px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .included-list li {
    border: 1px solid var(--line-dark);
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-atmosphere {
    transform: none !important;
  }
}
