:root {
  --canvas: #f6f7f9;
  --surface: #ffffff;
  --image-frame: #d7dce3;
  --white: #17191d;
  --muted: #64707d;
  --soft-white: #3b424c;
  --black: #000000;
  --lime: #76d72e;
  --lime-border: #2f7616;
  --violet: #5200ff;
  --violet-soft: #ede7ff;
  --violet-rule: #6742ff;
  --link-blue: #254fba;
  --focus: #2f7616;
  --yellow: #ffea00;
  --pink: #ff4ecd;
  --orange: #ff6a00;
  --blue: #3ca5ff;
  --font-display: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-sans: "Space Grotesk", Helvetica, Arial, sans-serif;
  --font-mono: "Space Mono", "Courier New", Courier, monospace;
  --font-serif: "Newsreader", Georgia, serif;
  --container: 1280px;
  --edge: 48px;
  --header-height: 74px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

a:hover {
  color: var(--link-blue);
}

button,
summary {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

::selection {
  background: var(--lime);
  color: var(--black);
}

.sr-only,
.skip-link {
  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:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 16px;
  clip: auto;
  background: var(--lime);
  color: var(--black);
  border-radius: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.content-shell {
  width: min(100% - (var(--edge) * 2), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 249, 0.96);
  border-bottom: 1px solid var(--image-frame);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  width: min(100% - (var(--edge) * 2), var(--container));
  margin-inline: auto;
  gap: 24px;
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-mark span:first-child {
  color: var(--lime-border);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.nav-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--soft-white);
}

.nav-menu a.is-active {
  color: var(--white);
  box-shadow: 0 -1px 0 0 var(--lime) inset;
}

.nav-menu .nav-cta {
  min-height: 42px;
  padding: 8px 20px;
  border-radius: 24px;
  background: var(--lime);
  color: var(--black);
}

.nav-menu .nav-cta:hover {
  background: rgba(19, 19, 19, 0.08);
  color: var(--black);
  box-shadow: 0 0 0 1px #aab2bd inset;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 50%;
  border: 1px solid var(--image-frame);
  background: var(--surface);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero-section {
  position: relative;
  min-height: 78vh;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--white);
}

.hero-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  pointer-events: none;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 26%;
  background: var(--yellow);
  opacity: 1;
}

.hero-stage::after {
  inset: 0 0 auto auto;
  width: 32%;
  height: 100%;
  background: var(--lime);
  opacity: 1;
}

.rail-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(0, 0, 0, 0.1) calc(100% - 1px)),
    linear-gradient(0deg, transparent 0, transparent calc(100% - 1px), rgba(0, 0, 0, 0.07) calc(100% - 1px));
  background-size: 160px 160px, 160px 160px;
  opacity: 0.65;
}

.stage-chip {
  position: absolute;
  top: 96px;
  right: var(--edge);
  z-index: 2;
  padding: 6px 12px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--black);
}

.stage-chip--lime {
  background: var(--lime);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 92px 0 56px;
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime-border);
}

.kicker {
  color: currentColor;
  opacity: 0.84;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 108px;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 1.07px;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

p {
  margin-bottom: 16px;
}

.hero-deck {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.32px;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  padding: 10px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.button--primary {
  background: var(--lime);
  color: var(--black);
}

.button--primary:hover {
  background: rgba(19, 19, 19, 0.08);
  color: var(--black);
  box-shadow: 0 0 0 1px #aab2bd inset;
}

.button--outline {
  border: 1px solid var(--lime-border);
  border-radius: 40px;
  color: var(--lime-border);
  background: rgba(255, 255, 255, 0.42);
}

.button--outline:hover {
  background: var(--lime);
  color: var(--black);
}

.chair-visual {
  position: absolute;
  right: 12%;
  bottom: 12%;
  z-index: 2;
  width: 250px;
  height: 330px;
}

.chair-visual > div {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--black);
}

.chair-visual__back {
  left: 26px;
  top: 0;
  width: 198px;
  height: 170px;
  border-radius: 42px 42px 20px 20px;
}

.chair-visual__back::before {
  content: "";
  position: absolute;
  inset: 22px 36px 26px;
  border: 1px solid var(--black);
  border-radius: 30px 30px 18px 18px;
  background: var(--lime);
}

.chair-visual__seat {
  left: 10px;
  top: 150px;
  width: 230px;
  height: 72px;
  border-radius: 24px 24px 34px 34px;
}

.chair-visual__leg {
  top: 214px;
  width: 28px;
  height: 116px;
  border-radius: 20px;
}

.chair-visual__leg--left {
  left: 34px;
  transform: rotate(8deg);
}

.chair-visual__leg--right {
  right: 34px;
  transform: rotate(-8deg);
}

.chair-visual__rail {
  top: 208px;
  width: 18px;
  height: 114px;
  border-radius: 20px;
  background: var(--lime);
}

.chair-visual__rail--left {
  left: 82px;
  transform: rotate(-12deg);
}

.chair-visual__rail--right {
  right: 82px;
  transform: rotate(12deg);
}

.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--image-frame);
}

.section--intro {
  padding-top: 48px;
}

.intro-grid,
.chair-grid,
.verticals-grid,
.audience-grid,
.faq-layout,
.preparation-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.intro-copy {
  max-width: 770px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.intro-copy p:last-child,
.chair-panel p:last-child,
.fellows-statement p:last-child,
.preparation-grid p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 28px;
}

.section-heading--wide {
  max-width: 1000px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--soft-white);
  font-size: 20px;
  line-height: 1.35;
}

.section--chair {
  background: var(--canvas);
}

.chair-panel {
  padding: 32px;
  border: 1px solid var(--white);
  border-radius: 24px;
}

.chair-panel p {
  color: var(--soft-white);
}

.chair-line {
  color: var(--lime-border) !important;
  font-weight: 700;
}

.symbol-board {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--lime-border);
  border-radius: 24px;
  background: var(--violet-soft);
}

.symbol-board::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: var(--yellow);
}

.symbol-board__chair.chair-visual {
  right: 50%;
  bottom: 22px;
  transform: translateX(50%);
}

.cards-grid,
.action-grid {
  display: grid;
  gap: 16px;
}

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

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

.info-card,
.action-tile {
  border-radius: 20px;
  padding: 28px;
}

.info-card p:last-child,
.action-tile p:last-child {
  margin-bottom: 0;
}

.info-card--dark {
  border: 1px solid var(--white);
  background: var(--canvas);
}

.info-card--lime {
  background: var(--lime);
  color: var(--black);
}

.info-card--violet {
  border: 1px solid var(--violet-rule);
  background: var(--violet-soft);
  color: var(--white);
}

.verticals-grid p,
.fellows-statement p,
.audience-grid p,
.preparation-grid p {
  color: var(--soft-white);
}

.vertical-table {
  display: grid;
  border: 1px solid var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.vertical-table [role="row"] {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 72px;
  border-top: 1px solid var(--image-frame);
}

.vertical-table [role="row"]:first-child {
  border-top: 0;
}

.vertical-table span {
  display: flex;
  align-items: center;
  padding: 16px 18px;
}

.vertical-table span:first-child {
  border-right: 1px solid var(--image-frame);
  font-weight: 700;
}

.vertical-table__head {
  min-height: 50px !important;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.fellows-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.fellows-statement {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border-radius: 24px;
  background: var(--pink);
  color: var(--black);
}

.fellows-statement .eyebrow,
.fellows-statement h2,
.fellows-statement p {
  color: var(--black);
}

.fellows-list {
  display: grid;
  gap: 12px;
}

.fellows-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  min-height: 106px;
  padding: 20px;
  border: 1px solid var(--white);
  border-radius: 20px;
}

.fellows-list span {
  color: var(--lime-border);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.fellows-list p {
  margin-bottom: 0;
}

.section--preparation {
  background: var(--surface);
}

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

.preparation-grid h2 {
  max-width: 920px;
}

.section--faq {
  background: var(--canvas);
}

.section--audience {
  background: var(--surface);
}

.audience-grid h2 {
  color: var(--white);
}

.audience-grid .eyebrow {
  color: var(--lime-border);
}

.audience-grid p {
  color: var(--soft-white);
}

.priority-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: priorities;
}

.priority-list li {
  counter-increment: priorities;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--white);
  border-radius: 20px;
  background: var(--canvas);
}

.priority-list li::before {
  content: counter(priorities, decimal-leading-zero);
  color: var(--lime-border);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.action-tile {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--black);
}

.action-tile h3 {
  font-size: 24px;
}

.action-tile--lime {
  background: var(--lime);
}

.action-tile--pink {
  background: var(--pink);
}

.action-tile--orange {
  background: var(--orange);
}

.action-tile--blue {
  background: var(--blue);
}

.faq-layout {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--white);
  border-radius: 20px;
  background: var(--canvas);
}

.faq-list details[open] {
  border-color: var(--lime);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime-border);
  border-radius: 50%;
  color: var(--lime-border);
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--lime);
  color: var(--black);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--soft-white);
}

.site-footer {
  padding: 48px 0;
  background: var(--surface);
  border-top: 1px solid var(--image-frame);
}

.footer-brand {
  margin-bottom: 12px;
}

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

.footer-grid p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: var(--soft-white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  :root {
    --edge: 32px;
  }

  h1 {
    font-size: 84px;
  }

  h2 {
    font-size: 40px;
  }

  .chair-visual {
    right: 5%;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  body.nav-open .site-header {
    background: var(--canvas);
  }

  .brand-mark {
    font-size: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 24px var(--edge);
    background: var(--canvas);
    border-top: 1px solid var(--image-frame);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    min-height: 58px;
    border-bottom: 1px solid var(--image-frame);
    font-size: 14px;
  }

  .nav-menu .nav-cta {
    width: fit-content;
    min-height: 44px;
    margin-top: 22px;
    border-bottom: 0;
  }

  .hero-section {
    min-height: 74vh;
    min-height: 74svh;
  }

  .hero-stage::after {
    width: 24%;
  }

  .hero-deck,
  .hero-actions,
  h1 {
    max-width: min(100%, 560px);
  }

  h1 {
    font-size: 68px;
  }

  .chair-visual {
    width: 190px;
    height: 250px;
    right: -34px;
    opacity: 0.82;
  }

  .chair-visual__back {
    left: 20px;
    width: 150px;
    height: 128px;
    border-radius: 32px 32px 16px 16px;
  }

  .chair-visual__back::before {
    inset: 17px 27px 20px;
  }

  .chair-visual__seat {
    left: 8px;
    top: 114px;
    width: 174px;
    height: 55px;
  }

  .chair-visual__leg {
    top: 162px;
    width: 22px;
    height: 88px;
  }

  .chair-visual__leg--left {
    left: 26px;
  }

  .chair-visual__leg--right {
    right: 26px;
  }

  .chair-visual__rail {
    top: 158px;
    width: 14px;
    height: 86px;
  }

  .chair-visual__rail--left {
    left: 62px;
  }

  .chair-visual__rail--right {
    right: 62px;
  }

  .intro-grid,
  .chair-grid,
  .verticals-grid,
  .audience-grid,
  .faq-layout,
  .preparation-grid,
  .footer-grid,
  .fellows-layout {
    grid-template-columns: 1fr;
  }

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

  .faq-heading {
    position: static;
  }

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

@media (max-width: 700px) {
  :root {
    --edge: 24px;
  }

  .section {
    padding: 52px 0;
  }

  .hero-content {
    padding: 78px 0 42px;
  }

  .stage-chip {
    right: 24px;
    top: 82px;
    max-width: 220px;
  }

  h1 {
    font-size: 60px;
    line-height: 0.95;
  }

  h2 {
    font-size: 32px;
  }

  .hero-deck,
  .intro-copy {
    font-size: 20px;
  }

  .hero-stage::after {
    width: 18%;
  }

  .hero-stage .chair-visual {
    right: -82px;
    opacity: 0.42;
  }

  .hero-deck,
  .hero-actions,
  h1 {
    max-width: 100%;
  }

  .chair-panel,
  .fellows-statement,
  .info-card,
  .action-tile {
    padding: 22px;
  }

  .symbol-board {
    min-height: 380px;
  }

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

  .vertical-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .vertical-table span:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--image-frame);
  }

  .vertical-table__head {
    display: none !important;
  }

  .fellows-statement {
    min-height: 360px;
  }

  .fellows-list article,
  .priority-list li {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

@media (max-width: 420px) {
  :root {
    --edge: 18px;
  }

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

  .brand-mark {
    font-size: 24px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  .button {
    width: 100%;
  }

  .hero-stage .chair-visual {
    right: -46px;
    bottom: 16%;
    opacity: 0.62;
  }

  .stage-chip {
    left: 18px;
    right: auto;
  }

  .faq-list summary {
    font-size: 18px;
  }
}