.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(45, 212, 255, 0.35));
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.logo-word span {
  color: var(--radar);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--radar), #1EA8D6);
  border-color: transparent;
  color: #04121a;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-1px);
}

.btn-ghost:hover {
  border-color: var(--radar-dim);
  background: var(--bg-panel-2);
  transform: translateY(-1px);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px currentColor;
  animation: blink 1.6s infinite;
}

@keyframes blink {
  50% { opacity: .2; }
}

.status-dot-offline {
  background: var(--text-faint) !important;
  box-shadow: none !important;
  animation: none !important;
}

.feed {
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.feed-head .rec {
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rec::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  display: inline-block;
  animation: blink 1s infinite;
}

.feed-body {
  padding: 14px 18px;
  height: 260px;
  overflow: hidden;
}

.feed-line {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--border-soft);
  color: var(--text-muted);
  opacity: 0;
  animation: feedIn .5s forwards;
}

.feed-line b {
  color: var(--text);
  font-weight: 500;
}

.feed-line.c-green b { color: var(--green); }
.feed-line.c-yellow b { color: var(--yellow); }
.feed-line.c-red b { color: var(--red); }

@keyframes feedIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.scan-divider {
  width: 100%;
  height: 64px;
  display: block;
}

.scan-divider path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw 3.5s ease-in-out infinite;
}

@keyframes draw {
  0% { stroke-dashoffset: 400; }
  45% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

.feature {
  background: linear-gradient(165deg, var(--bg-panel), var(--bg-elevated));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--radar-dim);
  box-shadow: var(--shadow-md);
}

.feature .grid-ref {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--radar);
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0;
}

.feature p {
  color: var(--text-muted);
  font-size: 14.5px;
}

.phone {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 18px;
  max-width: 260px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.phone-screen {
  background: #060a12;
  border-radius: 22px;
  padding: 26px 16px;
  text-align: center;
}

.siren-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(229,72,77,0.25), transparent 70%);
  position: relative;
}

.siren-ring::before, .siren-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  animation: ring 1.8s ease-out infinite;
  opacity: 0;
}

.siren-ring::after {
  animation-delay: .6s;
}

@keyframes ring {
  0% { transform: scale(0.5); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.siren-core {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 24px rgba(229,72,77,0.5);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--text);
}

.alert-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.alert-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.alert-sub {
  color: var(--text-muted);
  font-size: 12.5px;
}

.alarm-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}

.alarm-list li:first-child {
  padding-top: 0;
}

.alarm-list .idx {
  font-family: var(--font-mono);
  color: var(--radar);
  font-size: 13px;
  min-width: 28px;
}

.alarm-list h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.alarm-list p {
  color: var(--text-muted);
  font-size: 14px;
}

.toggle-row {
  display: inline-flex;
  justify-content: center;
  gap: 2px;
  margin: 0 auto 48px;
  padding: 3px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.toggle-row div {
  padding: 9px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.toggle-row div.active {
  background: var(--radar);
  color: #04121a;
  font-weight: 600;
}

.plan {
  background: linear-gradient(165deg, var(--bg-panel), var(--bg-elevated));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan.pop {
  border-color: rgba(45, 212, 255, 0.4);
  position: relative;
  box-shadow: var(--shadow-glow);
}

.plan.pop::before {
  content: 'популярно';
  position: absolute;
  top: -12px;
  left: 22px;
  background: linear-gradient(135deg, var(--radar), #1EA8D6);
  color: #04121a;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: .05em;
  font-weight: 700;
}

.plan .tier {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.plan .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 20px;
}

.plan .price span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
}

.plan ul {
  margin-bottom: 24px;
  flex: 1;
}

.plan li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  gap: 8px;
}

.plan li::before {
  content: '—';
  color: var(--radar);
}

.plan .btn {
  width: 100%;
  justify-content: center;
}

.burger {
  display: none;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  left: 7px;
  right: 7px;
  height: 1.5px;
  background: var(--text);
  transition: transform .2s, opacity .2s;
}

.burger span:nth-child(1) { top: 11px; }
.burger span:nth-child(2) { top: 16px; }
.burger span:nth-child(3) { top: 21px; }

.burger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
