:root {
  --ink: #061522;
  --ink-2: #0a2030;
  --paper: #f0e6cf;
  --paper-bright: #fff9e9;
  --cyan: #36d5e8;
  --cyan-soft: #a5f5ff;
  --magenta: #e52f70;
  --red: #c93c2e;
  --yellow: #d7a62f;
  --blue: #1693a9;
  --amber: #d5a457;
  --muted: rgba(240, 230, 207, 0.68);
  --line: rgba(240, 230, 207, 0.2);
  --display: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --page: min(1520px, calc(100% - 64px));
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 78% 12%, rgba(23, 147, 169, 0.15), transparent 26%),
    radial-gradient(circle at 10% 30%, rgba(201, 60, 46, 0.08), transparent 24%),
    linear-gradient(145deg, #061522 0%, #071927 48%, #05111c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 10%, transparent 82%);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

button {
  font: inherit;
}

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

#starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.82;
}

.paper-grain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.065;
  mix-blend-mode: soft-light;
  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='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-bright);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  width: var(--page);
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6, 21, 34, 0.96), rgba(6, 21, 34, 0.76));
  backdrop-filter: blur(16px);
}

.wordmark {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.wordmark i {
  width: 10px;
  height: 10px;
  margin: 3px 0 0 5px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 16px rgba(229, 47, 112, 0.72);
  animation: signal-pulse 2.4s ease-in-out infinite;
}

.wordmark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, var(--paper), transparent);
  opacity: 0.5;
}

.signal-line {
  position: relative;
  height: 16px;
  overflow: hidden;
}

.signal-line::before,
.signal-line::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: rgba(240, 230, 207, 0.22);
}

.signal-line::before {
  left: 0;
  width: calc(50% - 30px);
}

.signal-line::after {
  right: 0;
  width: calc(50% - 30px);
}

.signal-line span {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 58px;
  height: 8px;
  transform: translateX(-50%) skewX(-30deg);
  border-left: 1px solid rgba(240, 230, 207, 0.42);
  border-right: 1px solid rgba(240, 230, 207, 0.42);
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a,
.motion-toggle,
.nav-toggle {
  min-height: 44px;
  color: rgba(240, 230, 207, 0.88);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--cyan-soft);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  min-width: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(240, 230, 207, 0.18);
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:first-child,
.nav-toggle > span:first-child::before,
.nav-toggle > span:first-child::after {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle > span:first-child {
  position: relative;
}

.nav-toggle > span:first-child::before,
.nav-toggle > span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle > span:first-child::before { top: -6px; }
.nav-toggle > span:first-child::after { top: 6px; }
.nav-toggle[aria-expanded="true"] > span:first-child { background: transparent; }
.nav-toggle[aria-expanded="true"] > span:first-child::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:first-child::after { transform: translateY(-6px) rotate(-45deg); }

.x-link {
  padding-left: 22px;
  border-left: 1px solid var(--line);
  color: var(--cyan) !important;
  font-family: var(--mono);
  font-weight: 500 !important;
}

.motion-toggle {
  display: inline-flex;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(240, 230, 207, 0.18);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.motion-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.motion-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(54, 213, 232, 0.78);
}

.motion-toggle[aria-pressed="true"] .motion-icon {
  border-radius: 1px;
  background: var(--amber);
  box-shadow: none;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  width: var(--page);
  min-height: 630px;
  margin: 0 auto;
  padding: 75px 0 15px;
  display: grid;
  grid-template-columns: minmax(440px, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: 20px;
  scroll-margin-top: var(--header-height);
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  padding-bottom: 26px;
}

.eyebrow,
.section-kicker,
.card-no {
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cyan);
  color: var(--cyan);
  font-size: 17px;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(66px, 6.3vw, 104px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.07em;
  text-wrap: balance;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

h1 span {
  display: block;
}

.hero-subtitle {
  margin-bottom: 26px;
  color: rgba(240, 230, 207, 0.92);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  color: var(--paper-bright);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

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

.button-primary {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--magenta);
  box-shadow: 8px 8px 0 rgba(240, 230, 207, 0.12), 0 18px 44px rgba(229, 47, 112, 0.2);
}

.button-primary::before,
.signal-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.12) 8% 8.5%, transparent 8.5% 92%, rgba(0, 0, 0, 0.15) 92% 92.5%, transparent 92.5%),
    linear-gradient(0deg, transparent 0 7%, rgba(255, 255, 255, 0.08) 7% 7.5%, transparent 7.5% 93%, rgba(0, 0, 0, 0.15) 93% 93.5%, transparent 93.5%);
  opacity: 0.65;
}

.button-secondary {
  border: 2px solid var(--cyan);
  color: var(--paper);
  background: rgba(5, 17, 28, 0.38);
  box-shadow: 7px 7px 0 rgba(54, 213, 232, 0.12);
}

.button-secondary:hover {
  color: var(--cyan-soft);
  box-shadow: 10px 10px 0 rgba(54, 213, 232, 0.17);
}

.hero-art {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: relative;
  z-index: 2;
  height: 540px;
  min-width: 0;
  isolation: isolate;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 0.18s ease-out;
}

.hero-video {
  position: absolute;
  z-index: 2;
  left: -3%;
  top: -4%;
  width: 110%;
  height: 108%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.88) contrast(1.08) brightness(0.98);
  mix-blend-mode: normal;
  mask-image: radial-gradient(ellipse 63% 62% at 52% 49%, #000 43%, rgba(0, 0, 0, 0.88) 62%, transparent 92%);
}

.hero-glow {
  position: absolute;
  z-index: 1;
  left: 20%;
  top: 10%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 164, 87, 0.24), rgba(54, 213, 232, 0.08) 42%, transparent 70%);
  filter: blur(24px);
  animation: glow-breathe 5.4s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 48%;
  border: 1px dashed rgba(213, 164, 87, 0.55);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 92%;
  height: 46%;
  transform: translate(-50%, -50%) rotate(-10deg);
  animation: orbit-one 18s linear infinite;
}

.orbit-two {
  width: 76%;
  height: 70%;
  border-color: rgba(54, 213, 232, 0.22);
  transform: translate(-50%, -50%) rotate(22deg);
  animation: orbit-two 22s linear infinite reverse;
}

.market-signal {
  position: absolute;
  z-index: 4;
  right: 0;
  top: 118px;
  width: 42%;
  height: 220px;
  opacity: 0.86;
  pointer-events: none;
}

#signalCanvas {
  width: 100%;
  height: 100%;
}

.market-value {
  position: absolute;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.value-up {
  top: -4px;
  right: 2px;
  color: var(--cyan);
}

.value-down {
  right: 23%;
  bottom: -6px;
  color: var(--magenta);
}

.floating-star {
  position: absolute;
  z-index: 5;
  color: var(--paper);
  font-size: 28px;
  animation: float-star 4.8s ease-in-out infinite;
}

.star-a {
  left: 8%;
  top: 5%;
}

.star-b {
  right: 12%;
  top: 7%;
  font-size: 19px;
  animation-delay: -2.1s;
}

.floating-dot {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 16%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 50px rgba(229, 47, 112, 0.25);
  animation: dot-drift 6s ease-in-out infinite;
}

.hero-status {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: space-between;
  color: rgba(240, 230, 207, 0.42);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.hero-status span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-status i,
.section-kicker i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(54, 213, 232, 0.66);
}

.section-shell {
  width: var(--page);
  margin: 0 auto;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.signals {
  position: relative;
  z-index: 5;
  padding: 0 0 120px;
}

.section-heading {
  display: block;
  margin-bottom: 12px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2,
.atlas-copy h2,
.closing h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(42px, 4.6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child {
  max-width: 380px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-kicker {
  margin-bottom: 0;
  color: var(--cyan);
  font-size: 13px;
}

.section-kicker i {
  margin-right: 10px;
}

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

.signal-card {
  --card-bg: var(--red);
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(240, 230, 207, 0.54);
  color: #101010;
  background: var(--card-bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.signal-card:hover,
.signal-card:focus-visible {
  z-index: 2;
  transform: translateY(-10px) rotate(-0.35deg);
  box-shadow: 12px 18px 0 rgba(240, 230, 207, 0.09), 0 34px 84px rgba(0, 0, 0, 0.36);
}

.signal-card video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.1, 1), filter 0.45s ease;
}

.signal-card:hover video,
.signal-card:focus-visible video,
.signal-card.is-playing video {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.08);
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 8, 14, 0.06) 5%, rgba(3, 8, 14, 0.18) 44%, rgba(3, 8, 14, 0.9) 100%);
}

.signal-card::after {
  z-index: 3;
}

.card-red {
  --card-bg: #b93c2e;
}

.card-yellow {
  --card-bg: #c7982c;
}

.card-cyan {
  --card-bg: #138da3;
}

.stock-visual,
.xsub-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.stock-visual {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 245, 211, 0.9) 0 8%, transparent 8.4%),
    linear-gradient(125deg, transparent 0 58%, rgba(20, 15, 10, 0.16) 58.2% 59%, transparent 59.2%),
    #b93c2e;
}

.stock-visual::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 42%;
  height: 44%;
  background:
    linear-gradient(rgba(5, 17, 28, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 17, 28, 0.16) 1px, transparent 1px),
    var(--paper);
  background-size: 14px 14px;
  box-shadow: 8px 9px 0 rgba(5, 17, 28, 0.18);
  transform: rotate(3deg);
}

.stock-ticket {
  position: absolute;
  left: 8%;
  top: 18%;
  padding: 10px 13px;
  color: #111;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 5px 6px 0 rgba(5, 17, 28, 0.18);
  transform: rotate(-2deg);
}

.stock-value {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  color: var(--paper-bright);
  font-family: var(--mono);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
}

.value-front {
  right: 21%;
  top: 25%;
  background: var(--cyan);
  color: var(--ink);
  animation: value-front 3.8s ease-in-out infinite;
}

.value-back {
  right: 9%;
  top: 46%;
  background: var(--ink);
  animation: value-back 3.8s ease-in-out infinite;
}

.flight-path {
  position: absolute;
  left: 18%;
  top: 45%;
  width: 58%;
  height: 1px;
  border-top: 2px dashed rgba(255, 249, 233, 0.66);
  transform: rotate(-13deg);
}

.flight-path i {
  position: absolute;
  left: 0;
  top: -22px;
  color: var(--paper-bright);
  font-size: 28px;
  font-style: normal;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  animation: flight-progress 4.2s ease-in-out infinite;
}

.xsub-visual {
  background:
    radial-gradient(circle at 82% 18%, rgba(54, 213, 232, 0.8) 0 5px, transparent 6px),
    linear-gradient(145deg, #d8a832 0 62%, #c99424 62% 100%);
}

.xsub-screen {
  position: absolute;
  left: 10%;
  right: 9%;
  top: 14%;
  height: 47%;
  overflow: hidden;
  border: 6px solid var(--paper);
  background:
    linear-gradient(135deg, rgba(54, 213, 232, 0.18), transparent 42%),
    linear-gradient(180deg, #102b3a, #07131e);
  box-shadow: 9px 10px 0 rgba(5, 17, 28, 0.2);
  transform: rotate(1.5deg);
}

.xsub-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(54, 213, 232, 0.18), transparent);
  transform: translateX(-100%);
  animation: subtitle-scan 3.6s ease-in-out infinite;
}

.xsub-screen::after {
  content: "CC";
  position: absolute;
  right: 12px;
  top: 10px;
  padding: 3px 6px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
}

.xsub-screen i {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 3px;
  background: rgba(240, 230, 207, 0.24);
}

.xsub-screen i:nth-child(1) { top: 28%; width: 52%; }
.xsub-screen i:nth-child(2) { top: 42%; width: 67%; }
.xsub-screen i:nth-child(3) { top: 56%; width: 42%; }

.caption {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 45%;
  min-width: 44%;
  padding: 5px 9px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  transform: translateX(-50%);
}

.caption-en {
  color: var(--paper);
  background: rgba(5, 17, 28, 0.86);
  animation: caption-en 4s ease-in-out infinite;
}

.caption-zh {
  color: var(--ink);
  background: var(--paper);
  opacity: 0;
  animation: caption-zh 4s ease-in-out infinite;
}

.card-no,
.card-play {
  position: relative;
  z-index: 4;
  color: rgba(255, 249, 233, 0.78);
  font-size: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.card-copy {
  position: relative;
  z-index: 4;
  color: var(--paper-bright);
}

.card-copy p {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: #111;
  background: var(--paper);
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 900;
  line-height: 1;
  transform: rotate(-1.2deg);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.14);
}

.card-copy h3 {
  max-width: 420px;
  margin: 0 0 12px;
  color: #fffaf0;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.035em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.42);
}

.card-copy span {
  color: rgba(255, 249, 233, 0.8);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.card-play {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 249, 233, 0.42);
  background: rgba(5, 17, 28, 0.26);
}

.channels {
  display: block;
  padding-bottom: 120px;
}

.channels-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.channels-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.channels-heading > p:last-child {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.channel-card {
  --channel: var(--cyan);
  position: relative;
  grid-column: span 2;
  min-height: 290px;
  aspect-ratio: 1.42;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--channel) 60%, rgba(240, 230, 207, .22));
  color: var(--paper);
  background-color: #071522;
  background-position: center;
  background-size: cover;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.channel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3,11,18,.06), rgba(3,11,18,.18) 42%, rgba(3,11,18,.94) 100%);
}

.channel-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
}

.channel-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .7s ease, filter .35s ease;
}

.channel-card:hover video,
.channel-card:focus-visible video {
  transform: scale(1.09);
  filter: saturate(1.15) contrast(1.04);
}

.channel-card:hover,
.channel-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--channel);
}

.channel-no,
.channel-role {
  position: absolute;
  z-index: 3;
  top: 28px;
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: .12em;
}

.channel-no { left: 30px; color: var(--paper); font-size: 11px; }
.channel-role { right: 30px; top: 22px; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: 14px; }
.channel-copy { position: absolute; z-index: 3; left: 30px; right: 30px; bottom: 28px; }
.channel-card h3 { display: inline-block; margin: 0 0 12px; padding: 4px 10px 6px; color: #0a1018; background: var(--paper); font-size: 30px; line-height: 1; letter-spacing: -.04em; box-shadow: 5px 6px 0 color-mix(in srgb, var(--channel) 65%, transparent); }
.channel-card p { margin: 0 0 18px; color: #fff; font-size: 16px; font-weight: 750; line-height: 1.55; text-shadow: 0 2px 16px #000; }
.channel-card strong { color: var(--channel); font-family: var(--mono); font-size: 12px; letter-spacing: .05em; }
.channel-card strong i { margin-left: 8px; font-style: normal; }
.channel-deep { --channel: #ff5a47; }
.channel-teach { --channel: #9d7cff; }
.channel-make { --channel: #57dc91; }
.no-js .channel-deep { background-image: url("/assets/channel-stocks-object-motion-20260712.webp"); }
.no-js .channel-teach { background-image: url("/assets/channel-ai-object-motion-20260712.webp"); }
.no-js .channel-make { background-image: url("/assets/channel-lab-object-motion-20260712.webp"); }

@media (max-width: 760px) {
  .channels-heading { align-items: start; flex-direction: column; gap: 12px; }
  .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .channel-card,.channel-teach,.channel-make { grid-column: span 1; }
  .channel-make { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .channel-grid { grid-template-columns: 1fr; }
  .channel-card,.channel-teach,.channel-make { grid-column: 1; min-height: 330px; aspect-ratio: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .channel-card video { display: none; }
}

.atlas {
  min-height: 740px;
  padding: 130px 0;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 70px;
}

.atlas-copy > p:not(.section-kicker) {
  max-width: 460px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--cyan);
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

.atlas-stage {
  --atlas-x: 0px;
  --atlas-y: 0px;
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(54, 213, 232, 0.32);
  background:
    radial-gradient(circle at 50% 50%, rgba(54, 213, 232, 0.13), transparent 10%),
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(54, 213, 232, 0.05) 28.2% 28.5%, transparent 28.7% 48%, rgba(213, 164, 87, 0.08) 48.2% 48.5%, transparent 48.7%),
    linear-gradient(145deg, rgba(11, 35, 51, 0.72), rgba(4, 15, 25, 0.84));
  box-shadow: 20px 24px 0 rgba(240, 230, 207, 0.035), inset 0 0 80px rgba(0, 0, 0, 0.34);
  transform: translate3d(var(--atlas-x), var(--atlas-y), 0);
  transition: transform 0.18s ease-out;
}

.atlas-stage::before,
.atlas-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.atlas-stage::before {
  background: repeating-linear-gradient(0deg, rgba(240, 230, 207, 0.025) 0 1px, transparent 1px 6px);
}

.atlas-stage::after {
  background: radial-gradient(circle at center, transparent 38%, rgba(3, 11, 18, 0.72) 100%);
}

.atlas-radar {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 430px;
  height: 430px;
  border: 1px dashed rgba(54, 213, 232, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.atlas-radar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(54, 213, 232, 0.22), transparent 16%, transparent 100%);
  animation: radar-spin 9s linear infinite;
}

.atlas-center {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--paper);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 13px rgba(240, 230, 207, 0.08), 0 0 42px rgba(54, 213, 232, 0.22);
}

.atlas-center:hover,
.atlas-center:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 0 0 17px rgba(240, 230, 207, 0.1), 0 0 54px rgba(54, 213, 232, 0.34);
}

.atlas-center span {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 900;
}

.atlas-node {
  position: absolute;
  z-index: 7;
  min-width: 128px;
  padding: 12px 14px 12px 36px;
  border: 1px solid rgba(240, 230, 207, 0.22);
  color: var(--paper);
  background: rgba(6, 21, 34, 0.78);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.atlas-node:hover,
.atlas-node:focus-visible {
  border-color: var(--cyan);
  background: rgba(10, 37, 52, 0.92);
  transform: translateY(-5px);
}

.atlas-node i {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: node-pulse 2.2s ease-in-out infinite;
}

.atlas-node strong,
.atlas-node span {
  display: block;
}

.atlas-node strong {
  font-size: 14px;
}

.atlas-node span {
  margin-top: 4px;
  color: rgba(240, 230, 207, 0.48);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.node-stock {
  left: 8%;
  top: 20%;
}

.node-radar {
  right: 8%;
  top: 18%;
}

.node-books {
  right: 11%;
  bottom: 16%;
}

.node-ai {
  left: 10%;
  bottom: 15%;
}

.node-ai i {
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(229, 47, 112, 0.72);
}

.atlas-path {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(54, 213, 232, 0.82), transparent);
}

.path-one {
  transform: rotate(-28deg);
}

.path-two {
  transform: rotate(35deg);
}

.closing {
  position: relative;
  min-height: 520px;
  margin-bottom: 64px;
  padding: 90px 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(6, 21, 34, 0.98), rgba(6, 21, 34, 0.48));
}

.no-js .closing,
.closing.is-background-loaded {
  background:
    linear-gradient(90deg, rgba(6, 21, 34, 0.98), rgba(6, 21, 34, 0.48)),
    url("/assets/hero-poster-20260815.webp") center right / cover no-repeat;
}

.closing::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 50%;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(240, 230, 207, 0.34);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: closing-orbit 18s linear infinite;
}

.closing > * {
  position: relative;
  z-index: 2;
}

.closing h2 {
  max-width: 720px;
  margin: 16px 0 30px;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 14px;
}

.subscribe-input {
  min-width: 260px;
  min-height: 48px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 21, 34, 0.72);
  color: var(--paper-bright);
  font-family: var(--mono);
  font-size: 13px;
}

.subscribe-input::placeholder {
  color: var(--muted);
}

.subscribe-input:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.subscribe-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.subscribe-consent {
  display: flex;
  flex: 0 0 100%;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.65;
}

.subscribe-consent input {
  margin-top: 3px;
  accent-color: var(--pink);
}

.subscribe-consent a {
  color: var(--cyan);
}

.subscribe-note {
  margin: 0 0 26px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

@media (max-width: 640px) {
  .subscribe-input {
    min-width: 0;
    width: 100%;
  }

  .subscribe-form .button {
    width: 100%;
    justify-content: center;
  }
}

.site-footer {
  width: var(--page);
  margin: 0 auto;
  padding: 0 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(240, 230, 207, 0.48);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.7;
}

.site-footer p {
  margin: 0;
}

.no-js .reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.7, 0.1, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
}

@keyframes signal-pulse {
  50% { transform: scale(1.35); opacity: 0.72; }
}

@keyframes glow-breathe {
  50% { transform: scale(1.08); opacity: 0.72; }
}

@keyframes orbit-one {
  to { transform: translate(-50%, -50%) rotate(350deg); }
}

@keyframes orbit-two {
  to { transform: translate(-50%, -50%) rotate(382deg); }
}

@keyframes float-star {
  50% { transform: translateY(-14px) rotate(8deg); opacity: 0.72; }
}

@keyframes dot-drift {
  50% { transform: translate(-10px, 12px) scale(0.92); }
}

@keyframes value-front {
  50% { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes value-back {
  50% { transform: translateY(5px) rotate(1deg); opacity: 0.78; }
}

@keyframes flight-progress {
  0%, 8% { left: 0; transform: translateY(4px) rotate(8deg); opacity: 0; }
  18% { opacity: 1; }
  78% { opacity: 1; }
  90%, 100% { left: calc(100% - 28px); transform: translateY(-4px) rotate(8deg); opacity: 0; }
}

@keyframes subtitle-scan {
  0%, 12% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@keyframes caption-en {
  0%, 34% { opacity: 1; transform: translate(-50%, 0); }
  45%, 88% { opacity: 0; transform: translate(-50%, -7px); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes caption-zh {
  0%, 34% { opacity: 0; transform: translate(-50%, 7px); }
  45%, 88% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 7px); }
}

@keyframes radar-spin {
  to { transform: rotate(360deg); }
}

@keyframes node-pulse {
  50% { transform: scale(1.5); opacity: 0.65; }
}

@keyframes closing-orbit {
  to { transform: translateY(-50%) rotate(360deg); }
}

@media (max-width: 1180px) {
  :root {
    --page: min(1120px, calc(100% - 40px));
  }

  .site-nav {
    gap: 16px;
  }

  .motion-label {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(390px, 0.92fr) minmax(480px, 1.08fr);
  }

  .hero-art {
    height: 490px;
  }

  .floating-dot {
    width: 42px;
    height: 42px;
  }
}

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

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

  .signal-line {
    display: none;
  }

  .site-nav {
    gap: 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-primary {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(320px, calc(100vw - 26px));
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid var(--line);
    background: rgba(6, 21, 34, 0.99);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.36);
  }

  .site-nav.is-open .nav-primary {
    display: flex;
  }

  .nav-primary a {
    min-height: 48px;
    padding: 0 14px;
  }

  .nav-primary a:hover,
  .nav-primary a:focus-visible {
    color: var(--cyan-soft);
    background: rgba(240, 230, 207, 0.07);
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    grid-template-columns: 1fr;
  }

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

  .hero-art {
    height: min(66vw, 560px);
    margin-top: -10px;
  }

  .hero-status {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .section-kicker {
    grid-column: auto;
  }

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

  .signal-card:first-child {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .atlas {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 26px);
  }

  .site-header {
    gap: 12px;
  }

  .wordmark {
    min-height: 48px;
    align-items: center;
    font-size: 25px;
  }

  .wordmark::after {
    bottom: -15px;
    width: 78px;
  }

  .site-nav .x-link {
    min-height: 48px;
    padding-left: 12px;
    font-size: 11px !important;
  }

  .motion-toggle {
    min-width: 48px;
    min-height: 48px;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 66px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(52px, 15vw, 78px);
    letter-spacing: -0.08em;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 20px;
  }

  .hero-art {
    height: 390px;
    margin: -8px -14px 0;
  }

  .hero-video {
    left: -12%;
    width: 124%;
  }

  .market-signal {
    right: 4%;
    top: 108px;
    width: 43%;
    height: 150px;
  }

  .floating-dot {
    right: 4%;
    bottom: 13%;
    width: 32px;
    height: 32px;
  }

  .signals {
    padding-top: 24px;
    padding-bottom: 88px;
  }

  .section-heading h2,
  .atlas-copy h2,
  .closing h2 {
    font-size: 44px;
  }

  .section-heading > p:last-child {
    display: none;
  }

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

  .signal-card,
  .signal-card:first-child {
    grid-column: auto;
    min-height: 330px;
  }

  .card-copy p {
    font-size: 32px;
  }

  .atlas {
    min-height: auto;
    padding: 88px 0;
  }

  .atlas-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

  .atlas-stage {
    min-height: 470px;
  }

  .atlas-radar {
    width: 330px;
    height: 330px;
  }

  .atlas-node {
    min-width: 112px;
    padding: 10px 10px 10px 30px;
  }

  .atlas-node i {
    left: 11px;
    top: 16px;
  }

  .node-stock {
    left: 4%;
  }

  .node-radar {
    right: 4%;
  }

  .node-books {
    right: 4%;
  }

  .node-ai {
    left: 4%;
  }

  .closing {
    min-height: 470px;
    padding: 74px 24px;
    background-position: 70% center;
  }

  .closing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 21, 34, 0.25);
  }

  .closing::after {
    display: none;
  }

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

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

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

  .hero-art,
  .atlas-stage {
    transform: none !important;
  }
}

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

  html {
    scroll-behavior: auto;
    overscroll-behavior-x: none;
  }

  body::before,
  .paper-grain {
    position: absolute;
  }

  #starfield {
    display: none;
  }

  .site-header {
    left: 13px;
    right: 13px;
    width: auto;
    transform: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-art {
    margin: -8px 0 0;
    overflow: hidden;
    transform: none !important;
    transition: none;
  }

  .hero-video {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .wordmark i,
  .hero-glow,
  .hero-orbit,
  .floating-star,
  .floating-dot,
  .closing::after {
    animation: none !important;
  }

  .site-nav a:hover,
  .button:hover,
  .signal-card:hover,
  .signal-card:focus-visible,
  .channel-card:hover,
  .channel-card:focus-visible,
  .atlas-center:hover,
  .atlas-center:focus-visible,
  .atlas-node:hover,
  .atlas-node:focus-visible {
    transform: none;
  }

  .signal-card:hover video,
  .signal-card:focus-visible video,
  .channel-card:hover video,
  .channel-card:focus-visible video {
    transform: scale(1.02);
    filter: none;
  }
}

@supports (overflow: clip) {
  @media (max-width: 640px), (hover: none) and (pointer: coarse) {
    html,
    body {
      overflow-x: clip;
    }
  }
}

/* ===== 2026-08-10 首页改版：订阅优先 + 封面卡片 ===== */
.hero-solo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1180px;
  min-height: auto;
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(36px, 6vh, 60px)) 20px 8px;
}
.hero-solo h1 { font-size: clamp(34px, 6vw, 88px); }
@media (min-width: 900px) {
  .hero-solo h1 br { display: none; }
}
.hero-solo .hero-copy { padding-bottom: 0; }
.hero-solo .hero-subtitle { max-width: 42em; margin-left: auto; margin-right: auto; }
.hero-subscribe { width: 100%; max-width: 640px; margin: 28px auto 0; }
.hero-subscribe .subscribe-form { display: flex; gap: 10px; }
.hero-subscribe .subscribe-input { flex: 1; min-width: 0; }
.hero-subscribe-note { margin-top: 14px; }
@media (max-width: 560px) {
  .hero-subscribe .subscribe-form { flex-direction: column; }
}
.section-gap { padding-top: clamp(44px, 7vh, 72px); }
.cover-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .cover-grid { grid-template-columns: 1fr; } }
.cover-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, transform 0.2s;
}
.cover-card:hover { border-color: rgba(255, 255, 255, 0.4); transform: translateY(-3px); }
.cover-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1983 / 793;
  object-fit: contain;
  background: #f5efe2;
}
.cover-copy { padding: 16px 18px 20px; }
.issue-date {
  display: block;
  margin-bottom: 8px;
  font: 600 12px/1 var(--mono);
  letter-spacing: 0.12em;
  opacity: 0.6;
}
.issue-title {
  display: block;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 700;
  line-height: 1.55;
}
.issue-more { text-align: center; margin-top: 24px; margin-bottom: 0; }
.what-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .what-grid { grid-template-columns: 1fr; } }
.what-card {
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}
.what-card .kicker {
  display: block;
  margin-bottom: 12px;
  font: 600 12px/1 var(--mono);
  letter-spacing: 0.18em;
  opacity: 0.6;
}
.what-card h3 { margin: 0 0 10px; font-size: 18px; }
.what-card p { margin: 0; font-size: 14.5px; line-height: 1.85; opacity: 0.85; }
.channels-heading { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 24px; }
.channels-heading h2 { font-size: clamp(26px, 3vw, 40px); }
.channels-heading > p:last-child { margin: 0; max-width: none; font-size: 15.5px; }
