:root {
  --ink: #090a0b;
  --ink-soft: #151719;
  --paper: #f6f4ef;
  --paper-2: #e9e6df;
  --white: #ffffff;
  --muted: #a9abad;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(9, 10, 11, 0.16);
  --accent: #f4aa19;
  --accent-deep: #bf7410;
  --success: #5dc990;
  --error: #ef765f;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 1240px;
  --radius: 2px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, position 180ms ease;
}

.site-header.header-solid,
.site-header.scrolled {
  position: sticky;
  background: rgba(9, 10, 11, 0.97);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.86rem;
  letter-spacing: -0.06em;
}

.brand-name {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.concept-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.35rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line);
  color: #d6d6d6;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concept-chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.8rem);
}

.nav-links a {
  color: #dadada;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.25rem;
  background: var(--accent);
}

.nav-links .nav-cta {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.nav-links .nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 1px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: 800px;
  height: 96svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0d0e0f;
  color: var(--white);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: contrast(1.04);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.98) 0%, rgba(7, 8, 9, 0.82) 33%, rgba(7, 8, 9, 0.2) 70%, rgba(7, 8, 9, 0.15) 100%),
    linear-gradient(0deg, rgba(7, 8, 9, 0.86) 0%, transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 70%);
  padding: 10rem 0 10rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--accent);
  content: "";
}

.display-title {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.4vw, 8.3rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.display-title em {
  color: var(--accent);
  font-weight: 400;
}

.hero-copy {
  max-width: 610px;
  margin: 2rem 0 0;
  color: #d1d1d1;
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover {
  background: #ffc552;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

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

.button-ghost-dark {
  border-color: var(--line-dark);
  color: var(--ink);
}

.button-arrow {
  font-size: 1.1rem;
  line-height: 0;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: 2.5rem;
  bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 3rem;
}

.impact-bar {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line);
}

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

.impact-item {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2rem;
  border-right: 1px solid var(--line);
}

.impact-item:last-child {
  border-right: 0;
}

.impact-number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
}

.impact-item strong {
  display: block;
  font-size: 0.79rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-item span:last-child {
  color: var(--muted);
  font-size: 0.83rem;
}

.section {
  padding: clamp(5.5rem, 10vw, 10rem) 0;
}

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

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

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

.section-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-kicker {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.section-ink-soft .section-kicker {
  color: var(--accent);
}

.section-title {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.section-title.small {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.lead {
  max-width: 740px;
  margin: 1.5rem 0 0;
  color: #4e5053;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.7;
}

.section-dark .lead,
.section-ink-soft .lead {
  color: #bfc0c2;
}

.story-split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame::before {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  content: "+";
  font-weight: 300;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03);
  transition: transform 500ms ease;
}

.image-frame:hover img {
  transform: scale(1.018);
}

.story-copy blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.story-copy p {
  max-width: 570px;
  margin: 1.8rem 0 0;
  color: #56585a;
  font-size: 1.08rem;
}

.story-copy .button {
  margin-top: 2rem;
}

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

.path-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  text-decoration: none;
  transition: background 170ms ease, color 170ms ease;
}

.path-card:hover {
  background: var(--ink);
  color: var(--white);
}

.path-card:hover p {
  color: #bfc0c2;
}

.path-card:hover .path-arrow {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.path-number {
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.path-card h3 {
  margin: auto 0 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.path-card p {
  margin: 1rem 0 1.4rem;
  color: #686a6c;
  font-size: 0.91rem;
  line-height: 1.55;
}

.path-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transition: background 170ms ease;
}

.editorial-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
  color: var(--white);
}

.marquee-line {
  width: max-content;
  padding: 1.1rem 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
  animation: drift 30s linear infinite;
}

.marquee-line span {
  margin-inline: 1rem;
  color: var(--accent);
}

@keyframes drift {
  to { transform: translateX(-50%); }
}

.book-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 600px;
  border: 1px solid var(--line);
}

.book-cover {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
  background: var(--accent);
  color: var(--ink);
}

.book-cover-label,
.book-cover-author {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.book-cover-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.83;
}

.book-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6rem);
}

.book-copy .badge {
  align-self: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.badge::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.book-copy h2 {
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.book-copy p {
  max-width: 570px;
  color: #c4c5c6;
  font-size: 1.06rem;
}

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

.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.event-date {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.1;
}

.event-date span {
  display: block;
  color: var(--accent-deep);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.event-meta {
  margin: 0.45rem 0 0;
  color: #67696b;
  font-size: 0.88rem;
}

.link-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 170ms ease, color 170ms ease;
}

.link-arrow:hover {
  background: var(--ink);
  color: var(--white);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
}

.cta-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.cta-panel p {
  max-width: 690px;
  margin: 1.2rem 0 0;
  color: #b9bbbd;
}

.page-hero {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 12rem 0 5rem;
  background: var(--ink);
  color: var(--white);
}

.page-hero.with-image {
  position: relative;
  overflow: hidden;
}

.page-hero.with-image::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 10, 11, 0.96), rgba(9, 10, 11, 0.7) 52%, rgba(9, 10, 11, 0.16)), url("community-circle.webp") center / cover;
  content: "";
  filter: grayscale(1);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-title {
  max-width: 1020px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.page-intro {
  max-width: 690px;
  margin: 2rem 0 0;
  color: #c5c6c7;
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 8vw, 8rem);
}

.sticky-label {
  position: sticky;
  top: 120px;
  align-self: start;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.prose h3 {
  margin: 2.2rem 0 0.6rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.prose p,
.prose li {
  color: #505255;
  font-size: 1.05rem;
}

.section-dark .prose p,
.section-dark .prose li {
  color: #c0c2c4;
}

.video-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #121416;
}

.video-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5);
}

.play-button {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(9, 10, 11, 0.2);
  color: var(--white);
  cursor: pointer;
  transition: background 170ms ease, transform 170ms ease;
}

.play-button:hover {
  transform: scale(1.04);
  background: var(--accent);
  color: var(--ink);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid currentColor;
}

.video-caption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.value-card,
.partner-card {
  min-height: 270px;
  padding: 2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.value-card strong,
.partner-card strong {
  display: block;
  color: var(--accent-deep);
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.value-card h3,
.partner-card h3 {
  margin: 4rem 0 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.value-card p,
.partner-card p {
  margin-bottom: 0;
  color: #626467;
  font-size: 0.9rem;
}

.partner-card {
  min-height: 320px;
  text-decoration: none;
  transition: background 170ms ease, color 170ms ease;
}

.partner-card:hover {
  background: var(--ink);
  color: var(--white);
}

.partner-card:hover p {
  color: #bfc1c3;
}

.process-list {
  counter-reset: process;
  border-top: 1px solid var(--line);
}

.process-item {
  counter-increment: process;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.process-item::before {
  color: var(--accent);
  content: "0" counter(process);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.process-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.process-item p {
  max-width: 690px;
  margin: 0.5rem 0 0;
  color: #b6b8ba;
}

.form-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 700px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.08);
}

.form-aside {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--ink);
  color: var(--white);
}

.form-aside h1,
.form-aside h2 {
  margin: 1.4rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.form-aside p {
  color: #b4b6b8;
}

.form-aside-note {
  margin-top: auto;
  padding-top: 3rem;
  color: #85888b;
  font-size: 0.76rem;
  line-height: 1.55;
}

.form-main {
  padding: clamp(2rem, 5vw, 5rem);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #6d6f72;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress-track {
  height: 3px;
  overflow: hidden;
  background: #e2e2df;
}

.progress-bar {
  width: 25%;
  height: 100%;
  background: var(--accent);
  transition: width 220ms ease;
}

.wizard-step {
  display: none;
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.wizard-step.active {
  display: block;
  animation: enter 220ms ease;
}

@keyframes enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.wizard-step > p {
  color: #66686a;
}

.choice-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.choice-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice label {
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  transition: border 150ms ease, background 150ms ease;
}

.choice label::before {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #909295;
  border-radius: 50%;
  content: "";
}

.choice input:checked + label {
  border-color: var(--ink);
  background: #f4f2ed;
}

.choice input:checked + label::before {
  border: 7px solid var(--ink);
  background: var(--accent);
}

.choice input:focus-visible + label {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.choice-label strong {
  display: block;
  font-size: 0.96rem;
}

.choice-label span {
  display: block;
  color: #77797b;
  font-size: 0.78rem;
}

.choice-arrow {
  font-size: 1.2rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

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

.field label,
.field legend {
  color: #4d4f51;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #c8c8c4;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(244, 170, 25, 0.35);
}

.field-note {
  color: #77797b;
  font-size: 0.73rem;
}

.conditional-panel {
  display: none;
  margin-top: 1.7rem;
}

.conditional-panel.active {
  display: block;
}

.check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.7rem;
  margin-top: 1.3rem;
  color: #55575a;
  font-size: 0.85rem;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--ink);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.wizard-error {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: #a43626;
  font-size: 0.84rem;
}

.success-state {
  display: none;
  padding-top: 4rem;
}

.success-state.active {
  display: block;
  animation: enter 220ms ease;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: var(--ink);
  font-size: 1.4rem;
}

.success-state h2 {
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.success-state p {
  max-width: 540px;
  color: #5d5f61;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 2rem;
}

.contact-item {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-dark);
}

.contact-item span {
  display: block;
  color: #77797b;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  display: inline-block;
  margin-top: 0.3rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.contact-form {
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--white);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.07);
}

.contact-form h2 {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
}

.member-shell {
  min-height: 100svh;
  padding: 9rem 0 5rem;
  background: #101214;
  color: var(--white);
}

.member-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 650px;
  border: 1px solid var(--line);
}

.member-sidebar {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.member-user {
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}

.member-user span {
  color: var(--muted);
  font-size: 0.76rem;
}

.member-nav {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.3rem;
}

.member-nav a {
  padding: 0.72rem 0.8rem;
  color: #bfc1c3;
  font-size: 0.82rem;
  text-decoration: none;
}

.member-nav a.active,
.member-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.member-back {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.75rem;
}

.member-main {
  padding: clamp(2rem, 5vw, 4rem);
}

.member-main h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.member-card {
  min-height: 210px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.member-card.featured {
  grid-column: 1 / -1;
  min-height: 250px;
  background: var(--accent);
  color: var(--ink);
}

.member-card span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-card.featured span {
  color: rgba(9, 10, 11, 0.65);
}

.member-card h2,
.member-card h3 {
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.member-card.featured h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.member-card p {
  color: #acafb1;
  font-size: 0.88rem;
}

.member-card.featured p {
  color: rgba(9, 10, 11, 0.72);
}

.site-footer {
  padding: 5rem 0 2rem;
  background: #050607;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 4rem;
}

.footer-statement {
  max-width: 540px;
  margin: 1.7rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.footer-column h3 {
  margin: 0 0 1rem;
  color: #7f8285;
  font-size: 0.66rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: #c1c3c5;
  font-size: 0.85rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #777a7d;
  font-size: 0.7rem;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 360px;
  padding: 1rem 1.2rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1050px) {
  .concept-chip {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    z-index: 90;
    inset: 84px 0 auto;
    max-height: calc(100svh - 84px);
    display: none;
    align-items: stretch;
    padding: 1.5rem;
    overflow-y: auto;
    background: rgba(9, 10, 11, 0.99);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 0.75rem 0;
    font-size: 0.85rem;
  }

  .nav-links .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

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

  .partner-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 2rem), var(--content));
  }

  .header-inner {
    min-height: 72px;
  }

  .nav-links {
    inset: 72px 0 auto;
    max-height: calc(100svh - 72px);
  }

  .hero {
    min-height: 720px;
    height: 100svh;
  }

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

  .hero-media::after {
    background: linear-gradient(0deg, rgba(7, 8, 9, 0.98) 0%, rgba(7, 8, 9, 0.76) 58%, rgba(7, 8, 9, 0.22) 100%);
  }

  .hero-content {
    width: 100%;
    padding: 8rem 0 4rem;
  }

  .display-title {
    font-size: clamp(3.7rem, 18vw, 6.2rem);
  }

  .hero-copy {
    max-width: 92%;
    font-size: 1rem;
  }

  .hero-index {
    display: none;
  }

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

  .impact-item {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-item:last-child {
    border-bottom: 0;
  }

  .section-head,
  .story-split,
  .content-grid,
  .book-panel,
  .form-shell,
  .contact-layout,
  .member-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-label {
    position: static;
  }

  .path-grid,
  .partner-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 260px;
  }

  .book-cover {
    min-height: 470px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event-row {
    grid-template-columns: 85px 1fr;
    gap: 1rem;
  }

  .event-row .link-arrow {
    display: none;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 560px;
    padding-top: 10rem;
  }

  .video-stage {
    min-height: 420px;
  }

  .form-aside {
    min-height: 360px;
  }

  .form-aside-note {
    margin-top: 2rem;
  }

  .field-grid,
  .member-grid {
    grid-template-columns: 1fr;
  }

  .member-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .member-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .member-back {
    margin-top: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  .brand-name {
    max-width: 155px;
    white-space: normal;
  }

  .actions .button {
    width: 100%;
  }

  .event-row {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 55px 1fr;
    gap: 0.8rem;
  }

  .choice label {
    grid-template-columns: 32px 1fr;
  }

  .choice-arrow {
    display: none;
  }

  .wizard-actions {
    flex-direction: column-reverse;
  }

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