:root {
  --paper: #f6f3ee;
  --ink: #141412;
  --muted: #68645e;
  --line: rgba(20, 20, 18, 0.18);
  --blue: #284b63;
  --green: #1f6f5b;
  --copper: #9c6b3f;
  --white: #fffdfa;
}

body.high-contrast {
  --paper: #0e0e0c;
  --ink: #f7f4ec;
  --muted: #aaa49a;
  --line: rgba(247, 244, 236, 0.2);
  --blue: #a7c4d7;
  --green: #93c7b4;
  --copper: #d7ad7a;
  --white: #181815;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

body.high-contrast {
  background: var(--paper);
}

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

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

#line-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.78;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
  backdrop-filter: blur(18px);
  background: rgba(246, 243, 238, 0.72);
  border-bottom: 1px solid var(--line);
}

.mark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

nav a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.nav-en {
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(104, 100, 94, 0.72);
}

.contrast-toggle {
  width: 42px;
  height: 24px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.contrast-toggle:hover {
  color: var(--ink);
}

.section-band {
  position: relative;
  z-index: 1;
  padding: clamp(78px, 11vw, 150px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(18px, 5vw, 72px);
  width: 72px;
  height: 1px;
  background: var(--ink);
}

.section-band::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(18px, 5vw, 72px);
  width: 1px;
  height: 72px;
  background: var(--ink);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding-top: 112px;
}

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

.binary-band {
  max-width: 760px;
  margin-bottom: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  color: rgba(104, 100, 94, 0.42);
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.26em;
  animation: data-drift 18s linear infinite;
}

.versions .binary-band {
  color: rgba(255, 253, 250, 0.34);
  border-color: rgba(255, 253, 250, 0.18);
}

@keyframes data-drift {
  from {
    text-indent: 0;
  }
  to {
    text-indent: -220px;
  }
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow-en,
.section-en,
.title-en,
.lead-en,
.en,
figcaption span,
.metric span,
.version-hint span {
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}

.eyebrow-en {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7.8vw, 116px);
  line-height: 0.95;
  font-weight: 800;
  max-width: 980px;
}

.hero h1 {
  font-size: clamp(36px, 5.4vw, 78px);
  white-space: normal;
}

.title-en {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
}

h2 {
  font-size: clamp(30px, 4.6vw, 70px);
  line-height: 1.02;
  font-weight: 760;
  max-width: 1080px;
}

h3 {
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1.15;
}

.lead {
  margin-bottom: 10px;
  max-width: 620px;
  font-size: clamp(19px, 2vw, 29px);
}

.lead-en {
  max-width: 600px;
  font-size: clamp(15px, 1.35vw, 20px);
}

.section-en {
  max-width: 780px;
  margin-top: -44px;
  font-size: clamp(15px, 1.4vw, 20px);
}

.flow-step .en,
.version-card .en,
.roadmap-list .en,
.position aside .en {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 62vh;
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-media::before,
.case-image::before,
.interior::before,
.roadmap-vision figure::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(20, 20, 18, 0.12);
  pointer-events: none;
  z-index: 4;
}

.hero-media::after,
.case-image::after,
.interior::after,
.roadmap-vision figure::after {
  content: "SPATIAL DRAWING";
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  color: rgba(20, 20, 18, 0.42);
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.hero-media::after {
  content: none;
}

.hero-media img,
.hero-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 62vh;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
}

.metric {
  position: absolute;
  z-index: 4;
  padding: 8px 10px;
  background: rgba(255, 253, 250, 0.78);
  border: 1px solid rgba(20, 20, 18, 0.22);
  font-size: 12px;
  color: var(--ink);
}

.metric span {
  font-size: 11px;
}

.metric-a {
  left: 18px;
  top: 18px;
}

.metric-b {
  right: 18px;
  bottom: 18px;
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 70px);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.flow-step {
  min-height: 340px;
  padding: clamp(22px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(20, 20, 18, 0.035) 49%, transparent 51%),
    rgba(255, 253, 250, 0.38);
}

.flow-step span,
.roadmap-list span {
  display: block;
  margin-bottom: 34px;
  font-family: "Courier New", monospace;
  color: var(--green);
}

.flow-step p,
.timeline p,
.roadmap-list p,
.position aside p {
  color: var(--muted);
  font-size: 16px;
}

.versions {
  background: #191916;
  color: var(--white);
}

.versions .eyebrow,
.versions time {
  color: #93c7b4;
}

.versions .eyebrow-en,
.versions .section-en,
.versions .version-hint span,
.versions .version-card .en {
  color: rgba(255, 253, 250, 0.48);
}

.versions .section-heading h2 {
  color: var(--white);
}

.version-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -26px 0 18px;
  font-size: 12px;
  color: rgba(255, 253, 250, 0.62);
  letter-spacing: 0.1em;
}

.version-edge {
  color: rgba(255, 253, 250, 0.86);
  white-space: nowrap;
}

.version-drag {
  text-align: center;
}

.version-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 27vw);
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 28px;
  cursor: grab;
  scroll-snap-type: x proximity;
  scrollbar-color: #93c7b4 rgba(255, 253, 250, 0.12);
  scrollbar-width: thin;
}

.version-rail.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.version-card {
  position: relative;
  min-height: 520px;
  padding: 0 0 24px;
  border: 1px solid rgba(255, 253, 250, 0.18);
  background:
    linear-gradient(rgba(255, 253, 250, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 250, 0.045) 1px, transparent 1px),
    rgba(255, 253, 250, 0.055);
  background-size: 22px 22px;
  scroll-snap-align: start;
  overflow: hidden;
}

.version-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(147, 199, 180, 0.16) 49%, transparent 52%),
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(255, 253, 250, 0.035) 18px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.version-card:hover::before {
  opacity: 1;
}

.version-card img {
  position: relative;
  z-index: 2;
  height: 250px;
  object-fit: contain;
  background: #f7f5f0;
  border-bottom: 1px solid rgba(255, 253, 250, 0.18);
  filter: saturate(0.8) contrast(1.05);
  cursor: zoom-in;
}

.version-card time {
  display: block;
  margin: 22px 22px 12px;
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.version-card h3 {
  margin: 0 22px 14px;
  color: var(--white);
}

.version-card .title-en {
  display: block;
  margin-top: 5px;
  color: rgba(255, 253, 250, 0.56);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.version-card p {
  margin: 0 22px;
  color: rgba(255, 253, 250, 0.68);
  font-size: 15px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.case-image {
  position: relative;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.case-image.wide {
  grid-column: 1 / -1;
}

.case-image img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.82);
}

.case-image figcaption,
.interior figcaption {
  padding: 13px 14px 15px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

figcaption span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.position {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 94px);
  align-items: end;
}

.statement > p {
  margin-bottom: 20px;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 0.98;
  font-weight: 780;
}

.statement > p:nth-child(2) {
  color: var(--blue);
  font-size: clamp(26px, 3.8vw, 56px);
  white-space: nowrap;
}

.statement > p:nth-child(3) {
  color: var(--copper);
}

.statement-en {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 30px;
  max-width: 720px;
}

.statement-en p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
  white-space: normal;
}

.statement-en p:nth-child(2) {
  color: var(--blue);
}

.statement-en p:nth-child(3) {
  color: var(--copper);
}

.position aside {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

.interior {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.interior img,
.interior video {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.roadmap-vision {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.roadmap-vision figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.roadmap-vision img,
.roadmap-vision video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
}

.vision-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

.vision-copy p {
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.3;
}

.vision-copy .en {
  margin-top: -8px;
  margin-bottom: 26px;
  font-size: clamp(14px, 1.25vw, 18px);
}

.infrastructure-bridge {
  margin: 0 0 clamp(30px, 4vw, 54px);
  padding: clamp(24px, 3.4vw, 42px) 0 0;
  border-top: 1px solid var(--ink);
}

.infrastructure-bridge p {
  max-width: 1180px;
  margin-bottom: 14px;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.24;
  font-weight: 720;
}

.infrastructure-bridge p span {
  display: block;
}

.infrastructure-bridge .en {
  max-width: 760px;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 400;
}

.world-structure-pipeline {
  margin-bottom: clamp(42px, 6vw, 78px);
}

.pipeline-label {
  margin-bottom: 14px;
}

.pipeline-label p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pipeline-label p span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.pipeline-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.pipeline-card {
  position: relative;
  min-height: 250px;
  padding: clamp(18px, 2.2vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.5), rgba(255, 253, 250, 0.22)),
    rgba(40, 75, 99, 0.045);
}

.pipeline-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  background: var(--paper);
  transform: translateY(-50%) rotate(45deg);
}

.pipeline-card:last-child::after {
  content: none;
}

.pipeline-card span,
.knowledge-parameter span {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.pipeline-card h3 {
  margin-bottom: 18px;
}

.pipeline-card .title-en {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.pipeline-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
}

.pipeline-card .en {
  font-size: 12px;
}

.knowledge-parameter {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  margin-top: 14px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(156, 107, 63, 0.36);
  background:
    linear-gradient(90deg, rgba(156, 107, 63, 0.1), rgba(31, 111, 91, 0.055)),
    rgba(255, 253, 250, 0.42);
}

.knowledge-parameter span {
  margin-bottom: 8px;
  color: var(--copper);
}

.knowledge-parameter h3 {
  margin-bottom: 0;
}

.knowledge-parameter p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
}

.knowledge-parameter .en {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.roadmap-list article {
  min-height: 290px;
  padding: clamp(20px, 2.4vw, 32px);
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.38);
}

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

.roadmap-list .title-en {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  font-size: 12px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  background: rgba(12, 12, 10, 0.92);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: 94vw;
  max-height: 84vh;
  object-fit: contain;
  background: #f7f5f0;
  border: 1px solid rgba(255, 253, 250, 0.2);
}

.lightbox p {
  max-width: 94vw;
  margin: 14px 0 0;
  color: rgba(255, 253, 250, 0.72);
  font-size: 13px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 22px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 253, 250, 0.42);
  background: transparent;
  color: rgba(255, 253, 250, 0.86);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

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

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

@media (max-width: 980px) {
  .hero,
  .position {
    grid-template-columns: 1fr;
  }

  .flow,
  .pipeline-track,
  .roadmap-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-vision {
    grid-template-columns: 1fr;
  }

  .roadmap-list article {
    border-bottom: 1px solid var(--line);
  }

  .pipeline-card:nth-child(2)::after {
    content: none;
  }

  .knowledge-parameter {
    grid-template-columns: 1fr;
  }
}

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

  .section-band {
    width: 100%;
    max-width: 100vw;
    padding-right: 16px;
    padding-left: 16px;
    overflow-x: hidden;
  }

  .section-band::before,
  .section-band::after {
    left: 16px;
  }

  .site-header {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 10px;
  }

  .nav-en {
    font-size: 8px;
  }

  .contrast-toggle {
    width: 38px;
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 132px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-copy,
  .title-en,
  .lead,
  .lead-en,
  .eyebrow,
  .eyebrow-en {
    max-width: 100%;
    min-width: 0;
  }

  .title-en {
    font-size: 23px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 23px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .lead-en,
  .eyebrow-en {
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(27px, 8vw, 40px);
    line-height: 1.12;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .section-heading,
  .binary-band {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .section-en {
    max-width: 100%;
    margin-top: -20px;
    font-size: 15px;
    line-height: 1.35;
    overflow-wrap: break-word;
  }

  .hero-media,
  .hero-media img,
  .hero-media video {
    min-height: 46vh;
  }

  .flow,
  .case-grid,
  .pipeline-track,
  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .system,
  .flow {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .system {
    overflow: visible;
  }

  .flow {
    border-right: 1px solid var(--line);
    overflow: visible;
  }

  .flow-step {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 22px 18px;
  }

  .flow-step span,
  .roadmap-list span {
    margin-bottom: 22px;
  }

  .flow-step h3,
  .flow-step p,
  .flow-step .en {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .case-image.wide {
    grid-column: auto;
  }

  .case-image img {
    aspect-ratio: 4 / 3;
  }

  .roadmap-vision {
    gap: 20px;
  }

  .roadmap-vision figure {
    min-width: 0;
  }

  .roadmap-vision img,
  .roadmap-vision video {
    height: auto;
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .roadmap-vision figcaption {
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .roadmap-vision figcaption span {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.45;
  }

  .vision-copy {
    min-width: 0;
    justify-content: flex-start;
  }

  .vision-copy p {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .vision-copy .en {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
  }

  .infrastructure-bridge {
    margin-bottom: 28px;
    padding-top: 24px;
  }

  .infrastructure-bridge p {
    font-size: 24px;
    line-height: 1.22;
  }

  .pipeline-track {
    border-right: 1px solid var(--line);
  }

  .pipeline-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .pipeline-card::after {
    top: auto;
    right: 50%;
    bottom: -10px;
    transform: translateX(50%) rotate(135deg);
  }

  .pipeline-card:nth-child(2)::after {
    content: "";
  }

  .knowledge-parameter {
    padding: 20px 18px;
  }

  .metric {
    max-width: calc(100% - 36px);
  }

  .version-hint {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .version-drag {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .statement > p:nth-child(2) {
    white-space: normal;
  }

  .statement-en p {
    font-size: 18px;
  }
}
