:root {
  --bg: #070b18;
  --card: rgba(18, 25, 50, 0.8);
  --card-border: rgba(111, 132, 255, 0.38);
  --text: #eef3ff;
  --muted: #9db0d7;
  --brand: #5882ff;
  --brand-2: #26d7ff;
  --accent-red: #ff4a5e;
  --shadow: 0 22px 42px rgba(0, 0, 0, 0.35);
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  background:
    linear-gradient(110deg, rgba(38, 84, 255, 0.22), transparent 45%, rgba(255, 50, 72, 0.2) 100%),
    radial-gradient(circle at 10% 20%, rgba(39, 117, 255, 0.25), transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(255, 66, 90, 0.25), transparent 38%),
    var(--bg);
  overflow-x: hidden;
}
.bg-orb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  z-index: -1;
  animation: orbMove 13s ease-in-out infinite, orbPulse 4.6s ease-in-out infinite;
}
.orb-a { background: #304cff; left: -80px; top: 60px; }
.orb-b { background: #ff4564; right: -90px; bottom: 40px; animation-delay: 2s; }
@keyframes orbMove { 50% { transform: translateY(35px) scale(1.06); } }
@keyframes orbPulse { 50% { opacity: 0.6; } }

.container { width: min(1140px, 92%); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7, 11, 25, 0.7);
  border-bottom: 1px solid rgba(113, 143, 255, 0.23);
}
.topbar-row { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 800; letter-spacing: 0.4px; }
.brand-dot { width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(180deg, var(--brand-2), var(--brand)); box-shadow: 0 0 16px var(--brand-2); }

.nav { display: flex; gap: 9px; flex-wrap: wrap; }
.btn {
  border: 1px solid transparent;
  background: linear-gradient(180deg, #3f76ff, #2653cd);
  color: #fff;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s transform, 0.25s filter;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn.ghost { background: rgba(26, 39, 80, 0.6); border-color: rgba(132, 157, 255, 0.45); }
.btn-xl { padding: 12px 22px; font-size: 16px; }
.btn-mini { padding: 6px 10px; font-size: 12px; border-radius: 8px; }
.btn.cabinet-glow {
  background: linear-gradient(180deg, #6449ff, #3d2ac9);
  border-color: rgba(169, 145, 255, 0.7);
  box-shadow: 0 0 18px rgba(148, 116, 255, 0.65);
  animation: glowCab 2.2s ease-in-out infinite;
}
@keyframes glowCab { 50% { box-shadow: 0 0 28px rgba(148, 116, 255, 0.95); } }

.page { padding: 48px 0 24px; }
.hero { padding: 44px 0 26px; }
.chip {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 1.5px;
  border: 1px solid rgba(145, 171, 255, 0.5);
  border-radius: 999px;
  padding: 6px 10px;
  color: #b8cbf7;
}
h1 { margin: 0; font-size: clamp(36px, 6vw, 66px); line-height: 1.05; }
.lead { max-width: 700px; color: var(--muted); margin-top: 16px; font-size: 18px; line-height: 1.5; }
.hero-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

.cards-3, .cards-2, .plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card, .plan-card {
  border: 1px solid var(--card-border);
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.feature-card { position: relative; overflow: hidden; }
.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.35;
}
.feature-a::after { background: #3f7dff; }
.feature-b::after { background: #ff4f76; }
.feature-c::after { background: #4ed0ff; }
.card h3, .plan-card h4 { margin-top: 0; }
.small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.accent-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.accent-item {
  border: 1px solid rgba(122, 143, 255, 0.4);
  background: rgba(20, 30, 60, 0.58);
  border-radius: 12px;
  padding: 14px;
  transform: translateY(0);
  transition: .25s;
}
.accent-item:hover { transform: translateY(-4px); }

.contact-card { text-align: center; }
.contact-link { color: #9fd6ff; text-decoration: none; font-size: 22px; font-weight: 700; }
.contact-link:hover { text-decoration: underline; }
.faq-item {
  border: 1px solid rgba(124, 147, 255, 0.28);
  background: rgba(17, 27, 58, 0.6);
  border-radius: 10px;
  padding: 11px;
  margin-bottom: 10px;
}

.reveal { opacity: 0; transform: translateY(18px) scale(0.99); transition: .55s ease; }
.reveal.show { opacity: 1; transform: translateY(0) scale(1); }

.status-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.ok { background: #67ff9a; box-shadow: 0 0 10px #67ff9a; }
.dot.bad { background: #ff5b72; box-shadow: 0 0 10px #ff5b72; }
.text-ok { color: #67ff9a; }
.text-bad { color: #ff5b72; }

.cabinet-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.cabinet-table td {
  border-bottom: 1px solid rgba(126, 144, 200, 0.24);
  padding: 10px;
  font-size: 14px;
}
.cabinet-table td:first-child {
  color: #b5c8f0;
  width: 220px;
}

.issued-key {
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid rgba(109, 248, 175, 0.5);
  background: rgba(26, 73, 47, 0.45);
  color: #a6ffd0;
  padding: 11px;
  font-weight: 600;
  word-break: break-word;
}
.footer { padding: 30px 0 44px; color: #8ea2ce; font-size: 13px; }
.hidden { display: none !important; }
.footer-nav {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.legal-mini { margin-top: 8px; }

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(129, 150, 233, 0.45);
  background: #091127;
  color: #fff;
}

.floating {
  animation: floating 3.2s ease-in-out infinite;
}
@keyframes floating {
  50% { transform: translateY(-6px); }
}
