.st-label {
  font-family: var(--hud);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--line-soft);
}

.st-stripes {
  flex: 1;
  min-width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--line-faint), transparent);
}

.st-title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-faint);
  position: relative;
}

.st-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 120px;
  height: 1px;
  background: var(--ink-cool);
  transform-origin: left;
  scale: 0 1;
  transition: scale 1100ms var(--snap) 200ms;
}

.st-title.is-seen::after {
  scale: 1 1;
}

.st-title-index {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 22px;
  padding: 0 8px;
  border: 1px solid var(--line-soft);
  color: var(--ink-cool);
  font-family: var(--num);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.st-title-name {
  font-family: var(--station);
  font-size: clamp(0.95rem, calc(1.15 * var(--vw, 1vw)), 1.15rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-cool);
  white-space: nowrap;
}

.st-title-meta {
  font-family: var(--hud);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--line-soft);
  white-space: nowrap;
}

.st-frame {
  position: relative;
  border: 1px solid var(--line-faint);
  background: var(--panel);
}

.st-frame::before,
.st-frame::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.st-frame::before {
  top: 0;
  left: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.st-frame::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.st-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-bottom: clamp(26px, calc(5 * var(--vh, 1vh)), 54px);
  padding: 10px 18px 10px 10px;
  border: 1px solid var(--line-faint);
}

.st-badge-mark {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  position: relative;
}

.st-badge-mark::after {
  content: '';
  position: absolute;
  inset: 11px;
  background: var(--ink-cool);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.st-badge-name {
  font-family: var(--station);
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--ink-cool);
}

.st-badge-sub {
  font-family: var(--hud);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--line-soft);
}

.st-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px 11px 14px;
  border: 1px solid var(--line-soft);
  background: rgba(3, 5, 10, 0.6);
  color: var(--ink-cool);
  font: inherit;
  font-family: var(--hud);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  transition: color 260ms var(--snap), border-color 260ms ease;
}

.st-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink-cool);
  transform-origin: left;
  scale: 0 1;
  transition: scale 380ms var(--snap);
}

.st-tab i {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  rotate: 45deg;
  transition: background 260ms ease;
}

.st-tab:hover,
.st-tab:focus-visible {
  color: var(--void);
  border-color: var(--ink-cool);
}

.st-tab:hover::before,
.st-tab:focus-visible::before {
  scale: 1 1;
}

.st-tab:hover i,
.st-tab:focus-visible i {
  background: currentColor;
}

.st-tab:active {
  translate: 0 1px;
}

@media (max-width: 700px) {
  .st-title-meta {
    display: none;
  }
}
