:root {
  --palm: #05140c;
  --bottle: #092a1e;
  --green: #00ff94;
  --orange: #ff6b1a;
  --hint: #e9fff4;
  --summer: #9fbdb1;
  --como: #5c7a6e;
  --cararra: #f4f4f1;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 20, 12, 0.18);
  --font-1: "Manrope", Arial, sans-serif;
  --font-2: "JetBrains Mono", monospace;
  --page-pad: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--palm);
  color: var(--hint);
  font-family: var(--font-1);
  letter-spacing: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: break-word;
}

.section-dark {
  background: var(--palm);
  color: var(--hint);
}

.section-light {
  background: #fff;
  color: var(--palm);
}

.mono,
.section-kicker,
.hero-bottom,
.hero-meta,
.metric span,
.metric em {
  font-family: var(--font-2);
}

.green {
  color: var(--green);
}

.orange {
  color: var(--orange);
}

.muted {
  color: var(--summer);
  font-weight: 400;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 64px;
  padding: 14px 24px 15px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 20, 12, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--green);
  padding: 2px 6px;
}

.brand-mark span {
  width: 100%;
  height: 16px;
  background: var(--green);
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex: 1;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 500;
  color: var(--hint);
}

.nav-menu a {
  transition: color 180ms ease;
}

.nav-menu a:hover {
  color: var(--green);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--palm);
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 700;
  letter-spacing: 0.13px;
  transition: transform 180ms ease, filter 180ms ease;
}

.button {
  min-height: 54px;
  padding-inline: 25px;
  font-size: 14px;
}

.button.ghost {
  background: transparent;
  color: var(--hint);
  border-color: rgba(255, 255, 255, 0.32);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  min-height: 49.5px;
  padding: 16px var(--page-pad) 17px;
  border-bottom: 1px solid currentColor;
  color: var(--como);
  font-size: 11px;
  line-height: 16.5px;
  font-weight: 700;
  letter-spacing: 1.32px;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  border-color: var(--line);
  color: var(--summer);
}

.hero {
  position: relative;
  min-height: 1203px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.32;
  object-fit: cover;
}

.hero-kicker {
  position: relative;
  color: var(--summer);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-heading {
  position: relative;
  padding: 128px var(--page-pad) 144px;
}

.hero-heading h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(64px, 12.5vw, 240px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: clamp(-3.2px, -0.69vw, -13.2px);
}

.hero-meta {
  position: absolute;
  right: 33px;
  bottom: 55px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--como);
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--page-pad) 28px;
  color: var(--summer);
  font-size: 11px;
  line-height: 16.5px;
  font-weight: 700;
  letter-spacing: 2.42px;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 417px;
  border-block: 1px solid var(--line);
}

.intro-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 33px 56px var(--page-pad);
  border-right: 1px solid var(--line);
}

.intro-side p:last-child {
  max-width: 293px;
  color: var(--hint);
  font-size: 15px;
  line-height: 23.25px;
}

.intro-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 55px var(--page-pad) 56px;
}

.lead {
  max-width: 680px;
  color: var(--summer);
  font-size: 32px;
  line-height: 42.24px;
  letter-spacing: -0.48px;
  font-weight: 500;
}

.lead strong,
.lead span {
  color: var(--green);
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 234px;
  padding: 40px 24px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric span {
  display: block;
  margin-bottom: 8px;
  color: var(--summer);
  font-size: 11px;
  line-height: 16.5px;
}

.metric strong {
  display: block;
  color: var(--green);
  font-size: clamp(46px, 3.8vw, 72px);
  line-height: 0.9;
  letter-spacing: -2.88px;
}

.metric small {
  font-size: 0.45em;
  letter-spacing: -0.04em;
}

.metric p {
  margin-top: 18px;
  color: var(--hint);
  font-size: 14px;
  line-height: 21px;
}

.metric em {
  display: block;
  margin-top: 2px;
  color: var(--como);
  font-size: 10px;
  line-height: 17.4px;
  font-style: normal;
}

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

.ticker-track {
  display: flex;
  max-width: none;
  gap: 28px;
  width: max-content;
  padding: 14px 0;
  color: var(--green);
  font-size: 22px;
  line-height: 36px;
  font-weight: 800;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  contain: layout paint;
}

.ticker-track span::after {
  content: "/";
  margin-left: 28px;
  color: var(--orange);
}

.belief-title {
  padding: 119px var(--page-pad) 81px;
  border-bottom: 1px solid var(--palm);
}

.belief-title h2 {
  font-size: clamp(56px, 7.5vw, 144px);
  line-height: 0.92;
  letter-spacing: clamp(-2.5px, -0.34vw, -6.48px);
  font-weight: 800;
}

.belief-title span {
  color: var(--summer);
}

.belief-title em {
  color: var(--orange);
  font-style: normal;
}

.belief-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--palm);
}

.belief-copy p {
  min-height: 163px;
  padding: 63px var(--page-pad);
  border-right: 1px solid var(--palm);
  color: var(--palm);
  font-size: 18px;
  line-height: 27.9px;
}

.belief-copy p:nth-child(2n) {
  border-right: 0;
}

.belief-copy strong {
  font-weight: 600;
}

.belief-copy em {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

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

.dream-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 80px var(--page-pad) 48px;
  color: var(--summer);
  font-size: clamp(28px, 2.5vw, 48px);
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: -1.44px;
}

.dream-flow i {
  color: var(--como);
  font-style: normal;
  font-weight: 400;
}

.dream-flow strong {
  color: var(--green);
}

.section-display {
  max-width: 1100px;
  padding: 0 var(--page-pad);
  font-size: clamp(54px, 5vw, 96px);
  line-height: 0.95;
  letter-spacing: -3.84px;
  font-weight: 800;
}

.section-display em {
  color: var(--orange);
  font-style: normal;
}

.two-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 600px));
  gap: 32px;
  padding: 48px var(--page-pad) 0;
  color: var(--summer);
  font-size: 17px;
  line-height: 27.2px;
}

.two-copy strong {
  color: var(--hint);
  font-weight: 600;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.pillar {
  min-height: 473px;
  padding: 65px 32px 48px;
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.pillar.active {
  background: var(--bottle);
  border-top: 4px solid var(--green);
}

.pillar > span {
  color: var(--summer);
  font-family: var(--font-2);
  font-size: 12px;
  line-height: 18px;
}

.pillar h3 {
  margin-top: 23px;
  color: var(--hint);
  font-size: clamp(42px, 4.6vw, 88px);
  line-height: 0.95;
  letter-spacing: -3.52px;
  font-weight: 800;
}

.pillar h3 span {
  color: var(--green);
}

.pillar strong {
  display: block;
  margin-top: 12px;
  color: var(--summer);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

.pillar p {
  max-width: 380px;
  margin-top: 80px;
  color: var(--summer);
  font-size: 15px;
  line-height: 24px;
}

.ecosystem {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 980px;
  overflow: hidden;
}

.ecosystem-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 84px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ecosystem-copy h2 {
  font-size: clamp(48px, 4.2vw, 80px);
  line-height: 0.95;
  letter-spacing: -3.2px;
  font-weight: 800;
}

.ecosystem-copy h2 span {
  color: var(--green);
}

.ecosystem-copy p:not(.mono) {
  max-width: 460px;
  color: var(--summer);
  font-size: 17px;
  line-height: 26.35px;
}

.ecosystem-copy strong {
  max-width: 560px;
  margin-top: 60px;
  color: var(--hint);
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -1.44px;
}

.ecosystem-visual {
  position: relative;
  min-height: 760px;
}

.orbit {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(0, 255, 148, 0.25);
  border-radius: 50%;
  animation: rotate-slow 34s linear infinite;
}

.orbit-2 {
  inset: 22%;
  animation-duration: 28s;
  animation-direction: reverse;
}

.orbit-3 {
  inset: 32%;
  animation-duration: 18s;
}

.core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  transform: translate(-50%, -50%);
}

.node {
  position: absolute;
  display: grid;
  gap: 4px;
  color: var(--hint);
}

.node b {
  font-size: 20px;
}

.node span {
  color: var(--como);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.n1 { left: 42%; top: 15%; text-align: center; }
.n2 { right: 4%; top: 34%; }
.n3 { right: 16%; bottom: 20%; }
.n4 { left: 10%; bottom: 20%; text-align: right; }
.n5 { left: 9%; top: 33%; text-align: right; }

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 646px;
  border-block: 1px solid var(--line);
}

.people article {
  position: relative;
  overflow: hidden;
  min-height: 646px;
  border-right: 1px solid var(--line);
}

.people article:last-child {
  border-right: 0;
}

.people img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.9);
  transition: transform 700ms ease;
}

.people article:hover img {
  transform: scale(1.04);
}

.people div {
  position: absolute;
  inset: auto 32px 32px;
}

.people span,
.center-facts span,
.footer span {
  color: var(--summer);
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  font-weight: 700;
}

.people h3 {
  max-width: 440px;
  margin-top: 12px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1.3px;
}

.company-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--green);
  color: var(--palm);
}

.company-cards article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 416px;
  padding: 40px 28px 41px;
  border-right: 1px solid rgba(5, 20, 12, 0.15);
}

.company-cards article::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--orange);
  order: -1;
  margin: -40px 0 37px -28px;
}

.company-cards span,
.company-cards small {
  font-family: var(--font-2);
  font-size: 11px;
  line-height: 16.5px;
  text-transform: uppercase;
}

.company-cards h3 {
  margin-top: auto;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1.6px;
}

.company-cards p {
  max-width: 520px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 21.7px;
}

.company-cards a {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
}

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

.synapka > div:first-child {
  padding: 64px 32px;
}

.synapka h2 {
  margin-top: 24px;
  font-size: clamp(42px, 3.75vw, 72px);
  line-height: 0.95;
  letter-spacing: -2.88px;
  font-weight: 800;
}

.synapka h2 span {
  color: var(--green);
}

.synapka p:not(.mono),
.synapka strong {
  display: block;
  max-width: 720px;
  margin-top: 24px;
  color: var(--summer);
  font-size: 16px;
  line-height: 25.6px;
}

.synapka strong {
  color: var(--hint);
}

.product-panel {
  min-height: 640px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 255, 148, 0.18), transparent), var(--bottle);
}

.panel-top,
.mini-grid {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--summer);
  font-family: var(--font-2);
  font-size: 11px;
  text-transform: uppercase;
}

.main-card {
  display: grid;
  place-items: center;
  min-height: 360px;
  margin-top: 90px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--green);
  font-size: 62px;
  line-height: 0.9;
  font-weight: 800;
  text-align: center;
}

.main-card small {
  display: block;
  margin-top: 12px;
  color: var(--summer);
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.mini-grid span {
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.map-section,
.technology,
.center,
.roadmap,
.join,
.contact {
  border-top: 1px solid currentColor;
}

.map-section h2,
.technology h2,
.roadmap h2,
.join h2,
.contact-heading h2 {
  padding: 80px 32px 49px;
  font-size: clamp(54px, 6.25vw, 120px);
  line-height: 0.92;
  letter-spacing: -5.4px;
  font-weight: 800;
}

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

.map-grid span,
.map-grid strong {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 18px;
}

.map-grid strong {
  background: var(--palm);
  color: var(--green);
}

.technology {
  color: var(--hint);
}

.technology h2 {
  color: var(--hint);
}

.technology h2::first-line {
  color: var(--hint);
}

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

.tech-grid article {
  min-height: 320px;
  padding: 40px 32px;
  border-right: 1px solid var(--line);
}

.tech-grid span,
.timeline span,
.join-cards span {
  color: var(--green);
  font-family: var(--font-2);
  font-size: 11px;
}

.tech-grid h3,
.timeline h3,
.join-cards h3 {
  margin-top: 18px;
  font-size: 28px;
  line-height: 30.8px;
}

.tech-grid p,
.timeline p,
.join-lead,
.join-cards p {
  max-width: 520px;
  margin-top: 16px;
  color: var(--summer);
  font-size: 16px;
  line-height: 25.6px;
}

.center-heading {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 80px 32px 49px;
  border-bottom: 1px solid var(--palm);
}

.center-heading h2 {
  font-size: clamp(56px, 6.25vw, 120px);
  line-height: 0.92;
  letter-spacing: -5.4px;
}

.center-heading h2 span {
  color: var(--orange);
}

.center-heading p {
  align-self: end;
  max-width: 470px;
  color: var(--como);
  font-size: 16px;
  line-height: 25.6px;
}

.center-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  border-bottom: 1px solid var(--palm);
}

.center-layout img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-right: 1px solid var(--palm);
}

.center-facts > div {
  padding: 24px;
  border-bottom: 1px solid var(--palm);
}

.center-facts strong {
  display: block;
  margin-top: 6px;
  color: var(--palm);
  font-size: 32px;
  line-height: 27px;
}

.center-facts p {
  margin-top: 12px;
  color: var(--palm);
  font-size: 13px;
  line-height: 19.5px;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 64px;
  padding: 40px 32px 56px;
  border-bottom: 1px solid var(--line);
}

.timeline h3,
.timeline p {
  margin-top: 0;
}

.join h2 {
  padding-bottom: 24px;
  color: var(--hint);
}

.join-lead {
  margin: 0 32px 48px;
}

.join-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.join-cards article {
  min-height: 330px;
  padding: 40px 32px;
  border-right: 1px solid var(--line);
}

.join-cards .orange-card {
  background: var(--orange);
  color: var(--palm);
}

.join-cards .orange-card p,
.join-cards .orange-card span {
  color: var(--palm);
}

.contact {
  position: relative;
  min-height: 886px;
}

.contact-heading {
  padding-bottom: 360px;
}

.contact-heading h2 span {
  color: var(--orange);
}

.contact-heading p {
  max-width: 480px;
  margin: -30px 32px 0 auto;
  color: var(--como);
  font-size: 16px;
  line-height: 25.6px;
}

.contact-form {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(1120px, 64vw);
  min-height: 486px;
  padding: 48px 40px;
  background: #fff;
}

.contact-form h3 {
  color: var(--palm);
  font-size: 28px;
  line-height: 30.8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--palm);
  font-family: var(--font-2);
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c8d8d2;
  padding: 10px 0;
  color: var(--palm);
  outline: 0;
}

.contact-form textarea {
  min-height: 70px;
  resize: vertical;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chips button {
  height: 32px;
  padding: 0 14px;
  border: 1px solid #c8d8d2;
  background: transparent;
  color: var(--como);
  font-family: var(--font-2);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.submit {
  margin-top: 24px;
  min-width: 221px;
}

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

.footer > h2 {
  padding: 60px 24px 41px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(72px, 14.58vw, 280px);
  line-height: 0.85;
  letter-spacing: -14px;
  font-weight: 800;
}

.footer > h2 span {
  color: var(--green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  min-height: 310px;
  border-bottom: 1px solid var(--line);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 39px 24px;
  border-right: 1px solid var(--line);
}

.footer-grid p,
.footer-grid a {
  max-width: 360px;
  color: var(--hint);
  font-size: 14px;
  line-height: 22.4px;
}

.copyright {
  padding: 21px 24px 20px;
  color: var(--summer);
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1.32px;
  text-transform: uppercase;
}

.reveal {
  animation: fade-up 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate-slow {
  to {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 1024px) {
  :root {
    --page-pad: 20px;
  }

  .nav {
    gap: 16px;
  }

  .nav-menu {
    display: none;
  }

  .brand {
    flex: 1;
  }

  .hero {
    min-height: 760px;
  }

  .hero-heading {
    padding-top: 96px;
  }

  .intro-grid,
  .belief-copy,
  .ecosystem,
  .synapka,
  .center-heading,
  .center-layout {
    grid-template-columns: 1fr;
  }

  .intro-side,
  .center-layout img {
    border-right: 0;
  }

  .metrics,
  .pillars,
  .people,
  .company-cards,
  .tech-grid,
  .join-cards,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form {
    position: relative;
    width: 100%;
  }

  .contact-heading {
    padding-bottom: 40px;
  }
}

@media (max-width: 640px) {
  html,
  body,
  .page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  article,
  div,
  p,
  h1,
  h2,
  h3,
  strong {
    min-width: 0;
  }

  p,
  h1,
  h2,
  h3,
  strong {
    overflow-wrap: anywhere;
  }

  .nav {
    padding-inline: 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    font-size: 15px;
    white-space: nowrap;
  }

  .nav-cta {
    width: 40px;
    min-width: 40px;
    padding: 0;
    font-size: 0;
  }

  .nav-cta::before {
    content: "→";
    font-size: 18px;
  }

  .hero-meta {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-heading {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .hero-heading h1 {
    font-size: 48px;
    line-height: 0.92;
    letter-spacing: -2.1px;
  }

  .hero-heading h1 span {
    max-width: 100%;
  }

  .lead {
    width: min(100%, 300px);
    max-width: 300px;
    min-width: 0;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.3px;
    white-space: normal !important;
    word-break: break-word;
  }

  .lead-highlight {
    display: block;
  }

  .lead * {
    white-space: normal !important;
  }

  .intro-main,
  .intro-side {
    min-width: 0;
    overflow: hidden;
  }

  .intro-main {
    padding-right: 64px;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .hero-bottom,
  .section-kicker {
    gap: 20px;
    overflow: hidden;
  }

  .metrics,
  .pillars,
  .people,
  .company-cards,
  .tech-grid,
  .join-cards,
  .footer-grid,
  .map-grid,
  .form-row,
  .two-copy {
    grid-template-columns: 1fr;
  }

  .belief-title h2,
  .section-display,
  .map-section h2,
  .technology h2,
  .roadmap h2,
  .join h2,
  .contact-heading h2,
  .center-heading h2 {
    font-size: 44px;
    line-height: 0.96;
    letter-spacing: -1.8px;
  }

  .belief-title,
  .dream-flow,
  .section-display,
  .two-copy,
  .map-section h2,
  .technology h2,
  .roadmap h2,
  .join h2,
  .contact-heading h2,
  .center-heading,
  .synapka > div:first-child,
  .ecosystem-copy,
  .pillar,
  .tech-grid article,
  .join-cards article {
    padding-left: 20px;
    padding-right: 20px;
  }

  .belief-title {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .belief-copy p {
    padding: 40px 20px;
  }

  .dream-flow {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 56px;
    padding-bottom: 32px;
    font-size: 24px;
    line-height: 1.2;
  }

  .dream-flow i {
    transform: rotate(90deg);
  }

  .two-copy {
    gap: 24px;
    padding-top: 32px;
    font-size: 15px;
    line-height: 24px;
  }

  .two-copy p,
  .belief-copy p,
  .pillar p,
  .pillar strong,
  .ecosystem-copy p:not(.mono),
  .ecosystem-copy strong,
  .people h3 {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .pillar {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .pillar h3 {
    font-size: 42px;
    letter-spacing: -1.7px;
  }

  .pillar p {
    margin-top: 48px;
  }

  .ecosystem-copy {
    align-items: stretch;
    padding-top: 56px;
    padding-bottom: 56px;
    overflow: hidden;
  }

  .ecosystem-copy h2 {
    font-size: 42px;
    line-height: 0.96;
    letter-spacing: -1.7px;
  }

  .ecosystem-copy strong {
    margin-top: 32px;
    font-size: 26px;
    line-height: 34px;
    letter-spacing: -1px;
  }

  .ecosystem-visual {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .people div {
    inset: auto 20px 28px;
  }

  .people h3 {
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .people article,
  .company-cards article,
  .center-layout img {
    min-height: 420px;
    height: auto;
  }

  .belief-copy p,
  .pillar,
  .timeline article {
    min-height: auto;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .node {
    max-width: 128px;
    font-size: 12px;
    transform: scale(0.8);
    white-space: normal;
  }

  .main-card {
    font-size: 40px;
  }

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

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