:root {
  color-scheme: dark;
  --ink: #090909;
  --ink-soft: #11110f;
  --paper: #f0efe9;
  --muted: rgba(240, 239, 233, 0.62);
  --faint: rgba(240, 239, 233, 0.38);
  --line: rgba(240, 239, 233, 0.14);
  --line-strong: rgba(240, 239, 233, 0.3);
  --acid: #d7ff43;
  --violet: #b8a8ff;
  --orange: #ff8656;
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Noto Sans CJK SC", "Microsoft YaHei", "Microsoft JhengHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink);
  background: var(--acid);
}

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

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

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(20px);
}

.home .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(to bottom, rgba(4, 4, 4, 0.9), transparent);
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -0.03em;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.tm {
  margin-left: 2px;
  color: var(--acid);
  font-size: 0.52em;
  vertical-align: super;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-note {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.header-note:hover {
  color: var(--paper);
}

.desktop-nav a[aria-current="page"]::before {
  content: "•";
  margin-right: 7px;
  color: var(--acid);
}

.header-note {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  color: var(--paper);
  list-style: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 34px;
  right: 0;
  display: grid;
  width: min(82vw, 310px);
  padding: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(9, 9, 9, 0.97);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.mobile-menu nav a {
  padding: 15px 13px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.mobile-menu nav a:last-child {
  border: 0;
}

.home-main {
  min-height: 100svh;
}

.atlas-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(120px, 16vh, 180px) var(--gutter) clamp(26px, 4vh, 54px);
  background: #070707;
}

.prototype-wall {
  --wall-x: 0px;
  --wall-y: 0px;
  position: absolute;
  z-index: -3;
  inset: -16vh -8vw;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  grid-auto-rows: minmax(24vh, 300px);
  gap: clamp(8px, 1vw, 16px);
  transform: translate3d(var(--wall-x), var(--wall-y), 0) rotate(-2.4deg) scale(1.05);
  animation: wall-drift 26s ease-in-out infinite alternate;
  will-change: transform;
}

.prototype-wall figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #151515;
}

.prototype-wall figure:nth-child(2),
.prototype-wall figure:nth-child(7),
.prototype-wall figure:nth-child(10) {
  grid-row: span 2;
}

.prototype-wall figure:nth-child(4),
.prototype-wall figure:nth-child(9) {
  grid-column: span 2;
}

.prototype-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.74) contrast(1.06);
  transform: scale(1.025);
  transition: filter 800ms ease, transform 1000ms ease;
}

.prototype-wall figure:nth-child(3n) img {
  filter: saturate(0.9) brightness(0.68) contrast(1.1);
}

.atlas-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.62) 45%, rgba(3, 3, 3, 0.24) 74%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.96) 0%, transparent 50%, rgba(3, 3, 3, 0.42) 100%);
}

.atlas-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

@keyframes wall-drift {
  from { transform: translate3d(var(--wall-x), calc(var(--wall-y) - 1.5vh), 0) rotate(-2.4deg) scale(1.05); }
  to { transform: translate3d(var(--wall-x), calc(var(--wall-y) + 2vh), 0) rotate(-1.6deg) scale(1.08); }
}

.home-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.home-overline,
.eyebrow,
.section-label,
.media-tag,
.page-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-overline,
.eyebrow,
.section-label,
.media-tag {
  color: var(--muted);
}

.home-overline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  background: rgba(5, 5, 5, 0.5);
}

.home-overline::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
}

.home-title {
  max-width: 920px;
  margin: clamp(28px, 4vh, 40px) 0 clamp(24px, 3vh, 34px);
  font-size: clamp(58px, 8.2vw, 128px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
  word-spacing: 0.035em;
  text-wrap: balance;
}

.home-intro {
  max-width: 680px;
  margin: 0;
  color: rgba(240, 239, 233, 0.8);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.55;
}

.home-intro span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.84em;
}

.route-dock {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: clamp(44px, 8vh, 86px);
  border: 1px solid var(--line);
  background: var(--line);
}

.route-dock a {
  position: relative;
  display: flex;
  min-height: 96px;
  padding: 16px;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.73);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease;
}

.route-dock a:hover {
  color: var(--ink);
  background: var(--acid);
}

.route-dock small {
  color: var(--faint);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.route-dock a:hover small {
  color: rgba(9, 9, 9, 0.55);
}

.route-dock strong {
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: -0.025em;
}

.home-manifesto {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.home-manifesto:hover {
  color: var(--acid);
}

.archive-credits {
  position: absolute;
  z-index: 8;
  top: calc(var(--header-height) + 14px);
  right: var(--gutter);
  color: var(--muted);
  font-size: 10px;
}

.archive-credits summary {
  width: max-content;
  margin-left: auto;
  padding: 8px 10px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  list-style: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(5, 5, 5, 0.62);
}

.archive-credits summary::-webkit-details-marker {
  display: none;
}

.archive-credits summary:hover,
.archive-credits[open] summary {
  color: var(--paper);
  border-color: rgba(240, 239, 233, 0.48);
}

.archive-credits__panel {
  position: absolute;
  top: 40px;
  right: 0;
  width: min(88vw, 480px);
  max-height: min(72svh, 640px);
  padding: 22px;
  overflow: auto;
  border: 1px solid var(--line-strong);
  background: rgba(9, 9, 9, 0.97);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
}

.archive-credits__panel h2 {
  margin: 0;
  color: var(--paper);
  font-size: 14px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.archive-credits__panel > p {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.archive-credits__panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.archive-credits__panel li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.8fr);
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}

.archive-credits__panel li > a {
  color: var(--paper);
}

.archive-credits__panel a:hover {
  color: var(--acid);
}

.archive-credits__panel li > span {
  color: var(--faint);
  text-align: right;
}

.page-main {
  position: relative;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: min(820px, calc(100svh - var(--header-height)));
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 0 var(--gutter) clamp(42px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
}

.page-hero__media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) brightness(0.82) contrast(1.06);
}

.page-hero__media.is-contain img {
  object-fit: contain;
  object-position: 72% center;
  padding: clamp(40px, 7vw, 100px);
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.93) 0%, rgba(5, 5, 5, 0.62) 46%, rgba(5, 5, 5, 0.16) 80%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.12) 65%);
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.34);
}

.page-hero__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.page-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--acid);
}

.page-title {
  max-width: 940px;
  margin: 0;
  font-size: clamp(60px, 8.6vw, 136px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.page-deck {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: end;
  margin-top: clamp(28px, 5vw, 54px);
}

.page-deck > p {
  max-width: 740px;
  margin: 0;
  color: rgba(240, 239, 233, 0.78);
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.5;
}

.page-deck .zh {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.section {
  padding: clamp(78px, 11vw, 150px) var(--gutter);
  border-bottom: 1px solid var(--line);
}

.section--compact {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1.62fr);
  gap: clamp(34px, 8vw, 128px);
}

.section-label {
  padding-top: 8px;
}

.section-label span {
  display: block;
  margin-top: 8px;
  color: var(--faint);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.display-copy {
  max-width: 1030px;
  margin: 0;
  font-size: clamp(36px, 5.2vw, 74px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.045em;
  word-spacing: 0.035em;
  text-wrap: balance;
}

.display-copy em {
  color: var(--acid);
  font-style: normal;
}

.body-copy {
  max-width: 820px;
  margin-top: 42px;
}

.body-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
}

.body-copy .lead {
  color: var(--paper);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.6;
}

.shift-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 70px;
  border: 1px solid var(--line);
  background: var(--line);
}

.shift-item {
  min-height: 180px;
  padding: 22px;
  background: var(--ink-soft);
}

.shift-item span {
  display: block;
}

.shift-from {
  color: var(--muted);
  font-size: 13px;
}

.shift-arrow {
  margin: 34px 0;
  color: var(--acid);
}

.shift-to {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.18;
}

.concept-grid,
.signal-grid,
.contact-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  border: 1px solid var(--line);
  background: var(--line);
}

.concept-card,
.signal-card,
.contact-card,
.legal-card {
  position: relative;
  min-height: 300px;
  padding: clamp(22px, 3vw, 38px);
  overflow: hidden;
  background: var(--ink-soft);
}

.concept-card::after,
.signal-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(215, 255, 67, 0.3);
  border-radius: 50%;
  opacity: 0.4;
}

.card-index {
  display: block;
  margin-bottom: 72px;
  color: var(--faint);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.concept-card h3,
.signal-card h3,
.contact-card h3,
.legal-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 560;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.concept-card p,
.signal-card p,
.contact-card p,
.legal-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: clamp(8px, 1vw, 14px);
}

.media-card {
  position: relative;
  grid-column: span 6;
  min-height: clamp(320px, 47vw, 650px);
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: #121212;
}

.media-card--wide {
  grid-column: span 8;
}

.media-card--small {
  grid-column: span 4;
}

.media-card--tall {
  min-height: clamp(540px, 70vw, 880px);
}

.media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) brightness(0.9) contrast(1.04);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

.media-card:hover img {
  transform: scale(1.025);
}

.media-card figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 42px 20px 18px;
  color: var(--muted);
  background: linear-gradient(transparent, rgba(5, 5, 5, 0.92));
  font-size: 11px;
  line-height: 1.5;
}

.media-card figcaption strong {
  color: var(--paper);
  font-size: 13px;
  font-weight: 560;
}

.media-card--contain img {
  object-fit: contain;
  padding: 8%;
  background: radial-gradient(circle, #242424, #0d0d0d 70%);
}

.metric {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 46px;
  color: var(--paper);
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

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

.signal-card {
  min-height: 340px;
}

.signal-card--image {
  padding: 0;
  min-height: 500px;
}

.signal-card--image::after {
  display: none;
}

.signal-card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) brightness(0.88) contrast(1.05);
}

.signal-card--image .image-note {
  position: absolute;
  inset: auto 0 0;
  padding: 80px 28px 24px;
  background: linear-gradient(transparent, rgba(5, 5, 5, 0.94));
}

.signal-card--image .image-note p {
  margin-top: 8px;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  padding: clamp(30px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  align-self: start;
  color: var(--acid);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.timeline-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 540;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.timeline-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.timeline-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #161616;
}

.timeline-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.9) contrast(1.05);
}

.principle-list {
  margin-top: 66px;
  border-top: 1px solid var(--line);
}

.principle-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: clamp(20px, 5vw, 70px);
  padding: clamp(28px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--line);
}

.principle-item > span {
  padding-top: 6px;
  color: var(--acid);
  font-size: 11px;
}

.principle-item h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 530;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.principle-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.quote-band {
  position: relative;
  min-height: min(800px, 88svh);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: var(--gutter);
  text-align: center;
}

.quote-band img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.6);
}

.quote-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.quote-band blockquote {
  max-width: 1100px;
  margin: 0;
  font-family: "Iowan Old Style", "Songti TC", "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  word-spacing: 0.025em;
}

.quote-band blockquote span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Noto Sans CJK SC", "Microsoft YaHei", "Microsoft JhengHei", sans-serif;
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: 0;
}

.contact-grid {
  margin-top: 0;
}

.contact-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  transition: background 180ms ease, color 180ms ease;
}

.contact-card:hover {
  color: var(--ink);
  background: var(--acid);
}

.contact-card:hover p,
.contact-card:hover .card-index {
  color: rgba(9, 9, 9, 0.62);
}

.contact-card h3 {
  margin-top: auto;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 980px);
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  font-size: clamp(24px, 5vw, 68px);
  letter-spacing: -0.055em;
}

.contact-email:hover {
  color: var(--acid);
}

.legal-grid {
  grid-template-columns: repeat(3, 1fr);
}

.legal-card {
  min-height: 390px;
}

.legal-card .card-index {
  color: var(--acid);
}

.legal-note {
  margin: 44px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
  line-height: 1.8;
}

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

.mark-tile {
  display: flex;
  min-height: 260px;
  padding: 26px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink-soft);
}

.mark-tile small {
  color: var(--faint);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mark-word {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.mark-symbol {
  width: 76px;
  height: 76px;
}

.mark-seal {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 750;
}

.page-next {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  min-height: 360px;
  padding: clamp(72px, 10vw, 140px) var(--gutter);
  background: var(--paper);
  color: var(--ink);
}

.page-next > div {
  width: min(100%, var(--max));
}

.page-next small {
  display: block;
  margin-bottom: 22px;
  color: rgba(9, 9, 9, 0.5);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-next strong {
  display: block;
  font-size: clamp(50px, 9vw, 128px);
  font-weight: 540;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.page-next > span {
  align-self: center;
  font-size: clamp(34px, 5vw, 70px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px var(--gutter) 44px;
  color: var(--faint);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.site-footer a:hover {
  color: var(--paper);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1040px) {
  .desktop-nav,
  .header-note {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    display: block;
  }

  .route-dock {
    grid-template-columns: repeat(3, 1fr);
  }

  .shift-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .timeline-item {
    grid-template-columns: 120px 1fr;
  }

  .timeline-visual {
    grid-column: 2;
    width: min(100%, 520px);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .atlas-hero {
    min-height: 100svh;
  }

  .prototype-wall {
    inset: -12vh -72vw;
    grid-template-columns: repeat(4, minmax(230px, 1fr));
    opacity: 0.86;
  }

  .atlas-hero::before {
    background: linear-gradient(0deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.54) 62%, rgba(3, 3, 3, 0.65) 100%);
  }

  .archive-credits {
    top: calc(var(--header-height) + 10px);
  }

  .archive-credits__panel li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .archive-credits__panel li > span {
    text-align: left;
  }

  .home-title {
    font-size: clamp(50px, 16vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

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

  .route-dock a {
    min-height: 82px;
  }

  .page-hero {
    min-height: 720px;
  }

  .page-title {
    font-size: clamp(54px, 17vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .page-deck,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .section-label {
    padding: 0;
  }

  .shift-grid {
    grid-template-columns: 1fr;
  }

  .shift-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    min-height: 0;
  }

  .shift-arrow {
    margin: 0;
  }

  .concept-grid,
  .signal-grid,
  .legal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .concept-card,
  .signal-card,
  .contact-card,
  .legal-card {
    min-height: 270px;
  }

  .media-card,
  .media-card--wide,
  .media-card--small {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .media-card--tall {
    min-height: 620px;
  }

  .timeline-item,
  .principle-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline-visual {
    grid-column: 1;
  }

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

  .mark-tile {
    min-height: 210px;
  }

  .page-next {
    grid-template-columns: 1fr auto;
    min-height: 300px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .home-title {
    font-size: clamp(56px, 7vw, 108px);
  }

  .page-title {
    font-size: clamp(58px, 7.4vw, 112px);
  }
}

@media (max-width: 460px) {
  .page-hero {
    min-height: 650px;
  }

  .home-intro span {
    display: none;
  }

  .route-dock small {
    display: none;
  }

  .route-dock a {
    min-height: 62px;
  }

  .mark-grid {
    grid-template-columns: 1fr;
  }

  .mark-tile {
    min-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .prototype-wall {
    transform: rotate(-2deg) scale(1.05);
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
