/* hero.css */

/* ---------------------------
   Hero
---------------------------- */
.hero {
  position: relative;
  padding: 64px 0 84px;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -10% 0 -20%;
  z-index: -2;
  background:
    linear-gradient(
      color-mix(in srgb, var(--text) 5%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--text) 5%, transparent) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  opacity: 0.18;
  transform: perspective(900px) rotateX(56deg);
  transform-origin: top;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 74px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.hero-copy h1 {
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.1;
}

.hero-side {
  display: grid;
  justify-items: end;
}

.hero-visual {
  width: 100%;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------------------------
   Orbit visuals
---------------------------- */
.hero-orbit {
  position: relative;
  width: min(540px, 96%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(6, 182, 212, 0.16),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(109, 40, 217, 0.14),
      transparent 55%
    );
  filter: blur(6px);
  opacity: 0.85;
}

.hero-orbit__rings {
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  box-shadow: 0 0 0 12px color-mix(in srgb, var(--a2) 10%, transparent);
  animation: orbitSpin 18s linear infinite;
}

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

/* ---------------------------
   Coin (shared sizing + float)
---------------------------- */
.hero-coin {
  position: relative;
  width: 58%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  z-index: 2;
  animation: coinFloat 5.5s ease-in-out infinite;
}

@keyframes coinFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---------------------------
   Video coin
---------------------------- */
.hero-coin.hero-coin-video {
  overflow: hidden; /* circle crop */
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* video fills the coin */
.hero-coin-media {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  object-fit: cover;
  filter: drop-shadow(0 22px 60px rgba(0, 0, 0, 0.18));
}

/* glossy highlight */
.hero-coin.hero-coin-video::after {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.25),
      transparent 45%
    ),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.25), transparent 55%);
  mix-blend-mode: soft-light;
}

/* ---------------------------
   Floating mini cards
---------------------------- */
.hero-float {
  position: absolute;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--cardBg);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow2);
  min-width: 170px;
  z-index: 3;
  animation: floaty 4.4s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-float--price {
  top: 18%;
  right: -2%;
}
.hero-float--apr {
  bottom: 18%;
  left: -8%;
  animation-delay: 0.6s;
}
.hero-float--aprr {
  bottom: 79%;
  left: -9%;
  animation-delay: 0.6s;
}
.hero-float--vol {
  bottom: 4%;
  right: 6%;
  animation-delay: 1.1s;
}

.hf-title {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 6px;
  font-weight: 800;
}

/* ---------------------------
   Decorative dots
---------------------------- */
.hero-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--a2);
  box-shadow: 0 0 0 10px rgba(6, 182, 212, 0.1);
  opacity: 0.9;
  z-index: 1;
}

.hero-dot--a {
  top: 22%;
  left: 12%;
}
.hero-dot--b {
  top: 80%;
  right: 18%;
}
.hero-dot--c {
  top: 68%;
  left: 9%;
}
.hero-dot--d {
  top: 30%;
  right: 8%;
}

/* ---------------------------
   Responsive
---------------------------- */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-side {
    justify-items: center;
  }
  .hero-visual {
    min-height: 440px;
  }

  .hero-float--price,
  .hero-float--apr,
  .hero-float--vol,
  .hero-float--aprr {
    position: static;
    min-width: unset;
    width: 100%;
    max-width: 420px;
  }

  .hero-orbit__rings {
    display: none;
  }
  .hero-dot {
    display: none;
  }
}

/* ---------------------------
   Modern Live Price Ticker — V2
---------------------------- */
.price-ticker {
  margin-top: 36px;
  padding: 0;
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  background: color-mix(in srgb, var(--cardBg) 72%, transparent);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--a2) 12%, transparent),
    0 8px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: auto 1px 1fr 1px auto;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Ambient glow behind center */
.price-ticker::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(6, 182, 212, 0.13),
      transparent 55%
    ),
    radial-gradient(circle at 20% 50%, rgba(109, 40, 217, 0.1), transparent 50%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

/* --- Left: Logo + Name --- */
.price-ticker__left {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
}

.price-ticker__logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.price-ticker__logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  display: block;
  position: relative;
  z-index: 1;
}

.price-ticker__logo-ring {
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  border: 1.5px solid color-mix(in srgb, var(--a2) 35%, transparent);
  animation: logoRingPulse 2.4s ease-in-out infinite;
}

@keyframes logoRingPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.price-ticker__meta {
  display: grid;
  gap: 3px;
}

.price-ticker__label {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: var(--text);
}

.price-ticker__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--muted2);
  text-transform: uppercase;
}

/* --- Dividers --- */
.price-ticker__divider {
  position: relative;
  z-index: 1;
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    to bottom,
    transparent,
    color-mix(in srgb, var(--text) 14%, transparent) 30%,
    color-mix(in srgb, var(--text) 14%, transparent) 70%,
    transparent
  );
}

/* --- Center: Live price hero --- */
.price-ticker__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 36px;
  text-align: center;
}

.price-ticker__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px 4px 8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--a2) 30%, transparent);
  background: color-mix(in srgb, var(--a2) 10%, transparent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  color: var(--a2);
  text-transform: uppercase;
}

.price-ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--a2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--a2) 28%, transparent);
  animation: pricePulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pricePulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.price-ticker__value {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 950;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1;
  /* Subtle gradient shimmer on text */
  background: linear-gradient(
    135deg,
    var(--text) 40%,
    color-mix(in srgb, var(--a2) 80%, var(--text)) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.3s ease;
}

.price-ticker__value.loading {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  opacity: 0.55;
  background: none;
  -webkit-text-fill-color: var(--muted2);
}

.price-ticker__sub-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--muted2);
  opacity: 0.8;
}

/* --- Right: Stats --- */
.price-ticker__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 28px;
}

.price-ticker__stat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted2);
  letter-spacing: 0.2px;
}

.price-ticker__stat-icon {
  font-size: 14px;
  color: var(--a2);
  opacity: 0.8;
  line-height: 1;
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .price-ticker {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
    border-radius: 22px;
  }

  .price-ticker__divider {
    width: auto;
    height: 1px;
    align-self: auto;
    background: linear-gradient(
      to right,
      transparent,
      color-mix(in srgb, var(--text) 14%, transparent) 30%,
      color-mix(in srgb, var(--text) 14%, transparent) 70%,
      transparent
    );
  }

  .price-ticker__left {
    justify-content: center;
    padding: 20px 20px 16px;
  }

  .price-ticker__center {
    padding: 20px;
  }

  .price-ticker__right {
    flex-direction: row;
    justify-content: center;
    padding: 16px 20px 20px;
    gap: 20px;
  }

  .price-ticker__value {
    font-size: clamp(28px, 8vw, 38px);
  }
}

/* ═══════════════════════════════════════════════════════
   PRICE STRIP — COMPLETE CSS
   Full standalone styles for the bottom price ticker.
   Paste this into your hero.css (or a separate file).
   ═══════════════════════════════════════════════════════ */

/* ── Stage wrapper ──────────────────────────────────── */
.price-ticker-stage {
  margin-top: 36px;
  perspective: 1000px;
  perspective-origin: 50% 60%;
  position: relative;
  padding-top: 52px; /* room for floating coin */
}

/* ── Floating coin above the strip ─────────────────── */
.price-ticker__coin-wrap {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: coinBobStrip 3.6s ease-in-out infinite;
}

@keyframes coinBobStrip {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.price-ticker__coin-img {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--a2) 55%, transparent);
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--a2) 12%, transparent),
    0 0 0 14px color-mix(in srgb, var(--a2) 5%, transparent),
    0 10px 30px rgba(0, 0, 0, 0.45),
    0 0 40px color-mix(in srgb, var(--a2) 30%, transparent);
  display: block;
  position: relative;
  z-index: 1;
}

/* Ambient glow ring around floating coin */
.price-ticker__coin-glow {
  position: absolute;
  inset: -20%;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--a2) 35%, transparent) 0%,
    transparent 70%
  );
  filter: blur(10px);
  animation: coinGlowPulse 3.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes coinGlowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* ── Card ───────────────────────────────────────────── */
.price-ticker {
  padding: 0;
  border-radius: 28px;
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: auto 1px 1fr 1px auto;
  align-items: center;
  cursor: default;

  /* 3D resting tilt + bounce */
  transform-style: preserve-3d;
  animation: stripBounce 3.6s cubic-bezier(0.36, 0, 0.66, -0.4) infinite;

  /* Glass surface */
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--cardBg) 90%, white) 0%,
    color-mix(in srgb, var(--cardBg) 72%, transparent) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid transparent;
  background-clip: padding-box;

  /* Layered 3D shadow stack */
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.13),
    inset 0 -2px 0 rgba(0, 0, 0, 0.22),
    inset 0 0 28px color-mix(in srgb, var(--a2) 6%, transparent),
    0 0 0 1.5px color-mix(in srgb, var(--a2) 55%, transparent),
    0 0 0 5px color-mix(in srgb, var(--a2) 14%, transparent),
    0 0 0 14px color-mix(in srgb, var(--a2) 5%, transparent),
    0 12px 28px rgba(0, 0, 0, 0.3),
    0 28px 60px rgba(0, 0, 0, 0.22),
    0 48px 90px rgba(0, 0, 0, 0.12),
    0 24px 50px color-mix(in srgb, var(--a2) 18%, transparent);

  transition: box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Bounce keyframes */
@keyframes stripBounce {
  0% {
    transform: rotateX(4deg) rotateY(-1.5deg) translateY(0);
  }
  28% {
    transform: rotateX(2.5deg) rotateY(-0.8deg) translateY(-11px);
  }
  50% {
    transform: rotateX(3.5deg) rotateY(-1.2deg) translateY(-5px);
  }
  72% {
    transform: rotateX(4.2deg) rotateY(-1.6deg) translateY(-9px);
  }
  100% {
    transform: rotateX(4deg) rotateY(-1.5deg) translateY(0);
  }
}

/* Hover: pause bounce, lift forward */
.price-ticker:hover {
  animation: none;
  transform: rotateX(1deg) rotateY(0deg) translateZ(12px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    inset 0 0 32px color-mix(in srgb, var(--a2) 9%, transparent),
    0 0 0 1.5px color-mix(in srgb, var(--a2) 80%, transparent),
    0 0 0 6px color-mix(in srgb, var(--a2) 22%, transparent),
    0 0 0 18px color-mix(in srgb, var(--a2) 8%, transparent),
    0 18px 36px rgba(0, 0, 0, 0.36),
    0 36px 72px rgba(0, 0, 0, 0.26),
    0 60px 100px rgba(0, 0, 0, 0.14),
    0 32px 64px color-mix(in srgb, var(--a2) 26%, transparent);
}

/* Ambient glow — static */
.price-ticker::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1), transparent 55%),
    radial-gradient(
      circle at 20% 50%,
      rgba(109, 40, 217, 0.08),
      transparent 50%
    );
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

/* ── Left: Brand identity (ENLARGED) ───────────────── */
.price-ticker__left {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
}

.price-ticker__logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.price-ticker__logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1.5px color-mix(in srgb, var(--a2) 50%, transparent),
    0 0 0 4px color-mix(in srgb, var(--a2) 12%, transparent),
    0 6px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.price-ticker__logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 26px;
  border: 1.5px solid color-mix(in srgb, var(--a2) 40%, transparent);
  animation: logoRingPulse 2.4s ease-in-out infinite;
}

@keyframes logoRingPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}

.price-ticker__meta {
  display: grid;
  gap: 5px;
}

.price-ticker__label {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.3px;
  /* Gradient text matching the price */
  background: linear-gradient(
    140deg,
    var(--text) 0%,
    color-mix(in srgb, var(--a2) 70%, var(--text)) 55%,
    var(--text) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 0 color-mix(in srgb, var(--a2) 60%, var(--text)))
    drop-shadow(0 2px 0 color-mix(in srgb, var(--a2) 35%, transparent))
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
}

.price-ticker__sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--muted2);
  text-transform: uppercase;
}

/* ── Dividers ───────────────────────────────────────── */
.price-ticker__divider {
  position: relative;
  z-index: 1;
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    to bottom,
    transparent,
    color-mix(in srgb, var(--a2) 30%, transparent) 30%,
    color-mix(in srgb, var(--a2) 30%, transparent) 70%,
    transparent
  );
  box-shadow: 0 0 6px color-mix(in srgb, var(--a2) 18%, transparent);
}

/* ── Center: Live price ─────────────────────────────── */
.price-ticker__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 36px;
  text-align: center;
}

.price-ticker__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 14px 4px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--a2) 40%, transparent);
  background: color-mix(in srgb, var(--a2) 12%, transparent);
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--a2) 8%, transparent),
    0 0 10px color-mix(in srgb, var(--a2) 20%, transparent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--a2);
  text-transform: uppercase;
}

.price-ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--a2);
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--a2) 22%, transparent),
    0 0 8px 2px color-mix(in srgb, var(--a2) 40%, transparent);
  animation: pricePulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pricePulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Price value */
.price-ticker__value {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 950;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--text);
  background: linear-gradient(
    140deg,
    var(--text) 0%,
    color-mix(in srgb, var(--a2) 70%, var(--text)) 55%,
    var(--text) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 0 color-mix(in srgb, var(--a2) 80%, var(--text)))
    drop-shadow(0 2px 0 color-mix(in srgb, var(--a2) 60%, var(--text)))
    drop-shadow(0 3px 0 color-mix(in srgb, var(--a2) 40%, var(--text)))
    drop-shadow(0 5px 0 color-mix(in srgb, var(--a2) 22%, transparent))
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4))
    drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 22px color-mix(in srgb, var(--a2) 50%, transparent));
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

/* Loading state */
.price-ticker__value.loading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  opacity: 0.45;
  background: none;
  filter: none;
  -webkit-text-fill-color: var(--muted2);
}

.price-ticker__sub-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted2);
  opacity: 0.75;
}

/* ── Right stats (hidden by default, uncomment if needed) */
.price-ticker__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 28px;
}

.price-ticker__stat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted2);
  letter-spacing: 0.2px;
}

.price-ticker__stat-icon {
  font-size: 15px;
  color: var(--a2);
  opacity: 0.85;
  line-height: 1;
  filter: drop-shadow(0 0 4px color-mix(in srgb, var(--a2) 50%, transparent));
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 980px) {
  .price-ticker-stage {
    padding-top: 48px;
  }

  .price-ticker__coin-img {
    width: 64px;
    height: 64px;
  }

  .price-ticker {
    grid-template-columns: 1fr;
    border-radius: 22px;
    animation: none;
    transform: rotateX(2deg) rotateY(0deg);
    text-align: center;
    overflow: hidden;
  }

  .price-ticker:hover {
    transform: rotateX(0deg) translateZ(6px);
  }

  .price-ticker__divider {
    width: auto;
    height: 1px;
    align-self: auto;
    background: linear-gradient(
      to right,
      transparent,
      color-mix(in srgb, var(--a2) 28%, transparent) 30%,
      color-mix(in srgb, var(--a2) 28%, transparent) 70%,
      transparent
    );
    box-shadow: none;
  }

  .price-ticker__left {
    justify-content: center;
    padding: 24px 20px 16px;
    gap: 16px;
  }

  .price-ticker__logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .price-ticker__logo-ring {
    inset: -6px;
    border-radius: 20px;
  }

  .price-ticker__label {
    font-size: 18px;
  }

  .price-ticker__sub {
    font-size: 11px;
  }

  .price-ticker__center {
    padding: 20px;
  }

  .price-ticker__right {
    flex-direction: row;
    justify-content: center;
    padding: 16px 20px 22px;
    gap: 24px;
  }

  .price-ticker__value {
    font-size: clamp(28px, 8vw, 38px);
  }
}

/* Kill the tickerScan sweep — restore ::before as 3D depth face only */
.price-ticker::before {
  animation: none !important;

  /* Reset scan-line overrides back to 3D depth face */
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  background: color-mix(in srgb, var(--a2) 22%, rgba(0, 0, 0, 0.55));

  /* Keep the 3D thickness effect */
  position: absolute;
  inset: 0;
  border-radius: 28px;
  transform: translateZ(-12px) translateY(8px) scaleX(0.97);
  filter: blur(2px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.75;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.price-ticker:hover::before {
  transform: translateZ(-20px) translateY(14px) scaleX(0.95);
  opacity: 0.65;
}
