:root {
  --color-black: #0A0A0A;
  --color-red: #D40000;
  --color-silver: #C0C0C0;
  --color-yellow: #E8FF00;
  --color-card: #1A1A1A;
  --color-charcoal: #2A2A2A;
  --color-white: #FFFFFF;
  --color-gray: #B0B0B0;
  --color-red-glass: rgba(212, 0, 0, 0.6);
  --font-heading: 'Impact', 'Anton', 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --rail-w: 84px;
  --header-h: 64px;
  --container-w: 1240px;
  --notch: 10px;
  --z-header: 200;
  --z-progress: 300;
  --z-skip: 400;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.25s;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: var(--font-body);
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 3px;
}
::selection {
  background: var(--color-red);
  color: var(--color-white);
}
.skip-link {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: var(--z-skip);
  padding: 12px 24px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%) translateY(calc(-100% - 16px));
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus {
  transform: translateX(-50%) translateY(0);
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: var(--z-progress);
  pointer-events: none;
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
}
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gcol-4 { grid-column: span 4; }
.gcol-5 { grid-column: span 5; }
.gcol-6 { grid-column: span 6; }
.gcol-7 { grid-column: span 7; }
.gcol-8 { grid-column: span 8; }
.gcol-12 { grid-column: span 12; }
.section {
  padding-block: clamp(48px, 7vw, 88px);
  position: relative;
}
.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.section-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  font-style: italic;
  color: var(--color-red);
  letter-spacing: 0.02em;
}
@supports (-webkit-text-stroke: 1px var(--color-red)) {
  .section-num {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-red);
  }
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--color-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  padding-left: 14px;
  position: relative;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 5px;
  background: var(--color-red);
  transform: skewX(-18deg);
}
.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-charcoal), transparent);
  min-width: 30px;
}
.section-more {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-gray);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.section-more:hover {
  color: var(--color-yellow);
  border-color: var(--color-yellow);
}
.display-heading {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-style: italic;
}
.display-heading .outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-silver);
}
.skew {
  transform: skewX(-8deg);
}
.diag-texture {
  background-image: repeating-linear-gradient(-45deg, transparent 0 24px, rgba(255, 255, 255, 0.015) 24px 26px);
}
.red-glow {
  background: radial-gradient(ellipse at 15% 0%, var(--color-red-glass) 0%, transparent 60%);
}
.site-header {
  position: fixed;
  z-index: var(--z-header);
  background: var(--color-black);
}
@media (min-width: 1024px) {
  body {
    padding-left: var(--rail-w);
  }
  .site-header {
    inset: 0 auto 0 0;
    width: var(--rail-w);
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--color-charcoal);
  }
  .site-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-red), transparent 32%, var(--color-yellow) 50%, transparent 68%, var(--color-red));
    opacity: 0.35;
    pointer-events: none;
  }
  .scroll-progress {
    left: var(--rail-w);
    right: 0;
  }
  .header-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0 14px;
    border-bottom: 1px solid var(--color-charcoal);
  }
  .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .brand-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    position: relative;
  }
  .brand-symbol::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
  .brand-id {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .brand-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    color: var(--color-white);
    line-height: 1.3;
    text-align: center;
  }
  .brand-slogan {
    display: none;
  }
  .nav-toggle {
    display: none;
  }
  .site-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: static;
    transform: none;
    visibility: visible;
  }
  .nav-head {
    display: none;
  }
  .nav-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    gap: 2px;
    overflow-y: auto;
  }
  .nav-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 14px 4px;
    color: var(--color-gray);
    transition: color 0.2s, background 0.2s;
  }
  .nav-index {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-silver);
    letter-spacing: 0.08em;
  }
  .nav-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    transition: color 0.2s;
  }
  .nav-link:hover .nav-label {
    color: var(--color-yellow);
  }
  .nav-link[aria-current="page"] .nav-label {
    color: var(--color-yellow);
  }
  .nav-link[aria-current="page"] .nav-index {
    color: var(--color-red);
  }
  .nav-link[aria-current="page"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 3px;
    background: var(--color-red);
  }
  .nav-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 0 14px;
    border-top: 1px solid var(--color-charcoal);
  }
  .nav-update {
    font-size: 0.62rem;
    color: var(--color-gray);
    letter-spacing: 0.16em;
    writing-mode: vertical-rl;
  }
  .nav-locale {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--color-red);
    letter-spacing: 0.14em;
  }
  .header-backdrop {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  .site-header {
    inset: 0 0 auto 0;
    width: 100%;
    height: var(--header-h);
    border-bottom: 1px solid var(--color-charcoal);
  }
  .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 14px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .brand-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }
  .brand-id {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }
  .brand-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    color: var(--color-white);
    line-height: 1.2;
  }
  .brand-slogan {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    color: var(--color-gray);
    line-height: 1.2;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: var(--color-card);
    border: 1px solid var(--color-charcoal);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    transition: border-color 0.2s, background 0.2s;
  }
  .nav-toggle:hover {
    border-color: var(--color-red);
  }
  .nav-toggle-bars {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 18px;
  }
  .nav-toggle-line {
    display: block;
    height: 2px;
    background: var(--color-red);
  }
  .nav-toggle-line:nth-child(2) {
    width: 70%;
  }
  .nav-toggle-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    color: var(--color-silver);
  }
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: min(86vw, 360px);
    height: 100vh;
    background: var(--color-black);
    border-right: 1px solid var(--color-charcoal);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.3s var(--ease), visibility 0s linear 0.3s;
  }
  .site-nav[data-open] {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s var(--ease), visibility 0s;
  }
  .nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    border-bottom: 1px solid var(--color-charcoal);
  }
  .nav-head-label {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    color: var(--color-white);
  }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--color-charcoal);
    color: var(--color-white);
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
  }
  .nav-close:hover {
    background: var(--color-red);
  }
  .nav-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
  }
  .nav-item {
    margin-bottom: 2px;
  }
  .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-left: 3px solid transparent;
    color: var(--color-gray);
    transition: background 0.2s, color 0.2s;
  }
  .nav-link:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
  }
  .nav-index {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--color-silver);
  }
  .nav-label {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }
  .nav-link[aria-current="page"] {
    background: linear-gradient(90deg, rgba(212, 0, 0, 0.14), transparent 70%);
    border-left-color: var(--color-red);
    color: var(--color-white);
  }
  .nav-link[aria-current="page"] .nav-index {
    color: var(--color-yellow);
  }
  .nav-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 18px;
    border-top: 1px solid var(--color-charcoal);
    font-size: 0.75rem;
    color: var(--color-gray);
  }
  .nav-update::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 6px;
    border-radius: 50%;
    background: var(--color-yellow);
    box-shadow: 0 0 6px var(--color-yellow);
  }
  .nav-locale {
    font-family: var(--font-mono);
    letter-spacing: 0.14em;
    color: var(--color-silver);
  }
  .header-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2;
    background: rgba(10, 10, 10, 0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .site-nav[data-open] ~ .header-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  border-top: 1px solid var(--color-charcoal);
  padding-top: 48px;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--color-red-glass) 0%, transparent 70%);
  opacity: 0.16;
  pointer-events: none;
}
.site-footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(135deg, var(--color-red) 0 14px, var(--color-black) 14px 28px);
  opacity: 0.8;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer-cell {
  min-width: 0;
}
.footer-cell-brand .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-cell-brand .brand-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.footer-cell-brand .brand-id {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-cell-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  line-height: 1.2;
}
.footer-cell-brand .brand-slogan {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-gray);
}
.footer-trust {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--color-gray);
  max-width: 36ch;
  border-left: 2px solid var(--color-red);
  padding-left: 14px;
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-silver);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--color-charcoal);
  position: relative;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-red);
}
.footer-list li + li {
  margin-top: 10px;
}
.footer-list a {
  font-size: 0.875rem;
  color: var(--color-gray);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-list a:hover {
  color: var(--color-yellow);
  padding-left: 4px;
}
.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 2;
  color: var(--color-gray);
  word-break: break-all;
}
.footer-bottom {
  position: relative;
  border-top: 1px solid var(--color-charcoal);
  padding: 16px 0 24px;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer-copy,
.footer-icp {
  font-size: 0.8125rem;
  color: var(--color-gray);
}
.footer-icp {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 40px;
  }
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 1023.98px) {
  .grid {
    gap: 14px;
  }
  .gcol-4,
  .gcol-5,
  .gcol-6,
  .gcol-7,
  .gcol-8,
  .gcol-12 {
    grid-column: span 6;
  }
}
@media (max-width: 640px) {
  .gcol-4,
  .gcol-5,
  .gcol-6,
  .gcol-7,
  .gcol-8,
  .gcol-12 {
    grid-column: span 12;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-card);
  border: 1px solid var(--color-charcoal);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover {
  background: var(--color-charcoal);
  border-color: var(--color-silver);
  color: var(--color-yellow);
  transform: translateY(-1px);
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}
.btn-primary:hover {
  background: #ff1a1a;
  border-color: #ff1a1a;
  color: var(--color-white);
}
.btn-accent {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
}
.btn-accent:hover {
  background: #f2ff3d;
  border-color: #f2ff3d;
  color: var(--color-black);
}
.btn-ghost {
  background: transparent;
  border-color: var(--color-silver);
  color: var(--color-silver);
}
.btn-ghost:hover {
  color: var(--color-yellow);
  border-color: var(--color-yellow);
  background: transparent;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-silver);
  background: var(--color-card);
  border: 1px solid var(--color-charcoal);
}
.tag-live {
  color: var(--color-yellow);
  border-color: rgba(232, 255, 0, 0.3);
}
.tag-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 6px var(--color-yellow);
}
.tag-red {
  color: var(--color-white);
  background: var(--color-red);
  border-color: var(--color-red);
}
.card {
  position: relative;
  background: var(--color-card);
  border: 1px solid var(--color-charcoal);
  padding: 24px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.card-hover {
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card-hover:hover {
  transform: translateY(-4px);
  border-color: var(--color-red);
}
.card-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-red);
  letter-spacing: 0.08em;
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-top: 6px;
  line-height: 1.25;
}
.card-text {
  color: var(--color-gray);
  font-size: 0.875rem;
  margin-top: 8px;
  line-height: 1.7;
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.bento-card {
  grid-column: span 6;
  position: relative;
  background: var(--color-card);
  border: 1px solid var(--color-charcoal);
  padding: 24px;
  min-height: 140px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.bento-card.card-wide {
  grid-column: span 7;
}
.bento-card.card-tall {
  grid-column: span 5;
}
.bento-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-red);
}
@media (max-width: 1023.98px) {
  .bento-card,
  .bento-card.card-wide,
  .bento-card.card-tall {
    grid-column: span 6;
  }
}
@media (max-width: 640px) {
  .bento-card,
  .bento-card.card-wide,
  .bento-card.card-tall {
    grid-column: span 12;
  }
}
.frame {
  position: relative;
  padding: 32px;
  border: 1px solid var(--color-charcoal);
  background: linear-gradient(135deg, rgba(212, 0, 0, 0.05), transparent 38%);
}
.frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--color-yellow);
  border-left: 2px solid var(--color-yellow);
}
.frame::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid var(--color-red);
  border-right: 2px solid var(--color-red);
}
.frame-inner {
  border-top: 2px solid var(--color-yellow);
  padding-top: 20px;
}
.frame-scale {
  position: absolute;
  top: 24px;
  right: -8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-gray);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.data-num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--color-yellow);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.data-label {
  font-size: 0.72rem;
  color: var(--color-gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.data-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-charcoal);
}
.data-row:last-child {
  border-bottom: 0;
}
.meter {
  position: relative;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--color-charcoal) 0 12px, var(--color-black) 12px 14px);
  overflow: hidden;
}
.meter-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
  width: 50%;
  transition: width 0.6s var(--ease);
}
.img-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--color-card), var(--color-charcoal));
  border: 1px solid var(--color-charcoal);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}
.img-shell.wide {
  aspect-ratio: 16 / 9;
}
.img-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 0, 0, 0.18), transparent 55%);
  pointer-events: none;
}
.img-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-shell .img-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.85), transparent);
}
.img-cap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gray);
}
.tabs {
  display: flex;
  flex-direction: column;
}
.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  border-bottom: 1px solid var(--color-charcoal);
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray);
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.tab-btn:hover {
  color: var(--color-yellow);
}
.tab-btn[aria-selected="true"] {
  color: var(--color-white);
  background: var(--color-card);
  border-color: var(--color-charcoal) var(--color-charcoal) var(--color-red) var(--color-charcoal);
}
.tab-panel {
  display: none;
  padding-top: 20px;
}
.tab-panel.is-active {
  display: block;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-gray);
}
.breadcrumb a {
  color: var(--color-silver);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--color-yellow);
}
.breadcrumb li + li::before {
  content: '/';
  margin-right: 6px;
  color: var(--color-charcoal);
}
.breadcrumb li[aria-current="page"] {
  color: var(--color-white);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-progress {
    transition: none;
  }
  .meter-fill {
    transition: none;
  }
}
