@font-face {
  font-family: "Pretendard";
  src: url("./fonts/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ChosunGu";
  src: url("./fonts/ChosunGu.woff") format("woff");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-blue: #1a1a9a;
  --cyan: #00a8a8;
  --cyan-dark: #007777;
  --black: #000;
  --white: #fff;
  --yellow: #ffff55;
  --orange: #ff7a00;
  --border: 2px solid #000;
  --shadow: 6px 6px 0 #000;
  --font: Arial, "ChosunGu", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg-blue);
}

body {
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.8px;
}

button,
input {
  font: inherit;
}

button {
  border-radius: 0;
}

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

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

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}

.led {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: blink 2.4s ease-in-out infinite;
}

.topbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  background: var(--bg-blue);
  border-bottom: 3px solid #000;
}

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

.bm {
  display: grid;
  place-items: center;
  height: 33px;
  padding: 0 10px;
  background: var(--yellow);
  color: #000;
  border: var(--border);
  box-shadow: 3px 3px 0 #000;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bn {
  display: block;
  color: var(--yellow);
  font-family: "ChosunGu", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.7px;
  color: var(--yellow);
  text-shadow: 1px 1px 0 #000;
  -webkit-text-stroke: 0;
  white-space: nowrap;
}

.bs {
  display: block;
  margin-top: 4px;
  color: var(--cyan);
  font-family: var(--font);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.15px;
  white-space: nowrap;
  text-transform: uppercase;
}

.ts {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(255 255 255 / 45%);
  font-size: 11px;
}

/* ---------- ADD TO HOME SCREEN ---------- */
.a2hs {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  margin-right: 4px;
  background: var(--cyan);
  color: #000;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  padding: 6px 12px;
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: -0.2px;
  cursor: pointer;
  border-radius: 0;
  background-image: linear-gradient(#00c4c4, #00a8a8);
  forced-color-adjust: none;
}
.a2hs:hover { background-image: linear-gradient(#22e0e0, #00c4c4); }
.a2hs:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #000; }
.a2hsTip { position: fixed; z-index: 81; width: min(300px, calc(100vw - 24px)); }
.a2hsTipInner {
  position: relative;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  box-shadow: 5px 5px 0 #000;
  padding: 13px 14px;
  background-image: linear-gradient(#fff, #fff);
  forced-color-adjust: none;
}
.a2hsTipInner b { font-weight: 1000; }
.a2hsTipInner > span { display: block; font-size: 12px; line-height: 1.55; font-weight: 700; color: #222; }
.a2hsCount { font-style: normal; color: #9a9a9a; font-weight: 800; font-size: 11px; margin-left: 2px; }
.a2hsTipInner::after {
  content: "";
  position: absolute;
  left: var(--arrow, 50%);
  top: -11px;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 11px solid #000;
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgb(0 0 0 / 54%);
}
.overlay.on { display: flex; }
.modal {
  width: min(680px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  color: #000;
  border: 3px solid #000;
  box-shadow: 8px 8px 0 #000;
}
.m-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #000;
  color: #fff;
  border-bottom: 2px solid #000;
}
.m-head .x {
  margin-left: auto;
  background: #ff4d4d;
  color: #fff;
  border: var(--border);
  box-shadow: 2px 2px 0 #000;
  padding: 2px 9px;
  font-weight: 800;
  cursor: pointer;
}
.m-body { padding: 16px; }
.badge { display: inline-block; font-size: 10px; padding: 2px 7px; border: 1.5px solid #000; font-weight: 800; }
.iosSheet { width: min(440px, 100%); }
.iosLead { font-size: 13px; font-weight: 800; margin: 0 0 12px; }
.iosSteps { list-style: none; display: grid; gap: 10px; margin: 0 0 12px; padding: 0; }
.iosSteps li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1.5px solid #000;
  background: #f7f7f7;
  padding: 10px;
  box-shadow: 2px 2px 0 #000;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
}
.iosNum {
  flex: none;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border: 1.5px solid #000;
  font-weight: 1000;
  font-size: 12px;
}
.iosHint { margin: 0; color: #555; font-size: 11px; font-weight: 800; line-height: 1.5; }

.desktop {
  flex: 1;
  display: grid;
  grid-template-columns: 196px 1fr;
  min-height: 0;
  overflow: hidden;
}

.lcol {
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 8px 0 8px 8px;
  overflow: hidden;
  border-right: var(--border);
}

.win {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--cyan);
  color: var(--black);
  border: var(--border);
  box-shadow: var(--shadow);
}

.wh {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 6px 2px 8px;
  background: var(--black);
  color: var(--white);
  border-bottom: var(--border);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wh-faint {
  font-size: 9px;
  opacity: 0.5;
}

.syslog {
  flex-shrink: 0;
}

.sb {
  padding: 6px 8px;
  color: var(--black);
  font-size: 10px;
  line-height: 1.9;
}

.ok {
  color: #004400;
}

.warn {
  color: #784300;
}

.smenu {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-top: 6px;
  overflow: hidden;
  background: var(--cyan);
  color: var(--black);
  border: var(--border);
  box-shadow: var(--shadow);
}

.logo-area {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg-blue);
  border-bottom: var(--border);
}

.pg {
  display: grid;
  grid-template-columns: repeat(12, 4px);
  grid-template-rows: repeat(8, 4px);
}

.px {
  background: var(--cyan);
}

.logo-name {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 1px;
}

.logo-sub {
  color: rgb(0 168 168 / 50%);
  font-size: 8px;
}

.flist {
  flex: 1;
  overflow-y: auto;
}

.fi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 7px 10px;
  cursor: pointer;
  background: transparent;
  color: var(--black);
  border: 0;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.8px;
  text-align: left;
  text-transform: uppercase;
}

.fi:hover,
.fi.act,
.fi:focus-visible {
  background: var(--black);
  color: var(--cyan);
  outline: 0;
}

.fc {
  margin-left: 8px;
  font-size: 9px;
  opacity: 0.68;
}

.exw {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  margin: 8px 8px 8px 6px;
  overflow: hidden;
  background: var(--cyan);
  color: var(--black);
  border: var(--border);
  box-shadow: var(--shadow);
}

.srow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-bottom: 1px solid rgb(0 0 0 / 30%);
  font-size: 12px;
}

.si {
  flex: 1;
  min-width: 0;
  background: transparent;
  color: var(--black);
  border: 0;
  outline: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.5px;
  caret-color: var(--black);
}

.si::-webkit-search-cancel-button {
  appearance: none;
}

.si::placeholder {
  color: rgb(0 0 0 / 38%);
}

.fl {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: var(--black) var(--cyan);
  scrollbar-width: thin;
}

.fl::-webkit-scrollbar {
  width: 12px;
}

.fl::-webkit-scrollbar-track {
  background: var(--cyan);
}

.fl::-webkit-scrollbar-thumb {
  background: var(--black);
}

.feed-shell {
  min-height: 100%;
}

.feed-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 8px 10px;
  border-bottom: var(--border);
}

.feed-kicker {
  color: #004b4b;
  font-size: 9px;
  letter-spacing: 1.5px;
}

.feed-title {
  margin-top: 2px;
  font-size: clamp(20px, 3vw, 36px);
  line-height: 0.96;
  letter-spacing: -2px;
}

.feed-deck {
  max-width: 690px;
  margin-top: 5px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.feed-stamp {
  min-width: 92px;
  padding: 4px 7px;
  background: var(--black);
  color: var(--cyan);
  font-size: 9px;
  line-height: 1.55;
  text-align: right;
}

.feed-stamp strong {
  display: block;
  color: var(--yellow);
  font-size: 14px;
}

.section-cap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 7px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-cap span:last-child {
  color: var(--cyan);
}

.cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  border-bottom: var(--border);
}

.signal-lead {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(14px, 3vw, 30px);
  background:
    linear-gradient(90deg, transparent 49%, rgb(0 0 0 / 10%) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgb(0 0 0 / 10%) 50%, transparent 51%);
  background-size: 26px 26px;
  border-right: var(--border);
}

.signal-index {
  color: rgb(0 0 0 / 28%);
  font-size: clamp(54px, 10vw, 124px);
  line-height: 0.72;
  letter-spacing: -9px;
}

.signal-lead h2 {
  max-width: 780px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: clamp(22px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2.8px;
}

.signal-lead p {
  max-width: 780px;
  margin-top: 8px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.text-link {
  display: inline-block;
  margin-top: 9px;
  padding: 3px 6px;
  background: var(--black);
  color: var(--yellow);
  font-size: 10px;
  text-decoration: underline;
}

.signal-side {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  background: var(--black);
  color: var(--cyan);
}

.signal-art {
  position: relative;
  min-height: 178px;
  overflow: hidden;
}

.signal-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.12);
}

.signal-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgb(0 0 0 / 82%));
}

.signal-art-copy {
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: 7px;
  left: 8px;
}

.signal-art-copy strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.signal-art-copy span {
  color: var(--yellow);
  font-size: 9px;
}

.signal-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--cyan);
}

.signal-data span {
  padding: 6px;
  border-right: 1px solid var(--cyan);
  font-size: 8px;
}

.signal-data span:last-child {
  border-right: 0;
}

.signal-data strong {
  display: block;
  color: var(--yellow);
  font-size: 14px;
}

.signal-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.action-card {
  min-height: 112px;
  padding: 8px;
  border-right: var(--border);
  border-bottom: var(--border);
}

.action-card:last-child {
  border-right: 0;
}

.action-card .tag {
  color: #004b4b;
  font-size: 8px;
}

.action-card strong {
  display: block;
  margin-top: 8px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 13px;
  line-height: 1.25;
}

.action-card p {
  margin-top: 5px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.release-card {
  position: relative;
  min-width: 0;
  border-right: var(--border);
  border-bottom: var(--border);
}

.release-card:nth-child(4n) {
  border-right: 0;
}

.release-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #006f6f;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.release-card:hover .release-cover img {
  transform: scale(1.025);
}

.rank-flag {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 31px;
  padding: 3px 5px;
  background: var(--black);
  color: var(--yellow);
  font-size: 12px;
  text-align: center;
}

.heat-flag {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 3px 5px;
  background: var(--yellow);
  color: var(--black);
  font-size: 9px;
}

.release-copy {
  padding: 7px;
}

.release-copy h3 {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-copy > p {
  overflow: hidden;
  margin-top: 2px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.heat-track,
.score-track,
.impact-track,
.sales-track {
  height: 5px;
  margin-top: 6px;
  overflow: hidden;
  background: rgb(0 0 0 / 18%);
  border: 1px solid var(--black);
}

.heat-track i,
.score-track i,
.impact-track i,
.sales-track i {
  display: block;
  height: 100%;
  background: var(--black);
}

.micro-stats {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-top: 5px;
  font-size: 8px;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 5px;
}

.platform-links a,
.source-chip {
  padding: 1px 3px;
  background: var(--black);
  color: var(--cyan);
  font-size: 8px;
}

.credit-board {
  display: grid;
  grid-template-columns: minmax(285px, 0.8fr) minmax(0, 1.2fr);
  min-height: 0;
}

.credit-lead {
  position: sticky;
  top: 0;
  align-self: start;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 260px;
  background: var(--black);
  color: var(--white);
  border-right: var(--border);
}

.credit-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credit-lead-copy {
  padding: 12px;
}

.credit-lead-copy .rank {
  color: var(--yellow);
  font-size: 30px;
  line-height: 1;
}

.credit-lead-copy h2 {
  margin-top: 9px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 20px;
  line-height: 1.08;
}

.credit-lead-copy p {
  margin-top: 4px;
  color: var(--cyan);
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 10px;
}

.score-dial {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-top: 12px;
  border: 6px solid var(--cyan);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 22px;
}

.credit-roles {
  margin-top: 10px;
  font-size: 9px;
  line-height: 1.55;
}

.credit-list {
  min-width: 0;
}

.credit-row {
  display: grid;
  grid-template-columns: 36px 54px minmax(0, 1fr) minmax(90px, 0.45fr);
  gap: 7px;
  align-items: center;
  padding: 6px 8px;
  border-bottom: 1px solid rgb(0 0 0 / 24%);
}

.credit-row .rank {
  font-size: 16px;
  text-align: center;
}

.credit-row img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid var(--black);
}

.credit-main {
  min-width: 0;
}

.credit-main h3 {
  overflow: hidden;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.credit-main > p {
  overflow: hidden;
  margin-top: 2px;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.role-line {
  overflow: hidden;
  margin-top: 4px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.credit-metrics {
  text-align: right;
}

.credit-metrics strong {
  display: block;
  font-size: 20px;
}

.credit-metrics span {
  font-size: 8px;
}

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

.associate-card {
  display: grid;
  grid-template-columns: minmax(160px, 42%) minmax(0, 58%);
  min-height: 280px;
  border-right: var(--border);
  border-bottom: var(--border);
}

.associate-card:nth-child(2n) {
  border-right: 0;
}

.associate-art {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.associate-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verified-stamp {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 3px 5px;
  background: var(--yellow);
  color: var(--black);
  border: 1px solid var(--black);
  font-size: 8px;
  transform: rotate(-2deg);
}

.associate-copy {
  padding: 13px;
}

.associate-role {
  color: #005050;
  font-size: 9px;
  letter-spacing: 1px;
}

.associate-copy h2 {
  margin-top: 4px;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 0.92;
  letter-spacing: -3px;
}

.associate-work {
  margin-top: 12px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.associate-note {
  margin-top: 6px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.role-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}

.role-chips span {
  padding: 2px 4px;
  background: var(--black);
  color: var(--cyan);
  font-size: 8px;
}

.open-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.open-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 10px;
  border-right: var(--border);
  border-bottom: var(--border);
}

.open-card:last-child {
  border-right: 0;
}

.open-status {
  align-self: flex-start;
  padding: 2px 5px;
  background: var(--black);
  color: var(--yellow);
  font-size: 9px;
}

.open-date {
  margin-top: 14px;
  color: rgb(0 0 0 / 25%);
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.8;
  letter-spacing: -5px;
  overflow-wrap: anywhere;
}

.open-card h2 {
  margin-top: auto;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 18px;
  line-height: 1.08;
}

.open-meta {
  margin-top: 7px;
  font-size: 9px;
}

.open-card p {
  margin-top: 8px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.wire-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.wire-lead {
  min-height: 310px;
  padding: clamp(16px, 3vw, 30px);
  background: var(--black);
  color: var(--white);
  border-right: var(--border);
}

.wire-lead .category {
  color: var(--yellow);
  font-size: 9px;
}

.wire-lead h2 {
  margin-top: 16px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.wire-lead p {
  margin-top: 12px;
  color: var(--cyan);
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.wire-source {
  display: block;
  margin-top: 18px;
  color: var(--yellow);
  font-size: 9px;
}

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

.wire-item {
  min-height: 132px;
  padding: 9px;
  border-right: 1px solid rgb(0 0 0 / 30%);
  border-bottom: 1px solid rgb(0 0 0 / 30%);
}

.wire-item .wire-no {
  color: rgb(0 0 0 / 28%);
  font-size: 26px;
  line-height: 1;
}

.wire-item h3 {
  margin-top: 4px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 12px;
  line-height: 1.3;
}

.wire-item p {
  margin-top: 6px;
  font-size: 8px;
}

.tabbar {
  display: flex;
  overflow-x: auto;
  background: var(--black);
  border-bottom: var(--border);
  scrollbar-width: none;
}

.tabbar::-webkit-scrollbar {
  display: none;
}

.tab-button {
  flex-shrink: 0;
  padding: 5px 9px;
  cursor: pointer;
  background: var(--black);
  color: var(--cyan);
  border: 0;
  border-right: 1px solid var(--cyan);
  font-size: 9px;
}

.tab-button.act {
  background: var(--yellow);
  color: var(--black);
}

.chart-list {
  min-width: 0;
}

.chart-row {
  display: grid;
  grid-template-columns: 38px 48px minmax(0, 0.9fr) minmax(160px, 1.1fr) 84px;
  gap: 7px;
  align-items: center;
  padding: 5px 8px;
  border-bottom: 1px solid rgb(0 0 0 / 24%);
}

.chart-rank {
  font-size: 18px;
  text-align: center;
}

.chart-row img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--black);
}

.chart-name {
  min-width: 0;
}

.chart-name strong,
.chart-name span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chart-name strong {
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 11px;
}

.chart-name span {
  margin-top: 2px;
  font-size: 9px;
}

.chart-bar small {
  display: block;
  margin-top: 3px;
  font-size: 8px;
}

.chart-value {
  text-align: right;
}

.chart-value strong {
  display: block;
  font-size: 13px;
}

.chart-value span {
  font-size: 8px;
}

.sparkline {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 30px;
}

.sparkline i {
  flex: 1;
  min-width: 3px;
  background: var(--black);
}

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

.reading-card {
  min-width: 0;
  border-right: var(--border);
  border-bottom: var(--border);
}

.reading-card:nth-child(2n) {
  border-right: 0;
}

.reading-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px;
  background: var(--black);
  color: var(--white);
}

.reading-head h2 {
  color: var(--cyan);
  font-size: 14px;
}

.reading-head span {
  color: var(--yellow);
  font-size: 8px;
}

.reading-description {
  min-height: 44px;
  padding: 7px 8px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 9px;
  font-weight: 600;
  border-bottom: 1px solid rgb(0 0 0 / 25%);
}

.article-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 5px;
  padding: 7px 8px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
}

.article-link:last-child {
  border-bottom: 0;
}

.article-link time {
  font-size: 8px;
}

.article-link strong {
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 10px;
  line-height: 1.35;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
  min-height: 124px;
  padding: 8px;
  border-right: 1px solid rgb(0 0 0 / 30%);
  border-bottom: 1px solid rgb(0 0 0 / 30%);
}

.media-card:nth-child(3n) {
  border-right: 0;
}

.media-top {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.media-top h3 {
  font-size: 12px;
}

.impact-number {
  color: #005252;
  font-size: 16px;
}

.media-card p {
  margin-top: 5px;
  font-family: Arial, "ChosunGu", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.35;
}

.media-metric {
  display: block;
  margin-top: 7px;
  font-size: 8px;
}

.empty,
.loading {
  padding: 16px 10px;
  font-size: 11px;
  opacity: 0.58;
}

.taskbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 6px;
  gap: 6px;
  background: var(--cyan);
  color: var(--black);
  border-top: var(--border);
}

.accountDock {
  position: relative;
  flex: 0 0 auto;
  z-index: 20;
}

.accountMenu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  width: min(230px, calc(100vw - 18px));
  padding: 6px;
  background: var(--paper);
  border: var(--border);
  box-shadow: 5px 5px 0 #000;
}

.accountMenu::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 12px;
  height: 12px;
  background: var(--paper);
  border-right: var(--border);
  border-bottom: var(--border);
  transform: rotate(45deg);
}

.accountMenuItem {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 9px 10px;
  background: var(--yellow);
  color: #000;
  border: var(--border);
  box-shadow: 2px 2px 0 #000;
  font-size: 11px;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}

.accountMenuItem + .accountMenuItem { margin-top: 6px; }
.accountMenuItem:hover { background: var(--cyan); }
.accountMenuItem:active { transform: translate(2px, 2px); box-shadow: 0 0 0 #000; }
.accountMenuItem.danger { background: var(--orange); }
.accountMenuItem.danger:hover { background: #ff3b1f; color: #fff; }
.accountMenuItem:disabled { opacity: .58; cursor: wait; }

.sbtn {
  padding: 3px 10px;
  cursor: pointer;
  transform: translate(2px, 2px);
  background: var(--black);
  color: var(--white);
  border: var(--border);
  box-shadow: 2px 2px 0 var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: min(210px, 42vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sbtn.is-user {
  min-width: 96px;
  background: var(--yellow);
  color: #000;
  box-shadow: 2px 2px 0 var(--black);
}

.sbtn.is-user::before {
  content: "USER · ";
  color: var(--bg-blue);
  font-size: .72em;
}

.sbtn.is-user[aria-expanded="true"] {
  background: var(--orange);
  color: #000;
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--black);
}

.ti {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 2px 8px;
  color: var(--black);
  border: var(--border);
  box-shadow: 2px 2px 0 var(--black);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tray {
  padding: 2px 8px;
  color: var(--black);
  border: var(--border);
  font-size: 11px;
}

.dos {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  padding: 3px 10px;
  background: var(--bg-blue);
  color: var(--white);
  font-size: 11px;
}

.ck {
  color: var(--cyan);
}

.dos-meta {
  opacity: 0.4;
}

@media (max-width: 900px) {
  .release-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .release-card:nth-child(4n) {
    border-right: var(--border);
  }

  .release-card:nth-child(3n) {
    border-right: 0;
  }

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

  .action-card:nth-child(2n) {
    border-right: 0;
  }

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

  .media-card:nth-child(3n) {
    border-right: 1px solid rgb(0 0 0 / 30%);
  }

  .media-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .desktop {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .lcol {
    height: auto;
    margin: 4px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: var(--border);
  }

  .syslog,
  .logo-area {
    display: none;
  }

  .smenu {
    flex-direction: row;
    margin-top: 0;
    overflow-x: auto;
    box-shadow: 3px 3px 0 var(--black);
  }

  .flist {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .flist::-webkit-scrollbar {
    display: none;
  }

  .fi {
    flex-shrink: 0;
    width: auto;
    padding: 6px 9px;
    border-right: 1px solid rgb(0 0 0 / 22%);
    border-bottom: 0;
    white-space: nowrap;
  }

  .exw {
    margin: 4px;
    box-shadow: 3px 3px 0 var(--black);
  }

  .feed-intro {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .feed-title {
    font-size: 24px;
  }

  .feed-stamp {
    display: flex;
    justify-content: space-between;
    min-width: 0;
    text-align: left;
  }

  .feed-stamp strong {
    display: inline;
  }

  .cover-grid,
  .credit-board,
  .wire-layout {
    grid-template-columns: 1fr;
  }

  .signal-lead,
  .credit-lead,
  .wire-lead {
    border-right: 0;
    border-bottom: var(--border);
  }

  .signal-lead {
    min-height: 230px;
  }

  .signal-side {
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: 1fr;
  }

  .signal-data {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid var(--cyan);
  }

  .signal-data span {
    border-right: 0;
    border-bottom: 1px solid var(--cyan);
  }

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

  .release-card:nth-child(3n) {
    border-right: var(--border);
  }

  .release-card:nth-child(2n) {
    border-right: 0;
  }

  .credit-lead {
    position: static;
    grid-template-columns: 38% 62%;
    min-height: 220px;
  }

  .associates-grid,
  .open-grid,
  .reading-grid {
    grid-template-columns: 1fr;
  }

  .associate-card,
  .open-card,
  .reading-card {
    border-right: 0;
  }

  .open-card {
    min-height: 220px;
  }

  .wire-list {
    grid-template-columns: 1fr;
  }

  .chart-row {
    grid-template-columns: 30px 42px minmax(0, 1fr) 64px;
  }

  .chart-row img {
    width: 42px;
    height: 42px;
  }

  .chart-bar {
    display: none;
  }
}

@media (max-width: 420px) {
  .ts span:last-child,
  .bs,
  .dos-meta {
    display: none;
  }

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

  .action-card {
    min-height: 88px;
    border-right: 0;
  }

  .credit-row {
    grid-template-columns: 26px 46px minmax(0, 1fr) 50px;
    padding: 5px;
  }

  .credit-row img {
    width: 46px;
    height: 46px;
  }

  .credit-metrics strong {
    font-size: 16px;
  }

  .associate-card {
    grid-template-columns: 38% 62%;
    min-height: 230px;
  }

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

  .media-card {
    border-right: 0;
  }
}

/* mobile menu overflow fix for compact xyz shell */
@media (max-width: 680px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  .topbar, .desktop, .lcol, .smenu, .exw { min-width: 0; max-width: 100%; }
  .lcol { overflow: hidden; }
  .smenu { width: 100%; overflow: hidden; }
  .flist {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    overflow: hidden;
  }
  .fi {
    width: 100%;
    min-width: 0;
    padding: 6px 4px;
    gap: 3px;
    justify-content: center;
    font-size: 8.5px;
    letter-spacing: -0.9px;
    text-align: center;
  }
  .fi span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .fc { margin-left: 2px; font-size: 7px; }
}

/* brand-xyz mobile logo fit: copied from RADAR proportions, only compressed for XYZ width */
@media (max-width: 680px) {
  .topbar { padding: 9px 10px; gap: 8px; align-items: flex-start; }
  .brand { flex: 1 1 auto; min-width: 0; gap: 10px; }
  .bm { height: 30px; padding: 0 8px; font-size: 12px; box-shadow: 2px 2px 0 #000; }
  .bn { font-size: 15px; line-height: 1; letter-spacing: -0.65px; text-shadow: 1px 1px 0 #000; }
  .bs { margin-top: 3px; font-size: 7px; letter-spacing: .85px; max-width: 210px; overflow: hidden; text-overflow: ellipsis; }
  .ts { gap: 5px; font-size: 8px; }
  .ts #status { max-width: 74px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .a2hs { margin-right: auto; height: 30px; padding: 0 11px; font-size: 11.5px; box-shadow: 2px 2px 0 #000; }
  .overlay { padding: 10px; align-items: flex-start; }
  .modal { width: 100%; max-height: calc(100dvh - 20px); border-width: 2px; box-shadow: 4px 4px 0 #000; overflow-y: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 420px) {
  .topbar { padding: 8px 8px; gap: 6px; }
  .brand { gap: 8px; }
  .bm { height: 30px; padding: 0 7px; font-size: 11px; }
  .bn { font-size: 13.5px; letter-spacing: -0.55px; }
  .bs { max-width: 150px; font-size: 6px; letter-spacing: .65px; }
}


@media (max-width: 520px) {
  .sbtn { max-width: 34vw; padding: 3px 8px; font-size: 12px; }
  .sbtn.is-user { min-width: 0; }
  .sbtn.is-user::before { content: ""; }
  .accountMenu { width: min(218px, calc(100vw - 12px)); }
}

/* touch devices: remove sticky tap/focus highlight that looks like TAB focus */
@media (hover: none), (pointer: coarse) {
  a,
  button,
  input,
  .fi,
  .ch-tab,
  .tj-head,
  .tj-tools button,
  .clip-card,
  .sbtn {
    -webkit-tap-highlight-color: transparent;
  }

  a:focus,
  button:focus,
  input:focus,
  .fi:focus,
  .ch-tab:focus,
  .tj-head:focus,
  .tj-tools button:focus,
  .clip-card:focus,
  .sbtn:focus {
    outline: none !important;
  }

  .fi:focus:not(.act) {
    background: transparent;
    color: var(--black);
  }
}


/* ============ v108 PODCAST BUTTON + PLAYER ============ */
.podBtn{
  display:inline-flex;align-items:center;justify-content:center;height:34px;min-width:38px;padding:0 10px;border:2px solid #000;background:#ffff55;color:#000;box-shadow:3px 3px 0 #000;font-family:"Apple Symbols","Segoe UI Symbol","Noto Emoji",Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;cursor:pointer;white-space:nowrap;forced-color-adjust:none;
}
.podBtn:hover{background:#00ffff;}.podBtn:active{transform:translate(2px,2px);box-shadow:1px 1px 0 #000;}
.podcastOverlay{z-index:95;}
.podcastModal{width:min(860px,calc(100vw - 28px));background:#fff8c8;}
.podcastHead .badge{font-family:Arial Narrow,Arial,sans-serif;font-size:13px;}
.podcastBody{display:grid;gap:12px;}
.podKicker{display:inline-block;justify-self:start;background:#000;color:#ffff55;border:2px solid #000;padding:5px 7px;font-family:Arial Narrow,Arial,sans-serif;font-size:11px;letter-spacing:.04em;}
.podcastBody h2{margin:0;font-family:Arial Narrow,Arial,ChosunGu,sans-serif;font-size:38px;line-height:.9;font-weight:400;letter-spacing:-.03em;color:#000;}
.podMeta{margin:0;font-family:ChosunGu,Arial,sans-serif;font-size:13px;line-height:1.45;color:#111;}
.podNow{border:2px solid #000;background:#fff;color:#000;box-shadow:2px 2px 0 #000;padding:9px 10px;font-family:Arial Narrow,Arial,ChosunGu,sans-serif;font-size:15px;line-height:1.2;min-height:40px;}
.podSeekWrap{border:2px solid #000;background:#fff;padding:12px 12px 9px;box-shadow:3px 3px 0 #000;}
.podSeek{width:100%;height:28px;accent-color:#d94a00;cursor:pointer;}
.podTime{display:flex;justify-content:space-between;margin-top:4px;font-family:Arial Narrow,Arial,sans-serif;font-size:13px;color:#000;}
.podControls{display:grid;grid-template-columns:1fr auto auto;gap:8px;align-items:center;}
.podCtrl{border:2px solid #000;background:#00ffff;color:#000;box-shadow:2px 2px 0 #000;padding:9px 12px;font-family:Arial Narrow,Arial,sans-serif;font-size:15px;cursor:pointer;}
.podCtrl:hover{background:#ffff55;}.podCtrl:active{transform:translate(1px,1px);box-shadow:1px 1px 0 #000;}
.podSources{border-top:2px solid #000;padding-top:8px;font-family:Arial Narrow,Arial,sans-serif;font-size:12px;color:#111;letter-spacing:.03em;}
.podScriptBox{border:2px solid #000;background:#fff;padding:8px 10px;font-family:ChosunGu,Arial,sans-serif;font-size:12px;line-height:1.5;}
.podScriptBox summary{font-family:Arial Narrow,Arial,sans-serif;font-size:13px;cursor:pointer;margin-bottom:6px;}
#podcastScript p{margin:0 0 8px;}
@media(max-width:680px){.podBtn{height:30px;min-width:32px;padding:0 8px;font-size:16px;box-shadow:2px 2px 0 #000}.podcastModal{width:100%;}.podcastBody h2{font-size:27px;line-height:.95}.podControls{grid-template-columns:1fr 1fr 1fr}.podCtrl{padding:8px 6px;font-size:13px}.podSeek{height:34px}.podNow{font-size:13px}.podMeta{font-size:12px}.podKicker{font-size:9px}}
@media(max-width:420px){.ts{flex-wrap:wrap;justify-content:flex-end}.podBtn{order:0}.a2hs{order:1}.ts #status{order:3;width:100%;text-align:right}.podcastBody h2{font-size:24px}.podSeekWrap{padding:10px 8px 7px}}


/* v116 podcast speed + monochrome 8-bit headphones */
.podBtn{background:#fff!important;color:#000!important;min-width:42px!important;padding:0 8px!important;}
.podIcon8{position:relative;display:block;width:20px;height:18px;image-rendering:pixelated;filter:grayscale(1);}
.podIcon8::before{content:"";position:absolute;left:4px;top:1px;width:12px;height:7px;border:3px solid #000;border-bottom:0;border-radius:9px 9px 0 0;box-sizing:border-box;}
.podIcon8::after{content:"";position:absolute;left:1px;top:8px;width:5px;height:8px;background:#000;box-shadow:13px 0 0 #000, 3px 7px 0 #000, 10px 7px 0 #000;}
.podSpeedLabel{display:grid;grid-template-columns:auto 1fr;gap:8px;align-items:center;border:2px solid #000;background:#fff;padding:7px 9px;box-shadow:2px 2px 0 #000;font-family:Arial Narrow,Arial,sans-serif;font-size:13px;color:#000;}
.podSpeedLabel span{font-weight:900;letter-spacing:.02em;}
.podSpeed{width:100%;border:2px solid #000;background:#ffff55;color:#000;font-family:Arial Narrow,Arial,sans-serif;font-size:14px;padding:5px 6px;}
@media(max-width:680px){.podIcon8{width:18px;height:16px}.podSpeedLabel{font-size:12px;padding:6px 7px}.podSpeed{font-size:13px}}


/* v117 podcast marquee polish */
.podcastBody h2#podcastTitle{position:relative;overflow:hidden;white-space:nowrap;border:2px solid #000;background:#000;color:#ffff55;padding:8px 0;box-shadow:3px 3px 0 #000;line-height:1!important;}
#podcastTitle span{display:inline-block;white-space:nowrap;padding-left:100%;will-change:transform;animation:podMarquee 24s linear infinite;font-family:Arial Narrow,Arial,ChosunGu,sans-serif;font-size:clamp(24px,4.8vw,40px);line-height:1;color:#ffff55;text-shadow:2px 2px 0 #005c5c;}
@keyframes podMarquee{0%{transform:translateX(0)}100%{transform:translateX(-100%)}}
.podMeta{font-size:12px!important;letter-spacing:.02em;text-transform:uppercase;}
.podSources{font-size:12px!important;letter-spacing:.02em;}
@media(max-width:680px){.podcastBody h2#podcastTitle{padding:7px 0;box-shadow:2px 2px 0 #000}#podcastTitle span{font-size:24px;animation-duration:20s}.podKicker{font-size:8.5px}.podMeta,.podSources{font-size:10.5px!important}.podSpeedLabel{grid-template-columns:1fr auto}}
@media(prefers-reduced-motion:reduce){#podcastTitle span{animation:none;padding-left:0;transform:none;max-width:100%;overflow:hidden;text-overflow:ellipsis}}


/* v119 crisp 1-bit pixel headphone SVG */
.podBtn{background:#fff!important;color:#000!important;min-width:44px!important;width:44px!important;height:34px!important;padding:0!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;}
.podIconSvg{display:block;width:24px;height:24px;color:#000;image-rendering:pixelated;transform:translateY(1px);}
.podBtn:hover .podIconSvg{color:#000;filter:drop-shadow(1px 1px 0 #00ffff);} 
@media(max-width:680px){.podBtn{width:34px!important;min-width:34px!important;height:30px!important}.podIconSvg{width:21px;height:21px}}
