/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0f14;
  color: #d6d6d6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0b0f14; }
::-webkit-scrollbar-thumb { background: #1f2b3a; border-radius: 3px; }


/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 60px;
  border-bottom: 1px solid #1c2633;
  background: rgba(13, 18, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .3s;
  overflow: hidden;
}
header.scrolled { border-bottom-color: #243347; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-badge {
  width: 32px; height: 32px;
  border: 1px solid #38bdf8;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0;
  background: rgba(56,189,248,0.06);
}
header h1 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 700;
}

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: #8aa0b6;
  padding: 6px 14px;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all .2s;
}
nav a:hover, nav a.active {
  color: #ffffff;
  border-color: #1f2b3a;
  background: rgba(255,255,255,0.03);
}

.nav-online {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #28c87a;
  letter-spacing: .08em;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid #1c2633;
}
.nav-online::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28c87a;
  box-shadow: 0 0 7px #28c87a;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── SECTION BASE ── */
section { position: relative; z-index: 1; }

.section-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 10px;
}
.section-title {
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 14px;
  color: #9fb3c8;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.55;
}

/* ── HERO ── */
.hero {
  padding: 15px 60px 10px;
  background: radial-gradient(ellipse at top left, #14202e 0%, #0b0f14 65%);
  min-height: 11vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 56px;
}
.hero-tag::before {
  content: '';
  width: 30px; height: 1px;
  background: #38bdf8;
  display: block;
}

.hero h2 {
  font-size: clamp(34px, 5vw, 58px);
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.hero h2 span { color: #38bdf8; }

.hero-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, #38bdf8, transparent);
  margin: 22px 0;
}

.hero p {
  max-width: 560px;
  color: #9fb3c8;
  line-height: 1.65;
  font-size: 15px;
  margin-bottom: 40px;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 11px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .22s;
  border: 1px solid #38bdf8;
  color: #38bdf8;
  background: transparent;
}
.btn:hover { background: rgba(56,189,248,0.08); box-shadow: 0 0 16px rgba(56,189,248,0.2); }
.btn-ghost {
  border-color: #1f2b3a;
  color: #9fb3c8;
  background: rgba(255,255,255,0.03);
}
.btn-ghost:hover { border-color: #2d3f54; color: #d6d6d6; box-shadow: none; }

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid #1c2633;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: 28px; font-weight: 700; color: #fff; }
.stat-num span { color: #38bdf8; }
.stat-lbl { font-size: 11px; color: #6b7c93; letter-spacing: .1em; text-transform: uppercase; }

/* ── PROJECTS ── */
.projects { padding: 90px 60px; background: #0d1219; }

.dash-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0f1720;
  border: 1px solid #1f2b3a;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 10px 18px;
  font-size: 12px;
  color: #6b7c93;
}
.dash-bar-status { display: flex; gap: 10px; align-items: center; }
.dash-bar-status span {
  display: inline-block;
  width: 18px; height: 4px;
  border-radius: 1px;
  background: #1f2b3a;
}
.dash-bar-status span.ds-active { background: #28c87a; }
.dash-bar-status span.ds-mid    { background: #075985; }
.dash-bar-status span.ds-dim    { background: #1f2b3a; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #1a2535;
  border: 1px solid #1f2b3a;
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.card {
  background: #121a24;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background .2s;
  cursor: default;
}
.card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #38bdf8;
  opacity: 0;
  transition: opacity .25s;
}
.card:hover { background: #131d29; }
.card:hover::after { opacity: 1; }

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.card-category {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 6px;
  font-family: 'Courier New', Courier, monospace;
}
.card h3 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.card-subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #5d7290;
  line-height: 1.45;
}
.card p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #9fb3c8;
  line-height: 1.65;
  margin-bottom: 14px;
  margin-top: 0;
}

.card-features {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-features li {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #7a96b0;
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
}
.card-features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: 600;
}

.status {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  white-space: nowrap;
}
.s-active   { background: rgba(40,200,122,0.1); color: #28c87a; border: 1px solid rgba(40,200,122,0.25); }
.s-progress { background: rgba(2,132,199,0.12); color: #7dd3fc; border: 1px solid rgba(2,132,199,0.3); }
.s-done     { background: rgba(107,124,147,0.1); color: #8aa0b6; border: 1px solid rgba(107,124,147,0.25); }
.s-planned  { background: rgba(240,165,0,0.1); color: #f0a500; border: 1px solid rgba(240,165,0,0.25); }

.card-tech { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.chip {
  padding: 2px 8px;
  background: rgba(56,189,248,0.05);
  border: 1px solid #1f2b3a;
  border-radius: 3px;
  font-size: 10px;
  color: #8aa0b6;
  letter-spacing: .04em;
}

.prog-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6b7c93;
  margin-bottom: 7px;
}
.prog-label span:last-child { color: #bae6fd; }

.progress {
  background: #1b2633;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #0284c7);
  border-radius: 4px;
  width: 0;
  transition: width 1.1s cubic-bezier(.4,0,.2,1);
}

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  padding: 28px 60px;
  border-top: 1px solid #1c2633;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: #6b7c93; }
.footer-copy span { color: #38bdf8; }
.footer-links { display: flex; gap: 18px; list-style: none; }
.footer-links a {
  font-size: 12px;
  color: #6b7c93;
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .2s;
}
.footer-links a:hover { color: #d6d6d6; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-btn {
  padding: 5px 14px;
  background: transparent;
  border: 1px solid #1f2b3a;
  border-radius: 4px;
  color: #6b7c93;
  font-size: 12px;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.filter-btn:hover,
.filter-btn.active { border-color: #38bdf8; color: #38bdf8; background: rgba(56,189,248,0.06); }
.card.hidden { display: none; }

/* ── ABOUT ── */
.about { padding: 90px 60px; background: #0b0f14; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 40px; }

/* ── EXPERIENCE TIMELINE ── */
.exp-timeline { position: relative; padding-left: 20px; border-left: 1px solid #1c2633; }
.timeline-item { position: relative; padding: 0 0 28px 24px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #38bdf8;
  border: 2px solid #0b0f14;
  box-shadow: 0 0 8px rgba(56,189,248,0.4);
}
.timeline-year { font-size: 11px; color: #38bdf8; font-family: 'Courier New', monospace; margin-bottom: 4px; }
.timeline-role { font-size: 15px; font-weight: 600; color: #d6d6d6; margin-bottom: 2px; }
.timeline-org  { font-size: 12px; color: #6b7c93; }

/* ── CONTACT ── */
.contact { padding: 90px 60px; background: #0d1219; }
.form-panel {
  background: #121a24;
  border: 1px solid #1f2b3a;
  border-radius: 8px;
  padding: 36px;
  max-width: 720px;
}
.form-label { display: block; font-size: 11px; color: #6b7c93; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.form-input {
  width: 100%;
  background: #0b0f14;
  border: 1px solid #1f2b3a;
  border-radius: 4px;
  padding: 10px 14px;
  color: #d6d6d6;
  font-size: 13px;
  font-family: inherit;
  transition: border-color .2s;
  outline: none;
}
.form-input:focus { border-color: #38bdf8; }
.form-textarea { min-height: 130px; resize: vertical; }
.form-btn { width: 100%; justify-content: center; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  padding: 12px 20px;
  background: #121a24;
  border: 1px solid #38bdf8;
  border-radius: 6px;
  color: #d6d6d6;
  font-size: 13px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s;
  pointer-events: none;
}
.toast.visible { opacity: 1; transform: none; }
.toast.toast-error { border-color: #f87171; color: #f87171; }

/* ── BURGER MENU ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 101;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: #d6d6d6;
  border-radius: 1px;
  transition: all .25s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(11,15,20,0.98);
  border-bottom: 1px solid #1c2633;
  padding: 8px 24px 16px;
  display: flex;
  flex-direction: column;
  z-index: 99;
  transform: translateY(-105%);
  transition: transform .3s ease;
  backdrop-filter: blur(10px);
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  color: #8aa0b6;
  text-decoration: none;
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #1c2633;
}
.mobile-nav a:last-of-type { border-bottom: none; }

/* ── PROJECT DETAIL ── */
.project-detail { padding: 100px 60px 90px; min-height: 100vh; }
.project-detail-hero { margin-bottom: 48px; }
.project-detail-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.project-detail h1 { font-size: clamp(28px, 4vw, 44px); color: #fff; font-weight: 700; margin-bottom: 8px; }
.project-detail-subtitle { font-size: 16px; color: #6b7c93; margin-bottom: 32px; }
.project-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.project-detail-image { width: 100%; border-radius: 8px; border: 1px solid #1f2b3a; }
.project-links { display: flex; gap: 12px; margin-top: 28px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7c93;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 32px;
  transition: color .2s;
}
.back-link:hover { color: #38bdf8; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 0 24px; }
  .hero, .projects, footer { padding-left: 24px; padding-right: 24px; }
  nav a { display: none; }
  .nav-online { display: none; }
  .burger { display: flex; }
  .grid { grid-template-columns: 1fr; }
  .about-grid, .project-detail-grid { grid-template-columns: 1fr; }
  .about, .contact { padding-left: 24px; padding-right: 24px; }
  .project-detail { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 520px) {
  .hero h2 { font-size: 32px; }
  .hero-stats { gap: 22px; }
  .form-panel { padding: 20px; }
}

/* ── ROADMAP ── */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rm-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: #0f1720;
  border: 1px solid #1f2b3a;
  border-left: 3px solid #1f2b3a;
  border-radius: 6px;
  transition: background .2s;
}
.rm-item:hover { background: #121d2b; }
.rm-icon {
  width: 18px;
  flex-shrink: 0;
  font-size: 13px;
  text-align: center;
  font-family: 'Courier New', monospace;
}
.rm-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.4;
}
.rm-done  { border-left-color: #28c87a; }
.rm-done .rm-icon  { color: #28c87a; }
.rm-done .rm-title { color: #9fb3c8; text-decoration: line-through; text-decoration-color: #3d5a47; }
.rm-active  { border-left-color: #38bdf8; }
.rm-active .rm-icon  { color: #38bdf8; }
.rm-active .rm-title { color: #d6d6d6; }
.rm-planned  { border-left-color: #1f2b3a; }
.rm-planned .rm-icon  { color: #3d5166; }
.rm-planned .rm-title { color: #6b7c93; }

/* ── MAINTENANCE FULL-SCREEN ── */
.maintenance-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #080c10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ms-bg-icons {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ms-content { position: relative; z-index: 1; }

.ms-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  padding: 40px 24px;
}

.ms-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .35em;
  color: #38bdf8;
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: .7;
}

/* ─ Solar system ─ */
.ms-solar {
  position: relative;
  width: 340px;
  height: 340px;
  margin-bottom: 52px;
}

.ms-sun {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #fff9c4, #ffd700 45%, #ff8f00);
  box-shadow:
    0 0 12px #ffd700,
    0 0 30px rgba(255,165,0,.6),
    0 0 60px rgba(255,100,0,.3),
    0 0 90px rgba(255,80,0,.15);
  animation: ms-sun-pulse 3.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes ms-sun-pulse {
  0%,100% { box-shadow: 0 0 12px #ffd700, 0 0 30px rgba(255,165,0,.6), 0 0 60px rgba(255,100,0,.3); }
  50%      { box-shadow: 0 0 20px #ffd700, 0 0 50px rgba(255,165,0,.8), 0 0 90px rgba(255,100,0,.4); }
}

/* Orbit rings (visual only, не вращаются) */
.ms-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(56,189,248,.1);
  transform: translate(-50%,-50%);
}
.ms-ring-1 { width:  60px; height:  60px; }
.ms-ring-2 { width: 100px; height: 100px; }
.ms-ring-3 { width: 144px; height: 144px; }
.ms-ring-4 { width: 192px; height: 192px; }
.ms-ring-5 { width: 258px; height: 258px; }
.ms-ring-6 { width: 336px; height: 336px; }

/* Orbiting containers */
.ms-orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform-origin: 50% 50%;
}
/* Реальные периоды обращения, Меркурий = 4с */
.ms-orbit-1 { width:  60px; height:  60px; margin: -30px 0 0 -30px; animation: ms-spin   4s linear infinite; } /* Меркурий  0.241 лет */
.ms-orbit-2 { width: 100px; height: 100px; margin: -50px 0 0 -50px; animation: ms-spin  10s linear infinite; } /* Венера    0.615 лет */
.ms-orbit-3 { width: 144px; height: 144px; margin: -72px 0 0 -72px; animation: ms-spin  17s linear infinite; } /* Земля     1.000 лет */
.ms-orbit-4 { width: 192px; height: 192px; margin: -96px 0 0 -96px; animation: ms-spin  31s linear infinite; } /* Марс      1.881 лет */
.ms-orbit-5 { width: 258px; height: 258px; margin:-129px 0 0-129px; animation: ms-spin 197s linear infinite; } /* Юпитер   11.86  лет */
.ms-orbit-6 { width: 336px; height: 336px; margin:-168px 0 0-168px; animation: ms-spin 489s linear infinite; } /* Сатурн   29.46  лет */

@keyframes ms-spin {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* Планеты */
.ms-planet {
  position: absolute;
  top: 0; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* Меркурий — серый, маленький */
.ms-p1 {
  width: 7px; height: 7px;
  background: radial-gradient(circle at 35% 30%, #d0d0d0, #757575);
  box-shadow: 0 0 4px rgba(180,180,180,.6);
}
/* Венера — бледно-жёлтый */
.ms-p2 {
  width: 10px; height: 10px;
  background: radial-gradient(circle at 35% 30%, #fff9c4, #f5c518 60%, #e8a000);
  box-shadow: 0 0 6px #f5c518, 0 0 14px rgba(245,197,24,.4);
}
/* Земля — синий */
.ms-p3 {
  width: 10px; height: 10px;
  background: radial-gradient(circle at 35% 30%, #b3e5fc, #1565c0 60%, #0d47a1);
  box-shadow: 0 0 6px #42a5f5, 0 0 14px rgba(66,165,245,.4);
}
/* Марс — красно-оранжевый */
.ms-p4 {
  width: 8px; height: 8px;
  background: radial-gradient(circle at 35% 30%, #ffccbc, #e53935 60%, #b71c1c);
  box-shadow: 0 0 5px #e53935, 0 0 12px rgba(229,57,53,.4);
}
/* Юпитер — крупный, полосатый оранжево-коричневый */
.ms-p5 {
  width: 18px; height: 18px;
  background: radial-gradient(circle at 35% 30%, #ffe0b2, #e8a87c 40%, #bf7840 70%, #a0522d);
  box-shadow: 0 0 8px #e8a87c, 0 0 18px rgba(232,168,124,.45);
}
/* Сатурн — золотистый */
.ms-p6 {
  width: 14px; height: 14px;
  background: radial-gradient(circle at 35% 30%, #fff9c4, #ffd54f 50%, #f9a825);
  box-shadow: 0 0 7px #ffd54f, 0 0 16px rgba(255,213,79,.45);
  position: relative;
}
/* Кольца Сатурна */
.ms-saturn-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,213,79,.55);
  pointer-events: none;
}

/* Text */
.ms-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.ms-sub {
  font-size: 14px;
  color: #6b7c93;
  max-width: 360px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.ms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #28c87a;
  border: 1px solid rgba(40,200,122,.3);
  border-radius: 20px;
  padding: 7px 18px;
  background: rgba(40,200,122,.06);
}
.ms-badge span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28c87a;
  animation: ms-blink 1.4s ease-in-out infinite;
}
@keyframes ms-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .2; }
}

@media (max-width: 520px) {
  .ms-solar { width: 230px; height: 230px; }
  .ms-ring-5, .ms-orbit-5,
  .ms-ring-6, .ms-orbit-6 { display: none; }
  .ms-ring-4 { width: 210px; height: 210px; }
  .ms-orbit-4 { width: 210px; height: 210px; margin: -105px 0 0 -105px; }
}
