:root {
  color-scheme: dark;
  --bg: #03070c;
  --bg-alt: #040b15;
  --text: #ebfbff;
  --muted: #8fb0c5;
  --accent: #00f5d5;
  --accent-2: #12b3ff;
  --accent-3: #2bff7d;
  --panel: rgba(7, 16, 28, 0.92);
  --panel-soft: rgba(7, 16, 28, 0.82);
  --border: rgba(0, 245, 213, 0.26);
  --chip: rgba(9, 18, 34, 0.75);
  --danger: #ff6b82;
  --success: #1fe38c;
  --shadow: 0 40px 160px rgba(0, 0, 0, 0.52);
  --glow: 0 0 48px rgba(0, 245, 213, 0.35);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: radial-gradient(1400px 720px at 50% -12%, rgba(0, 245, 213, 0.15), transparent 55%),
    radial-gradient(800px 480px at 10% 20%, rgba(18, 179, 255, 0.15), transparent 60%),
    linear-gradient(160deg, rgba(3, 12, 20, 0.96), rgba(3, 12, 20, 0.88)),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -12%;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: screen;
}

body::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%2300f5d5' stroke-opacity='.045' stroke-width='1'%3E%3Cpath d='M0 200h400M200 0v400M0 0h400M0 400h400M400 0v400M0 0v400'/%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.4;
  transform: translate3d(0, 0, 0);
  animation: slow-pan 120s linear infinite;
}

body::after {
  background: radial-gradient(520px 320px at 80% 18%, rgba(0, 245, 213, 0.35), transparent 70%),
    radial-gradient(360px 260px at 22% 82%, rgba(18, 179, 255, 0.25), transparent 75%);
  opacity: 0.55;
  filter: blur(0px);
  animation: slow-breathe 26s ease-in-out infinite;
}

@keyframes slow-pan {
  to {
    transform: translate3d(-200px, -200px, 0);
  }
}

@keyframes slow-breathe {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

canvas#matrixRain {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.68;
  pointer-events: none;
}

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  backdrop-filter: blur(16px) saturate(140%);
  background: linear-gradient(180deg, rgba(5, 9, 15, 0.92), rgba(5, 9, 15, 0.45));
  border-bottom: 1px solid var(--border);
  z-index: 20;
  transition: transform 0.35s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  letter-spacing: 0.4px;
}

.brand__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 28%, rgba(0, 245, 213, 0.75), transparent 58%),
    radial-gradient(circle at 68% 72%, rgba(18, 179, 255, 0.75), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(2, 9, 17, 0.65), rgba(2, 9, 17, 0.95) 62%);
  box-shadow: 0 12px 36px rgba(0, 245, 213, 0.45), inset 0 0 28px rgba(18, 179, 255, 0.28);
  animation: brand-glow 4.8s ease-in-out infinite;
}

.brand__icon::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(0, 245, 213, 0.2), transparent 60%);
  filter: blur(18px);
  animation: brand-halo 6s ease-in-out infinite;
}

.brand__icon > span {
  position: absolute;
  inset: 0;
  display: block;
}

.brand__ring {
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 213, 0.34);
  box-shadow: 0 0 22px rgba(18, 179, 255, 0.45), inset 0 0 14px rgba(0, 245, 213, 0.24);
  animation: brand-rings 5.2s ease-in-out infinite;
}

.brand__ring::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(18, 179, 255, 0.12);
  opacity: 0;
  animation: brand-ping 4.8s ease-out infinite;
}

.brand__sweep {
  inset: 8px;
  border-radius: 50%;
  background: conic-gradient(from -90deg, rgba(0, 245, 213, 0) 0deg, rgba(0, 245, 213, 0.46) 35deg, rgba(0, 245, 213, 0) 90deg);
  mask: radial-gradient(circle, transparent 0 55%, black 56%);
  filter: drop-shadow(0 0 14px rgba(18, 179, 255, 0.5));
  animation: brand-sweep 3s linear infinite;
}

.brand__ping {
  inset: 0;
  background:
    radial-gradient(circle at 35% 38%, rgba(43, 255, 125, 0.55), transparent 42%) no-repeat,
    radial-gradient(circle at 68% 62%, rgba(18, 179, 255, 0.45), transparent 48%) no-repeat;
  opacity: 0.85;
  animation: brand-particles 6s ease-in-out infinite;
}

body.intro-modal-open {
  overflow: hidden;
}

.intro-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.intro-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.intro-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 20, 0.68);
  backdrop-filter: blur(18px) saturate(140%);
}

.intro-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 94vw);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 180px rgba(0, 0, 0, 0.6);
}

.intro-modal__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(140deg, rgba(4, 14, 22, 0.92), rgba(2, 8, 14, 0.88));
  border: 1px solid rgba(0, 245, 213, 0.24);
  border-radius: 24px;
  overflow: hidden;
}

.intro-modal__play {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vw, 24px);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(18, 179, 255, 0.36);
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(4, 20, 30, 0.94), rgba(8, 34, 52, 0.86));
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.35s ease;
  box-shadow: 0 28px 88px rgba(18, 179, 255, 0.26), inset 0 0 0 1px rgba(18, 179, 255, 0.18);
  will-change: transform, opacity;
}

.intro-modal__play:hover,
.intro-modal__play:focus-visible {
  transform: translateY(-4px) scale(1.03);
  outline: none;
}

.intro-modal__play:focus-visible {
  box-shadow: 0 0 0 3px rgba(18, 179, 255, 0.45);
}

.intro-modal__play.is-hidden {
  opacity: 0;
  transform: scale(0.92) translateY(6px);
  pointer-events: none;
}

.intro-modal__play-icon {
  position: relative;
  z-index: 1;
  width: clamp(128px, 22vw, 168px);
  aspect-ratio: 1.55 / 1;
  border-radius: clamp(24px, 5vw, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #ff5656 0%, #ff2a2a 35%, #ff1212 62%, #c70000 100%);
  box-shadow: 0 26px 68px rgba(18, 179, 255, 0.32), inset 0 10px 22px rgba(255, 255, 255, 0.55), inset 0 -18px 26px rgba(128, 0, 0, 0.6);
  filter: drop-shadow(0 0 18px rgba(18, 179, 255, 0.38));
  animation: intro-icon-glow 3.2s ease-in-out infinite;
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
  overflow: hidden;
}

.intro-modal__play-icon::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: clamp(20px, 3.8vw, 26px) 0 clamp(20px, 3.8vw, 26px) clamp(32px, 6vw, 40px);
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
  transform: translateX(8%);
  filter: drop-shadow(-4px 0 12px rgba(255, 255, 255, 0.35));
}

.intro-modal__play-icon::after {
  content: '';
  position: absolute;
  inset: 8% 14% 28% 14%;
  border-radius: clamp(22px, 4.6vw, 32px);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0));
  opacity: 0.92;
  pointer-events: none;
}

.intro-modal__play-ring {
  position: absolute;
  top: 48%;
  left: 50%;
  width: clamp(220px, 38vw, 280px);
  height: clamp(220px, 38vw, 280px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 179, 255, 0.45), rgba(18, 179, 255, 0.16) 48%, transparent 70%);
  opacity: 0.55;
  transform: translate(-50%, -50%);
  filter: blur(1px);
  animation: intro-ring-breathe 3.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.intro-modal__play-label {
  font-size: clamp(0.9rem, 2.4vw, 1.08rem);
  text-align: center;
  text-shadow: 0 0 16px rgba(18, 179, 255, 0.55), 0 0 32px rgba(18, 179, 255, 0.32);
  letter-spacing: 0.06em;
  animation: intro-label-pulse 2.8s ease-in-out infinite;
}

.intro-modal__play.is-activated .intro-modal__play-icon {
  transform: scale(1.08);
  box-shadow: 0 32px 90px rgba(18, 179, 255, 0.45), inset 0 10px 22px rgba(255, 255, 255, 0.65), inset 0 -20px 28px rgba(128, 0, 0, 0.7);
  filter: drop-shadow(0 0 28px rgba(18, 179, 255, 0.52));
  animation: none;
}

.intro-modal__play.is-activated .intro-modal__play-ring {
  opacity: 0.75;
  animation-duration: 2.6s;
}

.intro-modal__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.intro-modal__media.is-active {
  display: block;
}

@keyframes intro-icon-glow {
  0%,
  100% {
    box-shadow: 0 26px 68px rgba(18, 179, 255, 0.32), inset 0 10px 22px rgba(255, 255, 255, 0.55), inset 0 -18px 26px rgba(128, 0, 0, 0.6);
    filter: drop-shadow(0 0 18px rgba(18, 179, 255, 0.38));
  }
  50% {
    box-shadow: 0 34px 92px rgba(18, 179, 255, 0.48), inset 0 12px 24px rgba(255, 255, 255, 0.7), inset 0 -22px 32px rgba(128, 0, 0, 0.7);
    filter: drop-shadow(0 0 30px rgba(18, 179, 255, 0.55));
  }
}

@keyframes intro-ring-breathe {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes intro-label-pulse {
  0%,
  100% {
    opacity: 0.82;
    transform: translateY(0);
    text-shadow: 0 0 16px rgba(18, 179, 255, 0.55), 0 0 32px rgba(18, 179, 255, 0.32);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 0 22px rgba(18, 179, 255, 0.72), 0 0 40px rgba(18, 179, 255, 0.45);
  }
}

@keyframes brand-glow {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(0, 245, 213, 0.3), inset 0 0 24px rgba(18, 179, 255, 0.26);
  }
  50% {
    box-shadow: 0 18px 42px rgba(0, 245, 213, 0.55), inset 0 0 36px rgba(18, 179, 255, 0.4);
  }
}

@keyframes brand-halo {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.85;
  }
}

@keyframes brand-sweep {
  to {
    transform: rotate(1turn);
  }
}

@keyframes brand-rings {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes brand-ping {
  0% {
    transform: scale(0.85);
    opacity: 0.5;
  }
  60% {
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes brand-particles {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.85;
  }
  50% {
    transform: translate3d(1px, -1px, 0);
    opacity: 1;
  }
}

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

.lang-select {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--chip);
  border: 1px solid var(--border);
  color: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lang-select:hover,
.lang-select:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--glow);
  outline: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.btn--primary {
  background: linear-gradient(135deg, rgba(0, 245, 213, 0.22), rgba(18, 179, 255, 0.22));
  color: var(--text);
  box-shadow: 0 12px 40px rgba(0, 245, 213, 0.22);
  border-color: rgba(0, 245, 213, 0.4);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 52px rgba(0, 245, 213, 0.32);
  outline: none;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.hero {
  position: relative;
  padding-top: clamp(140px, 16vh, 180px);
  padding-bottom: clamp(80px, 14vh, 120px);
}

.hero__layout {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero__content h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 900;
  text-shadow: 0 0 32px rgba(0, 245, 213, 0.35);
}

.hero__content p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero__hud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hud-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: opacity 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.hud-tag .led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 16px #00ff88;
}

.hud-tag.is-transitioning {
  opacity: 0.45;
}

.hero__visual {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  min-height: 420px;
  box-shadow: var(--shadow);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40px, rgba(0, 245, 213, 0.08) 41px) 0 0 / 100% 40px,
    linear-gradient(90deg, transparent 40px, rgba(0, 245, 213, 0.06) 41px) 0 0 / 40px 100%;
  opacity: 0.65;
  pointer-events: none;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 380px at 24% 20%, rgba(0, 0, 0, 0.72), transparent 75%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__chart,
.hero__radar,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__chart {
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero__chart.is-fading {
  opacity: 0.35;
}

.hero__overlay {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 20px 20px 28px;
  gap: 16px;
  pointer-events: none;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  z-index: 3;
  pointer-events: auto;
}

.hero__cta .btn {
  position: relative;
  isolation: isolate;
  padding: 10px 18px;
  font-size: 0.85rem;
  box-shadow: 0 14px 38px rgba(0, 245, 213, 0.28);
}

.hero__cta .btn::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(0, 245, 213, 0.25);
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.hero__cta .btn:hover::after,
.hero__cta .btn:focus-visible::after {
  opacity: 1;
}

.hero__overlay .btn--primary {
  animation: heroPulse 2.8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(0, 245, 213, 0.4);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 16px rgba(0, 245, 213, 0);
  }
}

.hero__radar {
  mix-blend-mode: screen;
  z-index: 1;
}

.scroll-tip {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--muted);
  opacity: 0.8;
}

section {
  position: relative;
  padding: clamp(80px, 14vw, 120px) 0;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 900;
}

.accent {
  color: var(--accent);
}

.section-lead {
  margin: 18px auto 48px;
  max-width: 780px;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.grid-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card[data-stale='true']::after {
  content: 'LIVE CACHE';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  background: rgba(255, 196, 0, 0.16);
  border: 1px solid rgba(255, 196, 0, 0.45);
  color: rgba(255, 224, 102, 0.95);
  border-radius: 999px;
  padding: 4px 10px;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40% 10% auto;
  height: 160px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 245, 213, 0.18), transparent 70%);
  filter: blur(0px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 800;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card--interactive {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-telemetry {
  border-radius: 16px;
  border: 1px solid rgba(0, 245, 213, 0.18);
  padding: 16px;
  background: linear-gradient(180deg, rgba(0, 245, 213, 0.12), rgba(0, 245, 213, 0.02));
  position: relative;
  overflow: hidden;
}

.card-telemetry::after {
  content: "";
  position: absolute;
  inset: -50% auto auto -30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(18, 179, 255, 0.18), transparent 60%);
  filter: blur(24px);
  opacity: 0.8;
  pointer-events: none;
}

.telemetry-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  margin: 0;
}

.telemetry-grid div {
  display: grid;
  gap: 4px;
}

.telemetry-grid dt {
  font-size: 0.78rem;
  color: rgba(235, 251, 255, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.telemetry-grid dd {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.telemetry-graph {
  position: relative;
  width: 100%;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 179, 255, 0.22), rgba(18, 179, 255, 0));
  overflow: hidden;
}

.telemetry-graph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.telemetry-graph__line {
  fill: none;
  stroke: url(#analysisGradient);
  stroke: #00f5d5;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telemetry-graph__fill {
  fill: rgba(0, 245, 213, 0.18);
}

.telemetry-donut {
  display: grid;
  place-items: center;
  width: clamp(120px, 40%, 180px);
  margin: 0 auto 8px;
}

.telemetry-donut svg {
  width: 100%;
  height: auto;
}

.telemetry-donut text {
  font-weight: 800;
  font-size: 1.1rem;
  fill: var(--text);
}

.donut-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 12;
}

.donut-fill {
  fill: none;
  stroke: url(#donutGradient);
  stroke: var(--accent);
  stroke-width: 12;
  stroke-linecap: round;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
  transition: stroke-dasharray 0.6s ease;
}

.telemetry-bars {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.telemetry-bars__item {
  display: grid;
  gap: 6px;
}

.telemetry-bars__item span:first-child {
  font-size: 0.82rem;
  color: rgba(235, 251, 255, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.telemetry-bars__track {
  position: relative;
  width: 100%;
  height: 10px;
  background: rgba(0, 245, 213, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.telemetry-bars__fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(18, 179, 255, 0.85), rgba(43, 255, 125, 0.85));
  border-radius: inherit;
  transition: width 0.6s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.calc-controls {
  display: grid;
  gap: 18px;
}

.calc-controls label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(235, 251, 255, 0.78);
}

.calc-controls input[type='range'] {
  accent-color: var(--accent);
}

.calc-controls output {
  font-weight: 700;
  font-size: 1rem;
}

.calc-simulation {
  display: grid;
  gap: 18px;
}

.calc-spark {
  position: relative;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(43, 255, 125, 0.16), rgba(43, 255, 125, 0.02));
  overflow: hidden;
}

.calc-spark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.calc-spark__line {
  fill: none;
  stroke: #2bff7d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calc-spark__fill {
  fill: rgba(43, 255, 125, 0.16);
}

.calc-checklist {
  display: grid;
  gap: 12px;
}

.calc-checklist__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  border: 1px solid rgba(18, 179, 255, 0.18);
  padding: 12px 16px;
  background: rgba(18, 179, 255, 0.08);
}

.calc-checklist__item strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

.calc-checklist__item.is-on {
  border-color: rgba(43, 255, 125, 0.55);
  background: linear-gradient(90deg, rgba(43, 255, 125, 0.15), rgba(18, 179, 255, 0.1));
}

.calc-checklist__item.is-on strong {
  color: var(--success);
}

.card-infographic {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sparkline {
  position: relative;
  width: 100%;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 245, 213, 0.08), rgba(0, 245, 213, 0));
  overflow: hidden;
}

.sparkline svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sparkline__fill {
  fill: rgba(0, 245, 213, 0.18);
}

.sparkline__line {
  fill: none;
  stroke: #00f5d5;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.range-meter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.range-meter__track {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 245, 213, 0.1);
  overflow: hidden;
}

.range-meter__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(0, 245, 213, 0.8), rgba(0, 245, 213, 0.2));
  border-radius: inherit;
  transition: width 0.6s ease;
}

.range-meter__scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}

.dominance-gauge {
  --value: 0;
  --angle: calc((var(--value) / 100) * 360deg);
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(rgba(0, 245, 213, 0.55) 0deg, rgba(0, 245, 213, 0.55) var(--angle), rgba(0, 245, 213, 0.08) var(--angle));
  box-shadow: inset 0 0 40px rgba(0, 245, 213, 0.18);
}

.dominance-gauge::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 245, 213, 0.18), rgba(0, 0, 0, 0.8));
}

.dominance-gauge__needle {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  height: 45%;
  background: #00f5d5;
  transform-origin: bottom center;
  transform: rotate(-90deg);
  transition: transform 0.6s ease;
  box-shadow: 0 0 16px rgba(0, 245, 213, 0.8);
  z-index: 1;
}

.dominance-gauge__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  z-index: 1;
}

.global-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.global-bars__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.global-bars__item .label {
  flex: 0 0 46%;
  font-size: 0.75rem;
  color: var(--muted);
}

.global-bars__item .bar {
  flex: 1;
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 245, 213, 0.08);
  overflow: hidden;
}

.global-bars__item .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--fill, 0%);
  background: linear-gradient(90deg, rgba(0, 245, 213, 0.8), rgba(0, 245, 213, 0.2));
  transition: width 0.6s ease;
}

.global-bars__item .bar.pos::after {
  background: linear-gradient(90deg, rgba(43, 255, 125, 0.85), rgba(43, 255, 125, 0.2));
}

.global-bars__item .bar.neg::after {
  background: linear-gradient(90deg, rgba(255, 95, 118, 0.85), rgba(255, 95, 118, 0.2));
}

.global-empty {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 99, 132, 0.4);
  background: rgba(255, 99, 132, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 182, 193, 0.95);
}

.fng-trend {
  margin-top: 0;
  position: relative;
  width: 100%;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 179, 255, 0.12), rgba(18, 179, 255, 0));
  overflow: hidden;
}

.fng-trend svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fng-trend__fill {
  fill: rgba(0, 245, 213, 0.2);
}

.fng-trend__line {
  fill: none;
  stroke: #2bff7d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pulse-heatmap {
  margin-top: 18px;
  display: flex;
  gap: 4px;
  border-radius: 14px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.35);
  min-height: 36px;
}

.pulse-heatmap__cell {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pulse-heatmap__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--heat-color, rgba(0, 245, 213, 0.18));
  opacity: 0.75;
  transition: opacity 0.6s ease;
}

.pulse-heatmap__cell span {
  position: relative;
  z-index: 1;
}

.pulse-heatmap__cell.pos {
  --heat-color: rgba(43, 255, 125, 0.45);
  color: #03140e;
}

.pulse-heatmap__cell.neg {
  --heat-color: rgba(255, 95, 118, 0.45);
}

.stat {
  border-radius: 14px;
  border: 1px dashed var(--border);
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.35);
}

.stat .label {
  font-size: 0.85rem;
  color: var(--muted);
}

.stat .value {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.delta {
  font-weight: 700;
}

.delta.pos {
  color: var(--success);
}

.delta.neg {
  color: var(--danger);
}

.topcaps,
.trending-grid,
.exchange-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.coin-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coin-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
  font-size: 0.85rem;
  color: rgba(235, 251, 255, 0.72);
}

.coin-card__meta strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.coin-card__spark {
  position: relative;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 245, 213, 0.08), rgba(0, 245, 213, 0));
  overflow: hidden;
}

.coin-card__spark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.coin-card__spark path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coin-card__spark .fill {
  fill: rgba(18, 179, 255, 0.12);
}

.trending-grid--extended {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trend-visual {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.trend-volume,
.trend-momentum {
  position: relative;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(18, 179, 255, 0.08);
  border: 1px solid rgba(18, 179, 255, 0.18);
  display: grid;
  gap: 6px;
}

.trend-volume strong,
.trend-momentum strong {
  font-size: 1rem;
}

.trend-momentum__bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 245, 213, 0.16);
  overflow: hidden;
}

.trend-momentum__bar span {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(255, 196, 0, 0.9), rgba(255, 107, 130, 0.7));
  border-radius: inherit;
  transition: width 0.6s ease;
}

.trend-momentum__bar span.pos {
  background: linear-gradient(90deg, rgba(43, 255, 125, 0.85), rgba(43, 255, 125, 0.25));
}

.trend-momentum__bar span.neg {
  background: linear-gradient(90deg, rgba(255, 95, 118, 0.85), rgba(255, 95, 118, 0.25));
}

.trend-volume__bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(18, 179, 255, 0.18);
  overflow: hidden;
}

.trend-volume__bar span {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(18, 179, 255, 0.85), rgba(43, 255, 125, 0.8));
  border-radius: inherit;
  transition: width 0.6s ease;
}

.coin-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chip-delta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.chip-delta.pos {
  color: var(--success);
  border-color: rgba(43, 255, 125, 0.4);
  background: rgba(43, 255, 125, 0.12);
}

.chip-delta.neg {
  color: var(--danger);
  border-color: rgba(255, 95, 118, 0.45);
  background: rgba(255, 95, 118, 0.12);
}

.news-stream {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
}

.news-card__image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(120%) contrast(1.05);
  opacity: 0.32;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: -2;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 12, 0) 20%, rgba(3, 7, 12, 0.92) 100%);
  z-index: -1;
}

.news-card:hover .news-card__image {
  transform: scale(1.08);
  opacity: 0.5;
}

.news-card strong {
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  color: var(--accent);
}

.news-card h4 {
  margin: 12px 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.news-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 10px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
  color: var(--muted);
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
}

.widget {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel-soft);
  padding: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.widget--tape {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, rgba(6, 18, 30, 0.88), rgba(3, 12, 20, 0.62));
  border-color: rgba(0, 245, 213, 0.22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.widget--tape::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(0, 245, 213, 0.16), transparent 70%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 28px;
  mix-blend-mode: screen;
  opacity: 0.65;
  animation: tape-glow 18s linear infinite;
}

.widget--tape::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 12, 20, 0.9) 0%, transparent 16%, transparent 84%, rgba(3, 12, 20, 0.9) 100%);
  opacity: 0.75;
}

.widget--tape > * {
  position: relative;
  z-index: 1;
}

.tilted-orbs {
  position: absolute;
  inset: auto 0 -160px;
  display: flex;
  justify-content: center;
  gap: 120px;
  opacity: 0.35;
  pointer-events: none;
}

.tilted-orbs span {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 245, 213, 0.45), transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(18, 179, 255, 0.45), transparent 72%),
    rgba(2, 9, 17, 0.55);
  filter: blur(10px);
  animation: float 16s ease-in-out infinite;
}

.tilted-orbs span:nth-child(2) {
  animation-delay: -6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

@keyframes tape-glow {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 100% 0, 0 -28px;
  }
}

@keyframes radar-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

.ticker-section {
  padding: 0 0 clamp(60px, 10vw, 80px);
  margin-top: -30px;
}

.ticker-section .widget {
  color: var(--text);
}

.ticker {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: inherit;
}

.ticker::after,
.ticker::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 12, 20, 0.85), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 12, 20, 0.85), transparent);
}

.ticker__track {
  --ticker-duration: 34s;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 18px 36px;
  animation: ticker-scroll var(--ticker-duration) linear infinite;
  will-change: transform;
}

.ticker__track:hover {
  animation-play-state: paused;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.ticker__avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 245, 213, 0.22), rgba(18, 179, 255, 0.3));
  box-shadow: 0 8px 20px rgba(0, 245, 213, 0.24);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text);
}

.ticker__symbol {
  font-size: 0.85rem;
  color: var(--muted);
}

.ticker__price {
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}

.ticker__delta {
  font-size: 0.85rem;
  font-weight: 700;
}

.ticker__delta.pos {
  color: var(--success);
}

.ticker__delta.neg {
  color: var(--danger);
}

.ticker__item--placeholder {
  opacity: 0.6;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.fng-card {
  display: grid;
  grid-template-columns: minmax(120px, 140px) 1fr;
  gap: 16px 22px;
  align-items: center;
}

.fng-card__meter {
  position: relative;
  width: min(140px, 40vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from -90deg, rgba(255, 107, 130, 0.45), rgba(255, 196, 0, 0.5), rgba(43, 255, 125, 0.55), rgba(18, 179, 255, 0.55), rgba(255, 107, 130, 0.45));
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), 0 0 26px rgba(0, 245, 213, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  --fng-angle: 0deg;
}

.fng-card__meter::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 9, 17, 0.92), rgba(2, 9, 17, 0.78));
  box-shadow: inset 0 0 26px rgba(0, 245, 213, 0.24);
}

.fng-card__needle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transform: rotate(calc(var(--fng-angle) - 90deg));
  transition: transform 0.6s ease;
  z-index: 2;
}

.fng-card__needle::after {
  content: "";
  width: 3px;
  height: 45%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18, 179, 255, 0.9), rgba(0, 245, 213, 0.4));
  box-shadow: 0 0 14px rgba(18, 179, 255, 0.75);
}

.fng-card__value {
  position: relative;
  z-index: 3;
  font-weight: 800;
  font-size: clamp(1.2rem, 3.8vw, 1.6rem);
  text-shadow: 0 0 12px rgba(0, 245, 213, 0.45);
}

.fng-card__details {
  display: grid;
  gap: 12px 18px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.fng-card .detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fng-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.fng-card .value {
  font-size: 0.95rem;
  font-weight: 700;
}

.fng-card .value.pos {
  color: var(--success);
}

.fng-card .value.neg {
  color: var(--danger);
}

.fng-live {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.fng-live__status {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(235, 251, 255, 0.82);
}


.market-pulse__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.pulse-item {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(9, 18, 34, 0.72);
  border: 1px solid rgba(0, 245, 213, 0.16);
  box-shadow: inset 0 0 18px rgba(0, 245, 213, 0.08);
}

.pulse-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pulse-item strong {
  font-size: 1rem;
  font-weight: 800;
}

.pulse-item .delta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.pulse-item .delta.pos {
  color: var(--success);
}

.pulse-item .delta.neg {
  color: var(--danger);
}

.radar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding-bottom: 12px;
}

.radar-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  background-image: linear-gradient(160deg, rgba(18, 179, 255, 0.12), transparent 55%),
    linear-gradient(-40deg, rgba(43, 255, 125, 0.08), transparent 65%);
  padding: 16px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
  min-width: 0;
  --radar-accent: rgba(0, 245, 213, 0.35);
  --radar-accent-soft: rgba(0, 245, 213, 0.08);
  --radar-pip: rgba(43, 255, 125, 0.86);
  --radar-spin-duration: 4.2s;
}

.radar-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
}

.radar-card .status {
  color: var(--muted);
  font-size: 0.85rem;
}

.radar-visual {
  --size: 140px;
  width: var(--size);
  height: var(--size);
  margin: 16px auto 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--radar-accent-soft), transparent 72%),
    radial-gradient(circle, transparent 60%, var(--radar-accent) 61%, transparent 63%);
  position: relative;
  box-shadow: inset 0 0 38px var(--radar-accent);
  overflow: hidden;
}

.radar-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(0, 245, 213, 0.26);
}

.radar-visual__sweep {
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--radar-accent) 0deg, rgba(0, 0, 0, 0) 160deg, transparent 360deg);
  mask: radial-gradient(circle, transparent 0%, rgba(0, 0, 0, 0.85) 58%, transparent 70%);
  animation: radar-spin var(--radar-spin-duration) linear infinite;
  z-index: 0;
}

.radar-visual__pips {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.radar-visual .pip {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--radar-pip);
  box-shadow: 0 0 18px var(--radar-pip);
  z-index: 1;
}

.radar-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.radar-meta__item {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 245, 213, 0.08);
  text-align: center;
}

.radar-meta__item .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.radar-meta__item .value {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .navbar {
    flex-wrap: wrap;
  }
  .nav-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .hero__layout {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 360px;
  }
  .radar-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 6px 12px;
    margin: 0 -6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .radar-grid::-webkit-scrollbar {
    display: none;
  }
  .radar-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
}

@media (max-width: 720px) {
  body::before,
  body::after {
    opacity: 0.6;
  }
  .brand__icon {
    width: 38px;
    height: 38px;
  }
  .ticker__track {
    padding: 16px 28px;
    gap: 20px;
  }
  .fng-card {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .fng-card__details {
    width: 100%;
  }
  .hero__content h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
  .hero__content p {
    font-size: 1rem;
  }
  .hero__visual {
    border-radius: 20px;
  }
  .scroll-tip {
    font-size: 0.7rem;
  }
}

@media (max-width: 560px) {
  .nav-actions {
    justify-content: center;
  }
  .btn {
    width: 100%;
  }
  .hero__overlay {
    align-items: flex-start;
    pointer-events: auto;
  }
  .hero__cta {
    justify-content: flex-start;
    width: 100%;
  }
  .hero__cta .btn {
    width: auto;
  }
  .news-stream {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
