:root {
  --bg: #06070a;
  --bg-top: #0b0c10;
  --surface: rgba(255, 255, 255, 0.028);
  --surface-strong: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(231, 182, 66, 0.28);
  --text: #f5efe2;
  --text-soft: rgba(245, 239, 226, 0.72);
  --text-faint: rgba(245, 239, 226, 0.45);
  --gold: #e7b642;
  --gold-bright: #f1cc74;
  --max-width: 1200px;
  --font-body:
    "SF Pro Text",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
  --font-display:
    "Iowan Old Style",
    "Baskerville",
    "Songti SC",
    "STSong",
    "Noto Serif SC",
    serif;
  --page-kicker-size: 0.68rem;
  --page-kicker-spacing: 0.18em;
  --page-display-size: clamp(2.16rem, 3.8vw, 3.18rem);
  --page-display-line: 0.98;
  --page-display-spacing: -0.04em;
  --page-lede-size: 0.98rem;
  --page-lede-line: 1.9;
  --page-note-size: 0.84rem;
  --page-note-line: 1.9;
  --page-section-size: clamp(1.42rem, 2vw, 1.76rem);
  --page-section-line: 1.08;
  --page-section-spacing: -0.03em;
  --page-body-size: 0.9rem;
  --page-body-line: 1.88;
  --page-card-kicker-size: 0.62rem;
  --page-card-kicker-spacing: 0.16em;
  --page-card-title-size: 0.92rem;
  --page-card-title-line: 1.68;
  --page-card-body-size: 0.84rem;
  --page-card-body-line: 1.78;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(231, 182, 66, 0.07), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(231, 182, 66, 0.05), transparent 20%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 46%, #050608 100%);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  transition:
    color 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-shell {
  position: relative;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 16px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.88), rgba(6, 7, 10, 0.7));
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  filter: drop-shadow(0 8px 20px rgba(231, 182, 66, 0.18));
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__copy strong {
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.brand__copy span {
  color: var(--text-faint);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.topbar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.topbar__nav a {
  color: var(--text-faint);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar__nav a:hover {
  color: var(--text);
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.solid-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.solid-btn {
  border: 1px solid rgba(231, 182, 66, 0.46);
  background: var(--gold);
  color: #171208;
}

.solid-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.ghost-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
}

.ghost-btn:hover {
  border-color: rgba(231, 182, 66, 0.24);
  color: var(--text);
}

.desk-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 44px;
  min-width: 118px;
  padding: 7px 16px 8px;
  border-radius: 16px;
  border: 1px solid rgba(231, 182, 66, 0.3);
  background:
    linear-gradient(180deg, rgba(18, 14, 8, 0.9), rgba(10, 11, 15, 0.8)),
    radial-gradient(circle at 0% 0%, rgba(231, 182, 66, 0.12), transparent 44%);
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 26px rgba(0, 0, 0, 0.18);
}

.desk-btn::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 182, 66, 0), rgba(231, 182, 66, 0.52), rgba(231, 182, 66, 0));
}

.desk-btn__label {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.08;
}

.desk-btn__meta {
  margin-top: 3px;
  color: rgba(245, 239, 226, 0.52);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.desk-btn:hover {
  border-color: rgba(231, 182, 66, 0.42);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 32px rgba(0, 0, 0, 0.22);
}

.solid-btn--large,
.ghost-btn--large {
  min-height: 46px;
  padding-inline: 20px;
}

.page {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 0 0 100px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: 72px;
  min-height: calc(100svh - 92px);
  align-items: end;
  padding: 92px 0 40px;
}

.hero__copy {
  max-width: 720px;
  padding-bottom: 10px;
}

.hero__copy-layout {
  display: block;
}

.hero__copy-main {
  min-width: 0;
  max-width: 404px;
  position: relative;
  padding: 22px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(11, 12, 16, 0.4), rgba(11, 12, 16, 0.06)),
    radial-gradient(circle at 0% 0%, rgba(231, 182, 66, 0.07), transparent 36%);
  backdrop-filter: blur(10px);
}

.hero__copy-main::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 182, 66, 0), rgba(231, 182, 66, 0.65), rgba(231, 182, 66, 0));
}

.hero__brief {
  position: relative;
  top: auto;
  left: auto;
  display: grid;
  gap: 12px;
  width: min(100%, 286px);
  max-width: 286px;
  padding: 18px 18px 16px 24px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(9, 10, 14, 0.54), rgba(9, 10, 14, 0.18)),
    radial-gradient(circle at 100% 0%, rgba(231, 182, 66, 0.06), transparent 34%);
  backdrop-filter: blur(14px);
  transform: none;
}

.hero__brief--stage {
  position: absolute;
  top: 188px;
  left: 42px;
  z-index: 5;
  width: 268px;
  max-width: 268px;
}

.hero__brief::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 182, 66, 0), rgba(231, 182, 66, 0.55), rgba(231, 182, 66, 0));
}

.hero__brief::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(231, 182, 66, 0.08), rgba(231, 182, 66, 0));
  filter: blur(6px);
  pointer-events: none;
}

.hero__brief-item {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 12px 0 12px 20px;
  border-left: 1px solid rgba(231, 182, 66, 0.12);
}

.hero__brief-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(231, 182, 66, 0.9);
  box-shadow: 0 0 14px rgba(231, 182, 66, 0.28);
}

.hero__brief-item span {
  color: rgba(245, 239, 226, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__brief-item strong {
  color: rgba(245, 239, 226, 0.84);
  font-size: 0.84rem;
  line-height: 1.68;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.workspace-panel__head h3,
.access-strip h2 {
  margin: 0;
  font-family: var(--font-display);
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(2.08rem, 3.6vw, 3.08rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: none;
}

.hero__lede {
  max-width: 34ch;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.9;
}

.hero__note {
  max-width: 40ch;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__microgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.hero__micro-item {
  display: grid;
  gap: 5px;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  background: none;
}

.hero__micro-item span {
  color: rgba(245, 239, 226, 0.46);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.hero__micro-item strong {
  color: rgba(245, 239, 226, 0.88);
  font-size: 0.8rem;
  line-height: 1.6;
  font-weight: 600;
}

.hero__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 560px;
  padding: 28px;
}

.hero__media-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 182, 66, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 62% 36%, rgba(231, 182, 66, 0.1), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 241, 205, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(10, 11, 16, 0.98), rgba(6, 7, 10, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 22px 54px rgba(0, 0, 0, 0.3);
}

.hero__media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.16), rgba(6, 7, 10, 0.54)),
    radial-gradient(circle at 74% 20%, rgba(231, 182, 66, 0.08), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 34%);
  pointer-events: none;
}

.hero__media-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  pointer-events: none;
}

.hero__cinema {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__cinema-grid,
.hero__cinema-aura,
.hero__cinema-moon,
.hero__moon-focus,
.hero__orbit-trail,
.hero__cinema-ring,
.hero__cinema-beam,
.hero__cat-ripple,
.hero__signal-field,
.hero__signal-dot,
.hero__cat-spirit,
.hero__cinema-badge,
.hero__cinema-titlelock,
.hero__cinema-stack,
.hero__cinema-mark,
.hero__cinema-legend,
.hero__cinema-panel {
  position: absolute;
}

.hero__cinema-grid {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 18%, rgba(0, 0, 0, 0.95) 100%);
  opacity: 0.1;
  transform: perspective(900px) rotateX(66deg) scale(1.22) translateY(31%);
  transform-origin: center 75%;
}

.hero__cinema-aura {
  border-radius: 999px;
  filter: blur(18px);
}

.hero__cinema-aura--gold {
  width: 390px;
  height: 390px;
  top: 92px;
  left: 53%;
  background: radial-gradient(circle, rgba(231, 182, 66, 0.14), rgba(231, 182, 66, 0));
  z-index: 0;
}

.hero__cinema-aura--ink {
  width: 240px;
  height: 240px;
  left: -42px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(89, 102, 145, 0.12), rgba(89, 102, 145, 0));
}

.hero__moon-focus {
  left: 61%;
  top: 43%;
  z-index: 1;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 34%, rgba(255, 244, 208, 0.28), rgba(231, 182, 66, 0.1) 44%, rgba(231, 182, 66, 0.02) 68%, transparent 76%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 46%);
  box-shadow:
    0 0 42px rgba(231, 182, 66, 0.08),
    inset 0 0 38px rgba(255, 244, 208, 0.04);
  transform: translate(-50%, -50%);
  animation: moonFocusBreath 15s ease-in-out infinite;
}

.hero__moon-focus::after {
  content: "";
  position: absolute;
  inset: 20px 34px 20px 12px;
  border-radius: 999px;
  background: linear-gradient(115deg, rgba(255, 232, 158, 0.22), rgba(255, 232, 158, 0));
  filter: blur(3px);
}

.hero__orbit-trail {
  left: 61%;
  top: 43%;
  z-index: 2;
  width: 318px;
  height: 204px;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, transparent 0deg, rgba(231, 182, 66, 0.02) 70deg, rgba(231, 182, 66, 0.24) 112deg, rgba(255, 244, 208, 0.04) 148deg, transparent 204deg, transparent 360deg);
  mask-image: radial-gradient(ellipse, transparent 57%, #000 59%, #000 63%, transparent 66%);
  opacity: 0.56;
  transform: translate(-50%, -50%) rotate(-10deg);
  animation: orbitTrailSweep 15s ease-in-out infinite;
}

.hero__cinema-moon {
  width: 380px;
  height: 380px;
  top: 58px;
  left: 48%;
  z-index: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 36%, rgba(255, 244, 208, 0.88), rgba(238, 189, 88, 0.72) 42%, rgba(231, 182, 66, 0.1) 72%, rgba(231, 182, 66, 0) 100%);
  box-shadow:
    0 0 44px rgba(231, 182, 66, 0.14),
    0 0 120px rgba(231, 182, 66, 0.08);
  animation: moonPulse 10s ease-in-out infinite;
}

.hero__cinema-ring {
  border: 1px solid rgba(255, 241, 205, 0.2);
  border-radius: 999px;
  z-index: 1;
}

.hero__cinema-ring--outer {
  width: 300px;
  height: 300px;
  top: 92px;
  left: 54%;
  animation: slowSpin 28s linear infinite;
}

.hero__cinema-ring--inner {
  width: 190px;
  height: 190px;
  top: 146px;
  left: 63%;
  border-color: rgba(255, 241, 205, 0.12);
  animation: reverseSpin 22s linear infinite;
}

.hero__cinema-beam {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(231, 182, 66, 0), rgba(231, 182, 66, 0.7), rgba(255, 244, 208, 0), rgba(231, 182, 66, 0));
  opacity: 0.32;
  filter: blur(0.3px);
  z-index: 2;
}

.hero__cinema-beam--one {
  width: 210px;
  top: 176px;
  left: 70px;
  transform: rotate(-14deg);
  animation: ribbonSweep 12s ease-in-out infinite;
}

.hero__cinema-beam--two {
  width: 160px;
  right: 96px;
  bottom: 132px;
  transform: rotate(18deg);
  animation: ribbonSweep 13.8s ease-in-out infinite reverse;
}

.hero__cinema-map {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.14;
  pointer-events: none;
}

.hero__cinema-map svg {
  width: 100%;
  height: 100%;
}

.hero__cinema-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__cinema-path--primary {
  stroke: rgba(255, 241, 205, 0.22);
  stroke-width: 1.5;
  stroke-dasharray: 8 10;
}

.hero__cinema-path--secondary {
  stroke: rgba(231, 182, 66, 0.2);
  stroke-width: 1.2;
  stroke-dasharray: 5 8;
}

.hero__cinema-path--tertiary {
  stroke: rgba(255, 241, 205, 0.14);
  stroke-width: 1;
  stroke-dasharray: 4 10;
}

.hero__cinema-pins {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.hero__cinema-pin {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(9, 10, 14, 0.42), rgba(9, 10, 14, 0.12));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.hero__cinema-pin::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(231, 182, 66, 0.9);
  box-shadow: 0 0 12px rgba(231, 182, 66, 0.45);
}

.hero__cinema-pin--north {
  top: 164px;
  left: 54px;
}

.hero__cinema-pin--north::before {
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}

.hero__cinema-pin--east {
  top: 238px;
  right: 58px;
}

.hero__cinema-pin--east::before {
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
}

.hero__cinema-pin--south {
  left: 108px;
  bottom: 162px;
}

.hero__cinema-pin--south::before {
  top: -16px;
  left: 18px;
}

.hero__cinema-pin span {
  color: rgba(245, 239, 226, 0.46);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__cinema-pin strong {
  color: rgba(245, 239, 226, 0.88);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__cinema-meta {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 5px;
  color: rgba(245, 239, 226, 0.76);
}

.hero__cinema-meta span {
  color: rgba(245, 239, 226, 0.42);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__cinema-meta strong {
  font-size: 0.74rem;
  line-height: 1.45;
  font-weight: 600;
}

.hero__cinema-meta--top {
  top: 74px;
  right: 46px;
  justify-items: end;
  text-align: right;
}

.hero__cinema-meta--side {
  right: 18px;
  top: 50%;
  width: 160px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center right;
}

.hero__cinema-ground {
  position: absolute;
  left: 61%;
  bottom: 104px;
  width: 214px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(231, 182, 66, 0.16), rgba(231, 182, 66, 0.04) 42%, rgba(231, 182, 66, 0) 74%);
  transform: translateX(-50%);
  filter: blur(10px);
}

.hero__cat-ripple {
  left: 60%;
  top: 198px;
  z-index: 3;
  width: 260px;
  height: 150px;
  border: 1px solid rgba(231, 182, 66, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 48% 58%, rgba(231, 182, 66, 0.1), transparent 48%),
    linear-gradient(90deg, transparent, rgba(255, 244, 208, 0.04), transparent);
  filter: blur(0.2px);
  transform: translate(-50%, -50%) rotate(-8deg);
  animation: catRipple 11s ease-in-out infinite;
}

.hero__signal-field {
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero__signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(248, 210, 110, 0.92);
  box-shadow:
    0 0 14px rgba(231, 182, 66, 0.52),
    0 0 34px rgba(231, 182, 66, 0.18);
  opacity: 0.55;
  animation: signalDrift 8.8s ease-in-out infinite;
}

.hero__signal-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(248, 210, 110, 0.14);
  border-radius: inherit;
  animation: signalPulse 3.6s ease-in-out infinite;
}

.hero__signal-dot--one {
  left: 49%;
  top: 42%;
}

.hero__signal-dot--two {
  left: 73%;
  top: 35%;
  width: 4px;
  height: 4px;
  animation-delay: -1.6s;
}

.hero__signal-dot--three {
  left: 77%;
  top: 62%;
  animation-delay: -3.2s;
}

.hero__signal-dot--four {
  left: 56%;
  top: 71%;
  width: 4px;
  height: 4px;
  animation-delay: -4.6s;
}

.hero__signal-dot--five {
  left: 67%;
  top: 50%;
  width: 3px;
  height: 3px;
  opacity: 0.42;
  animation-delay: -6.1s;
}

.hero__cinema-badge {
  top: 32px;
  left: 40px;
  z-index: 5;
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(9, 10, 14, 0.44), rgba(9, 10, 14, 0.18));
  backdrop-filter: blur(8px);
}

.hero__cinema-badge span {
  color: rgba(245, 239, 226, 0.52);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__cinema-badge strong {
  color: rgba(245, 239, 226, 0.9);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero__cinema-titlelock {
  top: 72px;
  right: 50px;
  z-index: 5;
  display: grid;
  gap: 8px;
  width: 228px;
  justify-items: end;
  text-align: right;
}

.hero__cinema-titlelock span {
  color: rgba(245, 239, 226, 0.44);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__cinema-titlelock strong {
  color: rgba(245, 239, 226, 0.88);
  font-size: 0.96rem;
  line-height: 1.6;
  font-weight: 600;
}

.hero__cinema-mark {
  top: 184px;
  left: 60%;
  z-index: 6;
  transform: translateX(-50%);
  animation: logoReturn 15s ease-in-out infinite;
  transition: filter 420ms ease;
}

.hero__cinema-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 190px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(231, 182, 66, 0.18), rgba(231, 182, 66, 0.02) 48%, rgba(231, 182, 66, 0) 74%);
  transform: translateX(-50%);
  filter: blur(12px);
}

.hero__cinema-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 78%;
  height: 78%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 244, 208, 0.03), rgba(255, 244, 208, 0));
  transform: translateX(-50%);
  pointer-events: none;
}

.hero__cinema-mark img {
  width: clamp(190px, 17vw, 250px);
  object-fit: contain;
  border-radius: 22px;
  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 22px rgba(231, 182, 66, 0.07));
}

.hero__media-frame:hover .hero__cinema-mark {
  filter: brightness(1.05);
}

.hero__media-frame:hover .hero__signal-dot {
  opacity: 0.86;
}

.hero__cat-spirit {
  left: 60%;
  top: 218px;
  z-index: 7;
  width: 92px;
  height: 112px;
  overflow: hidden;
  border-radius: 48% 48% 42% 42%;
  opacity: 0;
  filter:
    drop-shadow(0 16px 30px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 20px rgba(231, 182, 66, 0.16));
  mask-image: radial-gradient(ellipse at 52% 48%, #000 58%, rgba(0, 0, 0, 0.84) 72%, transparent 100%);
  transform: translate(-50%, -50%) scale(0.58);
  animation: mooncatCinematic 15s cubic-bezier(0.5, 0, 0.12, 1) infinite;
  will-change: transform, opacity, filter;
}

.hero__cat-spirit::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 58px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(231, 182, 66, 0.24), transparent 68%);
  filter: blur(7px);
  transform: translateX(-50%);
}

.hero__cat-spirit img {
  position: absolute;
  top: -30px;
  left: -62px;
  width: 188px;
  max-width: none;
  border-radius: 0;
}

.hero__cinema-legend {
  left: 44px;
  bottom: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 239, 226, 0.68);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__cinema-legend span {
  position: relative;
}

.hero__cinema-legend span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(231, 182, 66, 0.56);
  transform: translateY(-50%);
}

.hero__cinema-statusline {
  position: absolute;
  left: 44px;
  right: 320px;
  bottom: 32px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(9, 10, 14, 0.42), rgba(9, 10, 14, 0.16));
  color: rgba(245, 239, 226, 0.66);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero__cinema-veil {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.015), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(255, 241, 205, 0.05), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(231, 182, 66, 0.06), transparent 24%);
  pointer-events: none;
}

.hero__brief--stage,
.hero__cinema-badge,
.hero__cinema-titlelock,
.hero__cinema-pins,
.hero__cinema-meta,
.hero__cinema-legend,
.hero__cinema-statusline,
.hero__cinema-panel {
  display: none;
}

.hero__cinema-panel {
  right: 34px;
  bottom: 28px;
  z-index: 5;
  width: min(100%, 264px);
  padding: 14px 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 13, 18, 0.54), rgba(6, 7, 10, 0.82)),
    radial-gradient(circle at 20% 0%, rgba(231, 182, 66, 0.08), transparent 36%);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero__cinema-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 182, 66, 0), rgba(231, 182, 66, 0.7), rgba(231, 182, 66, 0));
}

.hero__cinema-panel-kicker {
  margin: 0 0 10px;
  color: rgba(245, 239, 226, 0.58);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__cinema-panel-list {
  display: grid;
  gap: 4px;
}

.hero__cinema-panel-row {
  display: grid;
  gap: 3px;
  padding: 7px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__cinema-panel-row:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.hero__cinema-panel-row span {
  color: rgba(245, 239, 226, 0.52);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__cinema-panel-row strong {
  color: var(--text);
  font-size: 0.76rem;
  line-height: 1.5;
  font-weight: 600;
}

.hero__cinema-panel-note {
  margin: 10px 0 0;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 226, 0.42);
}

.hero__statusline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  color: var(--text-faint);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__statusline span {
  position: relative;
}

.hero__statusline span:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -11px;
  color: rgba(245, 239, 226, 0.22);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.metric-chip {
  display: grid;
  gap: 6px;
  min-height: 0;
  padding: 0 0 0 14px;
  border-left: 1px solid var(--line);
  background: transparent;
}

.metric-chip span {
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.metric-chip strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.metric-chip--accent {
  border-left-color: var(--line-strong);
}

.metric-chip--accent strong {
  color: var(--gold);
}

.hero__aside {
  align-self: center;
  padding: 24px 0 24px 34px;
  border-left: 1px solid var(--line);
}

.hero__media .hero__aside {
  position: relative;
  z-index: 2;
  width: min(100%, 316px);
  margin-top: auto;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.62), rgba(6, 7, 10, 0.74));
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
}

.hero__aside-kicker {
  margin: 0 0 18px;
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes reverseSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes ribbonSweep {
  0%, 100% { opacity: 0.24; transform: translateX(-20px) scaleX(0.94) rotate(var(--ribbon-rot, 0deg)); }
  50% { opacity: 1; transform: translateX(12px) scaleX(1.04) rotate(var(--ribbon-rot, 0deg)); }
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

@keyframes logoReturn {
  0%, 9%, 88%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  18%, 78% { opacity: 0.28; transform: translateX(-50%) scale(0.9); }
}

@keyframes moonFocusBreath {
  0%, 100% { opacity: 0.42; transform: translate(-50%, -50%) scale(0.96); }
  45% { opacity: 0.72; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes orbitTrailSweep {
  0%, 11%, 88%, 100% { opacity: 0.22; transform: translate(-50%, -50%) rotate(-16deg) scale(0.96); }
  20%, 62% { opacity: 0.7; transform: translate(-50%, -50%) rotate(118deg) scale(1.02); }
  78% { opacity: 0.42; transform: translate(-50%, -50%) rotate(174deg) scale(1.08); }
}

@keyframes mooncatCinematic {
  0%, 8%, 100% {
    opacity: 0;
    filter: blur(4px) saturate(0.9) drop-shadow(0 0 12px rgba(231, 182, 66, 0.08));
    transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0.38);
  }
  13% {
    opacity: 0.64;
    filter: blur(0.2px) saturate(1.05) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
    transform: translate(-50%, -50%) translate(-126px, -28px) rotate(-10deg) scale(0.38);
  }
  28% {
    opacity: 0.88;
    transform: translate(-50%, -50%) translate(-62px, -102px) rotate(-4deg) scale(0.4);
  }
  43% {
    opacity: 0.92;
    transform: translate(-50%, -50%) translate(106px, -72px) rotate(8deg) scale(0.43);
  }
  57% {
    opacity: 0.94;
    transform: translate(-50%, -50%) translate(120px, 40px) rotate(5deg) scale(0.46);
  }
  67% {
    opacity: 1;
    filter: blur(0) brightness(1.08) drop-shadow(0 20px 34px rgba(0, 0, 0, 0.38));
    transform: translate(-50%, -50%) translate(0, 24px) rotate(0deg) scale(0.58);
  }
  77% {
    opacity: 0.72;
    filter: blur(0) brightness(1.18) saturate(1.08) drop-shadow(0 26px 48px rgba(0, 0, 0, 0.44));
    transform: translate(-50%, -50%) translate(0, 2px) rotate(0deg) scale(1.18);
  }
  84% {
    opacity: 0;
    filter: blur(14px) brightness(1.28) saturate(0.8);
    transform: translate(-50%, -50%) translate(0, -10px) rotate(0deg) scale(1.86);
  }
}

@keyframes catRipple {
  0%, 100% { opacity: 0.48; transform: translate(-50%, -50%) rotate(-8deg) scale(0.96); }
  50% { opacity: 0.78; transform: translate(-50%, -50%) rotate(-8deg) scale(1.04); }
}

@keyframes signalDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10px, -16px, 0) scale(1.18); }
}

@keyframes signalPulse {
  0%, 100% { opacity: 0; transform: scale(0.72); }
  45% { opacity: 1; transform: scale(1.42); }
}

@keyframes moonPulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes sparkFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-16px) scale(1.18); opacity: 1; }
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-14px); }
}

@keyframes marqueeRight {
  from { transform: translateX(0); }
  to { transform: translateX(12px); }
}

.hero__aside-list {
  display: grid;
  gap: 0;
}

.hero__aside-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hero__aside-row span {
  color: var(--text-soft);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__aside-row strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero__aside-note {
  max-width: 26ch;
  margin: 16px 0 0;
  color: var(--text-faint);
  font-size: 0.8rem;
  line-height: 1.8;
}

.hero--landing {
  grid-template-columns: minmax(430px, 0.92fr) minmax(480px, 0.98fr);
  align-items: center;
  gap: 34px;
}

.hero--landing .hero__copy {
  max-width: none;
  padding-bottom: 0;
  padding-left: clamp(18px, 3.2vw, 58px);
}

.hero--landing .hero__media {
  min-height: 500px;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  margin-left: 0;
}

.hero--landing .hero__media-frame {
  position: relative;
  inset: auto;
  width: min(100%, 620px);
  min-height: 500px;
  height: 500px;
}

.hero--landing .hero__cinema-mark img {
  width: clamp(190px, 17vw, 250px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading h2 {
  max-width: 18ch;
  font-family: var(--font-body);
  font-size: clamp(1.18rem, 1.5vw, 1.38rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.workspace {
  padding-top: 88px;
}

.paper-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  padding-top: 56px;
  align-items: start;
}

.paper-strip__lead {
  max-width: 520px;
}

.paper-strip__note {
  max-width: 46ch;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.84;
}

.paper-strip__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.paper-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 208px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(10, 11, 15, 0.54), rgba(7, 8, 11, 0.2)),
    radial-gradient(circle at 100% 0%, rgba(231, 182, 66, 0.05), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 14px 34px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.paper-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 182, 66, 0), rgba(231, 182, 66, 0.58), rgba(231, 182, 66, 0));
}

.paper-card--primary {
  border-color: rgba(231, 182, 66, 0.18);
  background:
    linear-gradient(180deg, rgba(18, 14, 8, 0.56), rgba(10, 11, 15, 0.22)),
    radial-gradient(circle at 100% 0%, rgba(231, 182, 66, 0.1), transparent 36%);
}

.paper-card__kicker {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.paper-card__title {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.paper-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.8;
}

.paper-card:hover {
  border-color: rgba(231, 182, 66, 0.24);
  transform: translateY(-2px);
}

.workspace__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-top: 1px solid var(--line);
}

.workspace__meta {
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.workspace__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 0 34px;
}

.workspace-panel {
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.workspace-panel--lead,
.workspace-panel--board {
  min-height: 320px;
}

.workspace-panel--board,
.workspace-panel--strategy {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.workspace-panel--system,
.workspace-panel--strategy {
  margin-top: 28px;
}

.workspace-panel__head h3,
.strategy-head strong,
.access-strip h2 {
  margin: 0;
  font-family: var(--font-display);
}

.workspace-panel__kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.workspace-panel__head h3 {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.workspace-panel__summary,
.workspace-panel__body,
.workspace-panel__note,
.workspace-panel__meta,
.strategy-head p,
.strategy-seat__tagline,
.strategy-seat__playbook,
.system-flow p {
  color: var(--text-soft);
}

.workspace-panel__summary {
  max-width: 36ch;
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.workspace-panel__body {
  max-width: 42ch;
  margin: 16px 0 0;
  font-size: 0.88rem;
  line-height: 1.84;
}

.workspace-panel__action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
}

.system-flow article {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.system-flow span {
  display: inline-block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-flow strong {
  display: block;
  margin-top: 10px;
  font-size: 0.94rem;
  font-weight: 620;
}

.system-flow p {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.74;
}

.live-board {
  display: grid;
  align-content: start;
}

.board-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.board-row span {
  color: var(--text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.board-row strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.workspace-panel__note,
.workspace-panel__meta {
  margin: 14px 0 0;
  font-size: 0.84rem;
  line-height: 1.76;
}

.workspace-panel__meta {
  color: var(--text-faint);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.inline-link:hover {
  color: var(--gold-bright);
}

.strategy-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
}

.strategy-head strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.3;
}

.strategy-head p {
  max-width: 56ch;
  margin: 10px 0 0;
  font-size: 0.86rem;
  line-height: 1.78;
}

.strategy-active {
  text-align: right;
}

.strategy-active span {
  display: block;
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.strategy-active strong {
  margin-top: 8px;
  font-size: 0.96rem;
}

.strategy-list {
  display: grid;
}

.strategy-seat {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.strategy-seat:last-child {
  border-bottom: 1px solid var(--line);
}

.strategy-seat--active {
  border-top-color: var(--line-strong);
}

.strategy-seat__lane {
  display: inline-block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strategy-seat__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.strategy-seat__head h3 {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 620;
  line-height: 1.38;
}

.strategy-seat__status {
  color: var(--text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.strategy-seat__tagline {
  max-width: 58ch;
  margin: 12px 0 0;
  font-size: 0.84rem;
  line-height: 1.78;
}

.strategy-seat__playbook {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
}

.strategy-seat__playbook li::before {
  content: "·";
  margin-right: 8px;
  color: var(--gold);
}

.strategy-seat__stats {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.strategy-seat__stats span {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.chain-compare {
  padding-top: 88px;
}

.chain-compare__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 24px;
  border-top: 1px solid var(--line);
}

.chain-compare__summary {
  max-width: 38ch;
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.8;
}

.chain-compare__leaders {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 26px;
  padding: 24px 0 22px;
  border-top: 1px solid var(--line);
}

.chain-compare__leader {
  min-height: 104px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.chain-compare__leader:last-child {
  padding-right: 0;
  border-right: 0;
}

.chain-compare__leader-kicker,
.chain-card__label,
.chain-card__fit span,
.chain-card__metric span,
.chain-card__footer span {
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chain-compare__leader strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.chain-compare__leader p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.7;
}

.chain-compare__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
}

.chain-card {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.chain-card--leader {
  border-top-color: var(--line-strong);
}

.chain-card--leader::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(231, 182, 66, 0));
}

.chain-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.chain-card__title {
  min-width: 0;
}

.chain-card__title strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.3;
}

.chain-card__fit {
  text-align: right;
}

.chain-card__fit strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.chain-card__note {
  min-height: 84px;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.78;
}

.chain-card__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.chain-card__metric {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.chain-card__metric strong {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.chain-card__metric strong.is-positive {
  color: var(--gold-bright);
}

.chain-card__metric strong.is-negative {
  color: #d88b73;
}

.chain-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.access {
  padding-top: 88px;
}

.access-strip {
  display: grid;
  gap: 26px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.access-strip__intro {
  max-width: 620px;
}

.access-strip h2 {
  max-width: 20ch;
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.access-strip__note {
  max-width: 54ch;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.82;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.access-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 222px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(10, 11, 15, 0.54), rgba(7, 8, 11, 0.2)),
    radial-gradient(circle at 100% 0%, rgba(231, 182, 66, 0.05), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 14px 34px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.access-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 182, 66, 0), rgba(231, 182, 66, 0.56), rgba(231, 182, 66, 0));
}

.access-card--highlight {
  border-color: rgba(231, 182, 66, 0.18);
  background:
    linear-gradient(180deg, rgba(18, 14, 8, 0.56), rgba(10, 11, 15, 0.22)),
    radial-gradient(circle at 100% 0%, rgba(231, 182, 66, 0.1), transparent 36%);
}

.access-card__kicker {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.access-card__title {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.access-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.82;
}

.access-card__meta {
  align-self: end;
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.access-card:hover {
  border-color: rgba(231, 182, 66, 0.22);
  transform: translateY(-2px);
}

.access-card:hover .access-card__meta {
  color: var(--gold);
}

@media (max-width: 1120px) {
  .hero,
  .paper-strip,
  .workspace__grid,
  .strategy-seat,
  .access-strip,
  .system-flow,
  .chain-compare__intro,
  .chain-compare__leaders,
  .chain-compare__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 34px;
    padding-top: 72px;
  }

  .hero__media {
    min-height: 480px;
    padding: 20px;
  }

  .hero__aside {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero__media .hero__aside {
    padding: 20px 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .strategy-active,
  .strategy-seat__stats {
    text-align: left;
    justify-content: flex-start;
  }

  .workspace__header {
    align-items: start;
    flex-direction: column;
  }

  .workspace-panel--board,
  .workspace-panel--strategy,
  .strategy-seat__stats,
  .system-flow article {
    padding-left: 0;
    border-left: 0;
  }

  .chain-compare__leader {
    padding: 18px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .chain-card {
    padding-bottom: 26px;
  }

  .paper-strip__actions,
  .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar,
  .page {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 0;
  }

  .topbar__nav {
    display: none;
  }

  .topbar__actions {
    gap: 8px;
  }

  .solid-btn,
  .ghost-btn,
  .desk-btn {
    min-height: 38px;
    padding-inline: 14px;
    border-radius: 12px;
    font-size: 0.78rem;
  }

  .desk-btn {
    min-width: auto;
    padding-block: 6px 7px;
  }

  .desk-btn__meta {
    font-size: 0.5rem;
  }

  .brand__copy span {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  .hero--landing {
    gap: 42px;
  }

  .hero__copy-layout {
    grid-template-columns: minmax(0, 1fr) 244px;
    gap: 24px;
  }

  .hero__brief {
    max-width: 244px;
    margin-left: 0;
    padding: 16px 14px 14px 18px;
    transform: translateX(54px);
  }

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

  .paper-strip__actions,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 2.35rem;
  }

  .hero__media {
    min-height: 420px;
    padding: 16px;
  }

  .hero--landing .hero__media {
    min-height: 520px;
    padding: 0;
  }

  .hero__cinema-moon {
    width: 228px;
    height: 228px;
    top: 84px;
    right: 44px;
  }

  .hero__cinema-ring--outer {
    width: 280px;
    height: 280px;
    top: 58px;
    right: 18px;
  }

  .hero__cinema-ring--inner {
    width: 196px;
    height: 196px;
    top: 100px;
    right: 60px;
  }

  .hero__media-frame {
    border-radius: 22px;
  }

  .hero__media-frame::after {
    inset: 12px;
    border-radius: 16px;
  }

  .hero__cinema-badge {
    top: 18px;
    left: 18px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .hero__cinema-titlelock {
    top: 106px;
    left: 20px;
    max-width: 214px;
  }

  .hero__cinema-titlelock strong {
    font-size: 1.22rem;
  }

  .hero__cinema-stack {
    top: 108px;
    right: 20px;
    width: 150px;
  }

  .hero__cinema-pin--north {
    top: 178px;
    left: 24px;
  }

  .hero__cinema-pin--east {
    top: 246px;
    right: 18px;
  }

  .hero__cinema-pin--south {
    left: 28px;
    bottom: 154px;
  }

  .hero__cinema-meta--top {
    top: 74px;
    right: 24px;
  }

  .hero__cinema-meta--side {
    right: 2px;
    width: 144px;
  }

  .hero__cinema-statusline {
    left: 20px;
    right: 20px;
    bottom: 92px;
    font-size: 0.56rem;
    gap: 8px;
  }

  .hero__cinema-panel {
    right: 20px;
    bottom: 20px;
    width: min(100%, 252px);
    border-radius: 16px;
  }

  .hero__lede,
  .hero__note,
  .system-flow p,
  .workspace-panel__summary,
  .workspace-panel__body,
  .strategy-head p,
  .strategy-seat__tagline,
  .strategy-seat__playbook {
    font-size: 0.9rem;
  }

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

  .workspace,
  .chain-compare,
  .access {
    padding-top: 62px;
  }

  .section-heading h2,
  .access-strip h2 {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .hero--landing {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .hero__copy-layout {
    display: block;
  }

  .hero__brief {
    gap: 8px;
    max-width: none;
    margin-left: 0;
    padding: 14px 16px;
    transform: none;
  }

  .hero__brief--stage {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 32px);
    margin: 88px 16px 0;
    z-index: 4;
  }

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

  .hero--landing .hero__media {
    min-height: 460px;
  }

  .hero__cinema-badge {
    top: 16px;
    left: 16px;
  }

  .hero__cinema-titlelock {
    top: 88px;
    left: 16px;
    max-width: 180px;
  }

  .hero__cinema-titlelock strong {
    font-size: 1.02rem;
    line-height: 1.24;
  }

  .hero__cinema-stack {
    top: 92px;
    right: 16px;
    width: 132px;
    gap: 8px;
  }

  .hero__cinema-pin {
    display: none;
  }

  .hero__cinema-meta--top {
    top: 72px;
    right: 16px;
  }

  .hero__cinema-meta--side {
    display: none;
  }

  .hero__cinema-statusline {
    left: 16px;
    right: 16px;
    bottom: 84px;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero__cinema-panel {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    max-width: none;
  }

  .hero--landing .hero__cinema-mark img {
    width: clamp(168px, 44vw, 228px);
  }

  .hero--landing .hero__cinema-legend {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 10px;
    flex-wrap: wrap;
  }
}
