:root {
  --black: #050607;
  --black-soft: #0a0c0e;
  --panel: #0d0f11;
  --panel-soft: #121519;
  --line: rgba(224, 229, 235, .22);
  --line-strong: rgba(239, 242, 246, .44);
  --white: #f4f5f6;
  --muted: #8d9299;
  --muted-dark: #5f646b;
  --red: #ff292d;
  --red-bright: #ff4549;
  --red-dark: #a90f16;
  --shadow-red: rgba(255, 41, 45, .24);
  --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(--black); }
body {
  margin: 0;
  min-width: 300px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 41, 45, .055), transparent 25%),
    radial-gradient(circle at 82% 15%, rgba(114, 125, 140, .07), transparent 27%),
    linear-gradient(180deg, #030405 0%, #08090b 46%, #030405 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(--red); outline-offset: 3px; }
img { display: block; max-width: 100%; }

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

.hero-shell,
.kinetic-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(13, 15, 17, .97), rgba(5, 6, 7, .985));
  box-shadow: 0 28px 74px rgba(0, 0, 0, .34);
}

.hero-shell {
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  border-radius: 30px 5px 30px 5px;
  padding: 0 34px 26px;
}

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

.hero-shell::before {
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0 64%, rgba(255, 255, 255, .025) 64.1% 64.25%, transparent 64.4%),
    linear-gradient(112deg, transparent 0 69%, rgba(255, 41, 45, .055) 69.1% 69.22%, transparent 69.35%);
}

.hero-shell::after {
  width: 330px;
  height: 330px;
  right: -110px;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 41, 45, .1), transparent 66%);
  filter: blur(15px);
}

.velocity-lines {
  position: absolute;
  z-index: -1;
  inset: 84px -12% 0 29%;
  opacity: .33;
  transform: skewY(-5deg);
  background:
    repeating-linear-gradient(174deg, transparent 0 16px, rgba(192, 201, 212, .075) 17px, transparent 18px 30px),
    linear-gradient(120deg, transparent 0 35%, rgba(255, 41, 45, .07) 35.15%, transparent 35.35% 100%);
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 82%, transparent);
}

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

.hero-velocity-chart {
  position: absolute;
  z-index: 0;
  left: 1.5%;
  top: 165px;
  width: 74%;
  height: 313px;
  overflow: visible;
  pointer-events: none;
  opacity: .8;
  transform: rotate(-1.5deg);
  transform-origin: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.hero-velocity-chart path,
.hero-velocity-chart use {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: square;
  stroke-linejoin: miter;
  shape-rendering: geometricPrecision;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.velocity-mobile { display: none; }

.hero-velocity-haze {
  stroke: #f5f7f9;
  stroke-width: 4;
  opacity: .05;
  filter: blur(3.5px);
  animation: heroVelocityDraw 3.1s cubic-bezier(.17, .74, .25, 1) .15s forwards;
}

.hero-velocity-line {
  stroke: #f5f7f9;
  stroke-width: .74;
  opacity: .46;
  animation: heroVelocityDraw 2.9s cubic-bezier(.17, .74, .25, 1) .15s forwards;
}

.hero-velocity-scan {
  stroke: #fff;
  stroke-width: 1.65;
  stroke-dasharray: .035 .965 !important;
  opacity: .78;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, .5));
  animation: heroVelocityScan 1.7s linear .37s infinite;
}

.brand-bar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.brand-bar::after {
  content: "";
  position: absolute;
  left: 38%;
  right: 8%;
  top: 91px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: rotate(-2.2deg);
  transform-origin: left;
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(240, 216, 165, .72);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .025), 0 0 23px rgba(255, 41, 45, .14);
}

.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 24px; line-height: 1; letter-spacing: -.055em; }
.brand-copy small { color: var(--red); font-size: 10px; font-style: italic; font-weight: 800; letter-spacing: .12em; }

.market-state-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.market-state-chip i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 41, 45, .09), 0 0 13px rgba(255, 41, 45, .62);
}

.market-state-chip strong { color: var(--red-bright); font-size: 12px; font-style: italic; }
.market-state-chip.is-open i { animation: livePulse 1.8s ease-in-out infinite; }
.market-state-chip.is-stale i { background: #7b8087; box-shadow: 0 0 0 5px rgba(123, 128, 135, .08); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(400px, .82fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  min-height: 430px;
  padding: 45px 24px 38px 28px;
}

.hero-copy { --hero-slant: -22deg; position: relative; min-width: 0; }
.hero-kicker,
.hero-copy h1,
.hero-copy h2,
.hero-description {
  transform: skewX(var(--hero-slant));
  transform-origin: left center;
}
.hero-copy .hero-kicker { margin-left: 30px; }
.hero-copy h1::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -41px;
  top: .03em;
  bottom: 0;
  width: 13px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(255, 41, 45, .2);
  pointer-events: none;
}

.hero-kicker,
.eyebrow,
.final-kicker {
  margin: 0;
  color: var(--red);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-copy h1 {
  position: relative;
  display: grid;
  margin: 4px 0 5px 20px;
  width: max-content;
  max-width: 100%;
  color: #f3f3f3;
  font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(82px, 8.4vw, 126px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .73;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .4);
}

.hero-copy h1 span:first-child { font-size: .82em; letter-spacing: .015em; }

.hero-copy h2 {
  margin: 28px 0 13px 20px;
  font-size: clamp(26px, 3vw, 38px);
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -.055em;
}

.hero-copy h2 em { color: var(--red); font-style: inherit; }
.hero-description { max-width: 540px; margin: 0 0 0 20px; color: #c4c7ca; font-size: 16px; line-height: 1.7; letter-spacing: -.02em; }

@media (min-width: 821px) {
  .hero-copy { --hero-lockup-left: 64px; left: -12px; }
  .hero-copy .hero-kicker { margin-left: calc(var(--hero-lockup-left) + 10px); }
  .hero-copy h1 { margin-left: var(--hero-lockup-left); }
  .hero-copy h1::before { left: -27px; }
  .hero-description { margin-left: 4px; }
}

@media (min-width: 821px) and (max-width: 900px) {
  .hero-copy { --hero-lockup-left: clamp(14px, calc(63.3vw - 505.7px), 64px); }
}

@media (min-width: 721px) and (max-width: 820px) {
  .hero-copy h1::before { left: -27px; }
}

.market-motion { min-width: 0; }
.section-cap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
}

.section-cap > div { display: flex; align-items: center; gap: 9px; }
.section-cap > div > span { width: 22px; height: 3px; background: var(--red); transform: skewX(-28deg); }
.section-cap h2 { margin: 0; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 24px; font-style: italic; letter-spacing: .04em; }
.section-cap p { margin: 0; color: var(--muted); font-size: 10px; text-align: right; }

.index-stack { display: grid; gap: 14px; }
.index-row {
  position: relative;
  min-width: 0;
  min-height: 90px;
  display: grid;
  grid-template-columns: 68px minmax(108px, 1fr) 106px 92px;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 25px;
  border: 1px solid rgba(224, 229, 235, .24);
  background: linear-gradient(105deg, rgba(18, 21, 24, .96), rgba(5, 6, 7, .86));
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.index-row::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: var(--red);
  opacity: .42;
}

.index-row:hover { transform: translateX(-4px); border-color: rgba(255, 41, 45, .52); background: linear-gradient(105deg, rgba(25, 25, 27, .98), rgba(10, 5, 6, .92)); }
.index-name { color: #dbdde0; font-size: 15px; font-weight: 800; letter-spacing: -.03em; }
.index-row > strong { min-width: 0; font-size: clamp(28px, 2.6vw, 36px); font-style: italic; line-height: 1; letter-spacing: -.045em; white-space: nowrap; }
.index-rate-block { display: grid; justify-items: end; gap: 3px; }
.index-rate { color: var(--red-bright); font-size: 18px; font-style: italic; font-weight: 800; white-space: nowrap; }
.index-rate.is-movement { color: #d9dcdf; }
.index-rate-block small { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: -.01em; white-space: nowrap; }

.mini-chart { width: 94px; height: 30px; overflow: visible; }
.mini-chart polyline { fill: none; stroke-linecap: butt; stroke-linejoin: miter; shape-rendering: geometricPrecision; vector-effect: non-scaling-stroke; }
.mini-chart-glow { stroke: var(--red); stroke-width: 3.8; opacity: .28; filter: blur(1.5px); }
.mini-chart-line { stroke: var(--red-bright); stroke-width: 1.45; opacity: 1; filter: none; }
.mini-chart marker path { fill: var(--red-bright); filter: none; }
.index-row strong.is-wide-value { font-size: clamp(24px, 2.25vw, 31px); }
.index-row strong.is-extra-wide-value { font-size: clamp(21px, 2vw, 28px); }

.telegram-rail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, .9fr) minmax(520px, 1.45fr);
  align-items: stretch;
  margin: 0 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 22px 5px 22px 5px;
  overflow: hidden;
  background:
    linear-gradient(112deg, transparent 0 68%, rgba(255, 41, 45, .05) 68.1% 68.3%, transparent 68.45%),
    linear-gradient(95deg, rgba(12, 14, 16, .985), rgba(5, 6, 8, .99));
  box-shadow: inset 0 1px rgba(255, 255, 255, .035), 0 16px 34px rgba(0, 0, 0, .22);
}

.telegram-rail::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 22px;
  top: -1px;
  width: 104px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(255, 41, 45, 0));
}

.telegram-rail::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 165px;
  height: 88px;
  border: 1px solid rgba(255, 41, 45, .14);
  transform: rotate(-15deg);
  pointer-events: none;
}

.telegram-main {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 15px;
  padding: 22px 24px 22px 26px;
  border-right: 1px solid var(--line);
  background: linear-gradient(105deg, rgba(255, 255, 255, .018), transparent 78%);
}

.telegram-orb {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 27%, rgba(255, 255, 255, .08), transparent 40%), #080a0c;
  font-size: 24px;
  transform: rotate(-34deg);
  transition: color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.telegram-main:hover .telegram-orb { color: var(--red); border-color: var(--red); box-shadow: 0 0 24px var(--shadow-red); }
.telegram-copy { display: grid; min-width: 0; gap: 4px; }
.telegram-copy strong { overflow: hidden; font-size: 18px; letter-spacing: -.04em; text-overflow: ellipsis; white-space: nowrap; }
.telegram-copy small { color: var(--muted); font-size: 11px; }
.telegram-arrow { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; font-size: 25px; line-height: 1; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.telegram-main:hover .telegram-arrow { color: var(--red); border-color: rgba(255, 41, 45, .42); transform: translateX(3px); }

.redirect-progress { position: relative; z-index: 1; min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(170px, .42fr); align-items: center; gap: 22px; padding: 18px 27px 27px 28px; }
.redirect-sequence { min-width: 0; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 9px; }
.redirect-sequence > span { display: grid; justify-items: center; gap: 5px; color: #686d73; transition: color .25s ease; }
.redirect-sequence > span b { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #4c5157; border-radius: 50%; font-size: 10px; font-style: italic; }
.redirect-sequence > span small { font-size: 9px; white-space: nowrap; }
.redirect-sequence > i { height: 1px; background: #3c4147; }
.redirect-sequence > span.is-active { color: var(--white); }
.redirect-sequence > span.is-active b { color: #fff; border-color: var(--red); background: var(--red); box-shadow: 0 0 16px var(--shadow-red); }
.redirect-sequence > span.is-active + i { background: var(--red); }
.redirect-copy { min-width: 0; display: grid; grid-template-columns: 62px minmax(0, 1fr); align-items: center; gap: 13px; padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, .12); }
.redirect-copy > strong { width: 62px; color: var(--red); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 47px; font-style: italic; font-weight: 900; line-height: .82; text-align: center; text-shadow: 0 0 18px rgba(255, 41, 45, .24); }
.redirect-meta { min-width: 0; display: grid; align-content: center; justify-items: start; gap: 7px; }
.redirect-meta > span { color: #d5d8db; font-size: 10px; white-space: nowrap; }
.redirect-copy button { min-height: 24px; padding: 0 9px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; background: rgba(255, 255, 255, .018); color: #8f949a; font-size: 8px; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.redirect-copy button:hover { border-color: rgba(255, 41, 45, .48); background: rgba(255, 41, 45, .055); color: var(--white); }

.redirect-bar { position: absolute; left: 28px; right: 28px; bottom: 10px; height: 2px; overflow: hidden; background: rgba(255, 255, 255, .12); }
.redirect-bar span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--red-dark), var(--red-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: .52; }
.redirect-progress.is-cancelled .redirect-copy { border-left-color: rgba(255, 41, 45, .42); }
.redirect-progress.is-cancelled .redirect-copy > strong { color: var(--red-bright); font-size: 18px; letter-spacing: .01em; text-shadow: 0 0 16px rgba(255, 41, 45, .28); }
.redirect-progress.is-cancelled .redirect-meta > span { color: var(--white); }
.redirect-progress.is-cancelled .redirect-cancel-btn { border-color: rgba(255, 41, 45, .42); background: rgba(255, 41, 45, .065); color: var(--red-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 rgba(255, 255, 255, .08); background: rgba(0, 0, 0, .3); }
.ticker-label { padding: 12px 20px 12px 0; color: var(--red); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 12px; font-style: italic; font-weight: 800; letter-spacing: .12em; white-space: nowrap; }
.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: 30px; padding: 12px 30px 12px 22px; }
.ticker-track span { display: inline-flex; align-items: center; gap: 7px; color: #c7cace; font-size: 12px; font-weight: 700; }
.ticker-track span::before { content: ""; width: 5px; height: 2px; background: var(--red); transform: skewX(-28deg); }
.ticker-track b { color: var(--red-bright); }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.6fr) minmax(280px, .88fr);
  gap: 18px;
  margin-top: 18px;
}

.content-grid,
.proof-card,
.trust-band,
.final,
footer {
  content-visibility: auto;
}
.content-grid { contain-intrinsic-size: auto 510px; }
.proof-card { contain-intrinsic-size: auto 190px; }
.trust-band { contain-intrinsic-size: auto 150px; }
.final { contain-intrinsic-size: auto 300px; }
footer { contain-intrinsic-size: auto 46px; }

.kinetic-card { overflow: hidden; border-radius: 5px 25px 5px 25px; }
.kinetic-card::before { content: ""; position: absolute; top: 0; left: 0; width: 64px; height: 2px; background: var(--red); }
.movers-card, .route-card { min-height: 490px; padding: 27px 28px; }
.movers-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 21px; }
.movers-header h2, .proof-copy h2, .final h2 { margin: 3px 0 0; letter-spacing: -.055em; }
.movers-header h2 { font-size: 31px; }
.panel-market-note { margin: 7px 0 0; color: var(--muted); font-size: 11px; }
.panel-actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; }
.panel-session { display: grid; justify-items: end; gap: 2px; margin-right: 4px; }
.panel-session span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.panel-session time { color: var(--muted); font-size: 8px; }
.panel-switch { display: flex; align-items: center; }
.panel-tab, .reload-btn {
  min-height: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
  color: #8f949a;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.panel-tab { min-width: 92px; padding: 0 16px; font-size: 12px; font-style: italic; clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%); }
.panel-tab + .panel-tab { margin-left: -7px; }
.panel-tab:hover, .panel-tab.is-active { color: var(--red); border-color: rgba(255, 41, 45, .7); background: rgba(255, 41, 45, .06); }
.reload-btn { order: -1; width: 38px; display: none; place-items: center; padding: 0; border-radius: 50%; }
.reload-btn.is-visible { display: grid; }
.reload-btn:hover { color: var(--red); border-color: var(--red); }
.reload-icon { display: block; font-size: 17px; line-height: 1; }
.is-loading .reload-icon { animation: spin .7s linear infinite; }

.mover-list { display: grid; gap: 7px; transition: opacity .18s ease, transform .18s ease; }
.mover-list.switching { opacity: 0; transform: translateY(5px); }
.mover-row {
  min-width: 0;
  min-height: 62px;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) 136px 116px;
  align-items: center;
  gap: 13px;
  padding: 8px 19px 8px 9px;
  border: 1px solid rgba(215, 220, 226, .17);
  background: linear-gradient(98deg, rgba(19, 22, 25, .98), rgba(7, 8, 9, .92));
  clip-path: polygon(2.5% 0, 100% 0, 97.5% 100%, 0 100%);
  animation: rowReveal .42s both;
}
.mover-row:first-child { border-color: rgba(255, 41, 45, .45); background: linear-gradient(98deg, rgba(35, 11, 13, .94), rgba(8, 9, 10, .94) 42%); }
.mover-row:hover { border-color: rgba(255, 41, 45, .5); }
.mover-leading { min-width: 0; display: flex; align-items: center; gap: 8px; }
.rank-badge { width: 43px; height: 43px; display: grid; place-items: center; color: #e9eaec; border-right: 1px solid rgba(255, 255, 255, .23); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 22px; font-style: italic; font-weight: 900; }
.rank-badge.top1 { color: #fff; background: var(--red); border: 0; box-shadow: 0 0 20px rgba(255, 41, 45, .15); }
.logo-img { width: 39px; height: 39px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; background: #111419; color: #dfe2e5; font-size: 12px; font-weight: 900; }
.logo-img img { width: 100%; height: 100%; object-fit: cover; }
.mover-name { overflow: hidden; color: #f0f1f2; font-size: 16px; font-weight: 800; letter-spacing: -.04em; text-overflow: ellipsis; white-space: nowrap; }
.mover-code { margin-top: 3px; color: #747981; font-size: 9px; letter-spacing: .04em; }
.mover-spark { width: 136px; height: 38px; overflow: visible; }
.mover-spark polyline { fill: none; stroke: var(--red); stroke-width: 1.18; 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: #b3b7bc; font-size: 11px; white-space: nowrap; }
.mover-rate { color: var(--red-bright); font-size: 18px; font-style: italic; font-weight: 850; }
.data-message { margin: 13px 0 0; color: #c6c9cc; font-size: 11px; }
.movers-card.glow-change { animation: panelFlash .68s ease; }

.route-card { display: flex; flex-direction: column; padding-inline: 30px; }
.route-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.route-heading span { color: var(--white); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 22px; font-style: italic; font-weight: 800; letter-spacing: .04em; }
.route-heading small { color: var(--red); font-size: 8px; letter-spacing: .1em; }
.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 li { position: relative; min-height: 0; padding: 8px 0 18px 53px; border-bottom: 1px dashed rgba(255, 255, 255, .12); border-radius: 2px 13px 2px 13px; background-color: transparent; transition: background-color .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease; }
.route-list li:last-child { border-bottom: 0; }
.route-list li::before { content: ""; position: absolute; left: 8px; top: 13px; width: 17px; height: 17px; border: 2px solid #d9dde1; border-radius: 50%; background: var(--panel); transition: background-color .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease; }
.route-list li::after { content: ""; position: absolute; left: 16px; top: 32px; bottom: -1px; width: 1px; background: rgba(255, 255, 255, .24); transition: background-color .24s ease, box-shadow .24s ease; }
.route-list li:nth-child(2)::before { border-color: var(--red); box-shadow: 0 0 0 4px rgba(255, 41, 45, .1); }
.route-list li:nth-child(2) time { color: var(--red); }
.route-list li:last-child::after { display: none; }
.route-list time { display: block; color: #e3e5e7; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 21px; font-style: italic; font-weight: 800; transition: color .24s ease, transform .24s ease; }
.route-list strong { display: block; margin-top: 3px; font-size: 14px; transition: color .24s ease, transform .24s ease; }
.route-list p { margin: 6px 0 0; color: #9ea3a9; font-size: 11.5px; font-weight: 500; line-height: 1.62; letter-spacing: -.012em; transition: color .24s ease, transform .24s ease; }

.proof-card {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(205px, .48fr) minmax(500px, 1.36fr);
  align-items: center;
  gap: 29px;
  margin-top: 18px;
  padding: 31px 32px;
}
.proof-copy h2 { font-size: 27px; line-height: 1.15; }
.proof-copy p { margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.proof-number { display: grid; gap: 3px; padding-left: 26px; border-left: 1px solid rgba(255, 41, 45, .55); }
.proof-number span { color: var(--red); font-size: 11px; font-weight: 800; }
.proof-number strong { color: var(--red-bright); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 47px; font-style: italic; line-height: 1; }
.proof-number small { color: var(--muted); font-size: 8px; }
.proof-number.is-updating strong { animation: numberHit .62s ease; }
.proof-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.proof-metrics div { position: relative; min-height: 118px; display: grid; align-content: center; gap: 8px; overflow: hidden; padding: 28px 19px 19px; border: 1px solid rgba(224, 229, 235, .3); border-radius: 18px; background: radial-gradient(circle at 82% 0%, rgba(255, 41, 45, .12), transparent 43%), linear-gradient(145deg, rgba(21, 24, 28, .98), rgba(7, 8, 10, .99)); box-shadow: inset 0 1px rgba(255, 255, 255, .05), 0 12px 28px rgba(0, 0, 0, .19); transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease; }
.proof-metrics div::before { content: attr(data-step); position: absolute; right: 13px; top: 12px; width: 29px; height: 29px; display: grid; place-items: center; color: var(--red-bright); border: 1px solid rgba(255, 41, 45, .38); border-radius: 50%; background: rgba(255, 41, 45, .065); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 12px; font-style: italic; font-weight: 900; }
.proof-metrics div::after { content: ""; position: absolute; left: 18px; bottom: 0; width: 49px; height: 2px; background: linear-gradient(90deg, var(--red), rgba(255, 41, 45, 0)); }
.proof-metrics div:hover { z-index: 1; border-color: rgba(255, 41, 45, .46); transform: translateY(-1px); box-shadow: inset 0 1px rgba(255, 255, 255, .055), 0 13px 30px rgba(0, 0, 0, .22), 0 0 18px rgba(255, 41, 45, .055); }
.proof-metrics span { color: #f2f3f4; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 23px; font-style: italic; font-weight: 800; letter-spacing: .025em; }
.proof-metrics small { color: #adb1b6; font-size: 10.5px; font-weight: 650; letter-spacing: .035em; }

@supports (offset-path: inset(1px)) {
  .telegram-rail::before {
    left: 0;
    top: 0;
    width: 116px;
    height: 3px;
    border-radius: 999px;
    pointer-events: none;
    offset-path: inset(2px round 20px 3px 20px 3px) border-box;
    offset-anchor: 50% 50%;
    offset-rotate: auto 180deg;
    filter: drop-shadow(0 0 5px rgba(255, 41, 45, .9));
    will-change: offset-distance, transform;
    animation: telegramAccentOrbit 2.2s linear infinite;
  }

  .proof-metrics div::after {
    left: 0;
    top: 0;
    bottom: auto;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    pointer-events: none;
    offset-path: inset(2px round 16px) border-box;
    offset-anchor: 50% 50%;
    offset-rotate: auto 180deg;
    filter: drop-shadow(0 0 4px rgba(255, 41, 45, .82));
    will-change: offset-distance, transform;
    animation: metricAccentOrbit 1.6s linear infinite paused;
  }

  .proof-metrics div:nth-child(2)::after { animation-delay: -.48s; }
  .proof-metrics div:nth-child(3)::after { animation-delay: -.96s; }
  .proof-card.is-effects-visible .proof-metrics div::after { animation-play-state: running; }
}

.trust-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: 18px; background: var(--line); }
.trust-band > div { position: relative; isolation: isolate; min-height: 150px; overflow: hidden; padding: 24px 23px; background: linear-gradient(145deg, #0d1012, #070809); transition: background .26s ease, box-shadow .26s ease, transform .26s ease; }
.trust-band > div::before { content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none; background: linear-gradient(118deg, rgba(255, 41, 45, .11), transparent 58%); opacity: 0; transition: opacity .26s ease; }
.trust-band > div::after { content: ""; position: absolute; z-index: 1; left: 0; top: 0; width: 45%; height: 2px; pointer-events: none; background: linear-gradient(90deg, transparent, var(--red) 52%, var(--red-bright) 64%, transparent); opacity: 0; transform: translateX(-115%); transition: opacity .12s ease, transform .46s cubic-bezier(.22, .72, .2, 1); }
.trust-band > div > * { position: relative; z-index: 2; }
.trust-band span { display: inline-block; color: var(--red); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 18px; font-style: italic; font-weight: 900; transition: color .24s ease, transform .24s ease; }
.trust-band strong { display: block; margin-top: 14px; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 19px; font-style: italic; letter-spacing: .04em; transition: color .24s ease, transform .24s ease; }
.trust-band p { margin: 8px 0 0; color: var(--muted); font-size: 11.5px; line-height: 1.6; transition: color .24s ease, transform .24s ease; }

@media (hover: hover) and (pointer: fine) {
  .route-list li:hover {
    z-index: 1;
    border-bottom-color: rgba(255, 41, 45, .24);
    background-color: rgba(255, 41, 45, .055);
    box-shadow: inset 2px 0 0 rgba(255, 41, 45, .72), inset 0 0 26px rgba(255, 41, 45, .035);
    transform: translateX(4px);
  }
  .route-list li:hover::before { border-color: var(--red-bright); background: rgba(255, 41, 45, .13); box-shadow: 0 0 0 4px rgba(255, 41, 45, .11), 0 0 18px rgba(255, 41, 45, .24); transform: scale(1.09); }
  .route-list li:hover::after { background: rgba(255, 41, 45, .58); box-shadow: 0 0 8px rgba(255, 41, 45, .22); }
  .route-list li:hover time { color: var(--red-bright); transform: translateX(2px); }
  .route-list li:hover strong { color: #fff; transform: translateX(2px); }
  .route-list li:hover p { color: #c5c9cd; transform: translateX(2px); }

  .trust-band > div:hover { z-index: 1; background: linear-gradient(145deg, #15181c, #08090b); box-shadow: inset 0 0 0 1px rgba(255, 41, 45, .34), inset 0 -34px 54px rgba(255, 41, 45, .025); transform: translateY(-1px); }
  .trust-band > div:hover::before { opacity: 1; }
  .trust-band > div:hover::after { opacity: 1; transform: translateX(255%); }
  .trust-band > div:hover span { color: var(--red-bright); transform: translateX(3px); }
  .trust-band > div:hover strong { color: #fff; transform: translateX(3px); }
  .trust-band > div:hover p { color: #b8bdc2; transform: translateX(3px); }
}

.final { margin-top: 18px; padding: 54px 28px 50px; text-align: center; background: radial-gradient(circle at 50% 100%, rgba(255, 41, 45, .11), transparent 38%), linear-gradient(145deg, #0b0d0f, #040506); }
.final h2 { margin-top: 9px; font-size: clamp(29px, 4vw, 45px); line-height: 1.16; }
.final > p:not(.final-kicker) { margin: 15px 0 0; color: var(--muted); font-size: 12px; }
.telegram-final { width: min(360px, 90%); min-height: 58px; display: inline-grid; grid-template-columns: 36px minmax(0, 1fr) 24px; align-items: center; gap: 14px; margin-top: 25px; padding: 0 22px; border: 1px solid var(--red); background: var(--red); color: #fff; font-weight: 800; clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%); transition: background .2s ease, box-shadow .2s ease; }
.telegram-final:hover { background: var(--red-bright); box-shadow: 0 0 32px rgba(255, 41, 45, .22); }
.telegram-final-icon { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .62); border-radius: 50%; font-size: 14px; font-style: normal; transform: rotate(-34deg); transition: transform .25s ease, background .25s ease; }
.telegram-final:hover .telegram-final-icon { background: rgba(0, 0, 0, .12); transform: rotate(-34deg) scale(1.07); }
.telegram-final span { text-align: center; }
.telegram-final b { font-size: 24px; }
footer { padding: 28px 18px 0; color: #555a60; font-size: 9px; text-align: center; }

.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 metricAccentOrbit {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes livePulse { 0%, 100% { opacity: .7; } 50% { opacity: 1; box-shadow: 0 0 0 7px rgba(255, 41, 45, .05), 0 0 18px rgba(255, 41, 45, .75); } }
@keyframes rowReveal { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
@keyframes panelFlash { 0% { border-color: var(--line); } 45% { border-color: rgba(255, 41, 45, .56); } 100% { border-color: var(--line); } }
@keyframes numberHit { 0% { opacity: .4; transform: translateX(-6px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes heroVelocityDraw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes heroVelocityScan {
  0% { stroke-dashoffset: 1; opacity: 0; }
  2% { stroke-dashoffset: 1; opacity: .78; }
  20% { stroke-dashoffset: -.035; opacity: .78; }
  25%, 100% { stroke-dashoffset: -.035; opacity: 0; }
}

@keyframes heroVelocityScanMobile {
  0% { stroke-dashoffset: 1; opacity: 0; }
  2% { stroke-dashoffset: 1; opacity: 1; }
  23% { stroke-dashoffset: -.035; opacity: 1; }
  30%, 100% { stroke-dashoffset: -.035; opacity: 0; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr); gap: 30px; padding-inline: 14px; }
  .hero-copy h1 { font-size: clamp(76px, 10vw, 100px); }
  .index-row { grid-template-columns: 58px minmax(90px, 1fr) 88px 74px; gap: 9px; padding-inline: 20px; }
  .mini-chart { width: 74px; }
  .telegram-rail { grid-template-columns: minmax(285px, .8fr) minmax(480px, 1.3fr); }
  .redirect-progress { padding-inline: 18px 26px; }
  .mover-row { grid-template-columns: 88px minmax(0, 1fr) 100px 105px; }
  .mover-spark { width: 100px; }
  .proof-card { grid-template-columns: 1fr .5fr; }
  .proof-metrics { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .site-frame { width: min(100% - 20px, 720px); }
  .hero-shell { padding-inline: 22px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 42px 8px 30px; }
  .hero-copy { max-width: 600px; }
  .hero-copy h1 { font-size: clamp(80px, 17vw, 116px); }
  .market-motion { max-width: 620px; width: 100%; }
  .telegram-rail { grid-template-columns: 1fr; border-radius: 20px 5px 20px 5px; }
  .telegram-main { border-right: 0; border-bottom: 1px solid var(--line); }
  .content-grid { grid-template-columns: 1fr; }
  .route-card { min-height: auto; }
  .proof-card { grid-template-columns: 1fr .6fr; }
}

@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 26px 26px; padding: 0 13px 18px; }
  .brand-bar { min-height: 76px; padding-inline: 4px; }
  .brand-bar::after { top: 75px; left: 44%; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy small { font-size: 8px; }
  .market-state-chip { display: grid; grid-template-columns: 8px auto; gap: 1px 7px; justify-items: end; font-size: 8px; }
  .market-state-chip i { grid-row: 1; grid-column: 1; width: 7px; height: 7px; }
  .market-state-chip strong { grid-row: 1; grid-column: 2; font-size: 10px; }
  .market-state-chip span { grid-column: 1 / -1; max-width: 126px; overflow: hidden; text-overflow: ellipsis; }
  .hero-grid { gap: 34px; padding: 35px 5px 23px; }
  .hero-copy { width: calc(100% - 7px); margin-left: 7px; }
  .hero-copy h1::before { left: -14px; width: 8px; }
  .hero-copy .hero-kicker { margin-left: 28px; font-size: 10px; }
  .hero-copy h1 { margin-left: 18px; font-size: clamp(67px, 21vw, 92px); line-height: .74; }
  .hero-copy h2 { margin: 23px 0 11px 18px; font-size: clamp(26px, 8.1vw, 35px); }
  .hero-description { margin-left: 18px; max-width: calc(100% - 34px); font-size: 12.5px; line-height: 1.65; }
  .velocity-lines { inset: 75px -35% 0 12%; opacity: .37; }
  .hero-velocity-chart { left: -22%; top: 208px; width: 128%; height: 224px; opacity: .72; transform: rotate(-2deg); }
  .hero-velocity-haze { stroke-width: 4.4; opacity: .075; animation-duration: 2.35s; animation-delay: .08s; }
  .hero-velocity-line { stroke-width: .86; opacity: .62; animation-duration: 2.15s; animation-delay: .08s; }
  .hero-velocity-scan { stroke-width: 1.9; filter: drop-shadow(0 0 5px rgba(255, 255, 255, .72)); animation-name: heroVelocityScanMobile; animation-delay: .2s; }
  .velocity-desktop { display: none; }
  .velocity-mobile { display: inline; }
  .section-cap { margin-inline: 4px; }
  .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: 94px;
    grid-template-columns: minmax(0, 1fr) 66px;
    grid-template-rows: auto auto;
    gap: 2px 6px;
    padding: 13px 12px;
    border-radius: 18px;
    clip-path: none;
    transform: none;
  }
  .index-row:hover { transform: none; }
  .index-name { grid-column: 1; grid-row: 1; align-self: center; font-size: clamp(10px, 3vw, 12px); }
  .index-row > strong { grid-column: 1; grid-row: 2; align-self: start; font-size: clamp(19px, 6.1vw, 24px); }
  .index-rate-block { grid-column: 2; grid-row: 1; align-self: center; }
  .index-rate { font-size: clamp(11px, 3.3vw, 13px); }
  .index-rate-block small { display: none; }
  .mini-chart { grid-column: 2; grid-row: 2; align-self: center; width: 64px; height: 24px; }
  .index-row strong.is-wide-value { font-size: clamp(16px, 4.8vw, 19px); }
  .index-row strong.is-extra-wide-value { font-size: clamp(14px, 4.3vw, 17px); }
  .telegram-rail { display: none; }
  .market-ticker { grid-template-columns: 1fr; margin-top: 13px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; overflow: hidden; }
  .ticker-label { display: none; }
  .ticker-group { gap: 23px; padding: 12px 23px 12px 16px; }
  .ticker-track span { font-size: 11px; }
  .content-grid { gap: 12px; margin-top: 12px; contain-intrinsic-size: auto 900px; }
  .kinetic-card { border-radius: 5px 21px 5px 21px; }
  .movers-card, .route-card { min-height: auto; padding: 23px 17px; }
  .movers-header { align-items: flex-start; gap: 16px; margin-bottom: 18px; }
  .movers-header h2 { font-size: 25px; }
  .panel-market-note { max-width: 190px; line-height: 1.45; }
  .panel-actions { display: grid; grid-template-columns: auto auto; align-items: center; gap: 7px; }
  .panel-session { display: none; }
  .reload-btn { grid-column: 1; grid-row: 1; }
  .panel-switch { grid-column: 2; grid-row: 1; }
  .panel-tab { min-width: 74px; min-height: 35px; padding-inline: 10px; font-size: 10px; }
  .mover-row { min-height: 59px; grid-template-columns: 78px minmax(0, 1fr) 78px 82px; gap: 7px; padding: 7px 10px 7px 6px; clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%); }
  .mover-leading { gap: 5px; }
  .rank-badge { width: 34px; height: 38px; font-size: 18px; }
  .logo-img { width: 34px; height: 34px; }
  .mover-name { font-size: 13px; }
  .mover-code { font-size: 7px; }
  .mover-spark { width: 78px; height: 29px; }
  .mover-price { font-size: 8px; }
  .mover-rate { font-size: 14px; }
  .route-heading span { font-size: 20px; }
  .route-list { margin-top: 10px; }
  .route-list li { min-height: 102px; padding-left: 49px; }
  .proof-card { grid-template-columns: 1fr; gap: 24px; padding: 27px 20px; contain-intrinsic-size: auto 380px; }
  .proof-copy h2 { font-size: 25px; }
  .proof-number { padding: 0 0 0 19px; }
  .proof-number strong { font-size: 43px; }
  .proof-metrics { grid-column: auto; gap: 7px; }
  .proof-metrics div { min-height: 90px; padding: 21px 11px 14px 13px; border-radius: 14px; }
  .proof-metrics div::before { right: 7px; top: 7px; width: 22px; height: 22px; font-size: 9px; }
  .proof-metrics div::after { left: 11px; width: 30px; }
  @supports (offset-path: inset(1px)) {
    .proof-metrics div::after { left: 0; top: 0; bottom: auto; width: 34px; offset-path: inset(2px round 12px) border-box; }
  }
  .proof-metrics span { font-size: 16.5px; }
  .proof-metrics small { font-size: 8px; }
  .trust-band { grid-template-columns: repeat(2, minmax(0, 1fr)); contain-intrinsic-size: auto 273px; }
  .trust-band > div { min-height: 136px; padding: 21px 17px; }
  .final { padding: 42px 18px 39px; }
  .final h2 { font-size: clamp(28px, 8.5vw, 36px); }
  .final > p:not(.final-kicker) { line-height: 1.6; }
  footer { padding-bottom: 8px; }
  .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(255, 41, 45, .55); border-radius: 18px; background: rgba(6, 7, 8, .96); box-shadow: 0 12px 34px rgba(0, 0, 0, .55), 0 0 24px rgba(255, 41, 45, .08); 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 12px 12px; }
  .sticky-plane { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--red); border-radius: 50%; color: var(--red); 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 11px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 7px; background: rgba(255, 255, 255, .02); color: #a4a8ad; font-size: 9px; cursor: pointer; }
  .sticky-cancel:disabled { opacity: 1; color: #72777d; cursor: default; }
  .sticky-bar { left: 11px; right: 11px; bottom: 6px; height: 2px; }
  .sticky-redirect.is-cancelled .sticky-redirect-card { border-color: rgba(255, 41, 45, .44); box-shadow: 0 12px 34px rgba(0, 0, 0, .55), 0 0 18px rgba(255, 41, 45, .09); }
  .sticky-redirect.is-cancelled .sticky-plane { border-color: rgba(255, 41, 45, .58); background: rgba(255, 41, 45, .06); color: var(--red-bright); box-shadow: 0 0 15px rgba(255, 41, 45, .16); }
  .sticky-redirect.is-cancelled .sticky-copy span { color: var(--white); }
  .sticky-redirect.is-cancelled .sticky-cancel:disabled { border-color: rgba(255, 41, 45, .34); background: rgba(255, 41, 45, .055); color: var(--red-bright); }
}

@media (max-width: 480px) {
  .brand-copy small { display: none; }
  .hero-copy h1 { font-size: clamp(63px, 21vw, 84px); }
  .movers-header { display: grid; }
  .panel-actions { justify-content: start; }
  .mover-row { grid-template-columns: 70px minmax(0, 1fr) 62px 69px; gap: 5px; }
  .rank-badge { width: 31px; }
  .logo-img { width: 31px; height: 31px; }
  .mover-spark { width: 62px; }
  .mover-rate { font-size: 12px; }
  .mover-price-value { display: none; }
}

@media (max-width: 350px) {
  .hero-copy { width: calc(100% - 5px); margin-left: 5px; }
  .hero-copy h1 { font-size: 60px; }
  .index-row { min-height: 112px; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto 24px; padding-inline: 9px; }
  .index-name { grid-column: 1; grid-row: 1; }
  .index-rate-block { grid-column: 2; grid-row: 1; }
  .index-row > strong { grid-column: 1 / -1; grid-row: 2; width: 100%; font-size: 19px; }
  .mini-chart { grid-column: 1 / -1; grid-row: 3; justify-self: end; width: 64px; }
  .index-row strong.is-wide-value { font-size: 17px; }
  .index-row strong.is-extra-wide-value { font-size: 15px; }
  .mover-row { grid-template-columns: 59px minmax(0, 1fr) 50px 58px; gap: 4px; }
  .rank-badge { width: 26px; font-size: 16px; }
  .logo-img { width: 28px; height: 28px; font-size: 9px; }
  .mover-name { font-size: 11px; }
  .mover-spark { width: 50px; }
  .mover-rate { font-size: 11px; }
  .panel-tab { min-width: 68px; padding-inline: 8px; }
}

@media (hover: none) and (pointer: coarse) {
  .index-row:active { border-color: rgba(255, 41, 45, .52); background: linear-gradient(105deg, rgba(25, 25, 27, .98), rgba(10, 5, 6, .92)); }
  .panel-tab:active { color: var(--red); border-color: rgba(255, 41, 45, .7); background: rgba(255, 41, 45, .06); }
  .reload-btn:active { color: var(--red); border-color: var(--red); }
  .mover-row:active { border-color: rgba(255, 41, 45, .52); background: linear-gradient(98deg, rgba(31, 13, 15, .94), rgba(8, 9, 10, .94) 48%); }
  .route-list li:active { z-index: 1; border-bottom-color: rgba(255, 41, 45, .24); background-color: rgba(255, 41, 45, .06); box-shadow: inset 2px 0 0 rgba(255, 41, 45, .72), inset 0 0 26px rgba(255, 41, 45, .035); transform: translateX(2px); }
  .route-list li:active::before { border-color: var(--red-bright); background: rgba(255, 41, 45, .13); box-shadow: 0 0 0 4px rgba(255, 41, 45, .11), 0 0 18px rgba(255, 41, 45, .24); transform: scale(1.09); }
  .route-list li:active::after { background: rgba(255, 41, 45, .58); box-shadow: 0 0 8px rgba(255, 41, 45, .22); }
  .route-list li:active time { color: var(--red-bright); }
  .route-list li:active strong { color: #fff; }
  .route-list li:active p { color: #c5c9cd; }
  .proof-metrics div:active { z-index: 1; border-color: rgba(255, 41, 45, .5); transform: translateY(-1px); box-shadow: inset 0 1px rgba(255, 255, 255, .055), 0 13px 30px rgba(0, 0, 0, .22), 0 0 20px rgba(255, 41, 45, .075); }
  .trust-band > div:active { z-index: 1; background: linear-gradient(145deg, #15181c, #08090b); box-shadow: inset 0 0 0 1px rgba(255, 41, 45, .34), inset 0 -34px 54px rgba(255, 41, 45, .025); transform: translateY(-1px); }
  .trust-band > div:active::before { opacity: 1; }
  .trust-band > div:active::after { opacity: 1; transform: translateX(255%); }
  .trust-band > div:active span { color: var(--red-bright); transform: translateX(3px); }
  .trust-band > div:active strong { color: #fff; transform: translateX(3px); }
  .trust-band > div:active p { color: #b8bdc2; transform: translateX(3px); }
  .telegram-final:active { background: var(--red-bright); box-shadow: 0 0 32px rgba(255, 41, 45, .22); }
  .telegram-final:active .telegram-final-icon { background: rgba(0, 0, 0, .12); transform: rotate(-34deg) scale(1.07); }
}

@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, .proof-metrics div::after { animation: none !important; filter: none; }
}
