:root {
  color-scheme: dark;
  --black: #050505;
  --panel: #0b0b0a;
  --panel-2: #11110f;
  --ivory: #f2efe8;
  --muted: #99958c;
  --muted-2: #6f6c65;
  --gold: #e4b85a;
  --gold-bright: #f3d58a;
  --gold-deep: #8e631f;
  --red: #ff6961;
  --blue: #68a7ff;
  --line: rgba(228, 184, 90, .24);
  --soft-line: rgba(255, 255, 255, .10);
  --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; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  min-height: 100vh;
  font-family: "Pretendard Variable", "Pretendard", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ivory);
  background:
    radial-gradient(circle at 76% -4%, rgba(203, 147, 38, .09), transparent 28%),
    linear-gradient(180deg, #020202 0%, #070705 52%, #030303 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .2;
  background-image: repeating-linear-gradient(118deg, transparent 0 11px, rgba(255, 255, 255, .02) 12px, transparent 13px 24px);
}

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.page {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 22px 18px 72px;
}

.kinetic-shell,
.kinetic-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 28%),
    rgba(8, 8, 7, .96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .46);
}

.kinetic-shell::before,
.kinetic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 28%, rgba(228, 184, 90, .035) 48%, transparent 70%);
}

.hero {
  overflow: hidden;
  border-radius: 32px;
  padding: 30px 32px 28px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 26px;
  width: 710px;
  height: 420px;
  pointer-events: none;
  opacity: .52;
  transform: rotate(-8deg);
  background: repeating-linear-gradient(175deg, transparent 0 18px, rgba(228, 184, 90, .045) 19px, transparent 20px 34px);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 72%);
}

.hero-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand-mark {
  width: 66px;
  height: 66px;
  flex: none;
  overflow: hidden;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 3px rgba(228, 184, 90, .08), 0 12px 30px rgba(0, 0, 0, .5);
}

.brand-mark picture,
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.brand-name { font-size: 29px; font-weight: 900; letter-spacing: -1.2px; }
.brand-signature { margin-top: 2px; color: var(--gold-bright); font-size: 12px; font-style: italic; letter-spacing: .13em; }

.live-chip {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(228, 184, 90, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: .03em;
}

.live-chip time { color: var(--muted); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(228, 184, 90, .08); }
.live-chip.is-open .live-dot { background: #63d891; box-shadow: 0 0 0 6px rgba(99, 216, 145, .09); }
.live-chip.is-stale .live-dot { background: var(--gold); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  padding: 38px 20px 28px;
}

.hero-copy {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.hero-copy > *:not(.hero-meteor-field) { position: relative; z-index: 2; }

.hero-meteor-field {
  position: absolute;
  inset: 3% -46% -2% -14%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: .74;
  mask-image: radial-gradient(ellipse at 54% 52%, #000 0 43%, transparent 76%);
}

.hero-meteor-field i {
  --meteor-angle: -11deg;
  position: absolute;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(228, 184, 90, .03) 24%, rgba(236, 224, 193, .22) 78%, rgba(243, 213, 138, .86) 100%);
  box-shadow: 22px 0 16px rgba(228, 184, 90, .1);
  transform: rotate(var(--meteor-angle)) translate3d(-10%, 0, 0);
  transform-origin: right center;
  animation: meteorDrift 8.5s ease-in-out infinite;
}

.hero-meteor-field i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffe3a0;
  box-shadow: 0 0 10px 2px rgba(228, 184, 90, .42);
  transform: translateY(-50%);
}

.hero-meteor-field i:nth-child(1) { top: 9%; left: 39%; width: 45%; animation-delay: -7.1s; }
.hero-meteor-field i:nth-child(2) { top: 23%; left: 6%; width: 58%; opacity: .45; animation-delay: -3.8s; }
.hero-meteor-field i:nth-child(3) { top: 38%; left: 46%; width: 35%; animation-delay: -5.4s; }
.hero-meteor-field i:nth-child(4) { top: 53%; left: 17%; width: 55%; opacity: .58; animation-delay: -1.6s; }
.hero-meteor-field i:nth-child(5) { top: 67%; left: 51%; width: 31%; animation-delay: -6.3s; }
.hero-meteor-field i:nth-child(6) { top: 81%; left: 3%; width: 53%; opacity: .4; animation-delay: -2.7s; }
.hero-meteor-field i:nth-child(7) { top: 92%; left: 34%; width: 47%; animation-delay: -.8s; }

@keyframes meteorDrift {
  0%, 58% { opacity: .12; transform: rotate(var(--meteor-angle)) translate3d(-14%, 0, 0); }
  72% { opacity: .92; }
  100% { opacity: .2; transform: rotate(var(--meteor-angle)) translate3d(15%, 0, 0); }
}

@keyframes mobileMeteorDrift {
  0% { opacity: 0; transform: rotate(var(--meteor-angle)) translate3d(-24%, 0, 0); }
  7% { opacity: .24; }
  18% { opacity: 1; }
  33% { opacity: .28; transform: rotate(var(--meteor-angle)) translate3d(20%, 0, 0); }
  34%, 100% { opacity: 0; transform: rotate(var(--meteor-angle)) translate3d(20%, 0, 0); }
}

@keyframes goldTitleSweep {
  from { opacity: .18; transform: rotate(-2.2deg) scaleX(.03); }
  to { opacity: 1; transform: rotate(-2.2deg) scaleX(1); }
}

@keyframes goldTitleAura {
  from { opacity: 0; transform: rotate(-2.2deg) scaleX(.35); }
  to { opacity: 1; transform: rotate(-2.2deg) scaleX(1); }
}

.status-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: var(--muted);
  font-size: 12px;
}

.status-pill b { color: var(--ivory); font-weight: 700; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(255, 105, 97, .1); }

.top-reload-btn {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease;
}

.top-reload-btn:hover { transform: rotate(24deg); border-color: var(--gold); }
.top-reload-btn:disabled { opacity: .5; cursor: wait; }
.reload-icon { display: inline-block; line-height: 1; }
.is-loading .reload-icon { animation: spin .8s linear infinite; }

.hero-kicker {
  margin-top: 24px;
  color: var(--gold);
  font-size: 11px;
  font-style: italic;
  letter-spacing: .14em;
}

h1 {
  margin-top: 12px;
  font-size: clamp(50px, 6vw, 78px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.065em;
  transform: skewX(-4deg);
}

h1 span {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-bright);
  text-shadow: 0 7px 22px rgba(228, 184, 90, .12);
  transform: skewX(-8deg) rotate(-1.6deg);
  transform-origin: left bottom;
}

h1 span::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -18px;
  bottom: 4px;
  z-index: 2;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(243, 213, 138, .15), var(--gold-bright) 16%, var(--gold) 78%, #fff0bc 100%);
  box-shadow: 0 0 15px rgba(228, 184, 90, .6), 18px 0 22px rgba(255, 225, 154, .42);
  transform: rotate(-2.2deg);
  transform-origin: right center;
}

h1 span::before {
  content: "";
  position: absolute;
  left: -14px;
  right: -30px;
  bottom: -4px;
  z-index: -1;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(228, 184, 90, .13) 55%, rgba(255, 225, 154, .38));
  filter: blur(8px);
  transform: rotate(-2.2deg);
}

.lead { margin-top: 30px; color: #b7b3aa; font-size: 17px; line-height: 1.72; }

.market-motion { min-width: 0; }

.section-cap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 0 10px 13px;
}

.section-cap > div { display: flex; align-items: center; gap: 10px; }
.section-cap h2 { color: var(--gold); font-size: 14px; font-style: italic; font-weight: 700; letter-spacing: .12em; }
.section-cap > span { color: var(--muted-2); font-size: 11px; }
.cap-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.index-stack { display: grid; gap: 8px; }

.index-row {
  position: relative;
  min-width: 0;
  min-height: 58px;
  display: grid;
  grid-template-columns: 84px minmax(100px, 1fr) 118px 96px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 5px;
  color: var(--ivory);
  background: linear-gradient(100deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  cursor: pointer;
  overflow: hidden;
  transform: skewX(-7deg);
  transition: border-color .24s ease, background .24s ease;
}

.index-row > * { transform: skewX(7deg); }
.index-row::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; }
.index-row.is-active { border-color: rgba(228, 184, 90, .48); background: linear-gradient(100deg, rgba(228, 184, 90, .08), rgba(255, 255, 255, .015)); }
.index-row.is-active::after { opacity: 1; }
.index-name { color: #ddd8cd; font-size: 15px; font-weight: 800; }
.index-row strong { font-size: 23px; font-style: italic; letter-spacing: .02em; }
.index-rate-block { min-width: 0; display: grid; justify-items: end; gap: 2px; }
.index-rate-block small { color: rgba(220, 215, 202, .74); font-size: 9px; font-style: normal; font-weight: 600; line-height: 1.1; letter-spacing: 0; white-space: nowrap; }
.index-rate { color: var(--muted); font-size: 16px; font-style: italic; font-weight: 700; }
.index-rate.is-up { color: var(--red); }
.index-rate.is-movement { color: var(--gold-bright); }
.index-rate.is-down { color: var(--blue); }

.mini-chart { width: 94px; height: 30px; overflow: visible; }
.mini-chart polyline { fill: none; stroke-linecap: round; stroke-linejoin: miter; vector-effect: non-scaling-stroke; transition: points .38s ease; shape-rendering: geometricPrecision; }
.mini-chart-glow { stroke: #d99e35; stroke-width: 3.4; opacity: .16; filter: blur(1.35px); }
.mini-chart-line { stroke: #f7ca61; stroke-width: 1.3; filter: none; }
.mini-chart marker path { fill: #ffe185; stroke: #f7ca61; stroke-width: .18; stroke-linejoin: miter; filter: none; }

.market-chart-card {
  position: relative;
  height: 235px;
  margin: 18px 10px 0;
  overflow: hidden;
  border: 1px solid rgba(228, 184, 90, .42);
  border-radius: 7px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .012), rgba(255, 255, 255, .004));
  transform: skewX(-5deg);
}

.market-chart-card > * { transform: skewX(5deg); }
.chart-grid { position: absolute; inset: 18px 70px 35px 20px; opacity: .64; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 12.5% 20%; transform: skewX(-1.5deg); transform-origin: center; }
.market-chart { position: absolute; left: 24px; right: 72px; top: 20px; bottom: 34px; width: auto; height: auto; overflow: visible; transform: skewX(5deg); transform-origin: center; }
.market-chart-halo { fill: none; stroke: #e9a63a; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; opacity: .66; filter: url(#chart-wide-glow); }
.market-chart-halo.is-complete { animation: chartHaloBreath 3.8s ease-in-out infinite; }
.market-chart-glow { fill: none; stroke: #ffd878; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; opacity: .56; filter: url(#chart-near-glow); }
.market-chart-glow.is-complete { animation: chartGlowBreath 3.2s ease-in-out infinite; }
.market-chart-line { fill: none; stroke: url(#lineGold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: miter; vector-effect: non-scaling-stroke; opacity: 1; filter: none; shape-rendering: geometricPrecision; }
.market-chart-line.is-complete { opacity: 1; }
.market-chart-point { fill: #fff3c8; stroke: rgba(255, 255, 255, .86); stroke-width: .8; opacity: 0; filter: drop-shadow(0 0 5px rgba(239, 191, 80, .92)); }
.market-chart-point.is-tracing { opacity: 1; }
.market-chart-point.is-complete { opacity: 1; animation: chartPointPulse 1.8s ease-in-out infinite; }
@keyframes chartHaloBreath { 0%, 100% { opacity: .54; } 50% { opacity: .70; } }
@keyframes chartGlowBreath { 0%, 100% { opacity: .47; } 50% { opacity: .62; } }
@keyframes chartPointPulse { 0%, 100% { opacity: .72; } 50% { opacity: 1; filter: drop-shadow(0 0 11px var(--gold)); } }
.chart-empty { position: absolute; left: 50%; top: 48%; width: 100%; padding: 0 22px; transform: translate(-50%, -50%) skewX(5deg); color: var(--muted-2); font-size: 12px; text-align: center; }
.chart-empty[hidden] { display: none; }
.chart-axis { position: absolute; left: 30px; right: 82px; bottom: 12px; display: flex; justify-content: space-between; color: var(--muted-2); font-size: 9px; font-style: italic; letter-spacing: .04em; }
.chart-scale-right { position: absolute; top: 46px; right: 13px; bottom: 38px; display: grid; align-content: space-between; color: rgba(236, 232, 220, .76); font-family: "Pretendard Variable", "Pretendard", sans-serif; font-size: 10.5px; font-style: italic; font-weight: 350; line-height: 1; text-align: right; font-variant-numeric: tabular-nums; text-shadow: 0 1px 2px rgba(0, 0, 0, .76); -webkit-font-smoothing: antialiased; }
.chart-scale-right span { display: block; transform: skewX(-6deg); transform-origin: right center; }
.chart-caption { position: absolute; top: 13px; right: 17px; display: flex; align-items: center; gap: 7px; color: rgba(231, 226, 213, .82); font-size: 10.5px; font-weight: 650; text-shadow: 0 1px 3px #000; }
.chart-caption strong { color: #efc967; font-size: 11px; font-weight: 800; letter-spacing: .08em; }

.telegram-kinetic {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: stretch;
  margin: 5px 20px 0;
  border: 0;
  background: linear-gradient(105deg, rgba(228, 184, 90, .78), rgba(255, 239, 191, .28) 48%, rgba(228, 184, 90, .56));
  box-shadow: 0 16px 44px rgba(0, 0, 0, .34);
  overflow: hidden;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.telegram-kinetic::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(27, 24, 16, .985), rgba(9, 9, 8, .995) 46%, rgba(19, 17, 12, .99));
  box-shadow: inset 0 -2px 0 rgba(228, 184, 90, .48);
  clip-path: polygon(17px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 17px) 100%, 0 100%, 0 17px);
}

.telegram-kinetic > * { position: relative; z-index: 1; }

.telegram-main {
  position: relative;
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 18px 28px;
  color: var(--ivory);
  text-decoration: none;
}
.telegram-main > * { position: relative; z-index: 2; }

.telegram-orb {
  width: 64px;
  height: 64px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 27px;
  transform: rotate(-22deg);
  box-shadow: inset 0 0 24px rgba(228, 184, 90, .06), 0 0 0 5px rgba(228, 184, 90, .025);
}

.telegram-copy { display: grid; gap: 5px; }
.telegram-copy strong { font-size: 24px; font-weight: 800; letter-spacing: -.04em; }
.telegram-copy small { color: var(--muted); font-size: 13px; }
.telegram-arrow { margin-left: auto; color: var(--gold-bright); font-size: 38px; transition: transform .24s ease; }
.telegram-main:hover .telegram-arrow { transform: translateX(6px); }

.redirect-progress {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 22px 28px;
  border-left: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
}

.redirect-sequence { display: flex; align-items: center; }
.redirect-sequence span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(228, 184, 90, .34); border-radius: 50%; color: var(--muted); font-size: 11px; transition: .25s ease; }
.redirect-sequence span.is-active { border-color: var(--gold-bright); color: var(--gold-bright); box-shadow: 0 0 18px rgba(228, 184, 90, .13); }
.redirect-sequence i { flex: 1; height: 1px; border-top: 1px dotted rgba(228, 184, 90, .5); }
.redirect-copy { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.redirect-copy strong { font-size: 13px; font-weight: 600; }
.redirect-cancel-btn { border: 0; color: var(--muted); background: transparent; cursor: pointer; font-size: 12px; }
.redirect-cancel-btn:hover { color: var(--ivory); }

.redirect-bar { position: relative; height: 2px; overflow: hidden; background: rgba(255, 255, 255, .07); }
.redirect-bar span { position: absolute; inset: 0; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); animation: redirectFill var(--redirect-duration) linear forwards; }
.redirect-progress.is-cancelled .redirect-bar span,
.redirect-cancelled .redirect-bar span { animation-play-state: paused; }
.redirect-progress.is-cancelled .redirect-cancel-btn { color: var(--gold-bright); }
@keyframes redirectFill { to { transform: scaleX(1); } }

.market-ticker {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 18px 20px 0;
  padding: 0 16px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 7px;
  background: rgba(0, 0, 0, .38);
  overflow: hidden;
}

.ticker-label { color: var(--gold); font-size: 10px; font-style: italic; letter-spacing: .11em; 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; align-items: center; gap: 0; padding: 0; white-space: nowrap; will-change: transform; transform: translate3d(0, 0, 0); }
.ticker-group { display: flex; align-items: center; gap: 30px; padding: 13px 30px 13px 22px; }
.ticker-track.is-running { animation: ticker 30s linear infinite; }
.ticker-track span { display: inline-flex; align-items: center; gap: 7px; color: #d7d2c8; font-size: 13px; font-weight: 700; }
.ticker-track span::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.ticker-track b { color: var(--red); }
@keyframes ticker { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

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

.kinetic-card { border-radius: 24px; }
.route-card { min-height: 560px; display: flex; flex-direction: column; padding: 28px 26px 24px; overflow: hidden; }
.route-card::after { content: ""; position: absolute; right: -60px; bottom: 36px; width: 190px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); transform: rotate(-12deg); }
.route-heading { display: flex; align-items: center; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.route-heading span { color: var(--gold); font-size: 12px; font-style: italic; letter-spacing: .11em; }
.route-list { position: relative; flex: 1; display: grid; grid-template-rows: repeat(3, 1fr); margin: 34px 0 3px; list-style: none; }
.route-list::before { content: ""; position: absolute; left: 7px; top: 9px; bottom: calc(33.333% - 9px); width: 1px; background: linear-gradient(var(--gold), rgba(228, 184, 90, .15)); }
.route-list li { position: relative; padding-left: 32px; }
.route-list li::before { content: ""; position: absolute; left: 0; top: 5px; width: 13px; height: 13px; border: 1px solid var(--gold); border-radius: 50%; background: var(--panel); box-shadow: inset 0 0 0 4px var(--panel), inset 0 0 0 7px var(--gold); }
.route-list time { display: block; color: var(--gold-bright); font-size: 15px; font-style: italic; }
.route-list strong { display: block; margin-top: 7px; font-size: 15px; }
.route-list p { margin-top: 7px; color: var(--muted); font-size: 11.5px; line-height: 1.65; }

.movers-card { min-height: 560px; padding: 28px 30px; overflow: hidden; }
.movers-header { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.eyebrow { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.movers-header h2, .proof-copy h2 { margin-top: 7px; font-size: 29px; letter-spacing: -.04em; }
.panel-market-note { margin-top: 6px; color: var(--muted); font-size: 11px; }
.panel-actions { display: grid; grid-template-columns: 38px auto; align-items: center; gap: 8px; }
.panel-switch { display: flex; gap: 4px; }
.panel-tab, .reload-btn { min-height: 38px; border: 1px solid rgba(255, 255, 255, .10); color: var(--muted); background: rgba(255, 255, 255, .02); cursor: pointer; }
.panel-tab { min-width: 88px; padding: 0 16px; transform: skewX(-13deg); }
.panel-tab.is-active { color: var(--gold-bright); border-color: rgba(228, 184, 90, .48); background: rgba(228, 184, 90, .06); }
.reload-btn { width: 38px; display: grid; place-items: center; padding: 0; border-radius: 50%; color: var(--gold-bright); font-size: 18px; line-height: 1; opacity: 0; visibility: hidden; pointer-events: none; transform: rotate(-18deg); transition: opacity .22s ease, visibility .22s ease, border-color .22s ease, background .22s ease, transform .22s ease; }
.reload-btn.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: rotate(0); }
.reload-btn.is-visible:hover { border-color: rgba(228, 184, 90, .55); background: rgba(228, 184, 90, .07); transform: rotate(22deg); }
.reload-btn:disabled { opacity: .5; cursor: wait; }

.mover-list { position: relative; z-index: 1; display: grid; margin-top: 23px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 12px; overflow: hidden; transition: opacity .35s ease, transform .35s ease, filter .35s ease; }
.mover-list.switching { opacity: .25; transform: translateY(5px); filter: blur(2px); }
.mover-row { position: relative; min-height: 56px; display: grid; grid-template-columns: 48px minmax(0, 1fr) minmax(120px, auto); align-items: center; gap: 13px; padding: 8px 18px; border-bottom: 1px solid rgba(255, 255, 255, .075); background: rgba(255, 255, 255, .012); animation: rowIn .42s ease both; }
.mover-row:last-child { border-bottom: 0; }
.mover-row:first-child { background: linear-gradient(90deg, rgba(228, 184, 90, .09), rgba(228, 184, 90, .015)); box-shadow: inset 0 1px rgba(228, 184, 90, .42), inset 0 -1px rgba(228, 184, 90, .42); }
.mover-row::after { content: ""; position: absolute; right: -12px; top: 0; width: 32px; height: 100%; border-left: 1px solid rgba(228, 184, 90, .16); transform: skewX(-12deg); }
@keyframes rowIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
.rank-badge { color: var(--gold-bright); font-size: 18px; font-style: italic; font-weight: 700; text-align: center; }
.rank-badge.top1 { text-shadow: 0 0 16px rgba(228, 184, 90, .4); }
.logo-img { width: 37px; height: 37px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; background: #0b0b0b; }
.logo-img img { width: 100%; height: 100%; object-fit: contain; }
.mover-name { font-size: 15px; font-weight: 800; }
.mover-code { margin-top: 2px; color: var(--muted-2); font-size: 10px; }
.mover-price { justify-self: end; color: #e6e2da; font-size: 13px; font-weight: 700; text-align: right; }
.mover-rate { margin-top: 3px; color: var(--red); font-size: 14px; font-style: italic; font-weight: 800; }
.data-message { position: relative; z-index: 1; margin-top: 12px; padding: 10px 12px; border: 1px solid rgba(228, 184, 90, .17); border-radius: 6px; color: var(--gold-bright); background: rgba(228, 184, 90, .04); font-size: 11px; line-height: 1.5; }

@keyframes spin { to { transform: rotate(360deg); } }

.proof-card { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(190px, .63fr) minmax(460px, 1.55fr); align-items: center; gap: 30px; margin-top: 18px; padding: 31px 34px; overflow: hidden; }
.proof-copy p { margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.proof-number { padding-left: 26px; border-left: 1px solid var(--line); }
.proof-number span, .proof-number small { display: block; }
.proof-number span { color: var(--gold); font-size: 12px; }
.proof-number strong { display: block; margin: 4px 0; color: var(--red); font-size: 43px; font-style: italic; letter-spacing: -.04em; }
.proof-number small { color: var(--muted); font-size: 11px; }
.proof-number.is-updating strong { animation: proofNumberIn .65s cubic-bezier(.2, .75, .25, 1); }
@keyframes proofNumberIn { 0% { opacity: .35; transform: translateY(7px); filter: blur(4px); } 100% { opacity: 1; transform: translateY(0); filter: blur(0); } }
.proof-metrics { position: relative; isolation: isolate; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; overflow: visible; padding: 10px 8px 0; }
.proof-metrics::before { content: ""; position: absolute; z-index: 0; left: 12%; right: 12%; top: 25px; height: 1px; pointer-events: none; background: linear-gradient(90deg, rgba(228, 184, 90, .16), rgba(228, 184, 90, .56) 50%, rgba(228, 184, 90, .2)); transform: scaleX(0); transform-origin: left center; animation: proofTimelineDraw 1.05s .18s cubic-bezier(.22, .7, .25, 1) forwards; }
.proof-metrics::after { content: ""; position: absolute; z-index: 1; right: 11%; top: 22px; width: 7px; height: 7px; pointer-events: none; border-top: 1px solid rgba(228, 184, 90, .68); border-right: 1px solid rgba(228, 184, 90, .68); opacity: 0; transform: rotate(45deg); animation: proofTimelineArrow .24s 1.15s ease forwards; }
.proof-metrics div { position: relative; z-index: 1; min-height: 90px; display: grid; justify-items: center; align-content: start; gap: 6px; padding: 40px 10px 10px; background: transparent; text-align: center; }
.proof-metrics div::before { content: attr(data-step); position: absolute; z-index: 2; left: 50%; top: 7px; width: 28px; height: 28px; display: grid; place-items: center; color: rgba(228, 184, 90, .68); border: 1px solid rgba(228, 184, 90, .32); background: #090907; clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px); font-size: 9px; font-style: italic; font-weight: 800; line-height: 1; letter-spacing: .04em; transform: translateX(-50%); transition: color .24s ease, border-color .24s ease, background .24s ease, filter .24s ease, transform .28s cubic-bezier(.2, .75, .25, 1); }
.proof-metrics div::after { content: ""; position: absolute; z-index: 1; left: 50%; top: 35px; width: 1px; height: 8px; pointer-events: none; background: linear-gradient(rgba(228, 184, 90, .4), transparent); }
.proof-metrics span, .proof-metrics small { position: relative; z-index: 2; transition: color .24s ease, transform .28s ease; }
.proof-metrics span { color: #eeeae0; font-size: 15px; font-weight: 760; letter-spacing: -.025em; }
.proof-metrics small { color: #918c82; font-size: 11px; font-weight: 560; line-height: 1.35; }

@media (hover: hover) and (pointer: fine) {
  .proof-metrics div:hover::before { color: var(--gold-bright); border-color: rgba(228, 184, 90, .68); background: rgba(34, 29, 16, .98); filter: drop-shadow(0 0 6px rgba(228, 184, 90, .2)); transform: translate(-50%, -2px); }
  .proof-metrics div:hover span { color: var(--gold-bright); transform: translateY(-2px); }
  .proof-metrics div:hover small { color: #b8b2a7; transform: translateY(-2px); }
}

@keyframes proofTimelineDraw { to { transform: scaleX(1); } }
@keyframes proofTimelineArrow { to { opacity: 1; } }

.trust-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin-top: 18px; padding: 0; overflow: hidden; background: linear-gradient(115deg, rgba(228, 184, 90, .025), transparent 34%, rgba(255, 255, 255, .008)); }
.trust-band::after { content: ""; position: absolute; z-index: 3; left: 24px; right: 24px; bottom: 19px; height: 1px; pointer-events: none; opacity: .58; background: linear-gradient(90deg, transparent, rgba(255, 229, 164, .86), transparent) -84px 0 / 84px 1px no-repeat, linear-gradient(90deg, transparent, rgba(228, 184, 90, .16) 12%, rgba(228, 184, 90, .16) 88%, transparent) 0 0 / 100% 1px no-repeat; animation: trustRailPulse 6.8s cubic-bezier(.22, .7, .25, 1) infinite; }
.trust-band > div { position: relative; min-height: 154px; overflow: hidden; padding: 28px 27px 32px; border-right: 1px solid rgba(255, 255, 255, .075); background: linear-gradient(135deg, rgba(255, 255, 255, .014), transparent 58%); transition: background .28s ease, box-shadow .28s ease; }
.trust-band > div:last-child { border-right: 0; }
.trust-band > div::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px; pointer-events: none; opacity: .28; background: linear-gradient(90deg, var(--gold), rgba(228, 184, 90, .16), transparent 76%); transform: scaleX(.18); transform-origin: left center; transition: opacity .28s ease, transform .34s cubic-bezier(.2, .75, .25, 1); }
.trust-band > div::after { content: ""; position: absolute; right: -46px; top: -50px; width: 110px; height: 110px; pointer-events: none; border: 1px solid rgba(228, 184, 90, .07); border-radius: 50%; opacity: .35; transform: scale(.86); transition: border-color .28s ease, opacity .28s ease, transform .4s cubic-bezier(.2, .75, .25, 1); }
.trust-band span { display: flex; align-items: center; gap: 9px; color: rgba(228, 184, 90, .7); font-size: 11px; font-style: italic; font-weight: 750; letter-spacing: .06em; transition: color .24s ease; }
.trust-band span::after { content: ""; width: 22px; height: 1px; background: rgba(228, 184, 90, .28); transition: width .3s ease, background .3s ease; }
.trust-band strong { position: relative; z-index: 1; display: block; margin-top: 16px; color: #eae6dc; font-size: 16px; letter-spacing: -.025em; transition: color .24s ease, transform .28s ease; }
.trust-band p { position: relative; z-index: 1; margin-top: 9px; color: #8f8a81; font-size: 11.5px; line-height: 1.58; transition: color .24s ease, transform .28s ease; }

@media (hover: hover) and (pointer: fine) {
  .trust-band > div:hover { background: linear-gradient(120deg, rgba(228, 184, 90, .045), rgba(228, 184, 90, .008) 54%, transparent); box-shadow: inset 0 -1px rgba(228, 184, 90, .32); }
  .trust-band > div:hover::before { opacity: .82; transform: scaleX(.82); }
  .trust-band > div:hover::after { border-color: rgba(228, 184, 90, .15); opacity: .7; transform: translate(-6px, 5px) scale(1); }
  .trust-band > div:hover span { color: var(--gold-bright); }
  .trust-band > div:hover span::after { width: 36px; background: rgba(228, 184, 90, .58); }
  .trust-band > div:hover strong { color: #fff7e4; transform: translateX(3px); }
  .trust-band > div:hover p { color: #b7b1a6; transform: translateX(3px); }
}

@keyframes trustRailPulse {
  0%, 10% { background-position: -84px 0, 0 0; opacity: .42; }
  34% { background-position: calc(100% + 84px) 0, 0 0; opacity: .78; }
  42%, 100% { background-position: calc(100% + 84px) 0, 0 0; opacity: .42; }
}

.final { margin-top: 18px; padding: 54px 24px; overflow: hidden; text-align: center; }
.final::after { content: ""; position: absolute; left: 50%; top: 0; width: 640px; height: 190px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(228, 184, 90, .07), transparent 68%); pointer-events: none; }
.final > * { position: relative; z-index: 1; }
.final-kicker { color: var(--gold); font-size: 11px; font-style: italic; letter-spacing: .14em; }
.final h2 { margin-top: 12px; font-size: 38px; line-height: 1.15; letter-spacing: -.05em; }
.final > p:not(.final-kicker) { margin-top: 13px; color: var(--muted); font-size: 13px; }
.telegram-final { position: relative; isolation: isolate; width: min(430px, 100%); min-height: 60px; display: flex; align-items: center; justify-content: space-between; overflow: hidden; margin: 26px auto 0; padding: 0 24px; border: 0; color: var(--ivory); background: linear-gradient(105deg, rgba(228, 184, 90, .86), rgba(255, 239, 191, .3) 48%, rgba(228, 184, 90, .62)); text-decoration: none; clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px); }
.telegram-final::before { content: ""; position: absolute; z-index: 0; inset: 1px; pointer-events: none; background: linear-gradient(100deg, rgba(35, 30, 17, .98), rgba(12, 11, 8, .995)); clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px); }
.telegram-final span { position: relative; z-index: 2; font-size: 17px; font-weight: 800; }
.telegram-final b { position: relative; z-index: 2; color: var(--gold); font-size: 24px; }

footer { padding: 28px 16px 0; color: #57544f; font-size: 10px; text-align: center; }

.sticky-redirect { display: none; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: 720px; }
  .telegram-kinetic { grid-template-columns: 1fr 330px; }
  .telegram-copy strong { font-size: 20px; }
  .content-grid { grid-template-columns: 260px minmax(0, 1fr); }
  .movers-header { flex-direction: column; }
  .panel-actions { width: 100%; justify-content: end; }
  .proof-card { grid-template-columns: 1fr .7fr; }
  .proof-metrics { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { padding-bottom: 88px; }
  .page { padding: 8px 8px 38px; }
  .hero { border-radius: 25px; padding: 18px 14px 16px; }
  .hero::after { right: -260px; top: 20px; opacity: .35; }
  .hero-topbar { padding: 0 2px 15px; }
  .brand { gap: 10px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-name { font-size: 20px; letter-spacing: -.8px; }
  .brand-signature { font-size: 8px; }
  .live-chip { min-height: 32px; padding: 0 10px; gap: 7px; font-size: 9px; }
  .live-chip time { display: none; }
  .hero-grid { padding: 28px 4px 20px; gap: 30px; }
  .hero-meteor-field { inset: 2% -22% -4% -8%; opacity: .78; }
  .hero-meteor-field i:nth-child(even) { display: none; }
  .hero-meteor-field i:nth-child(odd) {
    height: 1.2px;
    background: linear-gradient(90deg, transparent 0%, rgba(228, 184, 90, .06) 22%, rgba(255, 239, 191, .38) 76%, rgba(255, 225, 145, .98) 100%);
    box-shadow: 22px 0 18px rgba(228, 184, 90, .18);
    animation-name: mobileMeteorDrift;
    animation-duration: 6.4s;
    animation-timing-function: cubic-bezier(.2, .68, .25, 1);
  }
  .hero-meteor-field i:nth-child(1) { animation-delay: 0s; }
  .hero-meteor-field i:nth-child(3) { animation-delay: -1.6s; }
  .hero-meteor-field i:nth-child(5) { animation-delay: -3.2s; }
  .hero-meteor-field i:nth-child(7) { animation-delay: -4.8s; }
  .hero-meteor-field i::after { width: 4px; height: 4px; box-shadow: 0 0 13px 3px rgba(228, 184, 90, .58); }
  .status-pill { display: none; }
  .hero-kicker { margin-top: 0; font-size: 9px; }
  h1 { margin-top: 9px; font-size: clamp(42px, 13vw, 64px); line-height: 1.04; }
  h1 span::after { animation: goldTitleSweep 1.25s .16s cubic-bezier(.2, .78, .24, 1) both; }
  h1 span::before { animation: goldTitleAura 1.6s .28s ease-out both; }
  .lead { margin-top: 26px; font-size: 14px; line-height: 1.65; }
  .section-cap { margin-inline: 5px; }
  .section-cap > span { max-width: 145px; text-align: right; }
  .index-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .index-row {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) 50px;
    grid-template-rows: auto auto;
    gap: 4px 6px;
    padding: 9px 10px;
    border-radius: 18px;
    transform: none;
  }
  .index-row > * { transform: none; }
  .index-name { grid-column: 1; grid-row: 1; align-self: end; font-size: clamp(10px, 3vw, 12px); letter-spacing: .04em; }
  .index-row strong { grid-column: 1; grid-row: 2; align-self: start; font-size: clamp(17px, 5.5vw, 21px); line-height: 1; white-space: nowrap; }
  .index-row strong.is-wide-value { font-size: clamp(15px, 4.65vw, 18px); letter-spacing: -.02em; }
  .index-row strong.is-extra-wide-value { font-size: clamp(13.5px, 4vw, 16px); letter-spacing: -.035em; }
  .index-rate-block { grid-column: 2; grid-row: 1; align-self: end; }
  .index-rate { font-size: 11px; line-height: 1; }
  .index-rate-block small { display: none; }
  .mini-chart { grid-column: 2; grid-row: 2; align-self: start; width: 50px; height: 18px; }
  .market-chart-card {
    display: block;
    height: clamp(175px, 52vw, 200px);
    margin: 14px 3px 0;
    border-radius: 18px;
    transform: none;
  }
  .market-chart-card > .chart-grid,
  .market-chart-card > .market-chart,
  .market-chart-card > .chart-scale-right,
  .market-chart-card > .chart-axis,
  .market-chart-card > .chart-caption { transform: none; }
  .market-chart-card > .chart-empty { transform: translate(-50%, -50%); }
  .market-chart-card .chart-grid { inset: 17px 58px 34px 14px; transform: none; }
  .market-chart-card .market-chart { left: 18px; right: 60px; top: 18px; bottom: 33px; transform: none; }
  .market-chart-card .chart-axis { left: 22px; right: 67px; bottom: 11px; font-size: 7.5px; }
  .market-chart-card .chart-scale-right { top: 42px; right: 9px; bottom: 37px; font-size: 9px; }
  .market-chart-card .chart-scale-right span { transform: none; }
  .market-chart-card .chart-caption { top: 11px; right: 13px; font-size: 9px; }
  .market-chart-card .chart-caption strong { font-size: 9.5px; }
  .telegram-kinetic { display: none; }
  .telegram-main { min-height: 84px; padding: 13px 15px; gap: 13px; }
  .telegram-orb { width: 50px; height: 50px; font-size: 22px; }
  .telegram-copy strong { font-size: 17px; }
  .telegram-copy small { font-size: 10px; }
  .telegram-arrow { font-size: 28px; }
  .redirect-progress { padding: 14px 16px 16px; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .08); gap: 10px; }
  .redirect-sequence span { width: 28px; height: 28px; font-size: 9px; }
  .redirect-copy strong { font-size: 11px; }
  .market-ticker { grid-template-columns: 1fr; gap: 0; margin: 12px 2px 0; padding: 0; min-height: 43px; }
  .ticker-label { display: none; }
  .ticker-group { gap: 24px; padding: 12px 24px 12px 18px; }
  .ticker-track span { font-size: 12px; }
  .content-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 10px; }
  .kinetic-card { border-radius: 20px; }
  .route-card { min-height: auto; padding: 22px 18px 24px; }
  .route-list { flex: none; grid-template-rows: none; gap: 26px; margin: 26px 0 2px; }
  .route-list::before { bottom: 17px; }
  .movers-card { min-height: auto; padding: 22px 14px 18px; }
  .movers-header h2, .proof-copy h2 { font-size: 24px; }
  .panel-actions { grid-template-columns: 38px minmax(0, 1fr); gap: 8px; }
  .panel-switch { flex: 1; }
  .panel-tab { flex: 1; min-width: 0; padding: 0 11px; font-size: 11px; }
  .reload-btn { padding: 0; }
  .mover-list { margin-top: 17px; }
  .mover-row { min-height: 51px; grid-template-columns: 38px minmax(0, 1fr) minmax(86px, auto); gap: 8px; padding: 7px 10px; }
  .rank-badge { font-size: 15px; }
  .logo-img { width: 32px; height: 32px; }
  .mover-name { font-size: 13px; }
  .mover-code { font-size: 9px; }
  .mover-price { max-width: 112px; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
  .mover-rate { font-size: 12px; }
  .proof-card { grid-template-columns: 1fr; gap: 18px; margin-top: 10px; padding: 24px 20px; }
  .proof-number { padding: 16px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .proof-number strong { font-size: 38px; }
  .proof-metrics { grid-column: auto; gap: 0; padding: 8px 0 0; }
  .proof-metrics::before { left: 10%; right: 10%; top: 18px; }
  .proof-metrics::after { right: 8.5%; top: 15px; }
  .proof-metrics div { min-height: 88px; padding: 40px 3px 10px; }
  .proof-metrics div::before { top: 4px; width: 28px; height: 28px; clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px); font-size: 9px; }
  .proof-metrics div::after { top: 32px; height: 8px; }
  .proof-metrics span { font-size: 14px; }
  .proof-metrics small { font-size: 10px; }
  .trust-band { grid-template-columns: 1fr 1fr; margin-top: 10px; }
  .trust-band > div { min-height: 132px; padding: 22px 18px 30px; }
  .trust-band > div:nth-child(2n) { border-right: 0; }
  .trust-band > div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, .075); }
  .trust-band strong { margin-top: 13px; font-size: 15px; }
  .trust-band p { font-size: 10.5px; }
  .final { margin-top: 10px; padding: 42px 18px; }
  .final h2 { font-size: 30px; }
  footer { padding-bottom: 16px; line-height: 1.6; }

  .sticky-redirect {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 50;
    display: block;
  }

  .sticky-redirect-card {
    overflow: hidden;
    border: 1px solid rgba(228, 184, 90, .5);
    border-radius: 18px;
    background: rgba(7, 7, 6, .96);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .68), inset 0 1px rgba(255, 255, 255, .06);
  }

  .sticky-countdown { position: relative; min-height: 66px; 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(--gold); border-radius: 50%; color: var(--gold); transform: rotate(-22deg); }
  .sticky-copy { min-width: 0; display: grid; gap: 3px; }
  .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 rgba(255, 255, 255, .13); border-radius: 6px; color: var(--muted); background: transparent; font-size: 9px; }
  .sticky-bar { position: absolute; left: 0; right: 0; bottom: 0; }
}

@media (max-width: 390px) {
  .page { padding-inline: 6px; }
  .hero { padding-inline: 11px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-name { font-size: 18px; }
  .live-chip { padding-inline: 8px; }
  h1 { font-size: 39px; }
  .lead br { display: none; }
  .index-row { grid-template-columns: minmax(0, 1fr) 46px; gap: 4px 5px; padding-inline: 8px; }
  .index-rate { font-size: 10.5px; }
  .mini-chart { width: 46px; }
  .market-chart-card { height: 178px; margin-inline: 2px; }
  .proof-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proof-metrics div { min-height: 86px; padding-inline: 2px; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-band > div { min-height: 112px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .075); }
  .trust-band > div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, .075); }
  .trust-band > div:last-child { border-bottom: 0; }
}

@media (hover: hover) {
  .telegram-main::after,
  .telegram-final::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -40%;
    bottom: -40%;
    width: 70px;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 239, 191, .22), transparent);
    transform: translateX(-150%) skewX(-18deg);
  }
  .telegram-main:hover::after,
  .telegram-final:hover::after { opacity: 1; animation: goldSweep .75s ease; }
  @keyframes goldSweep { to { transform: translateX(1100%) skewX(-18deg); } }
}

@media (hover: none) and (pointer: coarse) {
  .top-reload-btn:active,
  .reload-btn.is-visible:active { border-color: var(--gold); background: rgba(228, 184, 90, .08); transform: rotate(20deg); }
  .index-row:active { border-color: rgba(228, 184, 90, .48); background: linear-gradient(100deg, rgba(228, 184, 90, .08), rgba(255, 255, 255, .015)); }
  .proof-metrics div:active::before { color: var(--gold-bright); border-color: rgba(228, 184, 90, .68); background: rgba(34, 29, 16, .98); transform: translate(-50%, -2px); }
  .proof-metrics div:active span { color: var(--gold-bright); transform: translateY(-2px); }
  .proof-metrics div:active small { color: #b8b2a7; transform: translateY(-2px); }
  .trust-band > div:active { background: linear-gradient(120deg, rgba(228, 184, 90, .05), rgba(228, 184, 90, .01) 54%, transparent); box-shadow: inset 0 -1px rgba(228, 184, 90, .34); }
  .trust-band > div:active::before { opacity: .86; transform: scaleX(.82); }
  .trust-band > div:active::after { border-color: rgba(228, 184, 90, .16); opacity: .72; transform: translate(-6px, 5px) scale(1); }
  .trust-band > div:active span { color: var(--gold-bright); }
  .trust-band > div:active strong,
  .trust-band > div:active p { color: #fff7e4; transform: translateX(3px); }
  .telegram-final:active { background: linear-gradient(105deg, rgba(243, 213, 138, .94), rgba(255, 239, 191, .42) 48%, rgba(228, 184, 90, .72)); transform: translateY(-1px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::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; }
}
