*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

:root {
  --color-bg: #0A1128;
  --color-bg-dark: #06091A;
  --color-bg-light: #14213D;
  --color-accent: #00FFA3;
  --color-hot: #FF3D2E;
  --color-paper: #F5F3EB;
  --color-ink: #1F2430;
  --color-gray: #B0B8C8;
  --font-heading: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Microsoft JhengHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Microsoft JhengHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-data: "Roboto Mono", "SFMono-Regular", "SF Mono", "Cascadia Code", "Consolas", "Liberation Mono", monospace;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 96px;
  --rail-width: 264px;
  --mobile-bar-height: 60px;
  --radius: 4px;
  --border-color: rgba(176, 184, 200, 0.15);
  --border-green: rgba(0, 255, 163, 0.3);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  background: var(--color-bg);
  color: var(--color-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

#main-content {
  scroll-margin-top: 80px;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.25;
  color: var(--color-paper);
  letter-spacing: 0.02em;
}

p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

ul[class],
ol[class] {
  list-style: none;
  margin: 0;
  padding: 0;
}

hr {
  border: 0;
  margin: 0;
}

a {
  color: var(--color-accent);
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

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

@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;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.section {
  padding: var(--space-5) 0;
}

.section--tight {
  padding: var(--space-4) 0;
}

.section--slim {
  padding: var(--space-3) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-6) 0;
  }
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 16px;
  margin-bottom: var(--space-4);
}

.section-kicker {
  display: block;
  width: 100%;
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.section-title {
  font-size: 2rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-sub {
  max-width: 640px;
  margin-bottom: var(--space-4);
  color: var(--color-gray);
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: var(--space-4);
}

.grid--2,
.grid--3,
.grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  body {
    margin-left: var(--rail-width);
  }
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 500;
  padding: 12px 24px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--rail-width);
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg-dark);
  border-right: 1px solid var(--border-green);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.site-header__bar {
  padding: 28px 24px 22px;
  border-bottom: 1px solid var(--border-color);
}

.site-header__brand {
  min-width: 0;
}

.site-header__tag {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-data);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(176, 184, 200, 0.5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  background: var(--color-accent);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}

.brand__text {
  display: block;
  min-width: 0;
}

.brand__name {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-paper);
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.brand__sub {
  display: block;
  margin-top: 2px;
  font-family: var(--font-data);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--color-gray);
}

.nav-toggle {
  display: none;
}

.site-nav {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.site-nav__track {
  position: absolute;
  left: 24px;
  top: 6%;
  bottom: 6%;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(176, 184, 200, 0.15) 45%, rgba(255, 61, 46, 0.6) 100%);
  opacity: 0.7;
  pointer-events: none;
}

.site-nav__track::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -3px;
  width: 8px;
  height: 8px;
  background: var(--color-hot);
  transform: rotate(45deg);
}

.site-nav__track::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -3px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  transform: rotate(45deg);
}

.site-nav__list {
  padding: 8px 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px 12px 52px;
  color: var(--color-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav__link:hover {
  color: var(--color-paper);
  background: rgba(255, 255, 255, 0.03);
}

.site-nav__dot {
  position: absolute;
  left: 21px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(176, 184, 200, 0.45);
  background: var(--color-bg-dark);
  transform: translateY(-50%);
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  pointer-events: none;
}

.site-nav__link:hover .site-nav__dot {
  border-color: var(--color-accent);
}

.site-nav__link[aria-current="page"] {
  color: var(--color-accent);
  font-weight: 700;
}

.site-nav__link[aria-current="page"] .site-nav__dot {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 163, 0.18), 0 0 12px rgba(0, 255, 163, 0.5);
}

.site-nav__label {
  color: inherit;
}

.site-nav__num {
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(176, 184, 200, 0.4);
  transition: color 0.2s;
}

.site-nav__link:hover .site-nav__num {
  color: var(--color-gray);
}

.site-nav__link[aria-current="page"] .site-nav__num {
  color: var(--color-accent);
}

.site-actions {
  margin-top: auto;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border-green);
}

.device-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.device-toggle:hover {
  background: rgba(0, 255, 163, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 255, 163, 0.12);
}

.device-toggle__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(0, 255, 163, 0.2);
}

.device-toggle__label {
  font-size: 0.85rem;
}

.site-lang {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.72rem;
  color: rgba(176, 184, 200, 0.55);
}

.site-lang__value {
  font-family: var(--font-data);
  color: var(--color-gray);
  letter-spacing: 0.04em;
}

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

@media (max-width: 1023px) {
  .site-header {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-green);
    z-index: 120;
  }

  .site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--mobile-bar-height);
    min-height: var(--mobile-bar-height);
    padding: 0 16px;
    border-bottom: none;
  }

  .site-header__brand {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
  }

  .site-header__tag {
    display: none;
  }

  .brand {
    margin-right: auto;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .brand__name {
    font-size: 1.2rem;
  }

  .brand__sub {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border-green);
    border-radius: var(--radius);
    cursor: pointer;
  }

  .nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--mobile-bar-height);
    left: 0;
    width: min(320px, 88vw);
    height: calc(100vh - var(--mobile-bar-height));
    height: calc(100dvh - var(--mobile-bar-height));
    background: var(--color-bg);
    border-right: 1px solid var(--border-green);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    box-shadow: none;
    visibility: hidden;
    pointer-events: none;
    z-index: 110;
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    box-shadow: 24px 0 48px rgba(0, 0, 0, 0.45);
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(6, 9, 26, 0.65);
    z-index: 105;
  }

  body.nav-open {
    overflow: hidden;
  }
}

.device-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.device-modal[data-open="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.device-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 26, 0.84);
}

.device-modal__panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: var(--color-bg-light);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  padding: 48px 40px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.device-modal[data-open="true"] .device-modal__panel {
  transform: translateY(0);
}

.device-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--color-gray);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.device-modal__close:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.device-modal__kicker {
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.device-modal__title {
  font-size: 1.9rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.device-modal__desc {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 32px;
  max-width: 46ch;
}

.device-modal__lanes {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 12px 28px;
  margin-bottom: 16px;
}

.device-modal__lane {
  position: relative;
  flex: 1;
  text-align: center;
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--color-gray);
}

.device-modal__lane::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto 10px;
  background: var(--color-bg-light);
  border: 2px solid rgba(176, 184, 200, 0.6);
  border-radius: 50%;
}

.device-modal__signal {
  position: absolute;
  top: 1px;
  left: 18%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 163, 0.2), 0 0 16px rgba(0, 255, 163, 0.7);
  transform: translateX(-50%);
}

.device-modal[data-open="true"] .device-modal__signal {
  animation: deviceSignal 2.4s cubic-bezier(0.45, 0, 0.55, 1) both;
}

@keyframes deviceSignal {
  0% {
    left: 18%;
  }
  30% {
    left: 50%;
  }
  55% {
    left: 50%;
  }
  80% {
    left: 82%;
  }
  100% {
    left: 82%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .device-modal__signal {
    animation: none !important;
    left: 50%;
  }
}

.device-modal__note {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: rgba(176, 184, 200, 0.7);
  border-top: 1px dashed rgba(176, 184, 200, 0.2);
  padding-top: 16px;
  margin-bottom: 24px;
}

.device-modal__confirm {
  display: block;
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  position: relative;
  margin-top: var(--space-6);
  background: var(--color-bg-dark);
  border-top: 1px solid var(--border-green);
}

@media (min-width: 768px) {
  .site-footer {
    margin-top: var(--space-7);
  }
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 160px;
  height: 4px;
  background: var(--color-accent);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 80px;
  height: 4px;
  background: var(--color-hot);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.site-footer__inner {
  position: relative;
  padding-top: 56px;
  padding-bottom: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 40px 48px;
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-block {
  min-width: 0;
}

.footer-block--brand {
  max-width: 340px;
}

.footer-block--contact {
  max-width: 320px;
}

.footer-brand__logo {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--color-paper);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.footer-brand__statement {
  max-width: 300px;
  color: var(--color-gray);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-brand__code {
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(176, 184, 200, 0.45);
}

.footer-nav__title {
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: var(--font-data);
}

.footer-nav__list {
  display: grid;
  gap: 6px;
}

.footer-nav__list a {
  display: inline-block;
  color: var(--color-gray);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-nav__list a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-contact__line {
  margin-bottom: 4px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--color-gray);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(176, 184, 200, 0.14);
  font-size: 0.78rem;
  color: rgba(176, 184, 200, 0.55);
}

.footer-meta p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn--solid {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn--solid:hover {
  background: var(--color-paper);
  color: var(--color-bg);
  box-shadow: 0 6px 0 rgba(0, 255, 163, 0.25);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--outline:hover {
  background: rgba(0, 255, 163, 0.1);
  box-shadow: inset 0 0 0 1px var(--color-accent);
}

.btn--hot {
  background: var(--color-hot);
  color: var(--color-paper);
}

.btn--hot:hover {
  background: #ff5a4e;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(255, 61, 46, 0.25);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 2px;
  font-family: var(--font-data);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  white-space: nowrap;
}

.tag--hot {
  background: var(--color-hot);
  color: var(--color-paper);
}

.tag--green {
  background: rgba(0, 255, 163, 0.12);
  border: 1px solid rgba(0, 255, 163, 0.4);
  color: var(--color-accent);
}

.tag--gray {
  background: rgba(176, 184, 200, 0.1);
  color: var(--color-gray);
}

.tag--outline {
  background: transparent;
  border: 1px solid rgba(176, 184, 200, 0.45);
  color: var(--color-gray);
}

.marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(0, 255, 163, 0.35);
  border-radius: 2px;
  background: rgba(0, 255, 163, 0.1);
  color: var(--color-accent);
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 700;
}

.card {
  background: var(--color-bg-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  border-color: var(--border-green);
}

.card--paper {
  background: var(--color-paper);
  color: var(--color-ink);
  border-color: transparent;
}

.card--paper:hover {
  border-color: var(--color-accent);
}

.card__title {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--color-paper);
}

.card--paper .card__title {
  color: var(--color-ink);
}

.card__body {
  margin: 0;
  color: var(--color-gray);
  font-size: 0.92rem;
  line-height: 1.75;
}

.card--paper .card__body {
  color: var(--color-ink);
}

.card--paper a {
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.data-panel {
  background: var(--color-bg-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 20px 22px;
}

.data-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.data-panel__title {
  margin: 0;
  font-size: 1rem;
  color: var(--color-paper);
  letter-spacing: 0.02em;
}

.data-panel__rows {
  display: grid;
  gap: 0;
}

.data-panel__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(176, 184, 200, 0.12);
}

.data-panel__row:first-child {
  padding-top: 0;
}

.data-panel__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.data-panel__label {
  color: var(--color-gray);
  font-size: 0.85rem;
}

.data-panel__value {
  font-family: var(--font-data);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent);
}

.data-panel--hot .data-panel__value {
  color: var(--color-hot);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--color-gray);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  font-family: var(--font-data);
  color: rgba(176, 184, 200, 0.4);
}

.breadcrumb a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-accent);
  font-weight: 700;
}

.prose {
  max-width: 72ch;
  color: var(--color-gray);
  font-size: 0.95rem;
}

.prose h2 {
  margin: 1.6em 0 0.6em;
  font-size: 1.6rem;
}

.prose h3 {
  margin: 1.4em 0 0.5em;
  font-size: 1.2rem;
}

.prose p {
  margin: 0 0 1.2em;
}

.prose ul,
.prose ol {
  margin: 0 0 1.2em 1.3em;
  padding: 0;
}

.prose li {
  margin-bottom: 0.4em;
}

.prose a {
  color: var(--color-accent);
  text-underline-offset: 3px;
}

.prose strong {
  color: var(--color-paper);
  font-weight: 700;
}

.divider {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, rgba(0, 255, 163, 0.4), rgba(176, 184, 200, 0.12) 55%, transparent);
}

.media {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.media--16x9 {
  aspect-ratio: 16 / 9;
}

.media--4x3 {
  aspect-ratio: 4 / 3;
}

.media--square {
  aspect-ratio: 1 / 1;
}

.media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: rgba(176, 184, 200, 0.5);
  text-transform: uppercase;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 12px,
    rgba(0, 255, 163, 0.08) 12px,
    rgba(0, 255, 163, 0.08) 14px,
    transparent 14px,
    transparent 28px
  );
}
