:root {
  --deep-navy: #0a0e17;
  --dark-panel: #121826;
  --panel-2: #0f1522;
  --cyan: #00f5ff;
  --magenta: #ff2d9e;
  --violet: #7b61ff;
  --white: #e6e6e6;
  --muted-blue: #508aaa;
  --muted-text: #8fa7bc;
  --line: rgba(0, 245, 255, 0.28);
  --line-hot: rgba(0, 245, 255, 0.68);
  --danger-line: rgba(255, 45, 158, 0.48);
  --shadow-cyan: 0 0 28px rgba(0, 245, 255, 0.18);
  --shadow-magenta: 0 0 28px rgba(255, 45, 158, 0.14);
  --font-mono: "SF Mono", "Andale Mono", "Courier New", monospace;
  --max-width: 1180px;
  --gutter: clamp(18px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(123, 97, 255, 0.11), transparent 26rem),
    var(--deep-navy);
  background-size: 48px 48px, 48px 48px, auto, auto;
  font-family: var(--font-mono);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 45, 158, 0.08), transparent 18%, transparent 82%, rgba(0, 245, 255, 0.08)),
    repeating-linear-gradient(0deg, rgba(230, 230, 230, 0.025) 0 1px, transparent 1px 4px);
  opacity: 0.72;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted-text);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  position: relative;
  width: min(100%, 1540px);
  margin: 0 auto;
  isolation: isolate;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(0, 245, 255, 0.22);
  background: rgba(10, 14, 23, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid var(--line-hot);
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.12), rgba(255, 45, 158, 0.08));
  box-shadow: var(--shadow-cyan);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name,
.brand-signal {
  display: block;
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-signal {
  color: var(--muted-blue);
  font-size: 10px;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 26px;
  color: var(--muted-text);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 160ms ease, text-shadow 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(0, 245, 255, 0.65);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  overflow: hidden;
  border: 1px solid;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #061015;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 36px rgba(0, 245, 255, 0.34);
}

.button-secondary {
  color: var(--cyan);
  border-color: var(--line-hot);
  background: rgba(0, 245, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.button-small {
  width: auto;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 11px;
}

.header-cta {
  display: none;
}

.section,
.hero,
.final-cta {
  padding: 76px var(--gutter);
}

.section-grid {
  display: grid;
  gap: 34px;
}

.hero {
  align-items: center;
  padding-top: 34px;
  padding-bottom: 24px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--magenta);
  box-shadow: 0 0 16px rgba(255, 45, 158, 0.8);
  animation: pulse 1.8s infinite;
}

h1,
h2 {
  color: var(--white);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 7vw, 4.7rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 7vw, 4rem);
}

h3 {
  font-size: 18px;
  text-transform: uppercase;
}

.hero-subhead {
  max-width: 720px;
  margin-bottom: 14px;
  color: #bdd4e2;
  font-size: clamp(1rem, 2.7vw, 1.18rem);
}

.risk-note {
  max-width: 680px;
  margin-bottom: 28px;
  color: #a9bdcc;
  font-size: 12px;
  text-transform: uppercase;
}

.hero-actions {
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.proof-grid li {
  min-width: 0;
  padding: 14px 10px;
  background: rgba(18, 24, 38, 0.82);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--cyan);
  font-size: 22px;
  line-height: 1;
}

.proof-grid span {
  color: var(--muted-text);
  font-size: 10px;
  text-transform: uppercase;
}

.terminal-wrap {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
}

.radar {
  position: absolute;
  top: 0;
  right: 0;
  width: min(76vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 245, 255, 0.16);
  opacity: 0.86;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.radar::before {
  position: absolute;
  inset: 16%;
  content: "";
  border: 1px solid rgba(0, 245, 255, 0.18);
}

.radar-sweep {
  position: absolute;
  inset: 50% 50% 0 50%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform-origin: 0 0;
  animation: radarSweep 5s linear infinite;
}

.radar-ring,
.radar-cross {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring {
  border: 1px solid rgba(0, 245, 255, 0.12);
  border-radius: 50%;
}

.radar-ring-one {
  width: 44%;
  height: 44%;
}

.radar-ring-two {
  width: 74%;
  height: 74%;
}

.radar-cross-x {
  width: 80%;
  height: 1px;
  background: rgba(0, 245, 255, 0.12);
}

.radar-cross-y {
  width: 1px;
  height: 80%;
  background: rgba(0, 245, 255, 0.12);
}

.terminal-card,
.plan-card,
.data-card,
.telegram-preview,
.snapshot-card,
.wallet-card,
details,
.final-cta,
.stats-strip {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.08), transparent 30%),
    linear-gradient(315deg, rgba(255, 45, 158, 0.07), transparent 34%),
    rgba(18, 24, 38, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.terminal-card::after,
.plan-card::after,
.data-card::after,
.telegram-preview::after,
.snapshot-card::after,
.wallet-card::after,
details::after,
.stats-strip::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 1px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 245, 255, 0.7);
}

.live-alert {
  z-index: 2;
  width: min(100%, 560px);
  margin-left: auto;
  padding: 18px;
  overflow: hidden;
  border-color: var(--line-hot);
  box-shadow: var(--shadow-cyan), var(--shadow-magenta);
}

.scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.terminal-topline,
.alert-meta,
.alert-head,
.alert-body {
  position: relative;
  z-index: 1;
}

.terminal-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted-blue);
  font-size: 11px;
  text-transform: uppercase;
}

.alert-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}

.badge-magenta {
  color: var(--magenta);
  border-color: var(--danger-line);
  background: rgba(255, 45, 158, 0.08);
}

.badge-cyan {
  color: var(--cyan);
  border-color: var(--line-hot);
  background: rgba(0, 245, 255, 0.06);
}

.alert-head,
.alert-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 1px;
  background: rgba(0, 245, 255, 0.16);
}

.alert-head > div,
.alert-body > div {
  min-width: 0;
  padding: 15px;
  background: rgba(10, 14, 23, 0.72);
}

.label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-blue);
  font-size: 10px;
  text-transform: uppercase;
}

.alert-head strong,
.alert-body strong {
  display: block;
  font-size: clamp(1.25rem, 6vw, 2rem);
  line-height: 1;
}

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

.chart-panel {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(0, 245, 255, 0.18);
  background: rgba(10, 14, 23, 0.7);
}

.chart-panel svg {
  display: block;
  width: 100%;
  height: auto;
}

.grid-line {
  stroke: rgba(80, 138, 170, 0.28);
  stroke-width: 1;
}

.vertical {
  opacity: 0.6;
}

.area {
  fill: url("#chartFill");
}

.chart-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
  filter: drop-shadow(0 0 7px rgba(0, 245, 255, 0.8));
}

.chart-panel circle {
  fill: var(--magenta);
  filter: drop-shadow(0 0 8px rgba(255, 45, 158, 0.85));
}

.sample-caption {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted-blue);
  font-size: 11px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: calc(100% - (var(--gutter) * 2));
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1px;
  overflow: hidden;
  background: var(--line);
}

.stats-strip div {
  min-width: 0;
  padding: 16px 12px;
  background: rgba(10, 14, 23, 0.9);
}

.stats-strip strong,
.stats-strip span {
  display: block;
}

.stats-strip strong {
  color: var(--cyan);
  font-size: clamp(1.55rem, 8vw, 3rem);
  line-height: 1;
}

.stats-strip span {
  color: var(--muted-text);
  font-size: 10px;
  text-transform: uppercase;
}

.section {
  max-width: calc(var(--max-width) + var(--gutter) * 2);
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.pricing-grid,
.step-grid,
.wallet-grid,
.pilot-grid,
.snapshot-grid {
  display: grid;
  gap: 16px;
}

.plan-card,
.data-card,
.wallet-card,
.telegram-preview,
.pilot-card {
  padding: 22px;
}

.plan-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.plan-card-pro {
  border-color: var(--danger-line);
  box-shadow: var(--shadow-magenta), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.plan-header {
  display: grid;
  gap: 10px;
}

.price {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(2rem, 10vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: var(--muted-blue);
  font-size: 14px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: #c8d8e2;
  font-size: 13px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  content: "";
  background: var(--cyan);
}

.offer-note {
  margin: 0;
  color: #a9bdcc;
  font-size: 12px;
}

.pilot-section {
  padding-top: 44px;
}

.pilot-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 230px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.08), transparent 36%),
    rgba(18, 24, 38, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.pilot-card::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 1px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 245, 255, 0.7);
}

.pilot-card-primary {
  border-color: var(--danger-line);
  background:
    linear-gradient(135deg, rgba(255, 45, 158, 0.12), transparent 40%),
    linear-gradient(315deg, rgba(0, 245, 255, 0.08), transparent 40%),
    rgba(18, 24, 38, 0.9);
}

.pilot-card > span:not(.step-number) {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pilot-card h3 {
  margin-bottom: 0;
  color: var(--cyan);
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1;
}

.pilot-card p {
  margin-bottom: 0;
}

.data-card {
  min-height: 170px;
}

.step-number {
  display: block;
  margin-bottom: 28px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.data-card p {
  max-width: 340px;
  margin: 0;
  color: #c6d7e4;
  font-size: 16px;
}

.alert-section {
  align-items: center;
}

.telegram-preview {
  border-color: rgba(0, 245, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(80, 138, 170, 0.16), transparent 110px),
    rgba(18, 24, 38, 0.9);
}

.telegram-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted-blue);
  font-size: 11px;
  text-transform: uppercase;
}

.telegram-message {
  padding: 18px;
  border-left: 2px solid var(--cyan);
  background: rgba(10, 14, 23, 0.72);
}

.telegram-title {
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 800;
}

.telegram-message dl {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.telegram-message dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
}

.telegram-message dt {
  color: var(--muted-blue);
}

.telegram-message dd {
  min-width: 0;
  margin: 0;
  color: var(--white);
}

.telegram-message p:last-child {
  margin-bottom: 0;
}

.snapshot-section {
  padding-top: 22px;
}

.snapshot-grid {
  align-items: start;
}

.snapshot-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.snapshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 245, 255, 0.22);
  background: rgba(10, 14, 23, 0.82);
}

.snapshot-card-wide img {
  aspect-ratio: 1.9 / 1;
}

.snapshot-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.snapshot-copy span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.snapshot-copy p {
  margin: 0;
  color: #c6d7e4;
  font-size: 13px;
}

.read-alert-section {
  padding-top: 22px;
}

.alert-guide-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.guide-item {
  position: relative;
  min-height: 138px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.06), transparent 48%),
    rgba(10, 14, 23, 0.9);
}

.guide-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 1px;
  content: "";
  background: var(--magenta);
  box-shadow: 0 0 14px rgba(255, 45, 158, 0.7);
}

.guide-item span {
  display: block;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-item p {
  max-width: 360px;
  margin-bottom: 0;
  color: #c6d7e4;
  font-size: 13px;
}

.wallet-card {
  display: grid;
  gap: 12px;
}

.wallet-card span {
  color: var(--muted-blue);
  font-size: 12px;
  text-transform: uppercase;
}

.wallet-card strong {
  color: var(--cyan);
  font-size: clamp(1.6rem, 8vw, 2.4rem);
  line-height: 1;
}

.wallet-card p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 18px;
}

summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

summary::marker {
  color: var(--cyan);
}

details p {
  margin: 14px 0 0;
}

.final-cta {
  width: calc(100% - (var(--gutter) * 2));
  max-width: var(--max-width);
  margin: 24px auto 0;
  overflow: hidden;
  text-align: left;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 245, 255, 0.12), transparent 45%, rgba(255, 45, 158, 0.1));
  pointer-events: none;
}

.final-cta > * {
  position: relative;
}

.site-footer {
  display: grid;
  gap: 10px;
  padding: 34px var(--gutter);
  color: var(--muted-blue);
  border-top: 1px solid rgba(0, 245, 255, 0.18);
  font-size: 11px;
  text-transform: uppercase;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan);
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

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

@media (min-width: 700px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-grid,
  .step-grid,
  .wallet-grid,
  .pilot-grid,
  .alert-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snapshot-card-wide {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer span:nth-child(2) {
    text-align: center;
  }

  .site-footer span:last-child {
    text-align: right;
  }
}

@media (min-width: 880px) {
  .nav-links {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.78fr);
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 68px;
  }

  .brand-signal {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .terminal-wrap {
    min-height: auto;
  }

  .radar {
    top: 12px;
    left: 50%;
    width: 86vw;
    transform: translateX(-50%);
  }

  .live-alert {
    margin-top: 88px;
  }

  .alert-head,
  .alert-body,
  .telegram-message dl div {
    grid-template-columns: 1fr;
  }

  .telegram-message dl div {
    gap: 0;
  }
}
