:root {
  --paper: #f4f2ed;
  --ink: #11110f;
  --muted: #73716b;
  --line: #d9d6cf;
  --pad: clamp(22px, 4.25vw, 72px);
  --header-h: 76px;
  --ease: cubic-bezier(.2,.72,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

.page-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--ink);
  opacity: .72;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(17,17,15,.13);
  background: rgba(244,242,237,.9);
  backdrop-filter: blur(18px);
}
.brand { font-size: 17px; font-weight: 700; letter-spacing: -.045em; }
.site-nav { display: flex; align-items: center; gap: clamp(18px,2.4vw,36px); }
.site-nav a, .language-switcher, .menu-toggle {
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transition: right .4s var(--ease);
}
.site-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 20px; order: 3; }
.language-switcher { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.language-switcher button { border: 0; padding: 0; background: none; font: inherit; cursor: pointer; opacity: .42; }
.language-switcher button.active { color: var(--ink); opacity: 1; }
.menu-toggle { display: none; border: 0; background: none; padding: 0; cursor: pointer; }

.section-pad { padding-left: var(--pad); padding-right: var(--pad); }
.section-rule { border-top: 1px solid var(--line); }
.section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
}
.eyebrow {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 34px);
  padding-bottom: 34px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.hero-title {
  align-self: center;
  margin: 0;
  font-weight: 400;
  font-size: clamp(92px, 21.5vw, 355px);
  line-height: .72;
  letter-spacing: -.085em;
  transform: translateX(-.025em);
}
.hero-foot {
  display: grid;
  grid-template-columns: minmax(260px, 610px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.hero-copy {
  margin: 0;
  font-size: clamp(19px,2.15vw,31px);
  line-height: 1.16;
  letter-spacing: -.035em;
}
.scroll-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.arrow { font-size: 18px; animation: drift 1.9s ease-in-out infinite; }
@keyframes drift { 50% { transform: translateY(7px); } }

.manifesto { height: 420svh; border-top: 1px solid var(--line); }
.manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: var(--pad);
}
.manifesto-track { position: relative; height: 44vh; display: flex; align-items: center; }
.manifesto-word {
  position: absolute;
  inset: auto 0;
  margin: 0;
  font-weight: 400;
  font-size: clamp(78px,15.5vw,250px);
  line-height: .78;
  letter-spacing: -.075em;
  opacity: 0;
  filter: blur(7px);
  transform: translateY(20%) scale(.985);
  transition: opacity .6s ease, transform .8s var(--ease), filter .6s ease;
}
.manifesto-word.is-active { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
.manifesto-word.is-past { opacity: 0; filter: blur(5px); transform: translateY(-20%) scale(.985); }
.manifesto-meta {
  position: absolute;
  right: var(--pad);
  bottom: 32px;
  width: 130px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--muted);
}
.manifesto-rule { height: 1px; background: var(--line); }

.about {
  min-height: 95svh;
  padding-top: 42px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 28% 72%;
}
.about-copy { align-self: center; }
.about-copy p {
  margin: 0;
  max-width: 1180px;
  font-size: clamp(39px,5.9vw,94px);
  line-height: .99;
  letter-spacing: -.058em;
}

.capabilities {
  padding-top: 42px;
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: 28% 72%;
}
.capability-list { border-top: 1px solid var(--ink); }
.capability {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 22px 0 24px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(27px,3.25vw,52px);
  line-height: 1;
  letter-spacing: -.045em;
  transition: padding .35s var(--ease), opacity .35s ease;
}
.capability > span:last-child {
  align-self: center;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--muted);
}
.capability:hover { padding-left: 16px; }
.capability-list:hover .capability:not(:hover) { opacity: .32; }

.network { padding-top: 42px; padding-bottom: 105px; }
.network-head, .markets-head {
  display: grid;
  grid-template-columns: 28% 72%;
  align-items: start;
}
.network-intro, .markets-intro {
  margin: 0;
  max-width: 430px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -.015em;
  color: var(--muted);
}
.network-stage { position: relative; min-height: 690px; margin-top: 24px; }
.network-name {
  position: absolute;
  z-index: 2;
  white-space: nowrap;
  font-size: clamp(30px,5vw,80px);
  letter-spacing: -.055em;
}
.n1 { left: 0; top: 10%; }
.n2 { left: 44%; top: 29%; }
.n3 { right: 0; top: 9%; }
.n4 { left: 8%; bottom: 8%; }
.n5 { right: 1%; bottom: 10%; }
.network-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.network-lines path {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.8s var(--ease);
  pathLength: 1;
}
.network-stage.visible-lines path { stroke-dashoffset: 0; }
.network-lines circle { fill: var(--ink); opacity: .5; }

.markets { padding-top: 42px; padding-bottom: 130px; }
.market-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}
.market {
  min-height: 132px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  border-bottom: 1px solid var(--line);
  font-size: clamp(29px,4vw,63px);
  line-height: .95;
  letter-spacing: -.05em;
}
.market:nth-child(odd) { padding-right: 30px; border-right: 1px solid var(--line); }
.market:nth-child(even) { padding-left: 30px; }
.market small { font-size: 10px; color: var(--muted); letter-spacing: .12em; }
.market span { transition: transform .35s var(--ease); }
.market:hover span { transform: translateX(10px); }

.statement {
  min-height: 100svh;
  padding-top: 72px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}
.statement-copy {
  margin: 0;
  font-size: clamp(84px,15.2vw,242px);
  line-height: .75;
  letter-spacing: -.082em;
}
.statement-side {
  width: 220px;
  margin-bottom: 12px;
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.statement-side span { font-size: 10px; letter-spacing: .12em; }
.statement-side p { margin: 0; }

.contact {
  min-height: 92svh;
  padding-top: 42px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 28% 72%;
}
.contact-main { align-self: center; }
.contact-main p {
  margin: 0 0 72px;
  font-size: clamp(60px,8.2vw,132px);
  line-height: .84;
  letter-spacing: -.07em;
}
.contact-main a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(18px,2.25vw,35px);
  letter-spacing: -.03em;
}
.contact-arrow { transition: transform .35s var(--ease); }
.contact-main a:hover .contact-arrow { transform: translate(7px,-7px); }

.footer {
  min-height: 230px;
  padding-top: 38px;
  padding-bottom: 38px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: end;
  gap: 28px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
}
.footer-brand { font-size: 46px; line-height: .9; letter-spacing: -.065em; color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .95s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  :root { --header-h: 66px; }
  .site-header { grid-template-columns: 1fr auto; gap: 20px; }
  .header-actions { order: initial; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    height: calc(100svh - var(--header-h));
    padding: 44px var(--pad);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .35s ease, transform .45s var(--ease);
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { font-size: clamp(34px,8vw,60px); letter-spacing: -.045em; text-transform: none; }
  .hero-title { font-size: clamp(82px,27vw,185px); }
  .hero-foot { grid-template-columns: 1fr; }
  .scroll-link { justify-self: start; }
  .about, .capabilities, .contact, .network-head, .markets-head { grid-template-columns: 1fr; gap: 64px; }
  .about { min-height: auto; }
  .about-copy p { font-size: clamp(35px,8.5vw,60px); }
  .network-stage { min-height: 600px; }
  .network-name { font-size: clamp(27px,8vw,58px); }
  .n1 { left: 0; top: 8%; }
  .n2 { left: 28%; top: 28%; }
  .n3 { right: 0; top: 46%; }
  .n4 { left: 0; bottom: 12%; }
  .n5 { right: 0; bottom: 0; font-size: clamp(20px,6vw,40px); }
  .market-grid { grid-template-columns: 1fr; }
  .market:nth-child(odd), .market:nth-child(even) { padding-left: 0; padding-right: 0; border-right: 0; }
  .statement { grid-template-columns: 1fr; align-items: center; gap: 46px; }
  .statement-side { width: auto; }
  .footer { grid-template-columns: 1fr 1fr; row-gap: 44px; }
}

@media (max-width: 540px) {
  .language-switcher { gap: 5px; }
  .hero { min-height: 92svh; }
  .hero-title { font-size: clamp(70px,26vw,138px); }
  .hero-copy { font-size: 19px; }
  .manifesto-word { font-size: clamp(66px,20vw,110px); }
  .manifesto-meta { left: var(--pad); right: auto; }
  .capability { font-size: 28px; }
  .market { min-height: 105px; }
  .statement-copy { font-size: clamp(75px,24vw,130px); }
  .contact-main p { font-size: clamp(54px,17vw,95px); }
  .footer { grid-template-columns: 1fr; min-height: 320px; align-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .network-lines path { stroke-dashoffset: 0; }
}
