:root {
  --bg: #020607;
  --ink: #f7f8f2;
  --muted: #a8ada7;
  --soft: #e8ece2;
  --dark-line: rgba(255, 255, 255, 0.22);
  --light-ink: #101214;
  --light-muted: #5d6365;
  --light-line: rgba(9, 12, 14, 0.2);
  --accent: #c8ff13;
  --accent-2: #9edf00;
  --font: "Inter", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background: var(--bg);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

button,
input {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site {
  width: 100%;
  overflow: hidden;
}

.section {
  position: relative;
  min-height: 680px;
  height: min(100svh, 50vw);
  max-height: 887px;
  overflow: hidden;
  isolation: isolate;
}

.section-hero {
  min-height: 100svh;
  height: 100svh;
  max-height: none;
}

.section-mission {
  min-height: 100svh;
  height: 100svh;
  max-height: none;
}

@media (min-width: 821px) {
  .section-team {
    --team-bg-width: min(100vw, 1774px);
    --team-bg-height: min(840px, calc(var(--team-bg-width) * 0.474));
    --team-content-shift: max(72px, calc((100svh - 887px) * 0.4 + 24px));
    --team-image-shift: calc(var(--team-content-shift) + 24px);

    min-height: 100svh;
    height: 100svh;
    max-height: none;
    background: #020607;
  }

  .section-team .section-bg {
    inset: auto;
    top: var(--team-image-shift);
    left: 50%;
    width: var(--team-bg-width);
    height: var(--team-bg-height);
    max-height: none;
    transform: translateX(-50%);
    object-fit: fill;
    object-position: center top;
  }

  .section-team .team-copy {
    top: calc(12.5% + var(--team-content-shift));
  }

  .section-team .principle-row {
    top: calc(9.4% + var(--team-content-shift));
  }
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.dark::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12)),
    radial-gradient(circle at 46% 50%, transparent 0 35%, rgba(0, 0, 0, 0.18) 78%);
}

.light {
  color: var(--light-ink);
}

.light::after {
  background: rgba(255, 255, 255, 0.08);
}

.stage {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}

.nav {
  position: fixed;
  z-index: 50;
  top: 20px;
  left: 2.65vw;
  right: 2.65vw;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 2.65%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.brand-wordmark {
  flex: 0 0 auto;
  line-height: 0;
}

.brand-wordmark img {
  display: block;
  width: clamp(184px, 10vw, 220px);
  height: auto;
  object-fit: contain;
}

.nav .brand-wordmark img {
  width: clamp(210px, 14vw, 260px);
  filter: drop-shadow(0 0 11px rgba(200, 255, 19, 0.2));
}

.nav-links {
  display: flex;
  gap: clamp(34px, 3.2vw, 58px);
  margin-left: auto;
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a,
.footer a,
.text-link {
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.footer a:hover,
.text-link:hover {
  color: var(--accent);
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(3, 36px);
  align-items: center;
  height: 36px;
  margin-left: clamp(18px, 1.3vw, 26px);
  padding: 2px;
  border: 1px solid rgba(200, 255, 19, 0.34);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 18px rgba(200, 255, 19, 0.05);
}

.lang-switch button {
  appearance: none;
  display: grid;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
}

.lang-switch button:hover,
.lang-switch button.is-active {
  color: #071003;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn svg,
.text-link svg,
.role-row svg {
  width: 1.6em;
  height: 1.6em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.btn:hover svg,
.text-link:hover svg,
.role-row:hover svg {
  transform: translateX(5px);
}

.btn svg,
.text-link svg,
.role-row svg {
  transition: transform 180ms ease;
}

.btn-accent {
  color: #071003;
  border-color: var(--accent);
  background: linear-gradient(180deg, #d7ff38, var(--accent));
  box-shadow: 0 0 24px rgba(200, 255, 19, 0.22);
}

.btn-outline,
.btn-ghost {
  color: var(--accent);
  background: rgba(0, 0, 0, 0.16);
}

.btn-ghost {
  color: var(--ink);
  border-color: rgba(200, 255, 19, 0.72);
}

.nav-cta {
  min-height: 50px;
  margin-left: 14px;
  padding-inline: 26px;
}

.side-ruler {
  position: absolute;
  left: 2.8%;
  top: 15.2%;
  bottom: 3.2%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04));
}

.side-ruler::before,
.side-ruler::after {
  content: "";
  position: absolute;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.side-ruler::before {
  top: 14%;
}

.side-ruler::after {
  bottom: 0;
}

.hero-copy {
  position: absolute;
  left: 7.1%;
  top: 20.2%;
  width: 38%;
}

.hero-copy h1,
.copy-block h2,
.collab-title h2,
.benefit-heading h2,
.roles-heading h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.28;
}

.hero-copy h1 {
  font-size: clamp(40px, 3.25vw, 58px);
  line-height: 1.24;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.accent-line {
  display: block;
  width: 36px;
  height: 4px;
  margin: clamp(26px, 2.2vw, 38px) 0;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(200, 255, 19, 0.36);
}

.hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.6;
}

.hero-copy .accent-line {
  margin: 26px 0 22px;
}

.hero-copy,
.side-ruler,
.city-label,
.time-panel {
  z-index: 2;
}

.hero-network {
  position: absolute;
  z-index: 1;
  left: 49.6%;
  top: 33.8%;
  width: 42.5%;
  height: 45%;
  pointer-events: none;
  overflow: visible;
  mix-blend-mode: screen;
}

.network-tracks use {
  fill: none;
  stroke: rgba(200, 255, 19, 0.24);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-dasharray: 9 14;
  filter: drop-shadow(0 0 5px rgba(200, 255, 19, 0.32));
  animation: networkTrack 7s linear infinite;
}

.network-nodes .node {
  fill: var(--accent);
  stroke: rgba(255, 255, 255, 0.84);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px rgba(200, 255, 19, 0.9));
  transform-box: fill-box;
  transform-origin: center;
  animation: networkPulse 2.8s ease-in-out infinite;
}

.network-nodes .node-b,
.network-nodes .node-e {
  animation-delay: -0.7s;
}

.network-nodes .node-c,
.network-nodes .node-f {
  animation-delay: -1.4s;
}

.flow-dot {
  fill: #dcff4c;
  filter: drop-shadow(0 0 9px rgba(200, 255, 19, 0.95));
  opacity: 0.9;
}

@keyframes networkTrack {
  to {
    stroke-dashoffset: -92;
  }
}

@keyframes networkPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.75);
  }

  45% {
    opacity: 1;
    transform: scale(1.35);
  }
}

.action-row {
  display: flex;
  gap: 22px;
  margin-top: 26px;
}

.action-row .btn {
  min-width: 174px;
}

.city-label {
  position: absolute;
  display: grid;
  grid-template-columns: 14px auto;
  gap: 2px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.2;
}

.city-label i {
  grid-row: 1 / 3;
  width: 10px;
  height: 10px;
  margin-top: 3px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.city-label b {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.city-london {
  left: 57.2%;
  top: 20.5%;
}

.city-newyork {
  left: 44%;
  top: 57.3%;
}

.city-tokyo {
  right: 3.8%;
  top: 47.6%;
}

.city-seoul {
  right: 7.5%;
  top: 64.2%;
}

.time-panel {
  position: absolute;
  left: 7.1%;
  right: 7.1%;
  bottom: 5.7%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 98px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(1, 5, 6, 0.67);
  backdrop-filter: blur(8px);
}

.time-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 12px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

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

.time-item span {
  color: #fff;
  font-size: clamp(14px, 0.92vw, 17px);
  font-weight: 800;
}

.time-item strong {
  color: var(--accent);
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 500;
  line-height: 1.16;
}

.time-item em {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(13px, 0.86vw, 16px);
  font-style: normal;
}

.rhythm strong {
  font-size: clamp(28px, 1.95vw, 35px);
}

.copy-block {
  position: absolute;
}

.small-label,
.eyebrow {
  margin: 0;
  color: inherit;
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 500;
  line-height: 1.35;
}

.eyebrow {
  font-size: clamp(14px, 1.05vw, 19px);
  font-weight: 800;
}

.neon,
.eyebrow.neon {
  color: var(--accent);
}

.mission-copy {
  left: 4.5%;
  top: 17%;
  width: 34%;
}

.mission-copy h2 {
  margin-top: 42px;
  font-size: clamp(36px, 3.1vw, 55px);
  color: var(--light-ink);
}

.mission-copy .lead {
  margin-top: 0;
  color: var(--light-ink);
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 500;
  line-height: 1.65;
}

.mission-copy p:not(.small-label):not(.lead) {
  margin: 28px 0 0;
  color: var(--light-muted);
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.8;
}

.mission-brand-signature {
  position: relative;
  display: flex;
  width: min(100%, 620px);
  align-items: center;
  gap: clamp(16px, 1.35vw, 24px);
  margin-top: 32px;
  padding: 16px 0 16px 20px;
  border-top: 1px solid rgba(16, 18, 20, 0.16);
  border-bottom: 1px solid rgba(16, 18, 20, 0.16);
}

.mission-brand-signature::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 4px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(200, 255, 19, 0.24);
}

.mission-brand-signature img {
  display: block;
  width: clamp(168px, 12.5vw, 218px);
  flex: 0 0 auto;
  height: auto;
  object-fit: contain;
}

.mission-brand-divider {
  width: 1px;
  height: 34px;
  flex: 0 0 1px;
  background: rgba(16, 18, 20, 0.2);
}

.mission-brand-signature em {
  color: var(--light-muted);
  font-size: clamp(14px, 1vw, 17px);
  font-style: normal;
  line-height: 1.55;
}

@media (min-width: 821px) {
  html[lang="en"] .mission-copy {
    top: 12.2%;
    width: 37%;
  }

  html[lang="en"] .mission-copy h2 {
    margin-top: 28px;
    font-size: clamp(32px, 2.7vw, 46px);
    line-height: 1.16;
  }

  html[lang="en"] .mission-copy .lead {
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.5;
  }

  html[lang="en"] .mission-copy p:not(.small-label):not(.lead) {
    margin-top: 20px;
    line-height: 1.65;
  }

  html[lang="en"] .mission-brand-signature {
    gap: 14px;
    margin-top: 20px;
    padding-block: 12px;
  }

  html[lang="en"] .mission-brand-signature::before {
    top: 12px;
    bottom: 12px;
  }

  html[lang="en"] .mission-brand-signature img {
    width: 150px;
  }

  html[lang="en"] .mission-brand-signature em {
    font-size: 13px;
    line-height: 1.4;
  }

  html[lang="en"] .mission-copy .text-link {
    margin-top: 28px;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  color: currentColor;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 800;
}

.diagram-wrap {
  position: absolute;
  left: 41%;
  top: 9.6%;
  width: 57%;
  height: 80.4%;
}

.diagram-slice {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.diagram-wrap > :not(.diagram-slice) {
  display: none;
}

.section-industry {
  min-height: 100svh;
  height: 100svh;
  max-height: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #020607;
  background-size: 36px 36px, 36px 36px;
}

.section-industry::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24)),
    linear-gradient(90deg, rgba(2, 6, 7, 0.95), rgba(2, 6, 7, 0.72) 55%, rgba(2, 6, 7, 0.94));
}

.section-industry .stage::before {
  content: "";
  position: absolute;
  left: 4.5%;
  right: 4.5%;
  bottom: 5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 255, 19, 0.62), rgba(255, 255, 255, 0.12), transparent);
}

.roadmap-intro {
  position: absolute;
  left: 4.55%;
  top: 11.5%;
  width: min(48vw, 760px);
}

.roadmap-intro .eyebrow {
  margin: 0;
  font-size: clamp(14px, 1vw, 18px);
}

.roadmap-intro h2 {
  margin: 28px 0 0;
  font-size: clamp(46px, 4.25vw, 76px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.roadmap-intro .accent-line {
  margin: 28px 0 24px;
}

.roadmap-intro p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(15px, 1.08vw, 20px);
  line-height: 1.72;
}

.industry-roadmap {
  position: absolute;
  left: 4.55%;
  right: 4.55%;
  top: 47%;
}

.industry-roadmap h3 {
  display: none;
}

.roadmap-line {
  position: absolute;
  left: 8%;
  right: 1%;
  top: 58px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
}

.roadmap-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -6px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(24px, 2.35vw, 42px);
}

.roadmap-grid article {
  min-width: 0;
}

.roadmap-marker {
  display: grid;
  place-items: center;
  min-height: 122px;
  margin-bottom: 18px;
}

.roadmap-marker strong {
  position: relative;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 4px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(200, 255, 19, 0.14);
  font-size: clamp(14px, 0.95vw, 18px);
}

.roadmap-marker strong::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(200, 255, 19, 0.82);
  transform: translateX(-50%);
}

.roadmap-marker span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(12px, 0.86vw, 15px);
  line-height: 1.3;
  white-space: nowrap;
}

.roadmap-card {
  height: 300px;
  padding: 30px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.roadmap-card svg {
  width: clamp(38px, 2.8vw, 52px);
  height: clamp(38px, 2.8vw, 52px);
  color: rgba(255, 255, 255, 0.78);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-card h4 {
  margin: 18px 0 0;
  font-size: clamp(17px, 1.22vw, 23px);
  line-height: 1.2;
}

.roadmap-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(12px, 0.86vw, 15px);
  line-height: 1.62;
}

.roadmap-card p.fixed-two-line span {
  display: block;
  white-space: nowrap;
}

.roadmap-card div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.roadmap-card span {
  padding: 5px 9px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.06);
  font-size: clamp(10px, 0.7vw, 12px);
  white-space: nowrap;
}

.layer-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 86px;
  padding: 22px 28px;
  border: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.2);
}

.layer-box strong {
  position: absolute;
  top: -16px;
  left: 50%;
  padding: 0 12px;
  transform: translateX(-50%);
  background: #faf9f4;
  font-size: 14px;
}

.layer-box span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #222;
  font-size: 14px;
  white-space: nowrap;
}

.layer-box svg,
.core-capabilities svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.top-box {
  top: 0;
  left: 24%;
  width: 58%;
}

.left-box {
  top: 22%;
  left: 0;
  width: 21%;
  height: 40%;
  flex-direction: column;
  align-items: flex-start;
}

.right-box {
  top: 22%;
  right: 0;
  width: 19%;
  height: 40%;
  flex-direction: column;
  align-items: flex-start;
}

.bottom-left-box {
  left: 13%;
  bottom: 11%;
  width: 35%;
}

.bottom-right-box {
  right: 10%;
  bottom: 11%;
  width: 35%;
}

.core-capabilities {
  position: absolute;
  right: 1%;
  bottom: -3%;
  display: flex;
  align-items: center;
  gap: 42px;
  width: 52%;
  padding-top: 26px;
  border-top: 1px solid var(--light-line);
  font-size: 15px;
}

.core-capabilities strong {
  font-weight: 900;
}

.team-copy {
  left: 3.9%;
  top: 12.5%;
  width: 24%;
}

.team-copy h2 {
  font-size: clamp(28px, 2.15vw, 38px);
}

.team-copy p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 0.98vw, 17px);
  line-height: 1.72;
}

.principle-row {
  position: absolute;
  left: 27.8%;
  right: 2.6%;
  top: 9.4%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principle-row article {
  min-height: 212px;
  padding: 0 34px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.principle-row article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.42);
}

@media (min-width: 821px) {
  .principle-row article {
    position: relative;
    min-height: 166px;
    border-left: 0;
  }

  .principle-row article::before,
  .principle-row article:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 156px;
    background: rgba(255, 255, 255, 0.42);
  }

  .principle-row article::before {
    left: 0;
  }

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

  .principle-row article:last-child::after {
    right: 0;
  }
}

.principle-row svg {
  width: clamp(50px, 3.25vw, 64px);
  height: clamp(50px, 3.25vw, 64px);
  margin-bottom: 20px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
}

.principle-row h3 {
  margin: 0;
  font-size: clamp(18px, 1.22vw, 23px);
  line-height: 1.18;
}

.principle-row p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(11px, 0.78vw, 14px);
  line-height: 1.42;
}

.collab-title {
  position: absolute;
  left: 2.9%;
  top: 13.5%;
}

.collab-title .eyebrow {
  color: #52595d;
}

.collab-title h2 {
  margin-top: 34px;
  font-size: clamp(38px, 2.9vw, 52px);
}

.collab-title p:last-child {
  margin: 0;
  color: var(--light-muted);
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.55;
}

.legend {
  position: absolute;
  left: 2.9%;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--light-muted);
  font-size: clamp(13px, 0.95vw, 17px);
}

.legend strong {
  color: var(--light-ink);
  font-size: clamp(15px, 1.1vw, 20px);
}

.legend span {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.dot.hot {
  background: var(--accent-2);
}

.dot.soft {
  background: #eaf7b7;
}

.dot.muted {
  background: #d7d7d7;
}

.timeline {
  position: absolute;
  left: 22.8%;
  top: 26.5%;
  width: 52%;
  height: 61%;
}

.timeline-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: 18%;
  margin-bottom: 18px;
  color: var(--light-ink);
}

.timeline-head strong {
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.2;
}

.timeline-head span {
  color: var(--light-muted);
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 600;
}

.time-axis {
  position: relative;
  height: 24px;
  color: #171a1d;
  font-size: clamp(13px, 0.95vw, 16px);
}

.time-axis span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

.time-axis span:nth-child(1) {
  left: 18%;
}

.time-axis span:nth-child(2) {
  left: 31.6667%;
}

.time-axis span:nth-child(3) {
  left: 45.3333%;
}

.time-axis span:nth-child(4) {
  left: 59%;
}

.time-axis span:nth-child(5) {
  left: 72.6667%;
}

.time-axis span:nth-child(6) {
  left: 86.3333%;
}

.time-axis span:nth-child(7) {
  left: 100%;
}

.schedule-row {
  display: grid;
  grid-template-columns: 18% 1fr;
  align-items: center;
  margin-top: 26px;
}

.schedule-row strong {
  display: flex;
  flex-direction: column;
  font-size: clamp(15px, 1.16vw, 21px);
  line-height: 1.35;
}

.schedule-row em {
  color: var(--light-muted);
  font-size: clamp(12px, 0.85vw, 15px);
  font-style: normal;
  font-weight: 500;
}

.bar {
  position: relative;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    transparent 0 calc(50% - 5px),
    rgba(12, 18, 20, 0.075) calc(50% - 5px) calc(50% + 5px),
    transparent calc(50% + 5px) 100%
  );
  overflow: visible;
}

.bar::before {
  content: "";
  position: absolute;
  inset: -48px 0 -14px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.12) 0 1px,
    transparent 1px calc(100% / 6)
  );
  z-index: 0;
  pointer-events: none;
}

.bar::after {
  content: "";
  position: absolute;
  top: -48px;
  right: 0;
  bottom: -14px;
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
  z-index: 0;
  pointer-events: none;
}

.bar i {
  display: block;
  position: absolute;
  left: calc(var(--x) * 1%);
  width: calc(var(--w) * 1%);
  top: 10px;
  height: 16px;
  border-radius: 999px;
  z-index: 1;
}

.bar i.hot {
  background: linear-gradient(90deg, var(--accent-2), #b6f000);
  box-shadow: 0 0 18px rgba(158, 223, 0, 0.4), 0 0 34px rgba(158, 223, 0, 0.18);
}

.bar i.hot::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: -27px;
  color: rgba(15, 21, 24, 0.78);
  font-size: clamp(10px, 0.7vw, 13px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
  z-index: 2;
}

.bar i.soft {
  display: none;
}

.bar i.muted {
  display: none;
}

.bar i.long {
  opacity: 0.9;
}

.collab-methods {
  position: absolute;
  right: 2.8%;
  top: 20.5%;
  width: 19%;
  min-height: 68%;
  padding-left: 3.1%;
  border-left: 1px solid rgba(0, 0, 0, 0.32);
}

.collab-methods h3 {
  margin: 0 0 30px;
  font-size: clamp(16px, 1.15vw, 20px);
}

.collab-methods article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.collab-methods svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--light-ink);
  stroke-width: 1.5;
}

.collab-methods strong {
  display: block;
  font-size: clamp(16px, 1.18vw, 21px);
}

.collab-methods span {
  display: block;
  margin-top: 5px;
  color: var(--light-muted);
  font-size: clamp(12px, 0.82vw, 14px);
}

.benefit-heading {
  position: absolute;
  left: 4.1%;
  top: 9.4%;
}

.benefit-heading h2 {
  font-size: clamp(40px, 3.45vw, 62px);
}

.benefit-heading .accent-line {
  margin: 22px 0 32px;
}

.benefit-grid {
  position: absolute;
  left: 2.9%;
  right: 2.9%;
  top: 31.2%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 324px;
}

.benefit-grid article {
  position: relative;
  min-height: 0;
  padding: 0 18px;
  text-align: center;
}

.benefit-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 238px;
  background: rgba(255, 255, 255, 0.34);
}

.benefit-grid article:first-child::before {
  display: none;
}

.benefit-grid svg {
  width: clamp(58px, 3.95vw, 76px);
  height: clamp(58px, 3.95vw, 76px);
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.94);
  fill: none;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.benefit-grid h3 {
  margin: 0;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.25;
}

.benefit-grid article > span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 22px auto 24px;
  background: var(--accent);
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(12px, 0.8vw, 15px);
  line-height: 1.62;
}

.benefit-strip {
  position: absolute;
  left: 4.5%;
  right: 4.5%;
  bottom: 8.8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
}

.benefit-strip article {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-content: center;
  column-gap: 18px;
  padding: 20px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

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

.benefit-strip svg {
  grid-row: 1 / 3;
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.88);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-strip strong {
  font-size: clamp(17px, 1.2vw, 23px);
  line-height: 1.15;
}

.benefit-strip span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(12px, 0.8vw, 15px);
}

.roles-heading {
  position: absolute;
  left: 8.9%;
  top: 10.5%;
}

.roles-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.roles-heading .eyebrow::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--accent);
}

.roles-heading .accent-line {
  display: none;
}

.roles-heading h2 {
  margin-top: 28px;
  font-size: clamp(48px, 4vw, 72px);
}

.roles-heading p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1vw, 18px);
}

.roles-table {
  position: absolute;
  left: 8.9%;
  right: 6.4%;
  top: 43.5%;
  color: var(--ink);
}

.role-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.22fr 0.9fr 0.6fr 48px;
  align-items: center;
  min-height: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  font-size: clamp(15px, 1.08vw, 20px);
  font-weight: 700;
}

.role-row.header {
  min-height: 55px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(13px, 0.95vw, 17px);
}

.role-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.role-row svg {
  width: 34px;
  height: 34px;
  color: var(--accent);
  justify-self: end;
}

.role-row:not(.header) {
  transition: background 180ms ease, padding 180ms ease;
}

.role-row:not(.header):hover {
  padding-left: 12px;
  background: rgba(200, 255, 19, 0.04);
}

html[lang="en"] .hero-copy {
  width: min(42vw, 760px);
}

html[lang="en"] .hero-copy h1 {
  width: 14.5em;
  max-width: 14.5em;
  font-size: clamp(38px, 2.7vw, 54px);
  line-height: 1.18;
}

html[lang="en"] .hero-copy h1 span {
  white-space: normal;
}

html[lang="en"] .hero-copy p {
  max-width: 26em;
}

html[lang="en"] .collab-title {
  width: 28%;
}

html[lang="en"] .collab-title h2 {
  max-width: 560px;
  font-size: clamp(34px, 2.45vw, 44px);
  line-height: 1.14;
}

html[lang="en"] .collab-title p:last-child {
  max-width: 360px;
  font-size: clamp(14px, 0.95vw, 17px);
  line-height: 1.5;
}

html[lang="en"] .legend {
  width: 18%;
}

html[lang="en"] .legend strong {
  max-width: 12em;
  line-height: 1.22;
}

html[lang="en"] .timeline {
  left: 31%;
  top: 27.5%;
  width: 44.5%;
}

html[lang="en"] .timeline-head {
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  padding-left: 19%;
  margin-bottom: 16px;
}

html[lang="en"] .timeline-head span {
  max-width: 420px;
  line-height: 1.35;
  white-space: normal;
}

html[lang="en"] .schedule-row {
  grid-template-columns: 19% 1fr;
  margin-top: 24px;
}

html[lang="en"] .schedule-row strong {
  font-size: clamp(14px, 0.98vw, 18px);
  line-height: 1.22;
}

html[lang="en"] .collab-methods {
  width: 18%;
  padding-left: 2.3%;
}

html[lang="en"] .collab-methods h3 {
  font-size: clamp(15px, 1vw, 18px);
}

html[lang="en"] .collab-methods article {
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

html[lang="en"] .collab-methods svg {
  width: 40px;
  height: 40px;
}

html[lang="en"] .collab-methods strong {
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.18;
}

html[lang="en"] .collab-methods span {
  font-size: clamp(12px, 0.8vw, 14px);
  line-height: 1.36;
}

html[lang="en"] .roadmap-marker span {
  width: 100%;
  max-width: 180px;
  text-align: center;
  white-space: normal;
}

html[lang="en"] .roadmap-card h4 {
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.18;
}

html[lang="en"] .roadmap-card p {
  font-size: clamp(11px, 0.78vw, 14px);
  line-height: 1.45;
}

html[lang="en"] .roadmap-card span {
  font-size: clamp(9px, 0.64vw, 11px);
}

.roadmap-card p.fixed-two-line span,
html[lang="en"] .roadmap-card p.fixed-two-line span {
  display: block;
  padding: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  line-height: inherit;
  white-space: nowrap;
}

html[lang="en"] .roadmap-card p.fixed-two-line {
  max-width: 92%;
  margin-right: auto;
  margin-left: auto;
}

html[lang="en"] .roadmap-card p.fixed-two-line span {
  white-space: normal;
}

html[lang="en"] .team-copy {
  width: min(22vw, 430px);
}

html[lang="en"] .team-copy h2 {
  font-size: clamp(26px, 1.65vw, 32px);
  line-height: 1.18;
}

html[lang="en"] .team-copy p {
  max-width: 410px;
  font-size: clamp(13px, 0.86vw, 16px);
  line-height: 1.68;
}

html[lang="en"] .principle-row h3 {
  font-size: clamp(15px, 1.02vw, 20px);
}

html[lang="en"] .principle-row p {
  font-size: clamp(11px, 0.72vw, 13px);
  line-height: 1.36;
}

html[lang="en"] .benefit-grid article {
  padding-inline: 14px;
}

html[lang="en"] .benefit-grid h3 {
  font-size: clamp(14px, 0.98vw, 18px);
}

html[lang="en"] .benefit-grid p {
  font-size: clamp(11px, 0.72vw, 13px);
  line-height: 1.48;
}

html[lang="en"] .benefit-strip strong {
  font-size: clamp(16px, 1.08vw, 20px);
}

html[lang="en"] .benefit-strip span {
  font-size: clamp(11px, 0.76vw, 14px);
}

html[lang="en"] .role-row {
  grid-template-columns: 1.45fr 1fr 1.22fr 0.9fr 0.72fr 48px;
  font-size: clamp(13px, 0.92vw, 17px);
}

.final-cta {
  position: absolute;
  left: 6%;
  top: 14.4%;
  z-index: 2;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -3.5vw;
  top: -34px;
  width: min(68vw, 1120px);
  height: 260px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 48% 35%, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.54) 45%, rgba(0, 0, 0, 0) 72%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.66) 58%, rgba(0, 0, 0, 0));
  filter: blur(5px);
}

.final-cta h2 {
  font-size: clamp(38px, 3.1vw, 56px);
}

.final-cta .btn {
  min-width: 290px;
  margin-top: 44px;
}

.footer {
  position: absolute;
  left: 5.9%;
  right: 5.9%;
  top: 54.5%;
  bottom: auto;
  display: grid;
  grid-template-columns: 2.35fr 0.8fr 0.9fr 1fr 2fr;
  gap: clamp(34px, 4vw, 72px);
  padding-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand p {
  margin: 36px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.85;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(13px, 0.95vw, 17px);
}

.footer-col,
.subscribe {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer strong,
.subscribe strong {
  margin-bottom: 8px;
  font-size: clamp(15px, 1.02vw, 18px);
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 0.95vw, 17px);
}

.socials {
  display: flex;
  gap: 36px;
  align-items: center;
  margin: 10px 0 20px;
}

.socials a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

.subscribe label {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 14px;
}

.subscribe label span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(13px, 0.92vw, 16px);
}

.subscribe input {
  min-width: 0;
  height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.subscribe input:focus {
  border-color: var(--accent);
}

.subscribe button {
  height: 58px;
  border: 1px solid var(--accent);
  border-radius: 0;
  color: var(--accent);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 36px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .section {
    min-height: 640px;
  }

  .nav-links {
    gap: 26px;
  }

  .lang-switch {
    margin-left: 18px;
  }

  .principle-row article {
    padding-inline: 24px;
  }

  .benefit-grid article {
    padding-inline: 22px;
  }

  .benefit-strip article {
    padding-inline: 24px;
  }
}

@media (max-width: 820px) {
  body {
    background: #030607;
  }

  .section {
    height: 100svh;
    min-height: 760px;
    max-height: none;
  }

  .stage {
    width: 100%;
  }

  .section-bg {
    object-fit: cover;
  }

  .section-hero .section-bg {
    object-position: 30% center;
  }

  .section-mission .section-bg,
  .section-collab .section-bg {
    object-position: 28% center;
  }

  .section-mission {
    min-height: 920px;
  }

  .section-industry {
    height: 900px;
    min-height: 900px;
  }

  .section-industry .stage::before {
    top: auto;
    bottom: 36px;
  }

  .section-collab {
    min-height: 860px;
  }

  .section-team .section-bg,
  .section-benefits .section-bg,
  .section-roles .section-bg {
    object-position: 20% center;
  }

  .section-benefits {
    height: max(100svh, 940px);
    min-height: 940px;
  }

  .section-team .section-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    transform: none;
    object-fit: cover;
  }

  .section-footer .section-bg {
    object-position: 56% center;
  }

  .nav {
    top: 12px;
    left: 16px;
    right: 16px;
    height: 64px;
    padding: 0 14px;
  }

  .brand-wordmark img {
    width: 154px;
  }

  .nav-links {
    display: none;
  }

  .lang-switch {
    position: absolute;
    top: 50%;
    right: 74px;
    grid-template-columns: repeat(3, 30px);
    height: 32px;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .lang-switch button {
    height: 26px;
    font-size: 11px;
  }

  .nav-cta {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 46px;
    min-height: 42px;
    margin-left: auto;
    padding: 0;
    overflow: hidden;
    font-size: 0;
    transform: translateY(-50%);
  }

  .nav-cta:hover {
    transform: translateY(-50%);
  }

  .nav-cta svg {
    width: 24px;
    height: 24px;
  }

  .side-ruler,
  .city-label {
    display: none;
  }

  .hero-copy {
    left: 24px;
    top: 130px;
    width: min(84vw, 430px);
  }

  .hero-copy h1 {
    font-size: clamp(22px, 5.7vw, 28px);
    line-height: 1.24;
  }

  .hero-network {
    display: none;
  }

  .accent-line {
    width: 34px;
    height: 4px;
    margin: 22px 0;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .action-row {
    gap: 12px;
    margin-top: 28px;
  }

  .action-row .btn {
    min-width: 0;
    min-height: 50px;
    padding: 0 18px;
    font-size: 13px;
  }

  .time-panel {
    left: 20px;
    right: auto;
    bottom: 28px;
    display: flex;
    width: calc(100vw - 40px);
    min-height: 102px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .time-item {
    min-width: 150px;
    padding: 14px 22px;
    scroll-snap-align: start;
  }

  .time-item strong {
    font-size: 22px;
  }

  .copy-block,
  .collab-title,
  .benefit-heading,
  .roles-heading,
  .final-cta {
    left: 24px;
    right: 24px;
  }

  .mission-copy {
    top: 72px;
    width: auto;
  }

  .mission-copy h2 {
    margin-top: 26px;
    font-size: clamp(28px, 7.6vw, 36px);
    line-height: 1.2;
  }

  .mission-copy .lead {
    font-size: 14px;
  }

  .mission-copy p:not(.small-label):not(.lead) {
    display: none;
  }

  .mission-brand-signature {
    display: grid;
    gap: 10px;
    width: 100%;
    margin-top: 24px;
    padding: 13px 0 13px 14px;
  }

  .mission-brand-signature::before {
    top: 13px;
    bottom: 13px;
    width: 3px;
  }

  .mission-brand-signature img {
    width: 164px;
  }

  .mission-brand-divider {
    display: none;
  }

  .mission-brand-signature em {
    max-width: 26ch;
    font-size: 13px;
    line-height: 1.45;
  }

  .text-link {
    margin-top: 22px;
    font-size: 13px;
  }

  .horizontal-pane {
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .horizontal-pane::-webkit-scrollbar {
    display: none;
  }

  .diagram-wrap {
    left: 20px;
    top: 410px;
    width: calc(100vw - 20px);
    height: 470px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .diagram-slice {
    width: 650px;
    height: auto;
    max-width: none;
  }

  .layer-box {
    min-height: 62px;
    padding: 16px 18px;
  }

  .layer-box strong {
    font-size: 13px;
  }

  .layer-box span {
    font-size: 13px;
  }

  .top-box {
    left: 260px;
    top: 0;
    width: 520px;
  }

  .left-box {
    left: 0;
    top: 90px;
    width: 190px;
    height: 190px;
  }

  .right-box {
    left: 725px;
    right: auto;
    top: 90px;
    width: 180px;
    height: 190px;
  }

  .bottom-left-box {
    left: 130px;
    bottom: 0;
    width: 320px;
  }

  .bottom-right-box {
    left: 530px;
    right: auto;
    bottom: 0;
    width: 320px;
  }

  .core-capabilities {
    display: none;
  }

  .roadmap-intro {
    left: 24px;
    right: 24px;
    top: 92px;
    width: auto;
  }

  .roadmap-intro h2 {
    margin-top: 20px;
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.12;
  }

  .roadmap-intro .accent-line {
    margin: 22px 0 18px;
  }

  .roadmap-intro p {
    font-size: 14px;
    line-height: 1.72;
  }

  .industry-roadmap {
    left: 20px;
    right: auto;
    top: 382px;
    width: calc(100vw - 20px);
    overflow: hidden;
  }

  .roadmap-line {
    display: none;
  }

  .roadmap-grid {
    display: flex;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-right: 20px;
  }

  .roadmap-grid article {
    min-width: 246px;
  }

  .roadmap-marker {
    min-height: 66px;
    align-items: start;
    justify-items: start;
    margin-bottom: 14px;
  }

  .roadmap-marker strong {
    width: 42px;
    height: 42px;
    align-items: center;
    padding-top: 0;
    font-size: 15px;
  }

  .roadmap-marker strong::after {
    display: none;
  }

  .roadmap-marker span {
    margin-top: 10px;
    font-size: 13px;
  }

  .roadmap-card {
    height: 252px;
    min-height: 252px;
    padding: 24px 18px 18px;
  }

  .roadmap-card svg {
    width: 44px;
    height: 44px;
  }

  .roadmap-card h4 {
    font-size: 20px;
  }

  .roadmap-card p {
    font-size: 13px;
  }

  .team-copy {
    top: 74px;
    width: auto;
  }

  .team-copy h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .team-copy p {
    font-size: 13px;
  }

  .principle-row {
    left: 20px;
    right: auto;
    top: 390px;
    display: flex;
    width: calc(100vw - 20px);
    overflow-x: auto;
    padding-right: 20px;
  }

  .principle-row article {
    min-width: 225px;
    min-height: 250px;
    padding: 0 26px;
    border-color: rgba(255, 255, 255, 0.34);
  }

  .principle-row svg {
    width: 58px;
    height: 58px;
  }

  .principle-row h3 {
    font-size: 20px;
  }

  .principle-row p {
    font-size: 13px;
  }

  .collab-title {
    top: 92px;
  }

  .collab-title h2 {
    margin-top: 22px;
    font-size: clamp(30px, 8vw, 40px);
  }

  .legend {
    left: 24px;
    top: 294px;
    gap: 12px;
    font-size: 14px;
  }

  .legend strong {
    font-size: 16px;
  }

  .timeline {
    left: 20px;
    top: 400px;
    width: calc(100vw - 20px);
    height: 318px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 20px;
  }

  .timeline > * {
    min-width: 720px;
  }

  .time-axis {
    font-size: 13px;
  }

  .timeline-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-left: 18%;
    margin-bottom: 14px;
  }

  .timeline-head strong {
    font-size: 16px;
  }

  .timeline-head span {
    font-size: 12px;
  }

  .schedule-row {
    margin-top: 18px;
  }

  .schedule-row strong {
    font-size: 15px;
  }

  .bar {
    height: 30px;
  }

  .bar i {
    top: 9px;
    height: 12px;
  }

  .bar i.hot::after {
    top: -22px;
    font-size: 11px;
  }

  .collab-methods {
    left: 20px;
    right: auto;
    top: 748px;
    display: flex;
    width: calc(100vw - 20px);
    min-height: 0;
    gap: 18px;
    overflow-x: auto;
    padding: 0 20px 0 0;
    border-left: 0;
  }

  .collab-methods h3 {
    min-width: 110px;
    margin: 0;
    font-size: 18px;
  }

  .collab-methods article {
    display: grid;
    min-width: 220px;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    margin: 0;
  }

  .collab-methods svg {
    width: 40px;
    height: 40px;
  }

  .collab-methods strong {
    font-size: 18px;
  }

  .collab-methods span {
    font-size: 13px;
  }

  .collab-methods .text-link {
    min-width: 210px;
    margin: 5px 0 0;
  }

  .benefit-heading {
    top: 104px;
  }

  .benefit-heading h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .benefit-grid {
    left: 20px;
    right: auto;
    top: 270px;
    display: flex;
    width: calc(100vw - 20px);
    height: 300px;
    overflow-x: auto;
    padding-right: 20px;
  }

  .benefit-grid article {
    min-width: 220px;
    min-height: 300px;
    padding: 0 24px;
  }

  .benefit-grid svg {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .benefit-grid h3 {
    font-size: 20px;
  }

  .benefit-grid p {
    font-size: 15px;
    line-height: 1.58;
  }

  .benefit-grid article > span {
    margin: 20px auto 22px;
  }

  .benefit-strip {
    left: 20px;
    right: auto;
    top: 640px;
    bottom: auto;
    display: flex;
    width: calc(100vw - 20px);
    min-height: 104px;
    overflow-x: auto;
  }

  .benefit-strip article {
    min-width: 270px;
    padding: 20px 24px;
  }

  .benefit-strip svg {
    width: 50px;
    height: 50px;
  }

  .benefit-strip strong {
    font-size: 22px;
  }

  .roles-heading {
    top: 96px;
  }

  .roles-heading h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .roles-heading p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.7;
  }

  .roles-table {
    left: 20px;
    right: auto;
    top: 360px;
    width: calc(100vw - 20px);
    overflow-x: auto;
    padding-right: 20px;
  }

  .role-row {
    min-width: 980px;
    min-height: 70px;
    font-size: 15px;
  }

  .role-row.header {
    font-size: 15px;
  }

  .final-cta {
    top: 108px;
  }

  .final-cta h2 {
    font-size: clamp(28px, 7.6vw, 38px);
    line-height: 1.28;
  }

  .final-cta .btn {
    min-width: 0;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 34px;
  }

  .footer {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 28px;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px 26px;
    padding-top: 28px;
  }

  .footer .brand-wordmark img {
    width: 154px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    margin: 20px 0 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-brand small {
    font-size: 13px;
  }

  .footer-col {
    gap: 10px;
  }

  .footer-col a:nth-of-type(n + 3) {
    display: none;
  }

  .footer strong,
  .subscribe strong {
    font-size: 15px;
  }

  .footer a {
    font-size: 14px;
  }

  .subscribe {
    grid-column: 1 / -1;
  }

  .socials {
    gap: 22px;
    margin: 0;
  }

  .subscribe label {
    grid-template-columns: 1fr minmax(86px, 24vw);
  }

  .subscribe input,
  .subscribe button {
    height: 48px;
  }

  html[lang="en"] .hero-copy {
    width: min(84vw, 430px);
  }

  html[lang="en"] .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(22px, 5.7vw, 29px);
  }

  html[lang="en"] .team-copy,
  html[lang="en"] .collab-title {
    width: auto;
  }

  html[lang="en"] .team-copy h2,
  html[lang="en"] .collab-title h2 {
    max-width: 100%;
  }

  html[lang="en"] .collab-title p:last-child {
    max-width: 330px;
  }

  html[lang="en"] .legend {
    width: auto;
  }

  html[lang="en"] .timeline {
    left: 20px;
    top: 400px;
    width: calc(100vw - 20px);
  }

  html[lang="en"] .collab-methods {
    left: 20px;
    right: auto;
    top: 748px;
    width: calc(100vw - 20px);
    padding: 0 20px 0 0;
  }

  .footer-bottom {
    justify-content: flex-start;
    gap: 18px;
    margin-top: 0;
    padding-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-network {
    display: none;
  }

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