:root {
  --black: #0d0d0d;
  --black-2: #171717;
  --black-3: #242424;
  --paper: #f2f0ec;
  --paper-2: #e7e3dd;
  --white: #ffffff;
  --muted: #a6a29d;
  --muted-dark: #6d6964;
  --red: #ff4934;
  --red-dark: #dd2e1f;
  --green: #78f0a2;
  --line-light: rgba(255,255,255,.17);
  --line-dark: rgba(13,13,13,.18);
  --radius: 10px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
  --header-h: 82px;
  --ease: cubic-bezier(.6,.04,.015,1);
  --ease-out: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.35;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-menu-open,
body:has(dialog[open]) { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
img { max-width: 100%; }
::selection { color: var(--white); background: var(--red); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 16px;
  padding: 12px 16px;
  background: var(--red);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.prototype-note {
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  right: 0;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 20px;
  color: #dedad5;
  background: #1c1c1c;
  border-bottom: 1px solid rgba(255,255,255,.09);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.prototype-note__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 28px;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  background: rgba(13,13,13,.72);
  backdrop-filter: blur(14px);
  transition: height .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.site-header.is-compact { height: 68px; background: rgba(13,13,13,.91); }
.site-header.is-hidden { transform: translateY(calc(-100% - 28px)); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}
.brand__mark {
  display: grid;
  grid-template-columns: repeat(3, 7px);
  grid-template-rows: repeat(3, 7px);
  gap: 2px;
  width: 25px;
  flex: 0 0 25px;
}
.brand__mark span { background: currentColor; }
.brand__mark span:last-child { background: var(--red); box-shadow: 0 0 10px rgba(255,73,52,.5); }
.brand__type { display: flex; flex-direction: column; gap: 1px; }
.brand__type strong,
.site-footer__brand strong {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1;
  letter-spacing: .12em;
}
.brand__type small,
.site-footer__brand small {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .22em;
  color: var(--muted);
}

.desktop-nav {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.desktop-nav a {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  color: #d6d2cf;
  transition: color .2s ease;
}
.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--white); }
.desktop-nav__indicator {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 20px;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition: left .45s var(--ease), width .45s var(--ease), opacity .25s ease;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 5px;
  background: transparent;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.header-cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.header-cta:hover { background: var(--white); border-color: var(--white); color: var(--black); }

.menu-toggle { display: none; }
.mobile-menu { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease-out), background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.button--primary { background: var(--red); color: var(--white); }
.button--primary:hover { background: #ff604d; }
.button--ghost { background: transparent; border-color: rgba(255,255,255,.34); color: var(--white); }
.button--ghost:hover { background: var(--white); border-color: var(--white); color: var(--black); }
.button--dark { background: var(--black); color: var(--white); }
.button--dark:hover { background: var(--red); }
.button--line { background: transparent; color: var(--black); border-color: rgba(13,13,13,.28); }
.button--line:hover { background: var(--black); color: var(--white); }
.button--large { min-height: 60px; padding-inline: 28px; }
.button--wide { width: 100%; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-h) + 92px) 40px 38px;
  background: var(--black);
}
.hero__grid {
  position: absolute;
  inset: 28px 0 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 7.5vw 7.5vw;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 82%);
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: .032;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.hero__orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero__orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}
.hero__orbit--one { width: 750px; height: 750px; right: -310px; top: 30px; animation: spin 28s linear infinite; }
.hero__orbit--two { width: 520px; height: 520px; right: -195px; top: 150px; animation: spinReverse 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }

.hero__copy {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  column-gap: 42px;
}
.eyebrow {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  margin-bottom: 36px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #b9b5b1;
  text-transform: uppercase;
}
.eyebrow__line { height: 1px; flex: 1; background: rgba(255,255,255,.25); }
.hero__title {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(68px, 9.15vw, 150px);
  font-stretch: condensed;
  font-weight: 500;
  line-height: .83;
  letter-spacing: -.072em;
  text-transform: uppercase;
}
.hero__title span { display: block; }
.hero__title span:nth-child(2) { margin-left: 8.1vw; }
.hero__title em,
.idea h2 em,
.day h2 em,
.heroes h2 em,
.projects h2 em,
.trust h2 em,
.done h2 em,
.closing h2 em,
.modal h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero__title em { color: var(--red); }
.hero__statement {
  grid-column: 2;
  position: relative;
  z-index: 8;
  margin-top: 46px;
  align-self: start;
}
.hero__statement > p {
  margin: 0 0 28px;
  max-width: 420px;
  font-size: clamp(20px, 1.55vw, 27px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.035em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-visual {
  position: absolute;
  z-index: 2;
  left: 2vw;
  bottom: -7.5vw;
  width: min(72vw, 1120px);
  height: auto;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform .35s var(--ease-out);
  pointer-events: none;
}
.city-scene { width: 100%; overflow: visible; }
.city-scene__roads path {
  fill: none;
  stroke: rgba(255,255,255,.16);
  stroke-width: 1.2;
  stroke-dasharray: 5 8;
}
.city-box .top { fill: #f1f0ed; stroke: #0d0d0d; stroke-width: 1; }
.city-box .left { fill: #222; stroke: #f1f0ed; stroke-width: .8; }
.city-box .right { fill: #121212; stroke: #f1f0ed; stroke-width: .8; }
.city-box .window { fill: #ff4934; filter: url(#redGlow); opacity: .88; animation: windowPulse 5.6s ease-in-out infinite; }
.city-box .window.off { fill: #515151; filter: none; opacity: .38; }
.city-box .edge { fill: none; stroke: var(--red); stroke-width: 1; opacity: .7; }
@keyframes windowPulse { 0%,100% { opacity: .52; } 50% { opacity: 1; } }
.city-scene__links path { fill: none; stroke: var(--red); stroke-width: 1.15; stroke-dasharray: 3 9; opacity: .48; animation: dashFlow 12s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -120; } }
.scene-pin text { fill: rgba(255,255,255,.75); font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-anchor: middle; }
.scene-pin path { stroke: rgba(255,255,255,.28); stroke-width: 1; }
.scene-pin__ring { fill: rgba(255,73,52,.06); stroke: var(--red); stroke-width: 1; animation: pinRing 2.4s ease-out infinite; }
.scene-pin__core { fill: var(--red); filter: url(#redGlow); }
.scene-pin--b .scene-pin__ring { animation-delay: .8s; }
.scene-pin--c .scene-pin__ring { animation-delay: 1.6s; }
@keyframes pinRing { 0% { transform: scale(.6); opacity: 1; } 75%,100% { transform: scale(1.35); opacity: .12; } }
.hero-visual__label {
  position: absolute;
  right: 7%;
  bottom: 27%;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--sans);
  color: #c6c1bd;
  font-size: 9px;
  letter-spacing: .17em;
}
.hero-visual__label strong { font-size: 26px; color: var(--red); font-weight: 500; }

.hero__meta {
  position: absolute;
  z-index: 7;
  left: 40px;
  right: 40px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}
.hero__meta div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px 0 0;
  border-right: 1px solid var(--line-light);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .12em;
}
.hero__meta div + div { padding-left: 18px; }
.hero__meta div:last-child { border-right: 0; }
.hero__meta span { color: var(--muted); }
.hero__meta strong { font-weight: 700; text-align: right; }
.hero__scroll { display: none; }

.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: var(--red);
  color: var(--black);
}
.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 40px;
  padding: 16px 0;
  animation: ticker 24s linear infinite;
  font-family: var(--sans);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 700;
  letter-spacing: -.035em;
}
.ticker__track i { width: 9px; height: 9px; border-radius: 50%; background: var(--black); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { position: relative; padding: 130px 40px; overflow: hidden; }
.section--light, .section--paper { color: var(--black); background: var(--paper); }
.section--paper { background: #e7e3de; }
.section--dark { background: var(--black); color: var(--white); }
.section--red { background: var(--red); color: var(--black); }
.section-index {
  display: flex;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid currentColor;
  opacity: .72;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-index--dark { border-bottom-color: rgba(13,13,13,.45); }
.section-kicker {
  margin: 0 0 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.idea__headline { margin-top: 64px; }
.idea h2,
.day h2,
.heroes h2,
.projects h2,
.trust h2,
.done h2,
.closing h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(62px, 9vw, 142px);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.idea h2 em { color: var(--red); }
.idea__body {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
  margin-top: 82px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}
.idea__lead p {
  max-width: 780px;
  margin: 0;
  font-size: clamp(30px, 3.25vw, 54px);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.idea__copy {
  max-width: 560px;
  padding-top: 7px;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.35;
}
.idea__copy p { margin: 0 0 24px; }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.principles article {
  min-height: 280px;
  padding: 24px 28px 34px 0;
  border-right: 1px solid var(--line-dark);
}
.principles article + article { padding-left: 28px; }
.principles article:last-child { border-right: 0; }
.principles span { font-family: var(--sans); font-size: 10px; letter-spacing: .12em; color: var(--red); }
.principles h3 {
  margin: 72px 0 16px;
  font-family: var(--sans);
  font-size: clamp(32px, 3.1vw, 50px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.05em;
}
.principles p { max-width: 340px; margin: 0; font-size: 17px; color: #4b4946; }

.day { padding-bottom: 90px; }
.day__head { margin-top: 64px; }
.day h2 em { color: var(--red); }
.dayline { margin-top: 100px; border-top: 1px solid var(--line-light); }
.dayline__item {
  display: grid;
  grid-template-columns: .45fr 1.15fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 240px;
  border-bottom: 1px solid var(--line-light);
}
.dayline__item time {
  align-self: start;
  padding-top: 25px;
  font-family: var(--sans);
  font-size: clamp(40px, 5vw, 80px);
  line-height: .85;
  letter-spacing: -.06em;
  color: #565656;
  transition: color .4s ease;
}
.dayline__item:hover time { color: var(--red); }
.dayline__item > div:last-child { max-width: 430px; }
.dayline__item strong {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--red);
}
.dayline__item p {
  margin: 13px 0 0;
  font-size: clamp(22px, 2.25vw, 36px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.dayline__visual {
  position: relative;
  height: 174px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.08) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(255,255,255,.08) 50%, transparent 50.2%);
  background-size: 42px 42px;
}
.dayline__visual span { position: absolute; display: block; transition: transform .7s var(--ease-out), background .4s ease; }
.dayline__visual--school span:nth-child(1) { left: 8%; bottom: 0; width: 58%; height: 67%; background: #e8e6e1; clip-path: polygon(0 20%,100% 0,100% 100%,0 100%); }
.dayline__visual--school span:nth-child(2) { left: 17%; bottom: 18%; width: 8%; height: 16%; background: var(--red); box-shadow: 24px 0 var(--red), 48px 0 var(--red), 72px 0 var(--red); }
.dayline__visual--school span:nth-child(3) { right: 8%; bottom: 0; width: 24%; height: 86%; background: #292929; }
.dayline__visual--school span:nth-child(4) { right: 13%; top: 17%; width: 5px; height: 5px; background: var(--red); box-shadow: 15px 0 var(--red),0 15px var(--red),15px 15px var(--red),0 30px var(--red),15px 30px var(--red),0 45px var(--red),15px 45px var(--red); }
.dayline__visual--lesson span:nth-child(1) { left: 8%; top: 15%; width: 58%; height: 58%; border: 1px solid #bcbcbc; }
.dayline__visual--lesson span:nth-child(2) { left: 12%; top: 29%; width: 45%; height: 3px; background: var(--red); box-shadow: 0 21px #777,0 42px #777; }
.dayline__visual--lesson span:nth-child(3) { right: 11%; bottom: 0; width: 28%; height: 78%; background: #e8e6e1; clip-path: polygon(50% 0,76% 18%,85% 100%,15% 100%,23% 18%); }
.dayline__visual--lesson span:nth-child(4) { right: 20%; top: 25%; width: 12%; aspect-ratio: 1; border-radius: 50%; background: var(--red); }
.dayline__visual--work span:nth-child(1) { left: 9%; bottom: 0; width: 22%; height: 72%; background: #e8e6e1; }
.dayline__visual--work span:nth-child(2) { left: 36%; bottom: 0; width: 54%; height: 52%; background: #262626; }
.dayline__visual--work span:nth-child(3) { left: 12%; top: 24%; width: 4px; height: 4px; background: var(--red); box-shadow: 18px 0 var(--red),0 18px var(--red),18px 18px var(--red),0 36px var(--red),18px 36px var(--red); }
.dayline__visual--work span:nth-child(4) { left: 42%; top: 57%; width: 40%; height: 3px; background: var(--red); box-shadow: 0 15px #555,0 30px #555; }
.dayline__visual--health span:nth-child(1) { left: 7%; top: 12%; width: 40%; height: 76%; border: 1px solid #8a8a8a; }
.dayline__visual--health span:nth-child(2) { left: 26%; top: 24%; width: 6%; height: 52%; background: var(--red); }
.dayline__visual--health span:nth-child(3) { left: 12%; top: 46%; width: 30%; height: 6%; background: var(--red); }
.dayline__visual--health span:nth-child(4) { right: 8%; top: 15%; width: 38%; height: 69%; background: #e8e6e1; clip-path: polygon(0 30%,50% 0,100% 30%,100% 100%,0 100%); }
.dayline__visual--home span:nth-child(1) { left: 6%; bottom: 0; width: 40%; height: 86%; background: #222; }
.dayline__visual--home span:nth-child(2) { left: 13%; top: 24%; width: 6px; height: 7px; background: var(--red); box-shadow: 20px 0 #555,40px 0 var(--red),0 24px #555,20px 24px var(--red),40px 24px #555,0 48px var(--red),20px 48px #555,40px 48px var(--red); }
.dayline__visual--home span:nth-child(3) { right: 5%; bottom: 0; width: 48%; height: 68%; background: #e8e6e1; }
.dayline__visual--home span:nth-child(4) { right: 10%; top: 46%; width: 6px; height: 7px; background: var(--red); box-shadow: 20px 0 var(--red),40px 0 #555,60px 0 var(--red),0 24px #555,20px 24px var(--red),40px 24px var(--red),60px 24px #555; }
.dayline__item:hover .dayline__visual span { transform: translateY(-5px); }

.heroes { padding-bottom: 140px; }
.heroes__header {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  column-gap: 7vw;
  margin-top: 64px;
}
.heroes__header .section-kicker { grid-column: 1 / -1; }
.heroes h2 em { color: var(--paper); }
.heroes__header > p:last-child {
  align-self: end;
  max-width: 520px;
  margin: 0 0 10px;
  font-size: clamp(21px, 1.8vw, 30px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.hero-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 94px; background: rgba(13,13,13,.42); border: 1px solid rgba(13,13,13,.42); }
.hero-card { padding: 16px 16px 26px; background: var(--red); }
.hero-card__portrait { position: relative; aspect-ratio: .82; overflow: hidden; background: #101010; }
.hero-card__portrait svg { width: 100%; height: 100%; }
.portrait-grid { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 1; }
.portrait-line { fill: none; stroke: #f1eee9; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.portrait-dot { fill: var(--red); filter: drop-shadow(0 0 10px var(--red)); animation: portraitDot 3s ease-in-out infinite; }
@keyframes portraitDot { 0%,100% { opacity:.35; } 50% { opacity:1; } }
.hero-card__portrait::after { content:""; position:absolute; inset:0; background:linear-gradient(145deg,transparent 50%,rgba(255,73,52,.18)); mix-blend-mode:screen; }
.hero-card__meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 14px; font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.hero-card h3 { margin: 45px 0 16px; max-width: 390px; font-family: var(--sans); font-size: clamp(30px, 3vw, 48px); font-weight: 500; line-height: .93; letter-spacing: -.055em; text-transform: uppercase; }
.hero-card p { max-width: 390px; margin: 0; color: rgba(13,13,13,.78); }
.text-link { display: flex; justify-content: space-between; width: 100%; margin-top: 28px; padding: 16px 0 3px; border: 0; border-top: 1px solid rgba(13,13,13,.38); background: transparent; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; cursor: pointer; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.projects__intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  column-gap: 7vw;
  margin-top: 64px;
}
.projects__intro .section-kicker { grid-column: 1 / -1; }
.projects h2 em { color: var(--red); }
.projects__intro > p:last-child {
  align-self: end;
  max-width: 560px;
  margin: 0 0 8px;
  font-size: clamp(19px, 1.6vw, 27px);
  line-height: 1.18;
  letter-spacing: -.035em;
}
.project-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 75px; }
.project-filters button {
  padding: 11px 15px;
  border: 1px solid rgba(13,13,13,.28);
  border-radius: 100px;
  background: transparent;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.project-filters button:hover,
.project-filters button.is-active { background: var(--black); color: var(--white); }

.map-layout { display: grid; grid-template-columns: minmax(0, 1.37fr) minmax(390px, .63fr); margin-top: 24px; min-height: 720px; border: 1px solid var(--black); background: var(--black); }
.life-map { position: relative; overflow: hidden; min-height: 720px; background: #141414; border-right: 1px solid rgba(255,255,255,.17); }
.life-map::after { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at var(--mouse-x,50%) var(--mouse-y,50%),rgba(255,73,52,.12),transparent 26%); }
.life-map__topline { position:absolute; z-index:4; top:0; left:0; right:0; display:flex; justify-content:space-between; padding:17px 19px; border-bottom:1px solid rgba(255,255,255,.15); color:#a5a19d; font-family:var(--sans); font-size:8px; font-weight:700; letter-spacing:.14em; }
.life-map svg { width:100%; height:100%; min-height:720px; }
.map-roads path { fill:none; stroke:rgba(255,255,255,.25); stroke-width:2; stroke-linecap:round; stroke-dasharray:4 8; }
.map-blocks path { fill:#202020; stroke:rgba(255,255,255,.13); stroke-width:1; transition:fill .4s ease; }
.map-blocks path:nth-child(3n) { fill:#292929; }
.map-zones path { fill:rgba(255,73,52,.07); stroke:rgba(255,73,52,.45); stroke-width:1; stroke-dasharray:5 5; }
.project-marker { cursor:pointer; outline:none; }
.project-marker__pulse { fill:rgba(255,73,52,.08); stroke:var(--red); stroke-width:1.3; transform-origin:center; animation:markerPulse 2.6s ease-out infinite; }
.project-marker__dot { fill:var(--red); filter:url(#mapGlow); }
.project-marker__number { fill:#fff; font-family:var(--sans); font-size:10px; font-weight:700; text-anchor:middle; pointer-events:none; }
.project-marker__label { fill:#c9c4bf; font-family:var(--sans); font-size:8px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; pointer-events:none; }
.project-marker.is-hidden { display:none; }
.project-marker.is-active .project-marker__pulse { fill:rgba(255,73,52,.25); stroke-width:2; }
.project-marker.is-active .project-marker__label { fill:#fff; }
@keyframes markerPulse { 0% { transform:scale(.55); opacity:1; } 80%,100% { transform:scale(1.7); opacity:.05; } }
.life-map__legend { position:absolute; z-index:4; left:19px; bottom:17px; display:flex; flex-wrap:wrap; gap:18px; color:#aaa5a0; font-family:var(--sans); font-size:8px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; }
.life-map__legend span { display:flex; align-items:center; gap:7px; }
.status-dot { width:7px; height:7px; border-radius:50%; background:var(--red); }
.status-dot--work { background:#f1cc4c; }
.status-dot--done { background:var(--green); }

.project-panel { color:var(--black); background:var(--paper); display:flex; flex-direction:column; }
.project-panel__head { display:flex; align-items:center; justify-content:space-between; gap:16px; min-height:57px; padding:0 18px; border-bottom:1px solid var(--line-dark); font-family:var(--sans); font-size:8px; font-weight:700; letter-spacing:.13em; }
.project-panel__head > div { display:flex; gap:16px; align-items:center; }
.project-panel__status { color:var(--red); }
.demo-chip { padding:7px 8px; background:var(--red); color:var(--white); border-radius:3px; }
.project-panel__visual { position:relative; min-height:225px; overflow:hidden; background:#161616; --split:50%; touch-action:none; cursor:ew-resize; }
.project-panel__current,
.project-panel__future { position:absolute; inset:0; }
.project-panel__current { width:var(--split); overflow:hidden; background:
  linear-gradient(155deg, transparent 0 48%, rgba(255,255,255,.08) 48.3% 49%, transparent 49.3%),
  linear-gradient(25deg, #1d1d1d 0 49%, #2a2a2a 49% 100%); }
.project-panel__future { background:
  radial-gradient(circle at 72% 35%,rgba(255,73,52,.45) 0 2px,transparent 3px),
  radial-gradient(circle at 80% 48%,rgba(255,73,52,.45) 0 2px,transparent 3px),
  linear-gradient(155deg, transparent 0 48%, rgba(255,255,255,.14) 48.3% 49%, transparent 49.3%),
  linear-gradient(25deg, #e9e7e2 0 49%, #cac5be 49% 100%); }
.project-panel__future::before,
.project-panel__current::before { content:""; position:absolute; left:18%; bottom:14%; width:62%; height:55%; clip-path:polygon(0 30%,48% 0,100% 27%,100% 100%,0 100%); }
.project-panel__future::before { background:#f4f1ec; box-shadow:inset -45px -15px 0 #c4beb7; }
.project-panel__current::before { background:#2c2c2c; box-shadow:inset -45px -15px 0 #191919; }
.project-panel__future::after,
.project-panel__current::after { content:""; position:absolute; left:30%; top:45%; width:7px; height:9px; background:var(--red); box-shadow:28px 0 var(--red),56px 0 var(--red),84px 0 var(--red),0 28px var(--red),28px 28px var(--red),56px 28px var(--red),84px 28px var(--red); }
.project-panel__current::after { background:#464646; box-shadow:28px 0 #464646,56px 0 #464646,84px 0 #464646,0 28px #464646,28px 28px #464646,56px 28px #464646,84px 28px #464646; }
.project-panel__divider { position:absolute; z-index:4; top:0; bottom:0; left:var(--split); width:1px; background:var(--red); pointer-events:none; }
.project-panel__divider span { position:absolute; top:50%; left:50%; width:30px; height:30px; border-radius:50%; background:var(--red); transform:translate(-50%,-50%); }
.project-panel__divider span::before,
.project-panel__divider span::after { content:""; position:absolute; top:10px; width:6px; height:10px; border-top:1px solid #fff; border-bottom:1px solid #fff; }
.project-panel__divider span::before { left:7px; }
.project-panel__divider span::after { right:7px; }
.project-panel__visual-labels { position:absolute; z-index:5; left:12px; right:12px; bottom:10px; display:flex; justify-content:space-between; color:#fff; font-family:var(--sans); font-size:8px; font-weight:700; letter-spacing:.12em; pointer-events:none; }
.project-panel__body { padding:24px 22px 20px; }
.project-panel__category { margin:0 0 13px; color:var(--red); font-family:var(--sans); font-size:9px; font-weight:700; letter-spacing:.13em; text-transform:uppercase; }
.project-panel h3 { margin:0 0 13px; font-family:var(--sans); font-size:clamp(35px,3.2vw,52px); font-weight:500; line-height:.92; letter-spacing:-.055em; text-transform:uppercase; }
.project-panel__body > p:not(.project-panel__category) { margin:0; color:#4e4a46; font-size:16px; line-height:1.36; }
.project-progress { margin-top:24px; }
.project-progress__top { display:flex; justify-content:space-between; margin-bottom:8px; font-family:var(--sans); font-size:9px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.project-progress__track { height:8px; overflow:hidden; background:#ccc7c1; }
.project-progress__track span { display:block; height:100%; background:var(--red); transition:width .75s var(--ease-out); }
.project-metrics { display:grid; grid-template-columns:1fr 1fr; margin:25px 0 0; border-top:1px solid var(--line-dark); border-left:1px solid var(--line-dark); }
.project-metrics div { min-height:78px; padding:12px; border-right:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark); }
.project-metrics dt { margin-bottom:10px; font-family:var(--sans); font-size:8px; font-weight:700; letter-spacing:.12em; color:#69645f; text-transform:uppercase; }
.project-metrics dd { margin:0; font-family:var(--sans); font-size:18px; font-weight:700; letter-spacing:-.025em; }
.project-panel__actions { display:grid; grid-template-columns:1.15fr .85fr; gap:8px; margin-top:20px; }
.project-panel__actions .button { min-height:48px; padding-inline:12px; font-size:9px; gap:12px; }
.project-panel__body > small { display:block; margin-top:13px; color:#77716b; font-size:10px; line-height:1.3; }

.trust__header { margin-top:64px; }
.trust h2 em { color:var(--red); }
.trust-flow { display:grid; grid-template-columns:repeat(4,1fr); margin-top:95px; border-top:1px solid var(--line-light); border-bottom:1px solid var(--line-light); }
.trust-flow article { min-height:240px; padding:20px 22px 30px 0; border-right:1px solid var(--line-light); }
.trust-flow article + article { padding-left:22px; }
.trust-flow article:last-child { border-right:0; }
.trust-flow > article > span { font-family:var(--sans); font-size:10px; letter-spacing:.14em; color:var(--red); }
.trust-flow article div { margin-top:72px; }
.trust-flow h3 { margin:0 0 14px; font-family:var(--sans); font-size:30px; font-weight:500; letter-spacing:-.04em; }
.trust-flow p { max-width:280px; margin:0; color:#a9a5a1; }
.impact-dashboard { margin-top:84px; border:1px solid var(--line-light); background:#121212; }
.impact-dashboard__head { display:flex; justify-content:space-between; padding:15px 17px; border-bottom:1px solid var(--line-light); color:#aaa5a0; font-family:var(--sans); font-size:8px; font-weight:700; letter-spacing:.15em; }
.impact-dashboard__main { display:grid; grid-template-columns:.7fr 1.2fr 1fr; min-height:410px; }
.impact-score,
.impact-bars,
.impact-docs { position:relative; padding:32px; border-right:1px solid var(--line-light); }
.impact-docs { border-right:0; }
.impact-score > span { font-family:var(--sans); font-size:9px; font-weight:700; letter-spacing:.14em; color:#9e9995; }
.impact-score strong { position:relative; z-index:2; display:inline-block; margin-top:83px; font-family:var(--sans); font-size:94px; font-weight:500; line-height:.8; letter-spacing:-.07em; }
.impact-score em { position:relative; z-index:2; margin-left:7px; font-family:var(--serif); font-size:30px; color:var(--red); }
.impact-score__ring { position:absolute; left:50%; top:55%; width:220px; height:220px; border-radius:50%; transform:translate(-50%,-50%) rotate(-90deg); background:conic-gradient(var(--red) calc(var(--progress)*1%),#262626 0); mask:radial-gradient(circle,transparent 0 58%,#000 59%); }
.impact-bars { display:flex; flex-direction:column; justify-content:center; gap:29px; }
.impact-bars > div { display:grid; grid-template-columns:1fr auto; gap:8px 20px; }
.impact-bars span { color:#cbc7c3; font-size:13px; }
.impact-bars b { font-family:var(--sans); font-size:12px; color:var(--red); }
.impact-bars i { grid-column:1/-1; height:6px; background:#292929; overflow:hidden; }
.impact-bars u { display:block; height:100%; background:var(--red); text-decoration:none; transform-origin:left; animation:growBar 1.4s var(--ease-out) both; }
@keyframes growBar { from { transform:scaleX(0); } }
.impact-docs { display:flex; flex-direction:column; justify-content:center; gap:0; }
.impact-docs div { display:grid; grid-template-columns:30px 1fr auto; align-items:center; min-height:88px; border-bottom:1px solid var(--line-light); }
.impact-docs div:first-child { border-top:1px solid var(--line-light); }
.impact-docs span { font-family:var(--sans); font-size:9px; color:#78736f; }
.impact-docs p { margin:0; font-size:14px; }
.impact-docs b { font-family:var(--sans); font-size:8px; letter-spacing:.1em; color:var(--green); }

.done__header { display:grid; grid-template-columns:1.2fr .8fr; column-gap:7vw; margin-top:64px; }
.done__header .section-kicker { grid-column:1/-1; }
.done h2 em { color:var(--red); }
.done__header > p:last-child { align-self:end; max-width:530px; margin:0 0 8px; font-size:clamp(19px,1.6vw,27px); line-height:1.18; letter-spacing:-.035em; }
.done-grid { display:grid; grid-template-columns:1.25fr .75fr; gap:1px; margin-top:90px; border:1px solid var(--line-dark); background:var(--line-dark); }
.done-card { min-height:580px; padding:18px; background:var(--paper); }
.done-card__visual { position:relative; height:345px; overflow:hidden; background:#111; display:grid; grid-template-columns:repeat(6,1fr); gap:12px; padding:45px; }
.done-card__visual i { position:relative; display:block; background:#222; border:1px solid #3b3b3b; }
.done-card__visual i::after { content:""; position:absolute; inset:12px; background:repeating-linear-gradient(to bottom,var(--red) 0 4px,transparent 4px 19px); opacity:.75; }
.done-card__beam { position:absolute; z-index:3; top:-30%; left:45%; width:30%; height:180%; background:linear-gradient(to right,transparent,rgba(255,73,52,.32),transparent); transform:rotate(19deg); animation:beam 5s ease-in-out infinite; }
@keyframes beam { 0%,100% { transform:translateX(-100%) rotate(19deg); } 50% { transform:translateX(140%) rotate(19deg); } }
.done-card__status { display:flex; justify-content:space-between; margin-top:14px; padding-bottom:12px; border-bottom:1px solid var(--line-dark); font-family:var(--sans); font-size:9px; font-weight:700; letter-spacing:.13em; color:var(--red); }
.done-card h3 { max-width:680px; margin:46px 0 14px; font-family:var(--sans); font-size:clamp(35px,3.5vw,56px); font-weight:500; line-height:.92; letter-spacing:-.055em; text-transform:uppercase; }
.done-card > p { max-width:600px; margin:0; color:#5c5752; }
.done-card--manifesto { display:flex; flex-direction:column; justify-content:space-between; background:var(--red); }
.done-card--manifesto p { margin:0; color:var(--black); font-family:var(--sans); font-size:clamp(42px,5.1vw,80px); font-weight:500; line-height:.88; letter-spacing:-.07em; }
.done-card--manifesto span { padding-top:16px; border-top:1px solid rgba(13,13,13,.35); font-family:var(--sans); font-size:9px; font-weight:700; letter-spacing:.13em; }

.closing { position:relative; min-height:100svh; display:flex; align-items:center; justify-content:center; overflow:hidden; padding:120px 40px 80px; background:#090909; }
.closing__city { position:absolute; inset:0; display:grid; grid-template-columns:repeat(24,1fr); grid-template-rows:repeat(14,1fr); gap:1px; opacity:.9; transform:perspective(1100px) rotateX(58deg) rotateZ(-26deg) scale(1.55) translate(6%,-8%); }
.light-cell { position:relative; border:1px solid rgba(255,255,255,.06); background:#111; transition:background .35s ease,box-shadow .35s ease,transform .35s ease; }
.light-cell::after { content:""; position:absolute; inset:36%; background:#292929; transition:background .35s ease,box-shadow .35s ease; }
.light-cell.is-lit::after { background:var(--red); box-shadow:0 0 20px var(--red); }
.light-cell:hover { transform:translateZ(8px); }
.light-cell:hover::after { background:var(--red); box-shadow:0 0 20px var(--red); }
.closing__veil { position:absolute; inset:0; background:radial-gradient(circle at center,rgba(9,9,9,.1) 0,rgba(9,9,9,.78) 58%,#090909 92%); }
.closing__content { position:relative; z-index:3; width:min(1080px,100%); text-align:center; }
.closing .section-kicker { color:#aaa6a2; }
.closing h2 { font-size:clamp(68px,10.5vw,166px); }
.closing h2 em { color:var(--red); }
.closing__content > p:not(.section-kicker) { max-width:690px; margin:36px auto 0; color:#c8c3bf; font-size:clamp(20px,1.7vw,28px); line-height:1.22; letter-spacing:-.03em; }
.closing__actions { display:flex; justify-content:center; flex-wrap:wrap; gap:10px; margin-top:38px; }
.closing__footerline { position:absolute; z-index:3; left:40px; right:40px; bottom:24px; display:flex; justify-content:space-between; padding-top:14px; border-top:1px solid var(--line-light); color:#88837f; font-family:var(--sans); font-size:8px; font-weight:700; letter-spacing:.15em; }

.site-footer { display:grid; grid-template-columns:1fr 1.4fr 1fr; gap:45px; align-items:start; padding:44px 40px 55px; border-top:1px solid var(--line-light); background:var(--black); color:#bbb6b2; }
.site-footer__brand { display:flex; gap:12px; align-items:center; color:var(--white); }
.site-footer__brand > div { display:flex; flex-direction:column; gap:3px; }
.site-footer p { max-width:620px; margin:0; font-size:12px; line-height:1.5; }
.site-footer__links { justify-self:end; display:flex; gap:20px; font-family:var(--sans); font-size:9px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.site-footer__links button { padding:0; border:0; background:transparent; cursor:pointer; color:inherit; }
.site-footer__links a:hover,.site-footer__links button:hover { color:var(--red); }

.modal { width:min(880px,calc(100% - 28px)); max-height:calc(100svh - 28px); padding:0; border:0; background:transparent; color:var(--black); overflow:visible; }
.modal::backdrop { background:rgba(0,0,0,.82); backdrop-filter:blur(10px); }
.modal__shell { position:relative; max-height:calc(100svh - 28px); overflow:auto; margin:0; padding:44px; background:var(--paper); border:1px solid rgba(255,255,255,.2); }
.modal__close { position:absolute; top:15px; right:15px; width:38px; height:38px; border:1px solid var(--line-dark); background:transparent; font-size:25px; line-height:1; cursor:pointer; }
.modal__close:hover { background:var(--black); color:var(--white); }
.modal__index { padding-bottom:14px; border-bottom:1px solid var(--line-dark); font-family:var(--sans); font-size:9px; font-weight:700; letter-spacing:.13em; color:var(--red); }
.modal h2 { margin:42px 0 20px; font-family:var(--sans); font-size:clamp(44px,6vw,76px); font-weight:500; line-height:.86; letter-spacing:-.065em; text-transform:uppercase; }
.modal h2 em { color:var(--red); }
.modal__shell > p { max-width:650px; margin:0 0 30px; color:#514c47; font-size:17px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-grid label,.modal-contact { display:flex; flex-direction:column; gap:8px; }
.form-grid__wide { grid-column:1/-1; }
.form-grid label > span,.modal-contact > span { font-family:var(--sans); font-size:9px; font-weight:700; letter-spacing:.13em; text-transform:uppercase; }
input,textarea,select { width:100%; border:1px solid rgba(13,13,13,.25); border-radius:0; background:transparent; color:var(--black); outline:none; padding:14px 13px; transition:border-color .2s ease,background .2s ease; }
input:focus,textarea:focus,select:focus { border-color:var(--red); background:#fff; }
textarea { resize:vertical; min-height:110px; }
.modal .button--wide { margin-top:20px; }
.modal__shell > small { display:block; margin-top:11px; color:#756f69; font-size:10px; }
.form-success { margin-top:20px; padding:18px; border:1px solid rgba(13,13,13,.25); background:#fff; }
.form-success strong { font-family:var(--sans); font-size:15px; text-transform:uppercase; }
.form-success p { margin:8px 0 0; color:#5b5651; }
.support-options { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:22px; }
.support-options label { cursor:pointer; }
.support-options input { position:absolute; opacity:0; pointer-events:none; }
.support-options span { display:flex; min-height:135px; flex-direction:column; justify-content:space-between; padding:15px; border:1px solid var(--line-dark); transition:background .2s ease,color .2s ease,border-color .2s ease; }
.support-options b { font-family:var(--sans); font-size:18px; line-height:1; text-transform:uppercase; }
.support-options small { color:#706a64; }
.support-options input:checked + span { background:var(--black); color:var(--white); border-color:var(--black); }
.support-options input:checked + span small { color:#bbb6b2; }
.modal--passport { width:min(980px,calc(100% - 28px)); }
.passport-grid { display:grid; grid-template-columns:repeat(2,1fr); margin-top:32px; border-top:1px solid var(--line-dark); border-left:1px solid var(--line-dark); }
.passport-grid section { min-height:150px; padding:18px; border-right:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark); }
.passport-grid__wide { grid-column:1/-1; }
.passport-grid section > span { font-family:var(--sans); font-size:9px; font-weight:700; letter-spacing:.13em; color:var(--red); }
.passport-grid section > p { margin:38px 0 0; max-width:600px; font-size:18px; }
.passport-grid ol { margin:25px 0 0; padding-left:21px; columns:2; column-gap:50px; }
.passport-grid li { margin-bottom:10px; break-inside:avoid; }
.passport-docs { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:23px; }
.passport-docs button { min-height:90px; display:flex; flex-direction:column; justify-content:space-between; align-items:flex-start; padding:13px; border:1px solid var(--line-dark); background:transparent; text-align:left; cursor:not-allowed; }
.passport-docs button i { font-style:normal; font-family:var(--sans); font-size:8px; color:var(--red); }

.reveal { opacity:0; transform:translateY(34px); transition:opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity:1; transform:none; }

.cursor-dot,.cursor-ring { position:fixed; z-index:999; pointer-events:none; border-radius:50%; transform:translate(-50%,-50%); opacity:0; transition:opacity .25s ease,width .2s ease,height .2s ease,background .2s ease; }
.cursor-dot { width:5px; height:5px; background:var(--red); }
.cursor-ring { width:34px; height:34px; border:1px solid rgba(255,73,52,.65); }
body.has-cursor .cursor-dot,body.has-cursor .cursor-ring { opacity:1; }
body.cursor-hover .cursor-ring { width:52px; height:52px; background:rgba(255,73,52,.08); }

@media (max-width: 1180px) {
  .site-header { padding-inline:24px; }
  .desktop-nav { gap:18px; }
  .header-cta { padding-inline:13px; }
  .hero { padding-inline:24px; }
  .hero__meta { left:24px; right:24px; }
  .section { padding-inline:24px; }
  .map-layout { grid-template-columns:minmax(0,1fr) 410px; }
  .project-panel__actions { grid-template-columns:1fr; }
  .impact-dashboard__main { grid-template-columns:.8fr 1.2fr; }
  .impact-docs { grid-column:1/-1; border-top:1px solid var(--line-light); border-right:0; display:grid; grid-template-columns:repeat(3,1fr); padding-block:20px; }
  .impact-docs div { padding-inline:15px; border-top:0!important; border-bottom:0; border-right:1px solid var(--line-light); }
  .impact-docs div:last-child { border-right:0; }
  .closing,.site-footer { padding-inline:24px; }
  .closing__footerline { left:24px; right:24px; }
}

@media (max-width: 960px) {
  :root { --header-h:68px; }
  .site-header { grid-template-columns:1fr auto; }
  .desktop-nav,.header-cta { display:none; }
  .menu-toggle { display:flex; width:42px; height:42px; flex-direction:column; align-items:center; justify-content:center; gap:7px; border:1px solid rgba(255,255,255,.25); background:transparent; cursor:pointer; }
  .menu-toggle span { width:18px; height:1px; background:currentColor; transition:transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform:translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform:translateY(-4px) rotate(-45deg); }
  .mobile-menu { position:fixed; z-index:85; inset:96px 0 0; display:flex; flex-direction:column; justify-content:space-between; padding:35px 24px 30px; background:rgba(13,13,13,.98); transform:translateY(-110%); opacity:0; pointer-events:none; transition:transform .45s var(--ease),opacity .3s ease; }
  .mobile-menu.is-open { transform:none; opacity:1; pointer-events:auto; }
  .mobile-menu nav { display:flex; flex-direction:column; }
  .mobile-menu nav a { display:grid; grid-template-columns:45px 1fr; align-items:center; padding:17px 0; border-bottom:1px solid var(--line-light); font-family:var(--sans); font-size:32px; letter-spacing:-.04em; text-transform:uppercase; }
  .mobile-menu nav a span { font-size:9px; letter-spacing:.12em; color:var(--red); }
  .hero { min-height:960px; padding-top:calc(var(--header-h) + 115px); }
  .hero__copy { grid-template-columns:1fr; }
  .hero__title span:nth-child(2) { margin-left:0; }
  .hero__statement { grid-column:1; width:min(520px,100%); margin-top:38px; }
  .hero-visual { left:calc(50% - 525px); bottom:18px; width:1050px; transform:perspective(1200px) rotateX(var(--tilt-y,0deg)) rotateY(var(--tilt-x,0deg)); opacity:.84; }
  .hero__meta { display:none; }
  .hero__scroll { position:absolute; z-index:6; right:24px; bottom:30px; display:flex; flex-direction:column; align-items:center; gap:9px; font-family:var(--sans); font-size:8px; letter-spacing:.15em; writing-mode:vertical-rl; color:#8b8783; }
  .hero__scroll-line { height:65px; width:1px; background:linear-gradient(var(--red),transparent); }
  .idea__body { grid-template-columns:1fr; gap:36px; }
  .principles { grid-template-columns:1fr; }
  .principles article { min-height:210px; border-right:0; border-bottom:1px solid var(--line-dark); }
  .principles article + article { padding-left:0; }
  .principles article:last-child { border-bottom:0; }
  .principles h3 { margin-top:45px; }
  .dayline__item { grid-template-columns:.42fr 1fr; padding:22px 0; }
  .dayline__visual { grid-column:2; }
  .dayline__item > div:last-child { grid-column:2; }
  .dayline__item time { grid-row:1/3; }
  .heroes__header,.projects__intro,.done__header { grid-template-columns:1fr; gap:36px; }
  .heroes__header .section-kicker,.projects__intro .section-kicker,.done__header .section-kicker { grid-column:1; }
  .heroes__header > p:last-child,.projects__intro > p:last-child,.done__header > p:last-child { margin:0; }
  .hero-cards { grid-template-columns:1fr; }
  .hero-card { display:grid; grid-template-columns:.75fr 1fr; column-gap:22px; }
  .hero-card__portrait { grid-row:1/6; }
  .hero-card h3 { margin-top:38px; }
  .map-layout { grid-template-columns:1fr; }
  .life-map { min-height:620px; border-right:0; border-bottom:1px solid rgba(255,255,255,.17); }
  .life-map svg { min-height:620px; }
  .project-panel__visual { min-height:290px; }
  .project-panel__actions { grid-template-columns:1.15fr .85fr; }
  .trust-flow { grid-template-columns:1fr 1fr; }
  .trust-flow article:nth-child(2) { border-right:0; }
  .trust-flow article:nth-child(-n+2) { border-bottom:1px solid var(--line-light); }
  .impact-dashboard__main { grid-template-columns:1fr; }
  .impact-score,.impact-bars { border-right:0; border-bottom:1px solid var(--line-light); }
  .impact-score { min-height:340px; }
  .impact-score__ring { left:70%; top:55%; }
  .impact-score strong { margin-top:100px; }
  .impact-docs { grid-template-columns:1fr; }
  .impact-docs div { border-right:0; border-bottom:1px solid var(--line-light); }
  .impact-docs div:last-child { border-bottom:0; }
  .done-grid { grid-template-columns:1fr; }
  .done-card--manifesto { min-height:500px; }
  .site-footer { grid-template-columns:1fr; }
  .site-footer__links { justify-self:start; }
  .closing__city { grid-template-columns:repeat(18,1fr); }
}

@media (max-width: 640px) {
  .prototype-note { justify-content:flex-start; min-height:30px; padding-inline:14px; font-size:8px; white-space:nowrap; overflow:hidden; }
  .site-header { top:30px; padding-inline:14px; }
  .brand__type strong { font-size:13px; }
  .hero { min-height:900px; padding:calc(var(--header-h) + 90px) 14px 20px; }
  .hero__grid { background-size:80px 80px; }
  .hero__orbit--one { width:540px; height:540px; right:-350px; top:160px; }
  .hero__orbit--two { width:360px; height:360px; right:-230px; top:250px; }
  .eyebrow { margin-bottom:24px; font-size:8px; }
  .eyebrow span:first-child { max-width:210px; }
  .hero__title { font-size:clamp(49px,16vw,72px); line-height:.87; letter-spacing:-.068em; }
  .hero__statement { margin-top:28px; }
  .hero__statement > p { font-size:19px; }
  .hero__actions { align-items:stretch; flex-direction:column; }
  .hero__actions .button { width:100%; }
  .hero__actions .button--ghost { background:rgba(13,13,13,.72); backdrop-filter:blur(6px); }
  .hero__statement > p { text-shadow:0 2px 18px rgba(0,0,0,.9); }
  .hero-visual { left:-185px; bottom:-70px; width:760px; }
  .hero-visual__label { display:none; }
  .ticker__track { padding:12px 0; gap:24px; }
  .section { padding:86px 14px; }
  .section-index { font-size:8px; padding-bottom:12px; }
  .section-kicker { font-size:9px; line-height:1.25; }
  .idea__headline,.day__head,.heroes__header,.projects__intro,.trust__header,.done__header { margin-top:42px; }
  .idea h2,.day h2,.heroes h2,.projects h2,.trust h2,.done h2 { font-size:clamp(49px,15vw,72px); }
  .idea__body { margin-top:50px; }
  .idea__lead p { font-size:29px; }
  .idea__copy { font-size:16px; }
  .principles { margin-top:58px; }
  .principles article { min-height:180px; padding-right:0; }
  .principles h3 { margin:37px 0 12px; font-size:36px; }
  .principles p { font-size:15px; }
  .dayline { margin-top:60px; }
  .dayline__item { grid-template-columns:80px 1fr; gap:14px; min-height:auto; }
  .dayline__item time { font-size:36px; }
  .dayline__visual { height:128px; }
  .dayline__item p { font-size:23px; }
  .heroes { padding-bottom:90px; }
  .heroes__header > p:last-child { font-size:19px; }
  .hero-cards { margin-top:55px; }
  .hero-card { display:block; padding:11px 11px 24px; }
  .hero-card__portrait { aspect-ratio:1.08; }
  .hero-card h3 { margin:34px 0 13px; font-size:36px; }
  .projects__intro > p:last-child,.done__header > p:last-child { font-size:18px; }
  .project-filters { margin-top:50px; gap:6px; }
  .project-filters button { padding:9px 11px; font-size:8px; }
  .map-layout { min-height:0; }
  .life-map,.life-map svg { min-height:440px; }
  .life-map svg { transform:scale(1.24); transform-origin:center; }
  .life-map__topline { padding:12px; font-size:7px; }
  .life-map__legend { left:12px; right:12px; bottom:11px; gap:10px; font-size:7px; }
  .project-marker__label { display:none; }
  .project-panel__head { padding-inline:13px; }
  .project-panel__visual { min-height:220px; }
  .project-panel__body { padding:21px 14px 18px; }
  .project-panel h3 { font-size:41px; }
  .project-metrics dd { font-size:16px; }
  .project-panel__actions { grid-template-columns:1fr; }
  .trust-flow { grid-template-columns:1fr; }
  .trust-flow article,.trust-flow article:nth-child(2) { min-height:185px; border-right:0; border-bottom:1px solid var(--line-light); padding:18px 0; }
  .trust-flow article + article { padding-left:0; }
  .trust-flow article div { margin-top:45px; }
  .trust-flow h3 { font-size:27px; }
  .impact-dashboard { margin-top:58px; }
  .impact-score,.impact-bars,.impact-docs { padding:22px 16px; }
  .impact-score { min-height:300px; }
  .impact-score strong { margin-top:92px; font-size:78px; }
  .impact-score__ring { width:175px; height:175px; left:71%; }
  .impact-bars { gap:24px; }
  .done-grid { margin-top:55px; }
  .done-card { min-height:480px; padding:11px; }
  .done-card__visual { height:260px; padding:28px 20px; gap:6px; }
  .done-card h3 { font-size:38px; }
  .done-card--manifesto { min-height:420px; }
  .done-card--manifesto p { font-size:46px; }
  .closing { min-height:860px; padding:90px 14px 65px; }
  .closing h2 { font-size:clamp(52px,16vw,80px); }
  .closing__content > p:not(.section-kicker) { font-size:18px; }
  .closing__actions { flex-direction:column; }
  .closing__actions .button { width:100%; }
  .closing__footerline { left:14px; right:14px; font-size:7px; }
  .site-footer { padding:36px 14px 45px; gap:28px; }
  .site-footer__links { flex-direction:column; gap:12px; }
  .modal__shell { padding:38px 16px 22px; }
  .modal h2 { margin-top:34px; font-size:43px; }
  .form-grid { grid-template-columns:1fr; }
  .form-grid__wide { grid-column:1; }
  .support-options { grid-template-columns:1fr; }
  .support-options span { min-height:90px; }
  .passport-grid { grid-template-columns:1fr; }
  .passport-grid__wide { grid-column:1; }
  .passport-grid ol { columns:1; }
  .passport-docs { grid-template-columns:1fr; }
  .cursor-dot,.cursor-ring { display:none; }
}

@media (hover:none) {
  .cursor-dot,.cursor-ring { display:none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms!important; animation-iteration-count:1!important; scroll-behavior:auto!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
}

/* ========================================================================== 
   LIGHT / POSITIVE THEME — "ГОРОД ЖИЗНИ"
   Тёплая, светлая версия презентационного прототипа.
   ========================================================================== */
:root {
  color-scheme: light;
  --black: #18364f;
  --black-2: #244c68;
  --black-3: #35647f;
  --paper: #fffdf7;
  --paper-2: #eef8f2;
  --white: #ffffff;
  --muted: #6d8495;
  --muted-dark: #536b7d;
  --red: #ff7043;
  --red-dark: #e75a31;
  --green: #3aad75;
  --sky: #e8f6ff;
  --sky-strong: #cfeaff;
  --mint: #e8f7ee;
  --sun: #ffd86f;
  --line-light: rgba(24,54,79,.16);
  --line-dark: rgba(24,54,79,.18);
}

html,
body {
  background: #f7fbff;
  color: var(--black);
}

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

.prototype-note {
  color: var(--black);
  background: #fff4c7;
  border-bottom-color: rgba(24,54,79,.12);
}
.prototype-note__dot {
  background: var(--green);
  box-shadow: 0 0 12px rgba(58,173,117,.45);
}

.site-header {
  color: var(--black);
  border-bottom-color: rgba(24,54,79,.13);
  background: rgba(255,255,255,.76);
  box-shadow: 0 8px 30px rgba(45,103,139,.06);
}
.site-header.is-compact { background: rgba(255,255,255,.94); }
.brand__mark span:last-child { box-shadow: 0 0 11px rgba(255,112,67,.38); }
.desktop-nav a { color: #5d7486; }
.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--black); }
.header-cta {
  border-color: rgba(24,54,79,.28);
  background: rgba(255,255,255,.45);
}
.header-cta:hover { background: var(--black); border-color: var(--black); color: var(--white); }

.button--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(255,112,67,.2);
}
.button--primary:hover { background: #ff825d; }
.button--ghost {
  background: rgba(255,255,255,.55);
  border-color: rgba(24,54,79,.28);
  color: var(--black);
  backdrop-filter: blur(8px);
}
.button--ghost:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.button--dark { background: var(--black); color: var(--white); }
.button--dark:hover { background: var(--red); }
.button--line { border-color: rgba(24,54,79,.24); color: var(--black); }
.button--line:hover { background: var(--black); color: var(--white); }

.hero {
  color: var(--black);
  background:
    radial-gradient(circle at 86% 19%, rgba(255,216,111,.62), transparent 24%),
    radial-gradient(circle at 14% 22%, rgba(132,207,255,.33), transparent 31%),
    linear-gradient(142deg, #fbfdff 0%, #eaf7ff 55%, #fff9e8 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, rgba(255,255,255,.7), transparent 36% 68%, rgba(255,255,255,.25));
}
.hero__grid {
  background-image:
    linear-gradient(rgba(24,54,79,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,54,79,.065) 1px, transparent 1px);
}
.hero__noise { opacity: .018; mix-blend-mode: multiply; }
.hero__orbit { border-color: rgba(47,128,237,.13); }
.hero__orbit::after {
  background: var(--red);
  box-shadow: 0 0 18px rgba(255,112,67,.48);
}
.eyebrow { color: #60798b; }
.eyebrow__line { background: rgba(24,54,79,.24); }
.hero__title em { color: var(--red); }
.hero__statement > p { color: #24485f; }
.hero__meta { border-top-color: rgba(24,54,79,.18); }
.hero__meta div { border-right-color: rgba(24,54,79,.16); }
.hero__meta span { color: #6f8797; }
.hero__scroll { color: #627a8b; }

.city-scene__roads path { stroke: rgba(24,83,120,.24); }
.city-box .top { fill: #ffffff; stroke: #5e8ba8; }
.city-box .left { fill: #acd7ee; stroke: #ffffff; }
.city-box .right { fill: #7fb8d6; stroke: #ffffff; }
.city-box .window { fill: #ff9a3c; opacity: .95; }
.city-box .window.off { fill: #b4cad7; opacity: .58; }
.city-box .edge { stroke: #2f80ed; opacity: .66; }
.city-scene__links path { stroke: #ff7043; opacity: .52; }
.scene-pin text { fill: rgba(24,54,79,.82); }
.scene-pin path { stroke: rgba(24,54,79,.3); }
.scene-pin__ring { fill: rgba(255,112,67,.09); stroke: var(--red); }
.hero-visual__label { color: #536f82; }
#baseGlow stop:first-child { stop-color: #ffd46e; stop-opacity: .55; }
#baseGlow stop:last-child { stop-color: #8bd1ff; stop-opacity: 0; }
#softShadow feDropShadow { flood-color: #5d91b2; flood-opacity: .22; }

.ticker {
  color: var(--black);
  background: var(--sun);
  border-color: rgba(24,54,79,.15);
}
.ticker__track i { background: var(--red); }

.section--light {
  color: var(--black);
  background: linear-gradient(180deg, #fffdf8 0%, #f7fbff 100%);
}
.section--paper {
  color: var(--black);
  background: linear-gradient(145deg, #f7fcf9 0%, #eaf7f0 55%, #f5fbff 100%);
}
.section--dark {
  color: var(--black);
  background: linear-gradient(145deg, #eef8ff 0%, #e2f3ff 55%, #f7fcff 100%);
}
.section--red {
  color: var(--black);
  background: linear-gradient(145deg, #fff6cf 0%, #ffe8a4 58%, #fff8df 100%);
}
.section-index--dark { border-bottom-color: rgba(24,54,79,.34); }
.idea h2 em,
.day h2 em,
.heroes h2 em,
.projects h2 em,
.trust h2 em,
.done h2 em,
.closing h2 em { color: var(--red); }
.principles p,
.idea__copy { color: #466176; }

.day {
  background:
    radial-gradient(circle at 88% 18%, rgba(255,216,111,.35), transparent 24%),
    linear-gradient(145deg, #edf8ff, #e3f3ff 58%, #f8fcff);
}
.dayline,
.dayline__item { border-color: rgba(24,54,79,.17); }
.dayline__item time { color: #8aa4b5; }
.dayline__visual {
  border-color: rgba(24,54,79,.18);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(24,54,79,.06) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(24,54,79,.06) 50%, transparent 50.2%),
    rgba(255,255,255,.52);
  box-shadow: inset 0 0 40px rgba(121,190,226,.08);
}
.dayline__visual--school span:nth-child(1),
.dayline__visual--lesson span:nth-child(3),
.dayline__visual--work span:nth-child(1),
.dayline__visual--health span:nth-child(4),
.dayline__visual--home span:nth-child(3) { background: #ffffff; }
.dayline__visual--school span:nth-child(3),
.dayline__visual--work span:nth-child(2),
.dayline__visual--home span:nth-child(1) { background: #82b9d8; }
.dayline__visual--lesson span:nth-child(1),
.dayline__visual--health span:nth-child(1) { border-color: #8ab5cf; }
.dayline__visual--lesson span:nth-child(2) { box-shadow: 0 21px #8aa4b5, 0 42px #8aa4b5; }
.dayline__visual--work span:nth-child(4) { box-shadow: 0 15px #8aa4b5, 0 30px #8aa4b5; }

.heroes { background: linear-gradient(145deg, #fff5cc 0%, #ffe79e 57%, #fff9e4 100%); }
.hero-cards {
  gap: 18px;
  background: transparent;
  border: 0;
}
.hero-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(24,54,79,.13);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(137,103,27,.08);
}
.hero-card__portrait { background: linear-gradient(145deg, #dff2ff, #c9e7f7); border-radius: 8px; }
.portrait-grid { stroke: rgba(24,54,79,.09); }
.portrait-line { stroke: #244c68; }
.hero-card__portrait::after { background: linear-gradient(145deg, transparent 46%, rgba(255,112,67,.15)); }
.hero-card p { color: #4b6172; }

.project-filters button { border-color: rgba(24,54,79,.24); }
.project-filters button:hover,
.project-filters button.is-active { background: var(--black); color: var(--white); }
.map-layout {
  overflow: hidden;
  border-color: rgba(24,54,79,.22);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 65px rgba(50,99,128,.13);
}
.life-map {
  background:
    radial-gradient(circle at 62% 38%, rgba(255,216,111,.26), transparent 24%),
    linear-gradient(145deg, #eef9ff, #dff1fb);
  border-right-color: rgba(24,54,79,.16);
}
.life-map::after { background: radial-gradient(circle at var(--mouse-x,50%) var(--mouse-y,50%), rgba(255,112,67,.13), transparent 27%); }
.life-map__topline {
  color: #5d788a;
  border-bottom-color: rgba(24,54,79,.15);
  background: rgba(255,255,255,.42);
  backdrop-filter: blur(6px);
}
#mapGrid path { stroke: rgba(24,54,79,.075); }
.map-roads path { stroke: rgba(69,125,159,.55); }
.map-blocks path { fill: rgba(255,255,255,.72); stroke: rgba(50,104,137,.18); }
.map-blocks path:nth-child(3n) { fill: rgba(196,228,244,.72); }
.map-zones path { fill: rgba(255,112,67,.1); stroke: rgba(255,112,67,.55); }
.project-marker__number { fill: #ffffff; }
.project-marker__label { fill: #36566c; }
.project-marker.is-active .project-marker__label { fill: #18364f; }
.life-map__legend { color: #4f6c7e; }
.project-panel { background: rgba(255,253,247,.98); }
.demo-chip { background: #fff0bd; color: #815819; }
.project-panel__visual { background: #d9edf8; }
.project-panel__current {
  background:
    linear-gradient(155deg, transparent 0 48%, rgba(255,255,255,.28) 48.3% 49%, transparent 49.3%),
    linear-gradient(25deg, #b8cfdb 0 49%, #89aaba 49% 100%);
}
.project-panel__current::before { background: #7899aa; box-shadow: inset -45px -15px 0 #638294; }
.project-panel__current::after { background: #c8d9e1; box-shadow: 28px 0 #c8d9e1,56px 0 #c8d9e1,84px 0 #c8d9e1,0 28px #c8d9e1,28px 28px #c8d9e1,56px 28px #c8d9e1,84px 28px #c8d9e1; }
.project-panel__future {
  background:
    radial-gradient(circle at 72% 35%,rgba(255,112,67,.55) 0 2px,transparent 3px),
    radial-gradient(circle at 80% 48%,rgba(255,112,67,.55) 0 2px,transparent 3px),
    linear-gradient(155deg, transparent 0 48%, rgba(255,255,255,.26) 48.3% 49%, transparent 49.3%),
    linear-gradient(25deg, #f9fdff 0 49%, #cde9f7 49% 100%);
}
.project-panel__future::before { background: #ffffff; box-shadow: inset -45px -15px 0 #b9ddec; }
.project-panel__body > p:not(.project-panel__category) { color: #4d6677; }
.project-progress__track { background: #d5e3e9; }
.project-metrics dt { color: #5e7686; }
.project-panel__body > small { color: #6f8290; }

.trust {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,216,111,.28), transparent 23%),
    linear-gradient(145deg, #eefaf3, #e2f6eb 55%, #f5fcf8);
}
.trust-flow,
.trust-flow article { border-color: rgba(24,54,79,.17); }
.trust-flow p { color: #536e80; }
.impact-dashboard {
  border-color: rgba(24,54,79,.16);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.8);
  box-shadow: 0 24px 60px rgba(44,108,77,.1);
}
.impact-dashboard__head {
  color: #5c7485;
  border-bottom-color: rgba(24,54,79,.14);
  background: rgba(255,255,255,.48);
}
.impact-score,
.impact-bars,
.impact-docs { border-color: rgba(24,54,79,.14); }
.impact-score > span { color: #637b8b; }
.impact-score__ring { background: conic-gradient(var(--red) calc(var(--progress)*1%), #d8e9df 0); }
.impact-bars span { color: #405c70; }
.impact-bars i { background: #dbe9e1; }
.impact-docs div { border-color: rgba(24,54,79,.14); }
.impact-docs span { color: #718693; }

.done { background: linear-gradient(180deg, #fffdf7, #f5fbff); }
.done-grid { gap: 18px; border: 0; background: transparent; }
.done-card {
  border: 1px solid rgba(24,54,79,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 48px rgba(64,105,130,.08);
}
.done-card__visual {
  background: linear-gradient(145deg, #e7f5fc, #cfe9f6);
  border-radius: 8px;
}
.done-card__visual i { background: rgba(255,255,255,.68); border-color: rgba(69,125,159,.25); }
.done-card__visual i::after { background: repeating-linear-gradient(to bottom,#ff9a3c 0 4px,transparent 4px 19px); }
.done-card__beam { background: linear-gradient(to right,transparent,rgba(255,216,111,.7),transparent); }
.done-card > p { color: #536a7b; }
.done-card--manifesto {
  border-color: rgba(200,146,29,.22);
  background: linear-gradient(145deg, #ffe184, #ffd166);
}
.done-card--manifesto span { border-top-color: rgba(24,54,79,.27); }

.closing {
  color: var(--black);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,222,123,.72), transparent 28%),
    linear-gradient(180deg, #e4f5ff 0%, #fff7dd 55%, #fffdf7 100%);
}
.closing__city { opacity: .44; }
.light-cell { border-color: rgba(24,54,79,.07); background: rgba(255,255,255,.38); }
.light-cell::after { background: rgba(111,168,198,.25); }
.light-cell.is-lit::after,
.light-cell:hover::after { background: #ff9a3c; box-shadow: 0 0 22px rgba(255,154,60,.62); }
.closing__veil { background: radial-gradient(circle at center, rgba(255,255,255,.08) 0, rgba(255,253,247,.66) 58%, #fffdf7 94%); }
.closing .section-kicker { color: #536f82; }
.closing__content > p:not(.section-kicker) { color: #486477; }
.closing__footerline { color: #698091; border-top-color: rgba(24,54,79,.16); }

.site-footer {
  color: #5d7485;
  border-top-color: rgba(24,54,79,.14);
  background: #edf7fc;
}
.site-footer__brand { color: var(--black); }

.modal::backdrop { background: rgba(31,70,96,.42); }
.modal__shell {
  border-color: rgba(24,54,79,.14);
  box-shadow: 0 24px 80px rgba(24,54,79,.2);
}
.modal__close:hover { background: var(--black); color: var(--white); }
input:focus,
textarea:focus,
select:focus { background: #ffffff; }
.support-options input:checked + span { background: var(--black); color: var(--white); border-color: var(--black); }

.cursor-ring { border-color: rgba(255,112,67,.65); }
body.cursor-hover .cursor-ring { background: rgba(255,112,67,.08); }

@media (max-width: 960px) {
  .menu-toggle { border-color: rgba(24,54,79,.26); }
  .mobile-menu {
    color: var(--black);
    background: rgba(247,252,255,.98);
  }
  .mobile-menu nav a { border-bottom-color: rgba(24,54,79,.14); }
  .life-map { border-bottom-color: rgba(24,54,79,.16); }
  .impact-docs,
  .impact-score,
  .impact-bars,
  .impact-docs div { border-color: rgba(24,54,79,.14); }
}

@media (max-width: 640px) {
  .hero__actions .button--ghost { background: rgba(255,255,255,.72); }
  .hero__statement > p { text-shadow: none; }
  .prototype-note { background: #fff4c7; }
  .closing { background: linear-gradient(180deg, #e4f5ff 0%, #fff7dd 58%, #fffdf7 100%); }
}
