:root {
  --ink: #24252c;
  --ink-deep: #16171b;
  --muted: #646464;
  --soft: #adadad;
  --line: #e8eaeb;
  --paper: #ffffff;
  --wash: #f4f6f7;
  --accent: #ff5b4d;
  --radius: 16px;
  --header-height: 76px;
  --wrap: min(100% - 80px, 1440px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

th\:block {
  display: contents;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.small { --radius: 6px; }
body.medium { --radius: 16px; }
body.large { --radius: 28px; }

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

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: #fff;
  background: var(--accent);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section {
  padding-block: clamp(92px, 10vw, 180px);
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.4;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .54);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 28px;
  padding-inline: 32px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: height .4s var(--ease), color .35s, background .35s, border-color .35s, box-shadow .35s;
}

.site-header.is-solid,
.content-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(18, 20, 25, .035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-compact {
  height: 64px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--accent);
  border-radius: 9px;
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark.inverse {
  color: var(--ink);
  background: #fff;
}

.brand-name {
  margin-left: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.08em;
}

.brand-divider {
  width: 1px;
  height: 14px;
  margin-inline: 12px;
  background: currentColor;
  opacity: .24;
}

.brand-domain {
  color: currentColor;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .72;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding-block: 9px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}

.header-contact svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform .3s var(--ease);
}

.header-contact:hover svg {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .35s var(--ease);
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: 0;
  display: none;
  color: #fff;
  background: var(--ink-deep);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 44px) 24px 28px;
}

.mobile-menu nav {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-block: 17px;
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 600;
  letter-spacing: -.04em;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.mobile-menu nav a span {
  color: rgba(255, 255, 255, .44);
  font-size: 10px;
  letter-spacing: .12em;
}

.mobile-menu-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 30px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 740px;
  height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #111216;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 28%, transparent 67%, rgba(0, 0, 0, .5));
  pointer-events: none;
}

.hero-stage,
.hero-grid,
.grain {
  position: absolute;
  inset: 0;
}

.hero-stage {
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 91, 77, .16), transparent 31%),
    linear-gradient(135deg, #202126, #101115 48%, #25262b);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .42;
  will-change: transform;
}

.hero-glow-one {
  width: 48vw;
  height: 48vw;
  top: -28vw;
  right: -7vw;
  background: var(--accent);
}

.hero-glow-two {
  width: 38vw;
  height: 38vw;
  bottom: -27vw;
  left: -10vw;
  background: #5f6476;
}

.hero-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  transform: translate(-50%, -50%) rotate(-12deg);
}

.hero-frame-back {
  width: min(78vw, 1240px);
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0));
  box-shadow: 0 80px 150px rgba(0, 0, 0, .25);
}

.hero-frame-mid {
  width: min(53vw, 820px);
  aspect-ratio: 16 / 9;
  border-color: rgba(255, 255, 255, .22);
  transform: translate(-50%, -50%) rotate(13deg);
  background: rgba(255, 255, 255, .018);
  box-shadow: inset 0 0 100px rgba(255, 255, 255, .03);
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(68vw, 1060px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(70deg) rotateZ(-9deg);
}

.hero-orbit span {
  position: absolute;
  top: 48%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--accent);
  animation: orbit-dot 9s linear infinite;
}

.hero-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 29vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, .13), rgba(255, 255, 255, .018) 42%, transparent 67%);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, .035), 0 0 120px rgba(0, 0, 0, .25);
}

.core-ring {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  animation: breathe 4.8s ease-in-out infinite;
}

.ring-two {
  inset: 29%;
  border-color: rgba(255, 91, 77, .62);
  animation-delay: -1.6s;
}

.core-dot {
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .08), 0 0 40px #fff;
}

.hero-grid {
  opacity: .15;
  background-image:
    linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: 10vw 10vw;
  mask-image: radial-gradient(circle at center, #000, transparent 76%);
}

.grain {
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.95'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, 960px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding-top: var(--header-height);
  text-align: center;
}

.hero-kicker {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 116px);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .98;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .72);
}

.hero-summary {
  width: min(92%, 610px);
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.button {
  min-width: 134px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding-inline: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color .3s, background .3s, border-color .3s, transform .3s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button-light i {
  font-size: 14px;
  font-style: normal;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.hero-meta {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 26px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 23px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .6);
  font-size: 8px;
  letter-spacing: .18em;
  transform: translateX(-50%);
}

.scroll-hint i {
  width: 1px;
  height: 22px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, .24);
}

.scroll-hint i::after {
  content: "";
  width: 1px;
  height: 10px;
  display: block;
  background: #fff;
  animation: scroll-line 1.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-reveal .9s var(--ease) forwards .18s;
}

.reveal-delay-1 { animation-delay: .3s; }
.reveal-delay-2 { animation-delay: .46s; }
.reveal-delay-3 { animation-delay: .62s; }

/* Shared section heads */
.section-head {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.section-head p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.section-head .section-en {
  color: var(--soft);
  font-size: 10px;
  letter-spacing: .13em;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 700;
}

.section-index i {
  width: 5px;
  height: 5px;
  display: block;
  background: var(--accent);
}

/* Manifesto */
.manifesto {
  background: #fff;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
  gap: clamp(70px, 10vw, 180px);
  padding-top: clamp(60px, 7vw, 108px);
}

.manifesto h2 {
  margin: 0;
  font-size: clamp(50px, 6.7vw, 108px);
  font-weight: 600;
  letter-spacing: -.08em;
  line-height: 1.04;
}

.manifesto h2 em {
  color: var(--soft);
  font-style: normal;
  font-weight: 300;
}

.manifesto-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
}

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

.manifesto-notes {
  display: grid;
  gap: 12px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.manifesto-notes span {
  color: var(--muted);
  font-size: 11px;
}

.manifesto-notes b {
  width: 34px;
  display: inline-block;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: .12em;
}

/* Business */
.business {
  background: var(--wash);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.business-card {
  position: relative;
  min-height: min(72vw, 760px);
  overflow: hidden;
  color: #fff;
  background: var(--ink-deep);
  border-radius: var(--radius);
  isolation: isolate;
}

.business-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, .72));
}

.tech-card {
  color: var(--ink);
  background: #e8eaec;
}

.tech-card::after {
  background: linear-gradient(180deg, transparent 40%, rgba(232, 234, 236, .92));
}

.card-art {
  position: absolute;
  inset: 0;
  transition: transform .9s var(--ease), filter .7s;
}

.business-card:hover .card-art {
  transform: scale(1.025);
}

.media-art {
  background:
    radial-gradient(circle at 70% 21%, rgba(255, 91, 77, .35), transparent 30%),
    linear-gradient(143deg, #34343b, #111216 64%);
}

.media-screen {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .28);
}

.screen-a {
  top: 12%;
  right: 7%;
  width: 68%;
  aspect-ratio: 16 / 9;
  transform: perspective(900px) rotateY(-17deg) rotateZ(7deg);
}

.screen-a::before {
  content: "";
  position: absolute;
  inset: 10%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, .1) 49%, rgba(255, 255, 255, .1) 51%, transparent 52%),
    linear-gradient(transparent 48%, rgba(255, 255, 255, .1) 49%, rgba(255, 255, 255, .1) 51%, transparent 52%);
}

.screen-b {
  top: 36%;
  left: 2%;
  width: 56%;
  aspect-ratio: 16 / 10;
  border-color: rgba(255, 91, 77, .45);
  transform: perspective(900px) rotateY(17deg) rotateZ(-10deg);
  background: linear-gradient(145deg, rgba(255, 91, 77, .14), transparent);
}

.media-timecode {
  position: absolute;
  top: 17%;
  left: 10%;
  color: rgba(255, 255, 255, .56);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .08em;
}

.media-play {
  position: absolute;
  top: 29%;
  left: 50%;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  transform: translateX(-50%);
}

.media-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.tech-art {
  background: linear-gradient(140deg, #f7f8f8, #d8dcdf);
}

.tech-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(#aeb3b7 1px, transparent 1px), linear-gradient(90deg, #aeb3b7 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.tech-window {
  position: absolute;
  top: 15%;
  left: 12%;
  width: 76%;
  height: 39%;
  padding: 20px;
  border: 1px solid rgba(36, 37, 44, .25);
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 45px 100px rgba(74, 79, 87, .15);
  backdrop-filter: blur(8px);
  transform: perspective(1000px) rotateX(7deg) rotateY(-6deg);
}

.tech-window::before,
.tech-window::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.tech-window::before { right: 29px; }
.tech-window::after { right: 16px; background: var(--ink); opacity: .3; }

.tech-window > span {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .14em;
}

.tech-wave {
  height: calc(100% - 38px);
  display: flex;
  align-items: flex-end;
  gap: 8%;
  padding: 30px 7% 0;
  border-bottom: 1px solid rgba(36, 37, 44, .22);
}

.tech-wave i {
  width: 12%;
  height: 38%;
  display: block;
  background: var(--ink);
  border-radius: 2px 2px 0 0;
  opacity: .82;
}

.tech-wave i:nth-child(2) { height: 65%; }
.tech-wave i:nth-child(3) { height: 45%; background: var(--accent); }
.tech-wave i:nth-child(4) { height: 86%; }
.tech-wave i:nth-child(5) { height: 70%; }

.tech-cursor {
  position: absolute;
  top: 50%;
  right: 11%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(36, 37, 44, .18);
}

.card-number,
.card-copy,
.card-arrow {
  position: absolute;
  z-index: 2;
}

.card-number {
  top: 25px;
  left: 26px;
  color: rgba(255, 255, 255, .52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.tech-card .card-number {
  color: rgba(36, 37, 44, .48);
}

.card-copy {
  right: 32px;
  bottom: 35px;
  left: 32px;
}

.card-copy > p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.tech-card .card-copy > p { color: rgba(36, 37, 44, .48); }

.card-copy h3 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: 1;
}

.card-copy strong {
  display: block;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
}

.card-copy > span {
  width: min(82%, 480px);
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.8;
}

.tech-card .card-copy > span { color: rgba(36, 37, 44, .6); }

.card-arrow {
  right: 27px;
  bottom: 34px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-style: normal;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  transition: transform .35s var(--ease), background .35s, color .35s;
}

.tech-card .card-arrow {
  border-color: rgba(36, 37, 44, .25);
}

.business-card:hover .card-arrow {
  color: var(--ink);
  background: #fff;
  transform: rotate(45deg);
}

.tech-card:hover .card-arrow {
  color: #fff;
  background: var(--ink);
}

/* Capability ticker */
.capabilities {
  overflow: hidden;
  padding-block: 42px;
  color: #fff;
  background: var(--ink);
}

.capability-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: ticker 34s linear infinite;
}

.capability-track span {
  font-size: clamp(25px, 3vw, 46px);
  font-weight: 300;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.capability-track i {
  width: 7px;
  height: 7px;
  display: block;
  flex: 0 0 auto;
  background: var(--accent);
}

/* Stories */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 16px;
  padding-top: 40px;
}

.preview-mode .halo-story {
  display: none;
}

.story-card {
  min-width: 0;
}

.story-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--wash);
  border-radius: var(--radius);
}

.story-media img,
.story-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.story-media img {
  z-index: 2;
}

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

.story-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px),
    var(--accent);
  background-size: 48px 48px;
}

.story-placeholder span {
  font-size: clamp(64px, 10vw, 160px);
  font-weight: 700;
  letter-spacing: -.09em;
}

.story-placeholder-dark {
  color: rgba(255, 255, 255, .74);
  background:
    radial-gradient(circle at center, #3a3b42 0 2px, transparent 3px),
    var(--ink);
  background-size: 22px 22px;
}

.story-placeholder-light {
  color: rgba(36, 37, 44, .5);
  background:
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(36, 37, 44, .045) 21px 22px),
    #e9ecee;
}

.story-body {
  padding: 20px 2px 0;
}

.story-body p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  color: var(--soft);
  font-size: 10px;
  letter-spacing: .05em;
}

.story-body h3 {
  margin: 14px 0 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.35;
  transition: color .3s;
}

.story-card:hover h3 {
  color: var(--accent);
}

.story-more {
  display: inline-block;
  margin-top: 25px;
  color: var(--muted);
  font-size: 11px;
}

.text-link {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 64px 0 0 auto;
  padding-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
}

.text-link span {
  transition: transform .3s var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Two-city map */
.group-map {
  color: #fff;
  background: #1b1c21;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(310px, .68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.map-copy h2 {
  margin: 25px 0 28px;
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: 1.08;
}

.map-copy > p:last-child {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  line-height: 1.95;
}

.map-visual svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.map-visual circle {
  fill: var(--accent);
}

.map-line {
  fill: none;
  stroke: rgba(255, 255, 255, .16);
  stroke-width: 1;
}

.map-line-dash {
  stroke: var(--accent);
  stroke-dasharray: 3 16;
  stroke-linecap: round;
  animation: route 20s linear infinite;
}

.map-visual text {
  fill: rgba(255, 255, 255, .72);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .08em;
}

.map-visual g text:last-child {
  fill: rgba(255, 255, 255, .35);
  font-size: 9px;
}

.map-pulse circle {
  fill: none;
  stroke: rgba(255, 91, 77, .4);
  stroke-width: 1;
}

.map-pulse circle:nth-child(2) {
  stroke: rgba(255, 255, 255, .18);
}

.map-pulse path {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer */
.site-footer {
  color: #fff;
  background: #111216;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 80px;
  padding-block: clamp(90px, 10vw, 170px);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-top h2 {
  margin: 27px 0 0;
  font-size: clamp(48px, 6.2vw, 98px);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: 1.06;
}

.footer-mail {
  min-width: min(100%, 390px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-bottom: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .65);
}

.footer-mail svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  transition: transform .3s var(--ease);
}

.footer-mail:hover svg {
  transform: translateX(6px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-block: 55px 65px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand strong {
  font-size: 14px;
}

.footer-grid > div:not(:first-child) > span {
  color: rgba(255, 255, 255, .38);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
}

.footer-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  letter-spacing: .08em;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom button {
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* Content pages */
.content-page main {
  min-height: 75vh;
  padding-top: var(--header-height);
}

.page-hero {
  padding-block: clamp(84px, 10vw, 150px) 62px;
  background: var(--wash);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
}

.page-hero .section-index {
  align-self: start;
  margin-top: 17px;
}

.page-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: 1.05;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 11px;
}

.page-hero-meta a,
.page-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-hero-meta a::before,
.page-hero-meta > span::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent);
}

.article-cover {
  margin: 40px auto 0;
}

.article-cover img {
  width: 100%;
  max-height: 76vh;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
  padding-block: 80px 140px;
}

.prose {
  min-width: 0;
  color: #36373d;
  font-size: 16px;
  line-height: 1.95;
}

.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.35;
}

.prose h2 { margin: 2.5em 0 .9em; font-size: 32px; }
.prose h3 { margin: 2.2em 0 .8em; font-size: 24px; }
.prose p { margin: 1.35em 0; }
.prose a { color: var(--accent); border-bottom: 1px solid currentColor; }
.prose strong { color: var(--ink); }
.prose img { max-width: 100%; height: auto; border-radius: var(--radius); }
.prose figure { margin: 2.5em 0; }
.prose figcaption { margin-top: 10px; color: var(--soft); font-size: 11px; text-align: center; }

.prose blockquote {
  margin: 2.2em 0;
  padding: 3px 0 3px 24px;
  color: var(--muted);
  border-left: 3px solid var(--accent);
}

.prose pre {
  overflow-x: auto;
  padding: 22px;
  color: #e9ecef;
  background: var(--ink);
  border-radius: 10px;
}

.prose code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .88em;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.article-aside > span {
  color: var(--soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.article-aside p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.tag-list a {
  padding: 7px 10px;
  color: var(--muted);
  font-size: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color .2s, border-color .2s;
}

.tag-list a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.article-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 70px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-navigation a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  background: #fff;
  transition: background .25s;
}

.article-navigation a:hover { background: var(--wash); }
.article-navigation span { color: var(--soft); font-size: 9px; letter-spacing: .1em; }
.article-navigation strong { font-size: 15px; line-height: 1.5; }
.article-navigation a:last-child { text-align: right; }

.listing-section {
  padding-block: 55px 140px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 16px;
}

.listing-grid .story-body h3 {
  font-size: 21px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 80px;
}

.pagination a,
.pagination span {
  min-width: 90px;
  padding: 12px 16px;
  font-size: 11px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.pagination span {
  min-width: auto;
  color: var(--soft);
  border: 0;
}

.taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-block: 55px 140px;
}

.taxonomy-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--wash);
  border-radius: var(--radius);
  transition: color .35s, background .35s, transform .35s var(--ease);
}

.taxonomy-card:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-5px);
}

.taxonomy-card > span {
  color: var(--soft);
  font-size: 10px;
  letter-spacing: .1em;
}

.taxonomy-card strong {
  font-size: 28px;
  letter-spacing: -.04em;
}

.archive-list {
  padding-block: 30px 140px;
}

.archive-year {
  display: grid;
  grid-template-columns: 170px 1fr;
  padding-block: 45px;
  border-bottom: 1px solid var(--line);
}

.archive-year > h2 {
  margin: 0;
  color: var(--soft);
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -.05em;
}

.archive-month + .archive-month {
  margin-top: 38px;
}

.archive-month > h3 {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
}

.archive-month a {
  display: grid;
  grid-template-columns: 105px 1fr auto;
  align-items: center;
  gap: 25px;
  padding-block: 17px;
  border-top: 1px solid var(--line);
}

.archive-month time {
  color: var(--soft);
  font-size: 10px;
}

.archive-month strong {
  font-size: 15px;
  font-weight: 500;
}

.archive-month i {
  font-style: normal;
  transition: transform .3s var(--ease);
}

.archive-month a:hover i { transform: translate(3px, -3px); }

.empty-state {
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--soft);
  font-size: 13px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.taxonomy-card i {
  align-self: flex-end;
  font-style: normal;
  transition: transform .3s var(--ease);
}

.taxonomy-card:hover i {
  transform: translate(3px, -3px);
}

.error-screen {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
  padding-block: 80px;
}

.error-screen h1 {
  margin: 18px 0 0;
  color: var(--accent);
  font-size: clamp(110px, 17vw, 250px);
  font-weight: 600;
  letter-spacing: -.09em;
  line-height: .85;
}

.error-screen h2 {
  margin: 35px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.04em;
}

.error-screen p:not(.eyebrow) {
  margin: 15px 0 30px;
  color: var(--muted);
  font-size: 13px;
}

.button-dark {
  width: max-content;
  color: #fff;
  background: var(--ink);
}

.button-dark i { font-style: normal; }

.error-visual {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.error-visual span {
  position: absolute;
  inset: 18%;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.error-visual span:nth-child(2) {
  inset: 37%;
  border-color: var(--accent);
}

.error-visual i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  height: 1px;
  background: var(--accent);
  transform: translate(-50%, -50%) rotate(-36deg);
}

/* Entrance transitions */
[data-reveal-section] .section-head,
[data-reveal-section] .manifesto-grid,
[data-reveal-section] .business-grid,
[data-reveal-section] .story-grid,
[data-reveal-section] .map-copy,
[data-reveal-section] .map-visual {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-reveal-section].is-visible .section-head,
[data-reveal-section].is-visible .manifesto-grid,
[data-reveal-section].is-visible .business-grid,
[data-reveal-section].is-visible .story-grid,
[data-reveal-section].is-visible .map-copy,
[data-reveal-section].is-visible .map-visual {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-section].is-visible .business-grid,
[data-reveal-section].is-visible .story-grid,
[data-reveal-section].is-visible .map-visual {
  transition-delay: .12s;
}

/* Keyframes */
@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-line {
  0% { transform: translateY(-110%); }
  55%, 100% { transform: translateY(220%); }
}

@keyframes breathe {
  0%, 100% { transform: scale(.96); opacity: .45; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes orbit-dot {
  to { offset-distance: 100%; }
}

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

@keyframes route {
  to { stroke-dashoffset: -190; }
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --wrap: min(100% - 48px, 1440px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 24px;
  }

  .desktop-nav { display: none; }
  .header-contact { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .mobile-menu { display: block; }

  .manifesto-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
    gap: 60px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
    --wrap: calc(100% - 32px);
  }

  .section {
    padding-block: 88px;
  }

  .site-header {
    height: var(--header-height);
    padding-inline: 16px;
  }

  .brand-mark { width: 30px; height: 30px; border-radius: 8px; }
  .brand-name { font-size: 17px; }
  .brand-divider { margin-inline: 9px; }
  .brand-domain { font-size: 8px; }

  .hero {
    min-height: 650px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    justify-content: flex-end;
    align-items: flex-start;
    padding: var(--header-height) 0 116px;
    text-align: left;
  }

  .hero-kicker { margin-bottom: 17px; }

  .hero h1 {
    font-size: clamp(49px, 14vw, 78px);
    line-height: 1.01;
  }

  .hero-summary {
    width: 95%;
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.8;
  }

  .hero-actions { margin-top: 24px; }
  .button { min-width: 120px; height: 42px; }

  .hero-frame-back { width: 120vw; top: 33%; }
  .hero-frame-mid { width: 84vw; top: 33%; }
  .hero-core { top: 33%; width: 58vw; }
  .hero-orbit { top: 33%; width: 110vw; }
  .hero-glow-one { width: 90vw; height: 90vw; top: -50vw; }
  .hero-grid { background-size: 22vw 22vw; }

  .hero-meta {
    right: 16px;
    bottom: 18px;
    left: 16px;
  }

  .hero-meta span:last-child { display: none; }
  .scroll-hint { right: 16px; bottom: 16px; left: auto; transform: none; }
  .scroll-hint span { display: none; }

  .section-head {
    grid-template-columns: 56px 1fr;
    padding-bottom: 18px;
  }

  .section-en { display: none; }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 55px;
  }

  .manifesto h2 {
    font-size: clamp(48px, 13vw, 72px);
  }

  .manifesto-copy > p { font-size: 14px; line-height: 1.9; }
  .manifesto-notes { margin-top: 30px; }

  .business-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .business-card {
    min-height: 690px;
  }

  .card-copy h3 { font-size: 54px; }
  .card-copy > span { width: calc(100% - 50px); }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 20px;
  }

  .story-body h3 { font-size: 21px; }
  .text-link { margin-top: 50px; }

  .map-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .map-copy h2 { font-size: 54px; }

  .footer-top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 55px;
  }

  .footer-mail { min-width: 0; width: 100%; }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }

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

  .page-hero-inner { grid-template-columns: 55px minmax(0, 1fr); }
  .page-hero .section-index { margin-top: 10px; }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 55px 100px;
  }

  .article-aside {
    position: static;
    order: -1;
  }

  .listing-grid,
  .taxonomy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-year {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .error-screen {
    grid-template-columns: 1fr;
  }

  .error-visual {
    width: min(78vw, 460px);
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .mobile-menu-meta {
    flex-direction: column;
    gap: 7px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button:first-child { flex: 1; }
  .hero-actions .button:last-child { min-width: 112px; }

  .business-card {
    min-height: 580px;
  }

  .card-number { top: 19px; left: 20px; }
  .card-copy { right: 20px; bottom: 23px; left: 20px; }
  .card-copy h3 { font-size: 46px; }
  .card-copy strong { margin-top: 17px; }
  .card-copy > span { width: calc(100% - 35px); font-size: 11px; }
  .card-arrow { right: 19px; bottom: 22px; width: 40px; height: 40px; }

  .media-play { width: 64px; height: 64px; }

  .footer-top h2 { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero .section-index { margin: 0 0 25px; }
  .page-hero h1 { font-size: 48px; }

  .listing-grid,
  .taxonomy-grid {
    grid-template-columns: 1fr;
  }

  .article-navigation { grid-template-columns: 1fr; }

  .archive-month a {
    grid-template-columns: 70px 1fr auto;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal-section] .section-head,
  [data-reveal-section] .manifesto-grid,
  [data-reveal-section] .business-grid,
  [data-reveal-section] .story-grid,
  [data-reveal-section] .map-copy,
  [data-reveal-section] .map-visual {
    opacity: 1;
    transform: none;
  }
}
