:root {
  --ink: #090c0a;
  --graphite: #0f1310;
  --graphite-soft: #141915;
  --panel: #111512;
  --panel-strong: #171d18;
  --paper: #ece9dd;
  --white: #f5f4ed;
  --muted: #93998f;
  --muted-dark: #646a62;
  --line: rgba(226, 232, 218, .18);
  --line-strong: rgba(231, 237, 222, .34);
  --lime: #c7ed1a;
  --lime-bright: #ddff36;
  --lime-dark: #8ca900;
  --lime-wash: rgba(199, 237, 26, .1);
  --gain: #ff654c;
  --gain-soft: rgba(255, 101, 76, .12);
  --shadow-lime: rgba(199, 237, 26, .2);
  --redirect-duration: 3000ms;
}


/* 관심종목은 행과 티커를 다시 만들지 않고 수치만 부드럽게 교체한다. */
.mover-price-value,
.mover-rate,
.ticker-track [data-stock-code] b {
  font-variant-numeric: tabular-nums;
}

.mover-price-value,
.ticker-track [data-stock-code] b {
  display: inline-block;
}

.is-quote-refreshing {
  animation: quoteValueRefresh .56s cubic-bezier(.2, .72, .22, 1) both;
}

@keyframes quoteValueRefresh {
  0% { opacity: .42; transform: translateY(3px); filter: blur(1.2px); }
  58% { opacity: 1; transform: translateY(-1px); filter: blur(0); text-shadow: 0 0 12px currentColor; }
  100% { opacity: 1; transform: none; filter: none; text-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  .is-quote-refreshing { animation: none !important; }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 300px;
  color: var(--paper);
  background:
    radial-gradient(circle at 11% 5%, rgba(199, 237, 26, .05), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(106, 124, 109, .08), transparent 30%),
    linear-gradient(180deg, #080b09 0%, #111511 48%, #070907 100%);
  font-family: "Pretendard Variable", "Pretendard", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.site-frame {
  width: min(1190px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 52px;
}

.hero-shell {
  position: relative;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(19, 24, 20, .98), rgba(8, 11, 9, .99));
  box-shadow: 0 28px 78px rgba(0, 0, 0, .32);
}

.hero-shell {
  isolation: isolate;
  overflow: hidden;
  border-radius: 20px;
  padding: 0 30px;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  z-index: -2;
  pointer-events: none;
}

.hero-shell::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 67%, rgba(199, 237, 26, .035) 67.1% 67.2%, transparent 67.3%),
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 22% 78%, rgba(199, 237, 26, .022));
}

.hero-shell::after {
  right: -170px;
  top: -210px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 237, 26, .095), transparent 66%);
  filter: blur(12px);
}

.graphite-grid {
  position: absolute;
  z-index: -1;
  inset: 78px 0 0;
  opacity: .24;
  background:
    repeating-linear-gradient(90deg, transparent 0 63px, rgba(219, 226, 212, .035) 64px),
    repeating-linear-gradient(180deg, transparent 0 47px, rgba(219, 226, 212, .025) 48px);
  mask-image: linear-gradient(90deg, transparent, #000 17%, #000 87%, transparent);
}

.signal-rails {
  position: absolute;
  z-index: -1;
  inset: 104px 2% auto 45%;
  height: 310px;
  opacity: .26;
  transform: skewY(-5deg);
  pointer-events: none;
}

.signal-rails i {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 237, 26, .4), transparent 78%);
}
.signal-rails i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 28%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(227, 255, 91, .34), var(--lime-bright) 62%, transparent);
  box-shadow: 0 0 12px rgba(199, 237, 26, .5);
  opacity: 0;
  transform: translate3d(-120%, 0, 0);
  animation: signalRailScan 5.2s linear infinite;
}
.signal-rails i:nth-child(1) { top: 18%; }
.signal-rails i:nth-child(2) { top: 50%; transform: translateX(8%); }
.signal-rails i:nth-child(3) { top: 81%; transform: translateX(-6%); }
.signal-rails i:nth-child(2)::after { animation-delay: -1.73s; }
.signal-rails i:nth-child(3)::after { animation-delay: -3.46s; }

.brand-bar,
.hero-grid,
.telegram-rail,
.market-ticker { position: relative; z-index: 2; }

.brand-bar {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  justify-self: start;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid rgba(218, 255, 54, .55);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(199, 237, 26, .035), 0 0 24px rgba(199, 237, 26, .1);
}

.brand-copy { display: grid; gap: 3px; min-width: 0; }
.brand-copy strong { overflow: hidden; font-size: 23px; line-height: 1; letter-spacing: -.055em; text-overflow: ellipsis; white-space: nowrap; }
.brand-copy small { color: var(--muted); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 11px; letter-spacing: .14em; }

.live-now {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.live-now > i { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(199, 237, 26, .07), 0 0 15px rgba(199, 237, 26, .5); animation: livePulse 1.8s ease-in-out infinite; }
.live-now span { display: grid; gap: 2px; }
.live-now strong { color: var(--lime-bright); font-size: 12px; letter-spacing: .05em; }
.live-now small { color: #b9beb5; font-size: 10px; white-space: nowrap; }

.market-state-chip {
  min-width: 0;
  display: grid;
  grid-template-columns: 8px auto;
  justify-content: end;
  align-items: center;
  gap: 2px 8px;
  color: var(--muted);
  font-size: 9px;
  text-align: right;
  white-space: nowrap;
}
.market-state-chip i { grid-row: 1; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px rgba(199, 237, 26, .42); }
.market-state-chip strong { color: var(--lime); font-size: 11px; letter-spacing: .05em; }
.market-state-chip span { grid-column: 1 / -1; }
.market-state-chip.is-open i { animation: livePulse 1.8s ease-in-out infinite; }
.market-state-chip.is-stale i { background: #777d74; box-shadow: none; }

.hero-grid {
  display: grid;
  grid-template-columns: 195px minmax(0, 1fr) minmax(350px, .88fr);
  align-items: center;
  gap: clamp(20px, 2vw, 32px);
  min-height: 356px;
  padding: 26px 18px 20px;
}

.signal-number {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: center;
  padding-right: 25px;
  border-right: 1px solid var(--line-strong);
}
.signal-number strong { width: 112%; color: var(--lime); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: clamp(180px, 16.5vw, 228px); font-weight: 760; line-height: .72; letter-spacing: -.082em; font-variant-numeric: tabular-nums; text-shadow: 0 0 42px rgba(199, 237, 26, .09); transform: translateX(-16px) scaleX(.89); transform-origin: left center; }
.signal-number span { position: absolute; left: -11px; bottom: 20px; color: rgba(232, 237, 225, .5); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 10px; letter-spacing: .18em; line-height: 1.35; }

.hero-copy { min-width: 0; }
.hero-kicker,
.eyebrow {
  margin: 0;
  color: var(--lime);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.hero-copy h1 {
  display: grid;
  gap: 3px;
  margin: 10px 0 13px;
  color: var(--paper);
  max-width: 100%;
  font-size: clamp(48px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.075em;
}
.hero-copy h1 span { max-width: 100%; white-space: nowrap; }
.hero-copy h1 em { position: relative; display: inline-block; width: max-content; color: var(--lime-bright); font-style: normal; background: linear-gradient(transparent 72%, rgba(199, 237, 26, .16) 72%); }
.hero-description { max-width: 480px; margin: 0; color: #aeb4aa; font-size: 15px; font-weight: 560; line-height: 1.7; letter-spacing: -.025em; }

.market-motion { min-width: 0; padding-left: 30px; border-left: 1px solid var(--line-strong); }
.section-cap { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 8px; padding-bottom: 13px; border-bottom: 1px solid var(--line-strong); }
.section-cap > div { display: flex; align-items: center; gap: 9px; }
.section-cap > div > span { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px rgba(199, 237, 26, .5); }
.section-cap h2 { margin: 0; color: var(--lime); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 24px; letter-spacing: .04em; }
.section-cap p { max-width: 150px; margin: 0; color: var(--muted); font-size: 9px; text-align: right; }

.index-stack { display: grid; }
.index-row {
  position: relative;
  min-width: 0;
  min-height: 105px;
  display: grid;
  grid-template-columns: 58px minmax(105px, 1fr) 90px 72px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-strong);
  transition: background .22s ease, padding .22s ease;
}
.index-row:hover { padding-inline: 8px; background: linear-gradient(90deg, rgba(199, 237, 26, .035), transparent); }
.index-name { color: #c8ccc3; font-size: 14px; font-weight: 760; }
.index-row > strong { min-width: 0; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: clamp(31px, 3vw, 42px); font-weight: 700; letter-spacing: -.025em; white-space: nowrap; }
.index-rate-block { display: grid; justify-items: end; gap: 3px; }
.index-rate { color: var(--gain); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 21px; font-weight: 800; white-space: nowrap; }
.index-rate.is-movement { color: #d1d4cd; }
.index-rate-block small { color: var(--muted-dark); font-size: 7px; white-space: nowrap; }
.index-row strong.is-wide-value { font-size: clamp(27px, 2.65vw, 36px); }
.index-row strong.is-extra-wide-value { font-size: clamp(23px, 2.3vw, 31px); }

.mini-chart { width: 72px; height: 26px; overflow: visible; }
.mini-chart polyline { fill: none; stroke-linecap: square; stroke-linejoin: miter; shape-rendering: geometricPrecision; vector-effect: non-scaling-stroke; }
.mini-chart-glow { stroke: var(--lime); stroke-width: 4.2; opacity: .2; filter: blur(1.8px); }
.mini-chart-line { stroke: var(--lime-bright); stroke-width: 1.3; opacity: 1; }
.mini-chart marker path { fill: var(--lime-bright); }

.telegram-rail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(370px, .95fr) minmax(530px, 1.35fr);
  align-items: stretch;
  margin: 0 0 14px;
  overflow: hidden;
  border: 1px solid rgba(199, 237, 26, .58);
  border-radius: 13px;
  background: #0c100d;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .25), 0 0 25px rgba(199, 237, 26, .04);
}
.telegram-rail::before { content: ""; position: absolute; z-index: 4; left: 24px; top: -1px; width: 102px; height: 2px; background: linear-gradient(90deg, var(--lime-bright), transparent); }
.telegram-rail::after { content: ""; position: absolute; right: -30px; bottom: -55px; width: 180px; height: 110px; border: 1px solid rgba(199, 237, 26, .12); transform: rotate(-10deg); pointer-events: none; }

.telegram-main {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 15px;
  padding: 17px 22px;
  background: linear-gradient(110deg, var(--lime-bright), #b7d900);
  color: #11150c;
}
.telegram-main::after { content: ""; position: absolute; right: -31px; top: 0; width: 64px; height: 100%; background: #0c100d; transform: skewX(-16deg); pointer-events: none; }
.telegram-orb { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(10, 13, 9, .7); border-radius: 50%; background: rgba(8, 11, 8, .9); color: var(--lime-bright); font-size: 22px; transform: rotate(-34deg); transition: transform .2s ease, box-shadow .2s ease; }
.telegram-main:hover .telegram-orb { transform: rotate(-34deg) scale(1.06); box-shadow: 0 0 23px rgba(18, 22, 10, .28); }
.telegram-copy { display: grid; min-width: 0; gap: 3px; }
.telegram-copy strong { overflow: hidden; font-size: 18px; letter-spacing: -.045em; text-overflow: ellipsis; white-space: nowrap; }
.telegram-copy small { color: rgba(17, 21, 12, .72); font-size: 10px; font-weight: 650; }
.telegram-arrow { position: relative; z-index: 1; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(17, 21, 12, .35); font-size: 24px; transition: transform .2s ease; }
.telegram-main:hover .telegram-arrow { transform: translateX(3px); }

.redirect-progress { position: relative; z-index: 1; min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(172px, .42fr); align-items: center; gap: 20px; padding: 15px 24px 24px 35px; }
.redirect-sequence { min-width: 0; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 8px; }
.redirect-sequence > span { display: grid; justify-items: center; gap: 4px; color: #62685f; transition: color .2s ease; }
.redirect-sequence > span b { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #4b5149; border-radius: 50%; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 11px; }
.redirect-sequence > span small { font-size: 8px; white-space: nowrap; }
.redirect-sequence > i { height: 1px; background: #353b34; }
.redirect-sequence > span.is-active { color: var(--paper); }
.redirect-sequence > span.is-active b { border-color: var(--lime); background: var(--lime); color: #11150c; box-shadow: 0 0 17px rgba(199, 237, 26, .18); }
.redirect-sequence > span.is-active + i { background: var(--lime); }
.redirect-copy { min-width: 0; display: grid; grid-template-columns: 58px minmax(0, 1fr); align-items: center; gap: 11px; padding-left: 16px; border-left: 1px solid var(--line); }
.redirect-copy > strong { width: 58px; color: var(--lime); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 43px; font-weight: 800; line-height: .82; text-align: center; text-shadow: 0 0 18px rgba(199, 237, 26, .18); }
.redirect-meta { min-width: 0; display: grid; justify-items: start; gap: 6px; }
.redirect-meta > span { color: #d1d5cc; font-size: 9px; white-space: nowrap; }
.redirect-copy button { min-height: 24px; padding: 0 9px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .018); color: #969c92; font-size: 8px; cursor: pointer; }
.redirect-copy button:hover { border-color: rgba(199, 237, 26, .45); color: var(--lime-bright); }
.redirect-bar { position: absolute; left: 26px; right: 26px; bottom: 8px; height: 2px; overflow: hidden; background: rgba(231, 237, 222, .13); }
.redirect-bar span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--lime-dark), var(--lime-bright)); transform: scaleX(0); transform-origin: left; animation: redirectFill var(--redirect-duration) linear forwards; }
.redirect-cancelled .redirect-bar span { animation-play-state: paused; }
.redirect-progress.is-cancelled .redirect-sequence { opacity: .45; }
.redirect-progress.is-cancelled .redirect-copy { border-left-color: rgba(199, 237, 26, .4); }
.redirect-progress.is-cancelled .redirect-copy > strong { color: var(--lime-bright); font-size: 18px; letter-spacing: .01em; text-shadow: 0 0 16px rgba(199, 237, 26, .22); }
.redirect-progress.is-cancelled .redirect-meta > span { color: var(--paper); }
.redirect-progress.is-cancelled .redirect-cancel-btn { border-color: rgba(199, 237, 26, .4); background: rgba(199, 237, 26, .055); color: var(--lime-bright); opacity: 1; cursor: default; }

.market-ticker { min-width: 0; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; border-top: 1px solid var(--line); background: rgba(0, 0, 0, .26); }
.ticker-label { display: inline-flex; align-items: center; gap: 8px; padding: 11px 19px 11px 0; color: var(--lime); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .13em; white-space: nowrap; }
.ticker-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.ticker-viewport { min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.ticker-track { display: flex; width: max-content; white-space: nowrap; will-change: transform; transform: translate3d(0, 0, 0); }
.ticker-track.is-running { animation: ticker 30s linear infinite; }
.ticker-group { display: flex; align-items: center; gap: 29px; padding: 11px 29px 11px 20px; }
.ticker-track span { display: inline-flex; align-items: center; gap: 7px; color: #c3c8bf; font-size: 11px; font-weight: 690; }
.ticker-track span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }
.ticker-track b { color: var(--gain); }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(350px, .86fr);
  gap: 0;
  margin: 0 -30px;
  border-top: 1px solid var(--line-strong);
  background: rgba(4, 7, 5, .3);
  content-visibility: auto;
  contain-intrinsic-size: auto 540px;
}
.movers-card, .route-card { position: relative; min-height: 520px; padding: 29px 30px 31px; }
.movers-card { background: linear-gradient(145deg, rgba(17, 22, 18, .78), rgba(8, 11, 9, .5)); }
.route-card { border-left: 1px solid var(--line-strong); background: linear-gradient(160deg, rgba(20, 25, 21, .72), rgba(6, 9, 7, .62)); }
.movers-card::before, .route-card::before { content: ""; position: absolute; left: 0; top: -1px; width: 92px; height: 2px; background: linear-gradient(90deg, var(--lime), transparent); }
.movers-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 17px; }
.movers-header h2 { margin: 4px 0 0; letter-spacing: -.055em; }
.movers-header h2 { font-size: 30px; }
.panel-market-note { margin: 7px 0 0; color: var(--muted); font-size: 10.5px; }
.panel-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.panel-session { display: grid; justify-items: end; gap: 2px; margin-right: 2px; }
.panel-session span { color: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.panel-session time { color: var(--muted-dark); font-size: 8px; }
.panel-switch { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.panel-tab, .reload-btn { min-height: 36px; border: 0; background: transparent; color: #90968c; cursor: pointer; transition: color .2s ease, background .2s ease; }
.panel-tab { min-width: 84px; padding: 0 13px; border-left: 1px solid var(--line); font-size: 10px; }
.panel-tab:first-child { border-left: 0; }
.panel-tab:hover, .panel-tab.is-active { background: var(--lime); color: #10140d; font-weight: 800; }
.reload-btn { order: -1; width: 36px; display: none; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; }
.reload-btn.is-visible { display: grid; }
.reload-btn:hover { border-color: var(--lime); color: var(--lime); }
.reload-icon { display: block; font-size: 16px; line-height: 1; }
.is-loading .reload-icon { animation: spin .7s linear infinite; }
.mover-columns { display: grid; grid-template-columns: minmax(0, 1fr) 126px 118px; gap: 10px; padding: 0 9px 9px 0; border-bottom: 1px solid var(--line-strong); color: var(--muted-dark); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 8px; letter-spacing: .14em; }
.mover-columns span:nth-child(2), .mover-columns span:nth-child(3) { text-align: right; }
.mover-list { display: grid; transition: opacity .18s ease, transform .18s ease; }
.mover-list.switching { opacity: 0; transform: translateY(5px); }
.mover-row { min-width: 0; min-height: 75px; display: grid; grid-template-columns: 58px minmax(0, 1fr) 126px 118px; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); animation: rowReveal .38s ease both; transition: background .2s ease, padding .2s ease; }
.mover-row:hover { padding-inline: 8px; background: linear-gradient(90deg, rgba(199, 237, 26, .045), transparent); }
.mover-leading { display: flex; align-items: center; min-width: 0; }
.rank-badge { width: 52px; color: var(--lime); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 29px; font-weight: 800; letter-spacing: -.035em; text-align: center; }
.rank-badge.top1 { text-shadow: 0 0 18px rgba(199, 237, 26, .2); }
.logo-img { display: none; }
.mover-name { overflow: hidden; color: var(--paper); font-size: 17px; font-weight: 760; letter-spacing: -.035em; text-overflow: ellipsis; white-space: nowrap; }
.mover-code { margin-top: 4px; color: var(--muted-dark); font-size: 8px; letter-spacing: .07em; }
.mover-spark { width: 126px; height: 34px; overflow: visible; justify-self: end; }
.mover-spark polyline { fill: none; stroke: var(--lime); stroke-width: 1.35; stroke-linecap: square; stroke-linejoin: miter; shape-rendering: geometricPrecision; vector-effect: non-scaling-stroke; }
.mover-price { min-width: 0; display: grid; justify-items: end; gap: 3px; color: #c2c7bd; font-size: 11px; white-space: nowrap; }
.mover-rate { color: var(--gain); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 20px; font-weight: 800; }
.data-message { margin: 13px 0 0; color: #c6cbc1; font-size: 11px; }
.movers-card.glow-change { animation: panelFlash .68s ease; }

.route-card { display: flex; flex-direction: column; }
.route-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 17px; border-bottom: 1px solid var(--line-strong); }
.route-heading span { font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 23px; font-weight: 800; letter-spacing: .04em; }
.route-heading small { color: var(--lime); font-size: 8px; letter-spacing: .12em; }
.route-list { position: relative; display: grid; grid-template-rows: repeat(3, minmax(0, 1fr)); flex: 1; gap: 0; margin: 18px 0 0; padding: 0; list-style: none; }
.route-list::before { content: ""; position: absolute; left: 10px; top: 22px; bottom: 22px; width: 1px; background: linear-gradient(var(--lime), rgba(199, 237, 26, .12)); }
.route-list li { position: relative; min-height: 0; padding: 7px 54px 17px 42px; border-bottom: 1px dashed rgba(226, 232, 218, .12); transition: background .22s ease, box-shadow .22s ease; }
.route-list li:last-child { border-bottom: 0; }
.route-list li::before { content: ""; position: absolute; left: 4px; top: 12px; width: 13px; height: 13px; border: 3px solid var(--lime); border-radius: 50%; background: var(--panel); box-shadow: 0 0 0 4px rgba(199, 237, 26, .07); transition: background .22s ease, box-shadow .22s ease, transform .22s ease; }
.route-list time { display: block; color: #b7bdb3; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 18px; transition: color .22s ease; }
.route-list strong { display: block; margin-top: 3px; font-size: 15px; transition: color .22s ease; }
.route-list p { margin: 6px 0 0; color: #979d93; font-size: 11px; line-height: 1.6; transition: color .22s ease; }
.route-list b { position: absolute; right: 0; top: 9px; padding: 4px 6px; border: 1px solid rgba(199, 237, 26, .25); color: var(--lime); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 8px; letter-spacing: .08em; transition: border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease; }

.signal-summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(235px, .78fr) minmax(165px, .44fr) minmax(450px, 1.38fr);
  align-items: stretch;
  margin: 0 -30px;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(110deg, rgba(17, 23, 18, .92), rgba(7, 10, 8, .8));
  content-visibility: auto;
  contain-intrinsic-size: auto 210px;
}
.signal-summary::before { content: ""; position: absolute; z-index: 2; left: 0; top: -1px; width: 150px; height: 2px; background: linear-gradient(90deg, var(--lime-bright), transparent); }
.summary-intro { padding: 28px 30px 30px; border-right: 1px solid var(--line); }
.summary-kicker { margin: 0; color: var(--lime); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.summary-intro h2 { margin: 7px 0 0; font-size: 27px; line-height: 1.08; letter-spacing: -.055em; }
.summary-intro > p:last-child { margin: 13px 0 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
.summary-score { position: relative; display: grid; align-content: center; gap: 4px; padding: 29px 24px 29px 31px; border-right: 1px solid var(--line); }
.summary-score::before { content: ""; position: absolute; left: 0; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(var(--lime-bright), var(--lime-dark)); box-shadow: 0 0 16px rgba(199, 237, 26, .2); }
.summary-score span { color: var(--lime); font-size: 10px; font-weight: 800; }
.summary-score strong { color: var(--gain); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 45px; font-weight: 800; line-height: 1; }
.summary-score small { color: var(--muted-dark); font-size: 8px; }
.summary-score.is-updating strong { animation: scoreHit .55s ease; }
.summary-checks { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; overflow: hidden; padding: 27px 28px 34px; background: linear-gradient(105deg, rgba(199, 237, 26, .025), transparent 24% 76%, rgba(199, 237, 26, .025)); }
.summary-checks::before { content: ""; position: absolute; left: 31px; right: 31px; bottom: 12px; height: 1px; background: linear-gradient(90deg, rgba(199, 237, 26, .18), var(--lime), rgba(199, 237, 26, .18)); }
.summary-checks::after { content: ""; position: absolute; right: 28px; bottom: 8px; width: 8px; height: 8px; border-top: 1px solid var(--lime); border-right: 1px solid var(--lime); transform: rotate(45deg); }
.summary-checks article { position: relative; min-width: 0; min-height: 122px; display: grid; align-content: center; gap: 5px; overflow: hidden; padding: 22px 28px 29px; border-left: 1px solid rgba(226, 232, 218, .12); transition: background .22s ease, box-shadow .22s ease; }
.summary-checks article:first-child { border-left: 0; }
.summary-checks article::before { content: attr(data-step); position: absolute; right: 11px; top: -5px; color: rgba(199, 237, 26, .07); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 78px; font-weight: 800; line-height: 1; letter-spacing: -.06em; transition: color .22s ease, transform .22s ease; }
.summary-checks article::after { content: ""; position: absolute; z-index: 1; left: 27px; bottom: 6px; width: 7px; height: 7px; border: 2px solid var(--lime); border-radius: 50%; background: #0b0f0c; box-shadow: 0 0 12px rgba(199, 237, 26, .34); transition: background .22s ease, box-shadow .22s ease, transform .22s ease; }
.summary-checks strong { position: relative; z-index: 1; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 25px; letter-spacing: .01em; transition: color .22s ease; }
.summary-checks span { position: relative; z-index: 1; color: var(--lime); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.summary-checks small { position: relative; z-index: 1; color: #aeb5aa; font-size: 11px; font-weight: 620; letter-spacing: -.015em; transition: color .22s ease; }

@media (hover: hover) and (pointer: fine) {
  .summary-checks article:hover { background: linear-gradient(180deg, rgba(199, 237, 26, .085), rgba(199, 237, 26, .012)); box-shadow: inset 0 2px 0 rgba(199, 237, 26, .7), inset 0 0 34px rgba(199, 237, 26, .035); }
  .summary-checks article:hover::before { color: rgba(199, 237, 26, .15); transform: translateY(-2px); }
  .summary-checks article:hover::after { background: var(--lime); box-shadow: 0 0 0 4px rgba(199, 237, 26, .09), 0 0 18px rgba(199, 237, 26, .7); transform: scale(1.12); }
  .summary-checks article:hover strong { color: var(--lime-bright); }
  .summary-checks article:hover small { color: var(--paper); }
  .route-list li:hover { background: linear-gradient(90deg, rgba(199, 237, 26, .07), rgba(199, 237, 26, .012) 72%, transparent); box-shadow: inset 2px 0 0 rgba(199, 237, 26, .82); }
  .route-list li:hover::before { background: var(--lime); box-shadow: 0 0 0 5px rgba(199, 237, 26, .1), 0 0 18px rgba(199, 237, 26, .56); transform: scale(1.08); }
  .route-list li:hover time { color: var(--lime); }
  .route-list li:hover strong { color: var(--paper); }
  .route-list li:hover p { color: #bcc2b7; }
  .route-list li:hover b { border-color: var(--lime); background: var(--lime); color: #10140d; box-shadow: 0 0 14px rgba(199, 237, 26, .18); }
}

.research-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 -30px;
  border-top: 1px solid var(--line-strong);
  background: rgba(6, 9, 7, .78);
  content-visibility: auto;
  contain-intrinsic-size: auto 150px;
}
.research-strip article { position: relative; min-height: 150px; padding: 27px 27px 24px; border-left: 1px solid var(--line); }
.research-strip article:first-child { border-left: 0; }
.research-strip article::after { content: ""; position: absolute; right: 17px; top: 18px; width: 28px; height: 1px; background: var(--line-strong); transform: rotate(-35deg); transform-origin: right; }
.research-strip span { color: var(--lime); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 18px; font-weight: 800; }
.research-strip strong { display: block; margin-top: 16px; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 18px; letter-spacing: .05em; }
.research-strip p { margin: 8px 0 0; color: var(--muted); font-size: 10.5px; line-height: 1.65; }

.briefing-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  overflow: hidden;
  margin: 0 -30px;
  border-top: 1px solid var(--line-strong);
  background: radial-gradient(circle at 50% 100%, rgba(199, 237, 26, .105), transparent 34%), linear-gradient(135deg, rgba(17, 22, 18, .96), rgba(5, 8, 6, .99));
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 335px;
}
.briefing-cta::before { content: "THEME / BRIEF"; position: absolute; z-index: -1; left: 50%; top: 7px; color: rgba(236, 233, 221, .025); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: clamp(92px, 13vw, 165px); font-weight: 800; letter-spacing: .015em; white-space: nowrap; transform: translateX(-50%) skewX(-10deg); }
.briefing-cta::after { content: ""; position: absolute; z-index: -1; left: 15%; right: 15%; bottom: 38px; height: 1px; background: linear-gradient(90deg, transparent, rgba(199, 237, 26, .5), transparent); transform: rotate(-2deg); }
.briefing-cta-copy { position: relative; display: grid; justify-items: center; width: 100%; padding: 58px 28px 0; }
.briefing-cta-copy::before { content: ""; width: 42px; height: 3px; margin-bottom: 14px; background: var(--lime); box-shadow: 0 0 16px rgba(199, 237, 26, .2); }
.briefing-cta-copy p { margin: 0; color: var(--lime); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.briefing-cta-copy h2 { margin: 9px 0 0; font-size: clamp(34px, 4.4vw, 50px); line-height: 1.1; letter-spacing: -.06em; }
.briefing-cta-action { display: grid; justify-items: center; gap: 20px; width: 100%; padding: 17px 28px 57px; }
.briefing-cta-action > p { max-width: 520px; margin: 0; color: #a3aaa0; font-size: 11px; line-height: 1.7; }
.telegram-final { width: min(420px, 100%); min-height: 61px; display: grid; grid-template-columns: 38px minmax(0, 1fr) 27px; align-items: center; gap: 13px; padding: 0 19px; border: 1px solid var(--lime); border-radius: 5px 14px 5px 14px; background: var(--lime); color: #10140d; font-size: 13px; font-weight: 850; transition: background .2s ease, box-shadow .2s ease, transform .2s ease; }
.telegram-final:hover { background: var(--lime-bright); box-shadow: 0 0 30px rgba(199, 237, 26, .15); transform: translateY(-2px); }
.telegram-final i { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(16, 20, 13, .45); border-radius: 50%; font-style: normal; transform: rotate(-34deg); }
.telegram-final span { text-align: center; }
.telegram-final b { font-size: 23px; }

@supports (offset-path: inset(1px)) {
  .telegram-rail::before { left: 0; top: 0; width: 108px; height: 3px; border-radius: 999px; pointer-events: none; offset-path: inset(2px round 11px) border-box; offset-anchor: 50% 50%; offset-rotate: auto 180deg; filter: drop-shadow(0 0 5px rgba(199, 237, 26, .82)); will-change: offset-distance, transform; animation: telegramAccentOrbit 2.4s linear infinite; }
}

footer {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 -30px;
  padding: 16px 30px;
  border-top: 1px solid var(--line-strong);
  color: #686f66;
  font-size: 9px;
  content-visibility: auto;
  contain-intrinsic-size: auto 58px;
}
footer strong { color: #a7aea3; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 11px; letter-spacing: .12em; white-space: nowrap; }
footer span { line-height: 1.55; text-align: right; }
.sticky-redirect { display: none; }

@keyframes ticker { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@keyframes redirectFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes telegramAccentOrbit { from { offset-distance: 0%; } to { offset-distance: 100%; } }
@keyframes signalRailScan {
  0%, 5% { opacity: 0; transform: translate3d(-120%, 0, 0); }
  10% { opacity: 1; }
  42% { opacity: .9; transform: translate3d(390%, 0, 0); }
  48%, 100% { opacity: 0; transform: translate3d(390%, 0, 0); }
}
@keyframes limeTitleSweep {
  from { opacity: .18; transform: scaleX(.03); }
  to { opacity: 1; transform: scaleX(1); }
}
@keyframes mobileLimeNodePulse {
  0%, 72%, 100% { background: #0b0f0c; box-shadow: 0 0 12px rgba(199, 237, 26, .28); transform: scale(1); }
  82% { background: var(--lime); box-shadow: 0 0 0 5px rgba(199, 237, 26, .1), 0 0 20px rgba(199, 237, 26, .72); transform: scale(1.14); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes livePulse { 0%, 100% { opacity: .68; } 50% { opacity: 1; box-shadow: 0 0 0 7px rgba(199, 237, 26, .05), 0 0 18px rgba(199, 237, 26, .62); } }
@keyframes rowReveal { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
@keyframes panelFlash { 0% { border-color: var(--line-strong); } 45% { border-color: rgba(199, 237, 26, .5); } 100% { border-color: var(--line-strong); } }
@keyframes scoreHit { from { opacity: .35; transform: translateX(-5px); } to { opacity: 1; transform: translateX(0); } }

@media (max-width: 1100px) {
  .brand-bar { grid-template-columns: minmax(230px, 1fr) auto minmax(220px, 1fr); }
  .hero-grid { grid-template-columns: 145px minmax(0, 1fr) minmax(320px, .9fr); gap: 20px; }
  .signal-number strong { font-size: 165px; }
  .hero-copy h1 { font-size: clamp(42px, 4.3vw, 50px); }
  .market-motion { padding-left: 18px; }
  .index-row { grid-template-columns: 50px minmax(92px, 1fr) 82px 62px; gap: 8px; }
  .mini-chart { width: 62px; }
  .telegram-rail { grid-template-columns: minmax(330px, .84fr) minmax(500px, 1.26fr); }
  .redirect-progress { padding-inline: 29px 18px; }
  .content-grid { grid-template-columns: minmax(0, 1fr) 330px; }
  .mover-row { grid-template-columns: 52px minmax(0, 1fr) 98px 96px; }
  .mover-columns { grid-template-columns: minmax(0, 1fr) 98px 96px; }
  .mover-spark { width: 98px; }
  .signal-summary { grid-template-columns: minmax(0, 1fr) minmax(180px, .48fr); }
  .summary-checks { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .research-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .research-strip article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .research-strip article:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 960px) {
  .site-frame { width: min(100% - 20px, 760px); }
  .hero-shell { padding-inline: 22px; }
  .brand-bar { grid-template-columns: minmax(0, 1fr) auto; }
  .live-now { display: none; }
  .hero-grid { grid-template-columns: 150px minmax(0, 1fr); align-items: center; padding-inline: 8px; }
  .signal-number strong { font-size: 168px; }
  .market-motion { grid-column: 1 / -1; width: 100%; padding: 25px 0 0; border: 0; border-top: 1px solid var(--line); }
  .index-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .index-row { min-height: 88px; grid-template-columns: 48px minmax(92px, 1fr) 78px; padding-inline: 2px; }
  .mini-chart { display: none; }
  .telegram-rail { grid-template-columns: 1fr; }
  .telegram-main { min-height: 84px; }
  .telegram-main::after { display: none; }
  .redirect-progress { border-top: 1px solid var(--line); }
  .content-grid { grid-template-columns: 1fr; margin-inline: -22px; }
  .route-card { min-height: auto; border-top: 1px solid var(--line-strong); border-left: 0; }
  .signal-summary, .research-strip, .briefing-cta { margin-inline: -22px; }
}

@media (max-width: 720px) {
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .site-frame { width: 100%; padding: 0 7px 26px; }
  .hero-shell { border-radius: 0 0 23px 23px; padding: 0 13px; }
  .brand-bar { min-height: 78px; padding-inline: 3px; }
  .brand { gap: 10px; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { font-size: 8px; }
  .market-state-chip { font-size: 7px; }
  .market-state-chip strong { font-size: 9px; }
  .market-state-chip span { max-width: 123px; overflow: hidden; text-overflow: ellipsis; }
  .graphite-grid { top: 78px; }
  .signal-rails { inset: 130px -25% auto 10%; height: 300px; opacity: .42; }
  .signal-rails i { background: linear-gradient(90deg, transparent, rgba(199, 237, 26, .56), transparent 80%); }
  .signal-rails i::after { width: 34%; animation-duration: 3.9s; }
  .hero-grid { display: block; min-height: auto; padding: 33px 5px 19px; }
  .signal-number { display: none; }
  .hero-copy { padding-inline: 8px; }
  .hero-kicker { font-size: 10px; }
  .hero-copy h1 { margin: 8px 0 10px; font-size: clamp(42px, 12vw, 54px); line-height: 1.02; }
  .hero-copy h1 span { white-space: normal; }
  .hero-copy h1 em::after { content: ""; position: absolute; left: -3px; right: -9px; bottom: -2px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, rgba(199, 237, 26, .1), var(--lime-bright) 24% 76%, rgba(238, 255, 158, .18)); box-shadow: 0 0 13px rgba(199, 237, 26, .38); transform-origin: left center; animation: limeTitleSweep 1.15s .14s cubic-bezier(.2, .78, .24, 1) both; }
  .hero-description { max-width: 330px; font-size: 12.5px; line-height: 1.65; }
  .market-motion { margin-top: 30px; padding-top: 18px; }
  .section-cap { margin-inline: 3px; padding-bottom: 10px; }
  .section-cap h2 { font-size: 20px; }
  .section-cap p { max-width: 145px; font-size: 8px; }
  .index-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .index-row { min-height: 105px; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto 23px; gap: 1px 5px; padding: 12px 11px; border: 1px solid var(--line); border-radius: 12px; background: rgba(8, 11, 9, .52); }
  .index-row:hover { padding: 12px 11px; }
  .index-name { grid-column: 1; grid-row: 1; font-size: 10px; }
  .index-rate-block { grid-column: 2; grid-row: 1; }
  .index-rate { font-size: 13px; }
  .index-rate-block small { display: none; }
  .index-row > strong { grid-column: 1 / -1; grid-row: 2; font-size: clamp(23px, 7vw, 29px); }
  .mini-chart { display: block; grid-column: 1 / -1; grid-row: 3; justify-self: end; width: 66px; height: 23px; }
  .index-row strong.is-wide-value { font-size: clamp(20px, 6vw, 24px); }
  .index-row strong.is-extra-wide-value { font-size: clamp(17px, 5.3vw, 21px); }
  .telegram-rail { display: none; }
  .market-ticker { grid-template-columns: 1fr; margin-top: 13px; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
  .ticker-label { display: none; }
  .ticker-group { gap: 23px; padding: 11px 23px 11px 15px; }
  .ticker-track span { font-size: 10px; }
  .content-grid { gap: 0; margin: 13px -13px 0; contain-intrinsic-size: auto 930px; }
  .movers-card, .route-card { min-height: auto; padding: 22px 16px; }
  .movers-header { align-items: flex-start; gap: 14px; margin-bottom: 15px; }
  .movers-header h2 { font-size: 24px; }
  .panel-market-note { max-width: 190px; line-height: 1.45; }
  .panel-actions { display: grid; grid-template-columns: auto auto; gap: 6px; }
  .panel-session { display: none; }
  .reload-btn { grid-column: 1; grid-row: 1; width: 34px; min-height: 34px; }
  .panel-switch { grid-column: 2; grid-row: 1; }
  .panel-tab { min-width: 68px; min-height: 34px; padding-inline: 8px; font-size: 9px; }
  .mover-columns { grid-template-columns: minmax(0, 1fr) 70px 68px; font-size: 7px; }
  .mover-row { min-height: 63px; grid-template-columns: 42px minmax(0, 1fr) 70px 68px; gap: 5px; }
  .rank-badge { width: 40px; font-size: 23px; }
  .mover-name { font-size: 13px; }
  .mover-code { font-size: 7px; }
  .mover-spark { width: 70px; height: 28px; }
  .mover-price { font-size: 8px; }
  .mover-rate { font-size: 15px; }
  .route-heading span { font-size: 20px; }
  .route-list li { min-height: 104px; padding-left: 39px; }
  .route-list p { font-size: 10.5px; }
  .signal-summary, .research-strip, .briefing-cta { margin-inline: -13px; }
  .signal-summary { grid-template-columns: 1fr; contain-intrinsic-size: auto 530px; }
  .summary-intro { padding: 25px 18px; border-right: 0; }
  .summary-intro h2 { font-size: 25px; }
  .summary-score { padding: 22px 18px 22px 32px; border-top: 1px solid var(--line); border-right: 0; }
  .summary-score::before { top: 20px; bottom: 20px; left: 17px; }
  .summary-score strong { font-size: 41px; }
  .summary-checks { gap: 0; padding: 20px 7px 29px; }
  .summary-checks::before { left: 15px; right: 15px; bottom: 10px; }
  .summary-checks::after { right: 12px; bottom: 6px; }
  .summary-checks article { min-height: 105px; padding: 18px 10px 27px; }
  .summary-checks article::before { right: 3px; top: 3px; width: auto; height: auto; font-size: 57px; }
  .summary-checks article::after { left: 10px; bottom: 5px; width: 6px; height: 6px; }
  .summary-checks strong { font-size: 20px; }
  .summary-checks span { font-size: 8px; }
  .summary-checks small { font-size: 9.5px; line-height: 1.3; }
  .research-strip article { min-height: 130px; padding: 22px 17px 20px; }
  .research-strip strong { margin-top: 12px; font-size: 16px; }
  .research-strip p { font-size: 9.5px; }
  .briefing-cta::before { top: 24px; font-size: clamp(68px, 21vw, 108px); }
  .briefing-cta-copy { padding: 42px 18px 0; }
  .briefing-cta-copy h2 { font-size: clamp(30px, 8.7vw, 40px); }
  .briefing-cta-action { gap: 17px; padding: 16px 18px 48px; }
  .telegram-final { width: 100%; }
  footer { display: grid; gap: 6px; margin-inline: -13px; padding: 15px 16px 17px; }
  footer span { text-align: left; }
  .sticky-redirect { position: fixed; z-index: 50; left: 7px; right: 7px; bottom: max(7px, env(safe-area-inset-bottom)); display: block; }
  .sticky-redirect-card { position: relative; overflow: hidden; border: 1px solid rgba(199, 237, 26, .58); border-radius: 15px; background: rgba(9, 12, 10, .96); box-shadow: 0 13px 35px rgba(0, 0, 0, .58), 0 0 24px rgba(199, 237, 26, .07); backdrop-filter: blur(14px); }
  .sticky-countdown { min-height: 68px; display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 9px 11px 12px; }
  .sticky-plane { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--lime); border-radius: 50%; background: var(--lime); color: #10140d; transform: rotate(-34deg); }
  .sticky-copy { display: grid; gap: 3px; min-width: 0; }
  .sticky-copy strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
  .sticky-copy span { color: var(--muted); font-size: 9px; }
  .sticky-cancel { min-height: 34px; padding: 0 10px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255, 255, 255, .02); color: #a5aba1; font-size: 9px; cursor: pointer; }
  .sticky-cancel:disabled { opacity: 1; cursor: default; }
  .sticky-bar { left: 10px; right: 10px; bottom: 6px; height: 2px; }
  .sticky-redirect.is-cancelled .sticky-redirect-card { border-color: rgba(199, 237, 26, .46); box-shadow: 0 13px 35px rgba(0, 0, 0, .58), 0 0 19px rgba(199, 237, 26, .09); }
  .sticky-redirect.is-cancelled .sticky-plane { border-color: var(--lime); background: rgba(199, 237, 26, .075); color: var(--lime-bright); box-shadow: 0 0 15px rgba(199, 237, 26, .14); }
  .sticky-redirect.is-cancelled .sticky-copy span { color: var(--paper); }
  .sticky-redirect.is-cancelled .sticky-cancel:disabled { border-color: rgba(199, 237, 26, .36); background: rgba(199, 237, 26, .045); color: var(--lime-bright); }
}

@media (max-width: 480px) {
  .brand-copy small { display: none; }
  .hero-copy h1 { font-size: clamp(40px, 12vw, 50px); }
  .movers-header { display: grid; }
  .panel-actions { justify-content: start; }
  .mover-columns { grid-template-columns: minmax(0, 1fr) 58px 62px; }
  .mover-row { grid-template-columns: 39px minmax(0, 1fr) 58px 62px; gap: 4px; }
  .rank-badge { width: 37px; }
  .mover-spark { width: 58px; }
  .mover-rate { font-size: 13px; }
  .mover-price-value { display: none; }
  .research-strip { grid-template-columns: 1fr; }
  .research-strip article { border-top: 1px solid var(--line); border-left: 0; }
  .research-strip article:first-child { border-top: 0; }
}

@media (max-width: 350px) {
  .brand-copy strong { font-size: 17px; }
  .market-state-chip span { max-width: 98px; }
  .hero-copy h1 { font-size: 38px; }
  .index-row { min-height: 112px; padding-inline: 9px; }
  .index-row > strong { font-size: 21px; }
  .index-row strong.is-wide-value { font-size: 18px; }
  .index-row strong.is-extra-wide-value { font-size: 16px; }
  .mover-columns { grid-template-columns: minmax(0, 1fr) 48px 55px; }
  .mover-row { grid-template-columns: 34px minmax(0, 1fr) 48px 55px; gap: 3px; }
  .rank-badge { width: 32px; font-size: 20px; }
  .mover-name { font-size: 11px; }
  .mover-spark { width: 48px; }
  .mover-rate { font-size: 11px; }
  .panel-tab { min-width: 62px; padding-inline: 6px; }
}

@media (hover: none) and (pointer: coarse) {
  .index-row:active { background: linear-gradient(90deg, rgba(199, 237, 26, .07), transparent); border-color: rgba(199, 237, 26, .45); }
  .panel-tab:active { background: var(--lime); color: #10140d; font-weight: 800; }
  .reload-btn:active { border-color: var(--lime); color: var(--lime); }
  .mover-row:active { background: linear-gradient(90deg, rgba(199, 237, 26, .07), transparent); }
  .route-list li:active { background: linear-gradient(90deg, rgba(199, 237, 26, .075), rgba(199, 237, 26, .012) 72%, transparent); box-shadow: inset 2px 0 0 rgba(199, 237, 26, .82); }
  .route-list li:active::before { background: var(--lime); box-shadow: 0 0 0 5px rgba(199, 237, 26, .1), 0 0 18px rgba(199, 237, 26, .56); transform: scale(1.08); }
  .route-list li:active time { color: var(--lime); }
  .route-list li:active strong { color: var(--paper); }
  .route-list li:active p { color: #bcc2b7; }
  .route-list li:active b { border-color: var(--lime); background: var(--lime); color: #10140d; box-shadow: 0 0 14px rgba(199, 237, 26, .18); }
  .summary-checks article::after { animation: mobileLimeNodePulse 5.4s ease-in-out infinite; }
  .summary-checks article:nth-child(2)::after { animation-delay: -1.8s; }
  .summary-checks article:nth-child(3)::after { animation-delay: -3.6s; }
  .summary-checks article:active { background: linear-gradient(180deg, rgba(199, 237, 26, .09), rgba(199, 237, 26, .012)); box-shadow: inset 0 2px 0 rgba(199, 237, 26, .7), inset 0 0 34px rgba(199, 237, 26, .035); }
  .summary-checks article:active::before { color: rgba(199, 237, 26, .15); transform: translateY(-2px); }
  .summary-checks article:active::after { animation: none; background: var(--lime); box-shadow: 0 0 0 4px rgba(199, 237, 26, .09), 0 0 18px rgba(199, 237, 26, .7); transform: scale(1.12); }
  .summary-checks article:active strong { color: var(--lime-bright); }
  .summary-checks article:active small { color: var(--paper); }
  .telegram-final:active { background: var(--lime-bright); box-shadow: 0 0 30px rgba(199, 237, 26, .18); transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ticker-track.is-running { animation: none !important; transform: none !important; }
  .telegram-rail::before { animation: none !important; filter: none; }
}
