@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: dark;
  --bg: #050705;
  --bg-elevated: #0a0d0a;
  --surface: #0d110d;
  --surface-soft: #121712;
  --text: #f5f3ec;
  --muted: #a9b0a6;
  --muted-strong: #c7cdc4;
  --lime: #b8f400;
  --lime-soft: #d9ff65;
  --aqua: #29d3c6;
  --paper: #f5f0e7;
  --paper-ink: #111411;
  --ochre: #8f6029;
  --danger: #ff765f;
  --line: rgba(245, 243, 236, 0.14);
  --line-strong: rgba(245, 243, 236, 0.24);
  --line-lime: rgba(184, 244, 0, 0.42);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --body: 'Manrope', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

p {
  margin-block: 0;
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  border: 2px solid var(--bg);
  background: var(--lime);
  color: var(--bg);
  padding: 10px 14px;
  font-weight: 800;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 5, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav > a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 11px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav > a::after {
  position: absolute;
  right: 11px;
  bottom: 6px;
  left: 11px;
  height: 2px;
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
  transition: transform 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current='true'] {
  color: var(--text);
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current='true']::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.language-switch a {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch a + a {
  border-left: 1px solid var(--line);
}

.language-switch a[aria-current='page'] {
  background: var(--lime);
  color: var(--bg);
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0 20px;
  background: var(--lime);
  color: var(--bg);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--lime-soft);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button.secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--lime);
  background: rgba(184, 244, 0, 0.08);
}

.button.compact {
  min-height: 46px;
  padding-inline: 18px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--lime);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: left;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(245, 243, 236, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 243, 236, 0.022) 1px, transparent 1px),
    var(--bg);
  background-size: 76px 76px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -26%;
  right: -12%;
  width: min(72vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: '';
  background: radial-gradient(circle, rgba(184, 244, 0, 0.09), rgba(184, 244, 0, 0) 67%);
  pointer-events: none;
}

.hero-main {
  min-height: calc(100svh - 186px);
  display: grid;
  align-items: center;
  padding-block: clamp(48px, 7vh, 82px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
}

.hero-copy {
  max-width: 760px;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.signal::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 244, 0, 0.08);
  content: '';
}

.hero h1 {
  max-width: 820px;
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(4rem, 6.35vw, 6.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.88;
}

.hero h1 .accent {
  display: block;
  color: var(--lime);
}

.hero-lead {
  max-width: 690px;
  margin-top: 26px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.75;
}

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

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line span + span::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
  content: '';
}

.hero-media {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(220px, 335px) 96px;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.proof-frame {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-lime);
  background: #010201;
  box-shadow: var(--shadow);
}

.proof-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: '';
  pointer-events: none;
}

.proof-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.proof-flow {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding-block: 24px;
}

.proof-flow::before {
  position: absolute;
  z-index: -1;
  top: 11%;
  bottom: 11%;
  left: 50%;
  border-left: 1px dashed rgba(184, 244, 0, 0.55);
  content: '';
}

.flow-mini {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-lime);
  background: var(--bg);
  color: var(--lime);
}

.flow-mini svg {
  width: 30px;
  height: 30px;
}

.sponsor-proof {
  position: relative;
  border-top: 1px solid var(--line);
  background: #060806;
}

.sponsor-proof-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.sponsor-proof-copy strong {
  display: block;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sponsor-proof-copy small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.brand-marquee {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 38s linear infinite;
}

.brand-track img {
  width: auto;
  height: 66px;
  flex: 0 0 auto;
}

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

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 144px);
  scroll-margin-top: 88px;
}

.section-kicker {
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(3.25rem, 5.7vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

.section-heading .accent {
  color: var(--lime);
}

.section-intro {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.ecosystem {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.ecosystem-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 64px;
}

.ecosystem-header .section-intro {
  justify-self: end;
}

.process {
  margin-top: clamp(58px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1fr 64px 1fr 64px 1fr;
  align-items: stretch;
}

.process-step {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  border-top: 1px solid var(--line-strong);
  padding: 26px 12px 12px;
}

.process-step::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 46px;
  height: 5px;
  background: var(--lime);
  content: '';
}

.process-step-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.process-number {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1;
}

.process-visual {
  min-height: 150px;
  display: grid;
  place-items: center;
  color: var(--text);
}

.process-visual svg {
  width: 108px;
  height: 108px;
  color: var(--lime);
}

.process-step p {
  max-width: 320px;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.process-arrow {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--lime);
}

.process-arrow svg {
  width: 46px;
  height: 24px;
}

.process-arrow span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ecosystem-close {
  max-width: 880px;
  margin: clamp(54px, 7vw, 88px) auto 0;
  border: 1px solid var(--line-lime);
  padding: 24px 32px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.ecosystem-close strong {
  color: var(--lime);
}

.active-proof {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 42%, rgba(184, 244, 0, 0.09), transparent 35%),
    linear-gradient(145deg, #090c09, #050705 62%);
}

.active-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(40px, 7vw, 104px);
}

.active-proof-head .section-intro {
  justify-self: end;
}

.value-map {
  margin: clamp(54px, 7vw, 92px) 0 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #080a08;
  box-shadow: var(--shadow);
}

.value-map-stage {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(390px, 0.76fr);
  border-bottom: 1px solid var(--line-strong);
}

.value-map-photo {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.value-map-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.08) 34%, rgba(5, 7, 5, 0.78) 100%),
    linear-gradient(0deg, rgba(5, 7, 5, 0.94), transparent 48%);
  content: '';
  pointer-events: none;
}

.value-map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.value-map-photo-copy {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(28px, 4vw, 48px);
  left: clamp(24px, 4vw, 56px);
  z-index: 1;
}

.value-map-photo-copy span,
.value-engine-kicker,
.sponsor-lens-title,
.value-role-head p {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.value-map-photo-copy strong {
  max-width: 620px;
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(2.65rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.48);
}

.value-engine {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 52px);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 244, 0, 0.13), transparent 44%),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(245, 243, 236, 0.035) 48px),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(245, 243, 236, 0.035) 48px),
    #090c09;
}

.value-engine::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--lime);
  content: '';
}

.value-engine-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.value-engine-icon {
  width: 68px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-lime);
  border-radius: 50%;
  color: var(--lime);
  box-shadow: 0 0 34px rgba(184, 244, 0, 0.12);
}

.value-engine-icon svg {
  width: 34px;
  height: 34px;
}

.value-engine h3 {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 700;
  line-height: 0.86;
}

.value-engine > p {
  max-width: 420px;
  margin-top: 24px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.65;
}

.value-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.value-signals span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-lime);
  padding: 7px 11px;
  color: var(--lime-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.value-signals svg {
  width: 15px;
  height: 15px;
}

.sponsor-lens {
  margin-top: auto;
  padding-top: 38px;
}

.sponsor-lens-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.sponsor-lens-compare > span {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line-strong);
  padding: 14px;
  background: rgba(5, 7, 5, 0.62);
}

.sponsor-lens-compare > span.is-active {
  border-color: var(--line-lime);
  background: rgba(184, 244, 0, 0.08);
}

.sponsor-lens-compare small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsor-lens-compare strong {
  margin-top: 5px;
  color: var(--muted-strong);
  font-size: 0.76rem;
  line-height: 1.25;
}

.sponsor-lens-compare .is-active strong {
  color: var(--lime-soft);
}

.sponsor-lens-compare > svg {
  width: 24px;
  height: 24px;
  color: var(--lime);
}

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

.value-role {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 44px);
  background: linear-gradient(145deg, rgba(245, 243, 236, 0.025), transparent 68%);
}

.value-role + .value-role {
  border-left: 1px solid var(--line-strong);
}

.value-role.sponsor-role {
  background: linear-gradient(145deg, rgba(184, 244, 0, 0.1), rgba(184, 244, 0, 0.015) 68%);
}

.value-role-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-role-icon {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-lime);
  color: var(--lime);
}

.value-role-icon svg {
  width: 23px;
  height: 23px;
}

.value-role h3 {
  max-width: 360px;
  margin-top: 28px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.4vw, 3.45rem);
  font-weight: 700;
  line-height: 0.94;
}

.value-role > p {
  max-width: 380px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.value-role-gain {
  margin-top: auto;
  padding-top: 32px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-role-gain span {
  display: block;
  margin-top: 5px;
  color: var(--lime-soft);
  font-size: 0.76rem;
}

.value-map-caption {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid var(--line-strong);
  padding: 22px clamp(24px, 4vw, 52px);
  color: var(--muted-strong);
  font-size: 0.85rem;
  line-height: 1.55;
  text-align: center;
}

.value-map-caption strong {
  color: var(--text);
}

.proof-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: right;
}

.philosophy {
  overflow: hidden;
  background: var(--paper);
  color: var(--paper-ink);
}

.philosophy::before,
.philosophy::after {
  position: absolute;
  right: var(--gutter);
  left: var(--gutter);
  height: 1px;
  background: rgba(173, 123, 61, 0.36);
  content: '';
}

.philosophy::before {
  top: 34px;
}

.philosophy::after {
  bottom: 34px;
}

.philosophy-head {
  max-width: 1060px;
}

.philosophy .section-kicker {
  color: #7f592c;
}

.philosophy-title {
  margin-top: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.philosophy-title em {
  color: var(--ochre);
  font-style: normal;
}

.philosophy-subtitle {
  margin-top: 22px;
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.philosophy-illustration {
  width: 100%;
  margin-top: 42px;
  mix-blend-mode: multiply;
}

.philosophy-values {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
}

.philosophy-value {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  border-top: 1px solid rgba(17, 20, 17, 0.2);
  padding-top: 20px;
}

.philosophy-value .process-number {
  width: 42px;
  height: 42px;
  border-color: var(--ochre);
  color: var(--ochre);
  font-size: 1.22rem;
}

.philosophy-value h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.philosophy-value h3 span {
  color: var(--ochre);
}

.philosophy-value p {
  grid-column: 2;
  color: #4c514b;
  font-size: 0.9rem;
}

.audiences {
  padding-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.audiences-header {
  padding-bottom: clamp(52px, 7vw, 84px);
  text-align: center;
}

.audiences-header .section-heading {
  max-width: 1040px;
  margin-inline: auto;
}

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.audience-panel {
  position: relative;
  min-height: 690px;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-right: 1px solid var(--line);
}

.audience-panel:last-child {
  border-right: 0;
}

.audience-panel > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.audience-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(5, 7, 5, 0.98) 0%, rgba(5, 7, 5, 0.92) 37%, rgba(5, 7, 5, 0.4) 68%, rgba(5, 7, 5, 0.08) 100%);
  pointer-events: none;
}

.audience-panel:hover > img {
  transform: scale(1.025);
}

.audience-content {
  width: min(100%, 670px);
  padding: clamp(44px, 6vw, 84px) clamp(26px, 5vw, 74px);
}

.audience-label {
  font-family: var(--display);
  font-size: clamp(3rem, 4.6vw, 5rem);
  font-weight: 700;
  line-height: 0.85;
  text-transform: uppercase;
}

.audience-label span {
  display: block;
  color: var(--lime);
}

.audience-promise {
  max-width: 410px;
  margin-top: 24px;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
}

.benefit-list {
  max-width: 440px;
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-block: 13px;
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.benefit-list svg {
  width: 20px;
  height: 20px;
  color: var(--lime);
}

.audience-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 28px;
}

.faq {
  border-bottom: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(54px, 8vw, 120px);
}

.faq-copy {
  position: sticky;
  top: 118px;
}

.faq-links {
  display: grid;
  justify-items: start;
  gap: 6px;
  margin-top: 30px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 2px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--lime);
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  background: currentColor;
  content: '';
  transition: transform 180ms ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

details[open] .faq-toggle::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 720px;
  padding: 0 48px 24px 2px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.faq-dialog {
  width: min(980px, calc(100% - 28px));
  max-height: min(86vh, 900px);
  overflow: hidden;
  border: 1px solid var(--line-lime);
  border-radius: 0;
  padding: 0;
  background: var(--bg-elevated);
  color: var(--text);
  box-shadow: var(--shadow);
}

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

.dialog-head {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 20px 22px;
  background: var(--surface);
}

.dialog-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.dialog-close {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.dialog-close svg {
  width: 22px;
  height: 22px;
}

.dialog-body {
  max-height: calc(86vh - 88px);
  overflow-y: auto;
  padding: 20px 22px 34px;
}

.dialog-body h3 {
  margin: 24px 0 10px;
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}

.dialog-body details {
  border-bottom: 1px solid var(--line);
}

.dialog-body summary {
  padding: 17px 0;
  font-weight: 700;
  cursor: pointer;
}

.dialog-body p {
  margin: 0 0 12px;
  color: var(--muted);
}

.contact {
  overflow: hidden;
  background: #030503;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.contact-title {
  font-family: var(--display);
  font-size: clamp(3.6rem, 5.6vw, 5.8rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
}

.contact-title strong {
  display: block;
  color: var(--lime);
  font-weight: inherit;
}

.contact-copy > p {
  max-width: 500px;
  margin-top: 28px;
  color: var(--muted);
}

.contact-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.trust-item {
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
  color: var(--muted-strong);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.45;
}

.trust-item svg {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: var(--lime);
}

.form-frame {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  padding: clamp(24px, 4vw, 44px);
}

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

.field {
  min-width: 0;
}

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

.field label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 700;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #080b08;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #747b72;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(184, 244, 0, 0.09);
}

.field [aria-invalid='true'] {
  border-color: var(--danger);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 4px;
}

.form-actions .button {
  min-width: 250px;
}

.privacy {
  max-width: 300px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.privacy a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.form-status.success {
  color: var(--lime);
}

.form-status.error {
  color: var(--danger);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #020302;
}

.footer-main {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}

.footer-nav a,
.footer-social a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: var(--lime);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.footer-meta {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-meta a:hover {
  color: var(--text);
}

@media (max-width: 1180px) {
  .primary-nav {
    position: fixed;
    inset: 77px 0 auto;
    max-height: calc(100svh - 77px);
    overflow-y: auto;
    display: none;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    padding: 18px var(--gutter) 26px;
    background: rgba(5, 7, 5, 0.98);
  }

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

  .primary-nav > a {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
    font-size: 1rem;
  }

  .primary-nav > a::after {
    right: auto;
    bottom: -1px;
    left: 0;
    width: 48px;
  }

  .menu-button {
    display: grid;
  }

  .nav-shell > .primary-nav {
    margin-left: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.78fr);
    gap: 42px;
  }

  .hero-media {
    grid-template-columns: minmax(220px, 310px) 76px;
    gap: 18px;
  }

  .flow-mini {
    width: 58px;
    height: 58px;
  }

  .audience-panel {
    min-height: 740px;
  }
}

@media (max-width: 900px) {
  .hero-main {
    min-height: auto;
  }

  .hero-grid,
  .ecosystem-header,
  .active-proof-head,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-media {
    min-height: 0;
    grid-template-columns: minmax(230px, 310px);
    justify-content: start;
  }

  .proof-flow {
    display: none;
  }

  .sponsor-proof-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 20px;
  }

  .ecosystem-header .section-intro {
    justify-self: start;
  }

  .active-proof-head .section-intro {
    justify-self: start;
  }

  .value-map-stage {
    grid-template-columns: 1fr;
  }

  .value-map-photo,
  .value-map-stage {
    min-height: 430px;
  }

  .value-engine {
    min-height: 480px;
  }

  .value-roles {
    grid-template-columns: 1fr;
  }

  .value-role {
    min-height: 265px;
  }

  .value-role + .value-role {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    min-height: 280px;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 26px;
    padding-inline: 0;
  }

  .process-visual {
    grid-row: 1 / 3;
    grid-column: 1;
    min-height: 0;
  }

  .process-step-head,
  .process-step p {
    grid-column: 2;
  }

  .process-arrow {
    height: 64px;
  }

  .process-arrow svg {
    transform: rotate(90deg);
  }

  .philosophy-values,
  .audience-split {
    grid-template-columns: 1fr;
  }

  .philosophy-values {
    gap: 26px;
  }

  .audience-panel {
    min-height: 680px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-panel:last-child {
    border-bottom: 0;
  }

  .faq-copy {
    position: static;
  }

  .contact-grid {
    align-items: stretch;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .nav-shell {
    min-height: 70px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

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

  .brand-copy strong {
    font-size: 0.72rem;
  }

  .brand-copy span {
    font-size: 0.6rem;
  }

  .header-cta {
    display: none;
  }

  .language-switch a {
    min-width: 40px;
    min-height: 42px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

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

  .hero-main {
    padding-block: 44px 34px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.6rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .trust-line {
    display: grid;
    gap: 7px;
  }

  .trust-line span + span::before {
    display: none;
  }

  .hero-media {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
  }

  .proof-frame {
    width: min(100%, 278px);
    margin-inline: auto;
  }

  .brand-track img {
    height: 58px;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .process-step {
    min-height: auto;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding-block: 26px 30px;
  }

  .value-map {
    margin-top: 44px;
  }

  .value-map-stage,
  .value-map-photo {
    min-height: 360px;
  }

  .value-map-photo img {
    object-position: 44% center;
  }

  .value-map-photo-copy strong {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .value-engine {
    min-height: 0;
    padding: 30px 20px;
  }

  .value-engine-head {
    align-items: flex-start;
    gap: 14px;
  }

  .value-engine-icon {
    width: 54px;
  }

  .value-engine-icon svg {
    width: 28px;
    height: 28px;
  }

  .value-engine h3 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .sponsor-lens {
    margin-top: 42px;
  }

  .sponsor-lens-compare {
    grid-template-columns: 1fr;
  }

  .sponsor-lens-compare > svg {
    justify-self: center;
    transform: rotate(90deg);
  }

  .sponsor-lens-compare > span {
    min-height: 72px;
  }

  .value-role {
    min-height: 280px;
    padding: 28px 22px;
  }

  .value-role h3 {
    font-size: 2.65rem;
  }

  .value-map-caption {
    align-items: center;
    flex-direction: column;
    gap: 2px;
    padding: 22px;
  }

  .proof-note {
    text-align: left;
  }

  .process-visual svg {
    width: 70px;
    height: 70px;
  }

  .process-step-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .process-step p {
    margin-top: 14px;
  }

  .ecosystem-close {
    padding: 20px 14px;
  }

  .philosophy-title {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .philosophy-subtitle {
    letter-spacing: 0.09em;
    line-height: 1.8;
  }

  .philosophy-illustration {
    width: 150%;
    max-width: none;
    margin-left: -25%;
  }

  .philosophy-value {
    grid-template-columns: auto 1fr;
  }

  .audiences-header {
    text-align: left;
  }

  .audience-panel {
    min-height: 700px;
  }

  .audience-panel::before {
    background: linear-gradient(180deg, rgba(5, 7, 5, 0.95) 0%, rgba(5, 7, 5, 0.78) 56%, rgba(5, 7, 5, 0.93) 100%);
  }

  .audience-content {
    padding: 46px 22px;
  }

  .audience-label {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }

  .audience-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .audience-actions .button,
  .audience-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .faq-list summary {
    min-height: 68px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding-right: 8px;
  }

  .contact-title {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

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

  .contact-trust {
    gap: 20px;
  }

  .field.full,
  .form-actions,
  .form-status {
    grid-column: 1;
  }

  .form-frame {
    margin-inline: calc(var(--gutter) * -0.3);
    padding: 22px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
    min-width: 0;
  }

  .privacy {
    max-width: none;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }
}

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

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

  .brand-track {
    transform: none;
  }
}
