:root {
  --bg: #040714;
  --bg-secondary: #070c22;
  --panel: rgba(11, 15, 32, 0.86);
  --panel-light: rgba(19, 25, 58, 0.82);
  --text: #e3e9ff;
  --muted: #93a3c7;
  --brand: #8b7bff;
  --brand-soft: #c3baff;
  --accent: #0fd4ff;
  --accent-secondary: #6ee7b7;
  --glow: rgba(15, 212, 255, 0.35);
  --glow-brand: rgba(139, 123, 255, 0.4);
  --radius: 24px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 12px rgba(2, 4, 14, 0.4);
  --shadow-md: 0 12px 32px rgba(2, 4, 14, 0.6);
  --shadow-lg: 0 24px 64px rgba(2, 4, 14, 0.8);
  --shadow-glow: 0 0 40px rgba(15, 212, 255, 0.3);
  font-family: "Inter", "HarmonyOS Sans", "Microsoft YaHei", sans-serif;
  color: var(--text);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(139, 123, 255, 0.25), transparent 50%),
    radial-gradient(circle at 88% 12%, rgba(15, 212, 255, 0.2), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(110, 231, 183, 0.15), transparent 60%),
    var(--bg);
  min-height: 100vh;
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

/* Navigation */
.mg-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(4, 7, 20, 0.75);
  border-bottom: 1px solid rgba(143, 123, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.mg-nav__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mg-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--text);
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.mg-brand:hover {
  opacity: 0.8;
}

.mg-brand strong {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mg-brand span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.mg-dot {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: var(--shadow-glow);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-dot__pulse {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: inherit;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.mg-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.mg-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.mg-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width 0.3s ease;
}

.mg-links a:hover {
  color: var(--text);
}

.mg-links a:hover::after {
  width: 100%;
}

/* Buttons */
.mg-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.mg-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mg-btn:hover::before {
  opacity: 1;
}

.mg-btn--primary {
  background: linear-gradient(135deg, #7366ff, #0fd4ff);
  color: #020817;
  box-shadow: 0 8px 24px rgba(15, 212, 255, 0.3);
}

.mg-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 212, 255, 0.4);
}

.mg-btn--secondary {
  background: transparent;
  border: 1.5px solid rgba(143, 123, 255, 0.5);
  color: var(--text);
}

.mg-btn--secondary:hover {
  background: rgba(143, 123, 255, 0.1);
  border-color: var(--brand);
}

.mg-btn--ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--muted);
}

.mg-btn--ghost:hover {
  background: rgba(143, 123, 255, 0.08);
  border-color: var(--brand);
  color: var(--text);
}

.mg-btn svg {
  transition: transform 0.3s ease;
}

.mg-btn:hover svg {
  transform: translateX(4px);
}

/* AI Partners Marquee */
.mg-ai-partners {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 40px 0;
  background: rgba(4, 7, 20, 0.8);
  border-top: 1px solid rgba(143, 123, 255, 0.2);
  border-bottom: 1px solid rgba(143, 123, 255, 0.2);
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
}

.mg-ai-partners__container {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(20px, 4vw, 48px);
}

.mg-ai-partners__label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.mg-ai-partners__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.mg-ai-partners__track {
  display: flex;
  gap: 40px;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.mg-ai-partners__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.mg-ai-partner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 12px;
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 160px;
}

.mg-ai-partner:hover {
  border-color: var(--brand);
  background: rgba(11, 15, 32, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(143, 123, 255, 0.2);
}

.mg-ai-partner__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.3), rgba(15, 212, 255, 0.3));
  border: 1px solid rgba(143, 123, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-soft);
  flex-shrink: 0;
}

.mg-ai-partner__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Value Proposition Section */
.mg-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mg-value-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mg-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mg-value-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mg-value-card:hover::before {
  transform: scaleX(1);
}

.mg-value-card--primary {
  background: rgba(11, 15, 32, 0.85);
  border-color: rgba(143, 123, 255, 0.35);
}

.mg-value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.2), rgba(15, 212, 255, 0.2));
  border: 1px solid rgba(143, 123, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand-soft);
}

.mg-value-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.mg-value-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.mg-value-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mg-value-card__list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.mg-value-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: 700;
}

.mg-value-card__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mg-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mg-step__num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.3), rgba(15, 212, 255, 0.3));
  border: 1px solid rgba(143, 123, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.mg-step__text {
  font-size: 14px;
  color: var(--text);
}

.mg-value-card__caps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mg-cap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(4, 7, 20, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
}

.mg-cap__label {
  font-size: 13px;
  color: var(--muted);
}

.mg-cap__value {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Showcase Section */
.mg-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.mg-showcase__left {
  position: sticky;
  top: 100px;
}

.mg-showcase__highlight {
  margin-top: 32px;
}

.mg-highlight {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.15), rgba(15, 212, 255, 0.15));
  border: 1px solid rgba(143, 123, 255, 0.3);
  text-align: center;
}

.mg-highlight__value {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.mg-highlight__label {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.mg-highlight__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.mg-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mg-showcase-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mg-showcase-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mg-showcase-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.mg-showcase-card__value {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.mg-showcase-card__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.mg-showcase-card__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* Pricing Section */
.mg-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.mg-pricing-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mg-pricing-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mg-pricing-card--featured {
  background: rgba(11, 15, 32, 0.85);
  border: 2px solid var(--brand);
  box-shadow: 0 0 40px rgba(143, 123, 255, 0.2);
}

.mg-pricing-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(143, 123, 255, 0.2);
  border: 1px solid rgba(143, 123, 255, 0.4);
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mg-pricing-card__badge--featured {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-color: var(--brand);
  color: #020817;
}

.mg-pricing-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  margin-top: 8px;
}

.mg-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.mg-pricing-card__price-old {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}

.mg-pricing-card__price-current {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mg-pricing-card__price-unit {
  font-size: 16px;
  color: var(--muted);
}

.mg-pricing-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.mg-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mg-pricing-card__features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.mg-pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: 700;
  font-size: 16px;
}

.mg-pricing-card .mg-btn {
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.mg-hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.mg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mg-hero__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(143, 123, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 123, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.mg-hero__particles {
  position: absolute;
  inset: 0;
}

.mg-hero__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: float 15s infinite ease-in-out;
}

.mg-hero__particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.mg-hero__particles span:nth-child(2) { left: 20%; animation-delay: 2s; }
.mg-hero__particles span:nth-child(3) { left: 30%; animation-delay: 4s; }
.mg-hero__particles span:nth-child(4) { left: 40%; animation-delay: 6s; }
.mg-hero__particles span:nth-child(5) { left: 50%; animation-delay: 8s; }
.mg-hero__particles span:nth-child(6) { left: 60%; animation-delay: 10s; }
.mg-hero__particles span:nth-child(7) { left: 70%; animation-delay: 12s; }
.mg-hero__particles span:nth-child(8) { left: 80%; animation-delay: 14s; }
.mg-hero__particles span:nth-child(9) { left: 90%; animation-delay: 16s; }
.mg-hero__particles span:nth-child(10) { left: 95%; animation-delay: 18s; }

@keyframes float {
  0%, 100% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}

.mg-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px clamp(24px, 5vw, 64px) 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
  min-height: calc(100vh - 80px);
}

.mg-hero__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 1000px;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}

.mg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(143, 123, 255, 0.15);
  border: 1px solid rgba(143, 123, 255, 0.3);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-soft);
  width: fit-content;
}

.mg-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.mg-hero__title {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mg-hero__title-line {
  display: block;
  margin-bottom: 2px;
}

.mg-hero__title-highlight {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mg-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
  margin-top: 0;
}

.mg-hero__actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mg-hero__actions-row::-webkit-scrollbar {
  display: none;
}

.mg-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mg-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(143, 123, 255, 0.12);
  border: 1px solid rgba(143, 123, 255, 0.25);
  font-size: 13px;
  color: var(--brand-soft);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.mg-chip:hover {
  background: rgba(143, 123, 255, 0.2);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.mg-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.mg-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 0;
}

.mg-hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(143, 123, 255, 0.15);
}

.mg-hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(11, 15, 32, 0.5);
  border: 1px solid rgba(143, 123, 255, 0.15);
  transition: all 0.3s ease;
}

.mg-hero-feature:hover {
  border-color: rgba(143, 123, 255, 0.3);
  background: rgba(11, 15, 32, 0.7);
  transform: translateY(-2px);
}

.mg-hero-feature__icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.2), rgba(15, 212, 255, 0.2));
  border: 1px solid rgba(143, 123, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mg-hero-feature__content {
  flex: 1;
  min-width: 0;
}

.mg-hero-feature__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.mg-hero-feature__desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.mg-hero__trust {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(143, 123, 255, 0.15);
}

.mg-hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
}

.mg-hero-trust__label {
  color: var(--muted);
}

.mg-hero-trust__value {
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mg-stat {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(7, 10, 32, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
  backdrop-filter: blur(10px);
}

.mg-stat__value {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.mg-stat__label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* HUD */
.mg-hero__hud {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.mg-hud {
  background: rgba(7, 10, 32, 0.85);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(143, 123, 255, 0.3);
  box-shadow: 
    var(--shadow-lg),
    inset 0 0 60px rgba(15, 212, 255, 0.1);
  backdrop-filter: blur(20px);
  width: 100%;
  height: fit-content;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}

.mg-hud__header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(143, 123, 255, 0.2);
}

.mg-hud__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.mg-hud__status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 16px var(--accent-secondary);
  animation: pulse 2s ease-in-out infinite;
}

.mg-hud__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mg-hud__metric {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(11, 15, 32, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
}

.mg-hud__metric-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.mg-hud__metric-value {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.mg-hud__metric-value span {
  font-size: 24px;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
}

.mg-hud__chart {
  height: 80px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(4, 7, 20, 0.5);
}

.mg-hud__chart-line {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 100%, rgba(139, 123, 255, 0.6), transparent 70%);
  animation: chartWave 8s ease-in-out infinite;
}

.mg-hud__chart-line--accent {
  background: radial-gradient(circle at 100% 0, rgba(15, 212, 255, 0.5), transparent 65%);
  animation-delay: -3s;
}

@keyframes chartWave {
  0%, 100% {
    transform: scaleX(0.8) translateX(-10%);
  }
  50% {
    transform: scaleX(1.1) translateX(10%);
  }
}

.mg-hud__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mg-hud__item {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(11, 15, 32, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
  transition: all 0.3s ease;
}

.mg-hud__item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mg-hud__item-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.mg-hud__item-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.mg-hud__item-desc {
  font-size: 11px;
  color: var(--muted);
}

.mg-hud__footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(143, 123, 255, 0.2);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

/* Sections */
.mg-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 0;
  padding: 40px clamp(20px, 4vw, 48px);
  position: relative;
}

.mg-section__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.mg-section__header {
  max-width: 800px;
  margin-bottom: 24px;
}

.mg-section__label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(143, 123, 255, 0.15);
  border: 1px solid rgba(143, 123, 255, 0.3);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-soft);
  margin-bottom: 8px;
}

.mg-section__title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.mg-section__desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.mg-section--glass {
  background: rgba(7, 11, 30, 0.6);
  border-left: 1px solid rgba(143, 123, 255, 0.2);
  border-right: 1px solid rgba(143, 123, 255, 0.2);
  backdrop-filter: blur(20px);
}

.mg-section--dark {
  background: linear-gradient(135deg, rgba(5, 8, 22, 0.85), rgba(5, 14, 36, 0.75));
  border-left: 1px solid rgba(15, 212, 255, 0.15);
  border-right: 1px solid rgba(15, 212, 255, 0.15);
}

.mg-section--command {
  background: rgba(8, 11, 32, 0.8);
  border-left: 1px solid rgba(143, 123, 255, 0.25);
  border-right: 1px solid rgba(143, 123, 255, 0.25);
}

/* Canvas */
.mg-canvas {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
  align-items: start;
}

.mg-canvas__stages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mg-stage {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.mg-stage:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mg-stage__glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(143, 123, 255, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mg-stage:hover .mg-stage__glow {
  opacity: 1;
}

.mg-stage__number {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.2), rgba(15, 212, 255, 0.2));
  border: 1px solid rgba(143, 123, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-soft);
}

.mg-stage__content {
  position: relative;
  z-index: 1;
  padding-right: 50px;
}

.mg-stage__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.mg-stage__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 10px;
}

.mg-stage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mg-tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(143, 123, 255, 0.1);
  border: 1px solid rgba(143, 123, 255, 0.2);
  font-size: 12px;
  color: var(--brand-soft);
}

.mg-canvas__panel {
  position: sticky;
  top: 100px;
}

.mg-panel {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.8);
  border: 1px solid rgba(143, 123, 255, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.mg-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(143, 123, 255, 0.2);
  font-size: 14px;
  color: var(--text);
}

.mg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(15, 212, 255, 0.15);
  border: 1px solid rgba(15, 212, 255, 0.3);
  font-size: 11px;
  color: var(--accent);
}

.mg-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.mg-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.mg-panel__stat {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(4, 7, 20, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
  text-align: center;
}

.mg-panel__stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.mg-panel__stat-value {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.mg-panel__stat-desc {
  font-size: 11px;
  color: var(--muted);
}

.mg-panel__note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(4, 7, 20, 0.4);
  border: 1px solid rgba(143, 123, 255, 0.15);
}

/* Lab / Timeline */
.mg-lab {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.mg-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-left: 20px;
}

.mg-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  opacity: 0.3;
}

.mg-timeline__item {
  position: relative;
  padding-left: 24px;
}

.mg-timeline__marker {
  position: absolute;
  left: -8px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--bg);
  box-shadow: 0 0 20px rgba(139, 123, 255, 0.6);
}

.mg-timeline__time {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brand-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mg-timeline__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.mg-timeline__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.mg-case {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.3);
  backdrop-filter: blur(10px);
}

.mg-case__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.mg-case__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.mg-case__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mg-case__stat {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(4, 7, 20, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
}

.mg-case__stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.mg-case__stat-value {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features Section */
.mg-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mg-feature-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mg-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mg-feature-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mg-feature-card:hover::before {
  transform: scaleX(1);
}

.mg-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.2), rgba(15, 212, 255, 0.2));
  border: 1px solid rgba(143, 123, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--brand-soft);
}

.mg-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.mg-feature-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
}

.mg-feature-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mg-feature-card__list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.mg-feature-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: 700;
}

/* Use Cases Section */
.mg-use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mg-use-case {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mg-use-case:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mg-use-case__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mg-use-case__icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.2), rgba(15, 212, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(143, 123, 255, 0.3);
}

.mg-use-case__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.mg-use-case__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
}

.mg-use-case__metrics {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(143, 123, 255, 0.15);
}

.mg-use-case__metric {
  flex: 1;
  text-align: center;
}

.mg-use-case__metric-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.mg-use-case__metric-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Partners Section */
.mg-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mg-partner {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.mg-partner:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mg-partner__logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.3), rgba(15, 212, 255, 0.3));
  border: 1px solid rgba(143, 123, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 12px;
  font-weight: 700;
}

.mg-partner__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.mg-partner__result {
  font-size: 13px;
  color: var(--accent-secondary);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.1);
  border: 1px solid rgba(110, 231, 183, 0.2);
  display: inline-block;
}

/* FAQ Section */
.mg-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.mg-faq__item {
  border-radius: var(--radius);
  background: rgba(11, 15, 32, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.mg-faq__item:hover {
  border-color: var(--brand);
}

.mg-faq__question {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}

.mg-faq__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--brand);
}

.mg-faq__item.active .mg-faq__icon {
  transform: rotate(180deg);
}

.mg-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mg-faq__item.active .mg-faq__answer {
  max-height: 500px;
  padding: 0 20px 16px;
}

.mg-faq__answer p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* Stats Grid */
.mg-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mg-stat-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.25);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mg-stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(143, 123, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mg-stat-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mg-stat-card:hover::before {
  opacity: 1;
}

.mg-stat-card__value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.mg-stat-card__label {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.mg-stat-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Contact Form */
.mg-contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.mg-form {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mg-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mg-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.mg-form__input,
.mg-form__textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(143, 123, 255, 0.3);
  background: rgba(4, 7, 20, 0.6);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.mg-form__input:focus,
.mg-form__textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(143, 123, 255, 0.1);
}

.mg-form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.mg-footer {
  padding: 24px clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(143, 123, 255, 0.2);
  background: linear-gradient(180deg, rgba(3, 5, 16, 0.6), rgba(2, 3, 10, 0.9));
  text-align: center;
}

.mg-footer__container {
  max-width: 1400px;
  margin: 0 auto;
}

.mg-footer p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.mg-footer p:last-child {
  margin-bottom: 0;
}

/* Scroll Progress Indicator */
.mg-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  z-index: 1000;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(15, 212, 255, 0.5);
}

/* Back to Top Button */
.mg-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border: none;
  color: #020817;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mg-back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(15, 212, 255, 0.4);
}

.mg-back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Fade In Animation */
.mg-stage,
.mg-timeline__item,
.mg-case,
.mg-panel,
.mg-stat {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mg-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.mg-stage.mg-fade-in {
  transition-delay: 0.1s;
}

.mg-timeline__item.mg-fade-in {
  transition-delay: 0.2s;
}

.mg-case.mg-fade-in {
  transition-delay: 0.1s;
}

/* Form Validation States */
.mg-form__input--error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
  animation: shake 0.4s ease;
}

.mg-form__input--valid {
  border-color: var(--accent-secondary) !important;
  box-shadow: 0 0 0 3px rgba(110, 231, 183, 0.1) !important;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

/* Tooltip */
.mg-tooltip {
  position: absolute;
  padding: 8px 12px;
  background: rgba(11, 15, 32, 0.95);
  border: 1px solid rgba(143, 123, 255, 0.3);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text);
  pointer-events: none;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
  z-index: 10000;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.mg-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(11, 15, 32, 0.95);
}

.mg-tooltip--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Hover Effects */
.mg-chip,
.mg-tag {
  position: relative;
  overflow: hidden;
}

.mg-chip::before,
.mg-tag::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(143, 123, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.mg-chip:hover::before,
.mg-tag:hover::before {
  width: 200px;
  height: 200px;
}

/* Loading States */
.mg-btn--loading {
  pointer-events: none;
  position: relative;
  color: transparent;
}

.mg-btn--loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Enhanced Card Interactions */
.mg-stat {
  position: relative;
  overflow: hidden;
}

.mg-stat::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(143, 123, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mg-stat:hover::after {
  opacity: 1;
}

/* Progress Indicators */
.mg-progress {
  width: 100%;
  height: 6px;
  background: rgba(143, 123, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.mg-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: inherit;
  transition: width 1s ease;
  position: relative;
  overflow: hidden;
}

.mg-progress__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Enhanced Timeline */
.mg-timeline__item {
  transition: all 0.3s ease;
}

.mg-timeline__item:hover {
  transform: translateX(8px);
}

.mg-timeline__item:hover .mg-timeline__marker {
  box-shadow: 0 0 30px rgba(139, 123, 255, 0.8);
  transform: scale(1.2);
}

.mg-timeline__marker {
  transition: all 0.3s ease;
}

/* Enhanced HUD Items */
.mg-hud__item {
  position: relative;
}

.mg-hud__item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mg-hud__item:hover::before {
  opacity: 1;
}

.mg-hud__item-value {
  position: relative;
  display: inline-block;
}

.mg-hud__item:hover .mg-hud__item-value {
  animation: numberPulse 0.6s ease;
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Section Entrance Animation */
.mg-section {
  position: relative;
}

.mg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mg-section.mg-fade-in::before {
  opacity: 0.5;
  animation: sectionLine 1.5s ease;
}

@keyframes sectionLine {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* Enhanced Stage Cards */
.mg-stage {
  cursor: pointer;
}

.mg-stage__content {
  position: relative;
  z-index: 2;
}

.mg-stage:hover .mg-stage__number {
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.4), rgba(15, 212, 255, 0.4));
  transform: rotate(5deg) scale(1.05);
}

/* Loading Skeleton */
.mg-skeleton {
  background: linear-gradient(90deg, 
    rgba(143, 123, 255, 0.1) 0%, 
    rgba(143, 123, 255, 0.2) 50%, 
    rgba(143, 123, 255, 0.1) 100%);
  background-size: 200% 100%;
  animation: skeleton 1.5s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Notification Toast */
.mg-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 16px 24px;
  background: rgba(11, 15, 32, 0.95);
  border: 1px solid rgba(143, 123, 255, 0.3);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  backdrop-filter: blur(20px);
}

.mg-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mg-toast--success {
  border-color: var(--accent-secondary);
}

.mg-toast--error {
  border-color: #ef4444;
}

/* Enhanced Navigation Active State */
.mg-links a[href*="#"] {
  position: relative;
}

.mg-links a.active {
  color: var(--text);
}

.mg-links a.active::after {
  width: 100%;
}

/* Smooth Number Transitions */
.mg-stat__value,
.mg-hud__metric-value,
.mg-case__stat-value {
  transition: all 0.3s ease;
}

/* Enhanced Form Submit Button */
.mg-form button[type="button"]:active {
  transform: scale(0.98);
}

/* Keyboard Navigation */
.mg-btn:focus-visible,
.mg-form__input:focus-visible,
.mg-form__textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Section Divider */
.mg-section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 123, 255, 0.3), transparent);
  margin: 80px 0;
}

/* Enhanced Form Input Focus */
.mg-form__input:focus,
.mg-form__textarea:focus {
  background: rgba(4, 7, 20, 0.8);
}

.mg-form__group {
  position: relative;
}

.mg-form__label {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}

.mg-form__label::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.mg-form__input:focus ~ .mg-form__label::after,
.mg-form__textarea:focus ~ .mg-form__label::after {
  width: 100%;
}

/* Enhanced Button Ripple Effect */
.mg-btn {
  position: relative;
  overflow: hidden;
}

.mg-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.mg-btn:active::after {
  width: 300px;
  height: 300px;
}

/* Responsive */
@media (max-width: 1200px) {
  .mg-hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .mg-canvas {
    grid-template-columns: 1fr;
  }
  
  .mg-canvas__panel {
    position: static;
  }
  
  .mg-lab {
    grid-template-columns: 1fr;
  }
  
  .mg-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mg-nav__inner {
    flex-wrap: wrap;
  }
  
  .mg-links {
    gap: 20px;
    font-size: 13px;
  }
  
  .mg-hero__container {
    padding: 24px 20px 24px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mg-hero__content {
    min-height: auto;
  }

  .mg-hero__features {
    grid-template-columns: 1fr;
  }

  .mg-hero-trust {
    justify-content: center;
    text-align: center;
  }
  
  .mg-hero__stats {
    grid-template-columns: 1fr;
  }
  
  .mg-hud__grid {
    grid-template-columns: 1fr;
  }
  
  .mg-panel__stats {
    grid-template-columns: 1fr;
  }
  
  .mg-case__stats {
    grid-template-columns: 1fr;
  }
  
  .mg-section {
    padding: 32px 20px;
  }

  .mg-ai-partners {
    padding: 24px 0;
  }

  .mg-ai-partners__label {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .mg-ai-partners__track {
    gap: 24px;
  }

  .mg-ai-partner {
    padding: 10px 16px;
    min-width: 120px;
    gap: 10px;
  }

  .mg-ai-partner__icon {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .mg-ai-partner__name {
    font-size: 13px;
  }
  
  .mg-stage__content {
    padding-right: 0;
  }
  
  .mg-stage__number {
    position: static;
    margin-bottom: 16px;
  }

  .mg-back-to-top {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }

  .mg-features {
    grid-template-columns: 1fr;
  }

  .mg-use-cases {
    grid-template-columns: 1fr;
  }

  .mg-partners {
    grid-template-columns: 1fr;
  }

  .mg-stats-grid {
    grid-template-columns: 1fr;
  }

  .mg-value-grid {
    grid-template-columns: 1fr;
  }

  .mg-showcase {
    grid-template-columns: 1fr;
  }

  .mg-showcase__left {
    position: static;
  }

  .mg-showcase__grid {
    grid-template-columns: 1fr;
  }

  .mg-pricing {
    grid-template-columns: 1fr;
  }
}

/* 404 Page */
.mg-404 {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.mg-404__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mg-404__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(143, 123, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 123, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

.mg-404__particles {
  position: absolute;
  inset: 0;
}

.mg-404__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(15, 212, 255, 0.6);
  border-radius: 50%;
  animation: particle-float 20s infinite ease-in-out;
  opacity: 0;
}

.mg-404__particles span:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.mg-404__particles span:nth-child(2) {
  left: 80%;
  top: 30%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.mg-404__particles span:nth-child(3) {
  left: 30%;
  top: 70%;
  animation-delay: 4s;
  animation-duration: 20s;
}

.mg-404__particles span:nth-child(4) {
  left: 70%;
  top: 80%;
  animation-delay: 1s;
  animation-duration: 16s;
}

.mg-404__particles span:nth-child(5) {
  left: 50%;
  top: 10%;
  animation-delay: 3s;
  animation-duration: 22s;
}

.mg-404__particles span:nth-child(6) {
  left: 20%;
  top: 50%;
  animation-delay: 5s;
  animation-duration: 17s;
}

.mg-404__particles span:nth-child(7) {
  left: 90%;
  top: 60%;
  animation-delay: 2.5s;
  animation-duration: 19s;
}

.mg-404__particles span:nth-child(8) {
  left: 40%;
  top: 90%;
  animation-delay: 1.5s;
  animation-duration: 21s;
}

.mg-404__particles span:nth-child(9) {
  left: 60%;
  top: 40%;
  animation-delay: 4.5s;
  animation-duration: 18s;
}

.mg-404__particles span:nth-child(10) {
  left: 15%;
  top: 15%;
  animation-delay: 3.5s;
  animation-duration: 20s;
}

.mg-404__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px clamp(24px, 5vw, 64px);
  text-align: center;
}

.mg-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mg-404__number {
  font-size: clamp(120px, 20vw, 200px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.mg-404__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.mg-404__desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 8px;
}

.mg-404__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Article Pages */
.mg-article {
  min-height: 100vh;
  padding: 0;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding-top: 80px;
}

.mg-article__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mg-article__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(143, 123, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 123, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

.mg-article__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px clamp(24px, 5vw, 64px) 80px;
}

.mg-article__header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(143, 123, 255, 0.2);
}

.mg-article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
}

.mg-article__category {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(143, 123, 255, 0.15);
  border: 1px solid rgba(143, 123, 255, 0.3);
  color: var(--brand-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}

.mg-article__date {
  color: var(--muted);
}

.mg-article__title {
  font-size: clamp(42px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.mg-article__subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 900px;
  margin: 0 auto;
}

.mg-article__content {
  max-width: 1000px;
  margin: 0 auto;
}

.mg-article-section {
  margin-bottom: 48px;
}

.mg-article-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(143, 123, 255, 0.2);
}

.mg-article-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 16px;
}

.mg-article-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}

.mg-article-section ul,
.mg-article-section ol {
  margin: 20px 0;
  padding-left: 24px;
}

.mg-article-section li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 12px;
}

.mg-article-section strong {
  color: var(--text);
  font-weight: 600;
}

.mg-article-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.25);
  backdrop-filter: blur(10px);
  margin: 24px 0;
  transition: all 0.3s ease;
}

.mg-article-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.mg-article-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 22px;
}

.mg-article-card ul {
  margin-top: 16px;
}

.mg-article-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.mg-article-stat {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.25);
  text-align: center;
}

.mg-article-stat__value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.mg-article-stat__label {
  font-size: 14px;
  color: var(--muted);
}

.mg-article-stat__desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

.mg-article-list {
  list-style: none;
  padding: 0;
  counter-reset: item;
}

.mg-article-list li {
  counter-increment: item;
  padding-left: 40px;
  position: relative;
  margin-bottom: 20px;
}

.mg-article-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(143, 123, 255, 0.3), rgba(15, 212, 255, 0.3));
  border: 1px solid rgba(143, 123, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.mg-article-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.mg-article-metric {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(11, 15, 32, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
}

.mg-article-metric h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.mg-article-metric p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.mg-article-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.mg-article-feature {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(11, 15, 32, 0.6);
  border: 1px solid rgba(143, 123, 255, 0.2);
}

.mg-article-feature strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.mg-article-feature p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.mg-article__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(143, 123, 255, 0.2);
}

.mg-chip {
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.mg-chip:hover {
  text-decoration: none;
}

/* Comparison Table */
.mg-article-comparison {
  margin: 32px 0;
}

.mg-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(11, 15, 32, 0.7);
  border: 1px solid rgba(143, 123, 255, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mg-comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(143, 123, 255, 0.15);
}

.mg-comparison-row:last-child {
  border-bottom: none;
}

.mg-comparison-row--header {
  background: rgba(143, 123, 255, 0.15);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.mg-comparison-cell {
  padding: 16px 20px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  background: rgba(11, 15, 32, 0.5);
}

.mg-comparison-row--header .mg-comparison-cell {
  color: var(--brand-soft);
  background: rgba(143, 123, 255, 0.15);
}

.mg-comparison-row:not(.mg-comparison-row--header):hover .mg-comparison-cell {
  background: rgba(143, 123, 255, 0.1);
}

/* Code Block */
.mg-code-block {
  background: rgba(11, 15, 32, 0.9);
  border: 1px solid rgba(143, 123, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
  overflow-x: auto;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: #e6e6e6;
}

.mg-code-block code {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  padding: 0;
  border: none;
}

@media (max-width: 960px) {
  .mg-comparison-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mg-comparison-cell {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(143, 123, 255, 0.1);
  }

  .mg-comparison-row--header {
    display: none;
  }

  .mg-comparison-row:not(.mg-comparison-row--header) .mg-comparison-cell:first-child {
    font-weight: 700;
    background: rgba(143, 123, 255, 0.1);
    border-bottom: 2px solid rgba(143, 123, 255, 0.3);
  }
}

@media (max-width: 960px) {
  .mg-article__container {
    padding: 40px 24px 60px;
  }

  .mg-article__title {
    font-size: 36px;
  }

  .mg-article__subtitle {
    font-size: 18px;
  }

  .mg-article-section h2 {
    font-size: 28px;
  }

  .mg-article-stats {
    grid-template-columns: 1fr;
  }

  .mg-article-metrics,
  .mg-article-features {
    grid-template-columns: 1fr;
  }

  .mg-article__cta {
    flex-direction: column;
  }
}

/* Print Styles */
@media print {
  .mg-nav,
  .mg-back-to-top,
  .mg-scroll-progress {
    display: none;
  }
}
