/* 
  MonsterNode - Ultra-Premium Dark Aesthetic
  Strictly Black, White, Grey, and Deep Purple.
*/

:root {
  /* Core Palette */
  --bg: #000000;
  --surface: #0a0a0a;
  --surface-hover: #141414;
  
  /* Borders */
  --border: #262626;
  --border-light: #333333;
  
  /* Typography */
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-dim: #737373;
  
  /* Accents (Strictly Purple) */
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-glow: rgba(139, 92, 246, 0.15);
  
  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  
  /* Layout */
  --max-w: 1100px;
  --radius-lg: 16px;
  --radius-md: 8px;
  --radius-sm: 4px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: clip;
}

/* Hover effect for docs cards */
.docs-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple-500) !important;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}
.docs-card:hover svg {
  animation: pulse-ring 2s infinite;
}
.container {
  width: min(100% - 3rem, var(--max-w));
  margin-inline: auto;
}

.font-mono { font-family: var(--font-mono); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.dim { color: var(--text-dim); }
.purple { color: var(--purple-400); }
.mt-6 { margin-top: 1.5rem; }
.text-xs { font-size: 0.75rem; }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }

/* Text Gradient Effect */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--purple-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Backgrounds */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

.top-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 400px;
  background: radial-gradient(ellipse at top, var(--purple-glow), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.bg-subtle {
  background-color: var(--surface);
}

/* Glowing Purple Stars */
#stars-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.star {
  position: absolute;
  background-color: var(--purple-400);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px var(--purple-500);
  opacity: 0;
  animation: twinkle infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.05; transform: scale(0.8); }
  100% { opacity: 0.6; transform: scale(1.2); }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Buttons */
[class^="btn-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg);
}

.btn-primary:hover {
  background-color: #e5e5e5;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  background-color: var(--surface-hover);
  border-color: var(--purple-500);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

.btn-text {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.6rem 1rem;
}

.btn-text:hover {
  color: var(--text-primary);
}

.btn-lg {
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: var(--max-w);
  z-index: 100;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 0.75rem 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: none;
  gap: 0.25rem;
  align-items: center;
}

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

.nav-desktop a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-desktop a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-desktop a:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.nav-desktop a svg {
  opacity: 0.7;
  transition: opacity var(--transition);
}

.nav-desktop a:hover svg {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-login {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition);
  display: none;
}

@media (min-width: 600px) {
  .nav-login { display: block; }
}

.nav-login:hover {
  color: var(--text-primary);
}

.nav-deploy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--text-primary);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  transition: all var(--transition);
}

.nav-deploy svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-deploy:hover {
  background: #e5e5e5;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.nav-deploy:hover svg {
  transform: translateX(2px);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

/* Hero Section */
.hero {
  padding: 180px 0 140px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 99px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.03));
  font-size: 0.85rem;
  color: var(--purple-300);
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(12px);
}

.pill-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--purple-400);
  box-shadow: 0 0 12px var(--purple-500);
  animation: pulse-ring 2s infinite;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 650px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-cta {
    margin-bottom: 0;
  }
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

@media (min-width: 1024px) {
  .hero-visual {
    justify-content: flex-end;
  }
}

/* Code Snippet */
.hero-code {
  width: 100%;
  max-width: 680px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,1), 0 0 0 1px rgba(139, 92, 246, 0.1), 0 0 40px rgba(139, 92, 246, 0.15);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (min-width: 1024px) {
  .hero-code {
    transform: rotateY(-12deg) rotateX(6deg) scale(0.95);
  }
  .hero-visual:hover .hero-code {
    transform: rotateY(0deg) rotateX(0deg) scale(1);
    box-shadow: 0 40px 80px -12px rgba(0,0,0,1), 0 0 0 1px rgba(139, 92, 246, 0.2), 0 0 60px rgba(139, 92, 246, 0.25);
  }
}

.hero-code::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  opacity: 0.5;
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.4);
}

.code-dots {
  display: flex;
  gap: 8px;
  width: 60px; /* Fixed width to balance header */
}

.code-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; border: 1px solid #e0443e; }
.dot-yellow { background: #ffbd2e; border: 1px solid #dea123; }
.dot-green { background: #27c93f; border: 1px solid #1aab29; }

.code-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.code-actions {
  width: 60px; /* Fixed width to balance header */
  display: flex;
  justify-content: flex-end;
  color: var(--text-dim);
  cursor: pointer;
  transition: color var(--transition);
}

.code-actions:hover {
  color: var(--text-primary);
}

.code-body {
  padding: 1.5rem 1.75rem;
  font-size: 0.85rem;
  line-height: 1.8;
}

.code-body .prompt {
  color: var(--purple-500);
  margin-right: 0.75rem;
  font-weight: 600;
}

.code-body .command {
  color: #e5e5e5;
  font-weight: 500;
}

.code-body .success {
  color: #34d399; /* slightly brighter green */
  text-shadow: 0 0 8px rgba(52, 211, 153, 0.4);
}

.code-body .purple {
  color: #a78bfa;
  text-shadow: 0 0 8px rgba(167, 139, 250, 0.4);
}

.code-body .mt-1 { margin-top: 0.5rem; }
.code-body .mt-2 { margin-top: 1rem; }

.cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--purple-400);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Metrics Section */
.metrics-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding: 0 1rem;
}

.metrics-bar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 900px) {
  .metrics-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 4rem;
  }
}

.metric {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform var(--transition);
}

.metric:hover {
  transform: translateY(-2px);
}

.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 14px;
  color: var(--purple-400);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.metric:hover .metric-icon {
  background: var(--purple-500);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  border-color: var(--purple-400);
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.metric-divider {
  display: none;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

@media (min-width: 900px) {
  .metric-divider {
    display: block;
  }
}

/* General Sections */
.section {
  padding: 8rem 0;
}

.section-head {
  margin-bottom: 4rem;
  max-width: 600px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Advanced Bento Grid */
.bento-grid-advanced {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .bento-grid-advanced {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px) auto;
  }
  .bento-compute {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-network {
    grid-column: span 1;
    grid-row: span 2;
  }
  .bento-small {
    grid-column: span 1;
  }
}

.bento-card {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.bento-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 10;
}

.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px -10px rgba(139, 92, 246, 0.15);
  transform: translateY(-4px);
}

.bento-visual {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.03) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.bento-compute .bento-visual { min-height: 320px; flex-direction: column; gap: 2rem; }
.bento-network .bento-visual { min-height: 320px; flex-direction: column; justify-content: flex-start; padding-top: 3rem; }
.small-visual { min-height: 140px; }

.bento-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
  background: var(--surface);
}

.bento-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
.bento-compute .bento-title { font-size: 1.75rem; }
.bento-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Compute Visuals */
.cpu-core-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.core-ring, .core-ring-2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--purple-500);
  animation: spin-slow 10s linear infinite;
}
.core-ring-2 {
  inset: -20px;
  border: 1px dashed rgba(139, 92, 246, 0.3);
  animation: spin-slow 15s linear infinite reverse;
}
.cpu-chip {
  width: 60px;
  height: 60px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--purple-400);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}
.cpu-chip svg { width: 32px; height: 32px; }
@keyframes spin-slow { 100% { transform: rotate(360deg); } }

.cpu-stats {
  display: flex;
  gap: 1rem;
}
.cpu-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

/* Network Visuals */
.ping-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  z-index: 2;
}
.ping-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}
.ping-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 0.5rem;
}
.ping-dot.green { background: #27c93f; box-shadow: 0 0 8px #27c93f; }
.ping-dot.yellow { background: #ffbd2e; box-shadow: 0 0 8px #ffbd2e; }
.ping-ms { color: var(--purple-400); font-weight: bold; }

.network-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  opacity: 0.2;
}
.net-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  animation: scan-line 3s linear infinite;
}
.net-line:nth-child(2) { animation-delay: 1s; }
.net-line:nth-child(3) { animation-delay: 2s; }
@keyframes scan-line {
  0% { transform: translateY(-50px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(50px); opacity: 0; }
}

/* Small Visuals */
.shield-container {
  position: relative;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}
.shield-icon {
  width: 32px; height: 32px; color: var(--purple-400); z-index: 2;
}
.shield-pulse {
  position: absolute;
  inset: 0;
  border: 2px solid var(--purple-500);
  border-radius: 50%;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.nvme-bars {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.n-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.n-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: var(--w);
  background: var(--text-secondary);
  border-radius: 3px;
}
.n-bar.purple-bar::after {
  background: var(--purple-500);
  box-shadow: 0 0 10px var(--purple-500);
  animation: load-bar 2s ease-in-out infinite alternate;
}
@keyframes load-bar {
  0% { width: 40%; }
  100% { width: 100%; }
}

.backup-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--purple-500);
  display: flex; align-items: center; justify-content: center;
  animation: spin-slow 3s linear infinite;
}
.backup-circle svg {
  width: 24px; height: 24px; color: var(--purple-400);
  animation: spin-slow 3s linear infinite reverse;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split-layout { grid-template-columns: 1fr 1fr; }
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--purple-500);
}

/* Games supported (index) */
.games-supported-section {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.games-supported-bg-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  max-width: 900px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.games-supported-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  z-index: 0;
  pointer-events: none;
}

.games-supported-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.games-supported-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  background: rgba(139, 92, 246, 0.06);
}

.games-supported-title {
  margin-bottom: 1rem;
}

.games-supported-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
  line-height: 1.65;
}

.games-supported-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  list-style: none;
}

.games-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.85rem 1.35rem;
  min-width: 6.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
}

.games-metric-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}

.games-metric-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.games-supported-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .games-supported-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .games-supported-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.game-support-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  text-decoration: none;
  color: inherit;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  min-height: 100%;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.game-support-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--gx, 50%) var(--gy, 0%), rgba(139, 92, 246, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.game-support-card:hover {
  --gx: 50%;
  --gy: 20%;
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-6px);
  background: rgba(15, 15, 15, 0.8);
  box-shadow:
    0 25px 50px -15px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(139, 92, 246, 0.1),
    0 0 30px rgba(139, 92, 246, 0.15);
}

.game-support-card:hover::after {
  opacity: 1;
}

.game-support-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.game-support-badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-400);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.game-support-badge--cyan {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.22);
}

.game-support-badge--amber {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.22);
}

.game-support-badge--slate {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.2);
}

.game-support-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #86efac;
}

.game-support-live--soon {
  color: #fcd34d;
}

.game-support-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.game-support-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  margin-bottom: 1.25rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.game-support-icon--cyan {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: inset 0 0 15px rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
}

.game-support-icon--amber {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.25);
  box-shadow: inset 0 0 15px rgba(251, 191, 36, 0.15);
  color: #fcd34d;
}

.game-support-icon--slate {
  background: rgba(148, 163, 184, 0.1);
  border-color: rgba(148, 163, 184, 0.25);
  box-shadow: inset 0 0 15px rgba(148, 163, 184, 0.15);
  color: #e2e8f0;
}

.game-support-icon svg {
  width: 28px;
  height: 28px;
}

.game-support-card:hover .game-support-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: inset 0 0 25px rgba(139, 92, 246, 0.3), 0 0 15px rgba(139, 92, 246, 0.2);
  color: var(--purple-300);
}

.game-support-card:hover .game-support-icon--cyan {
  box-shadow: inset 0 0 25px rgba(56, 189, 248, 0.3), 0 0 15px rgba(56, 189, 248, 0.2);
  color: #bae6fd;
}

.game-support-card:hover .game-support-icon--amber {
  box-shadow: inset 0 0 25px rgba(251, 191, 36, 0.3), 0 0 15px rgba(251, 191, 36, 0.2);
  color: #fde68a;
}

.game-support-card:hover .game-support-icon--slate {
  box-shadow: inset 0 0 25px rgba(148, 163, 184, 0.3), 0 0 15px rgba(148, 163, 184, 0.2);
  color: #f8fafc;
}

.game-support-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}

.game-support-desc {
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex-grow: 1;
}

.game-support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 1.15rem 0;
  padding: 0;
  width: 100%;
}

.game-support-tags li {
  font-size: 0.68rem;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--text-dim);
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.game-support-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-400);
  transition: color var(--transition), gap var(--transition);
}

.game-support-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.game-support-card:hover .game-support-cta {
  color: #c4b5fd;
  gap: 0.55rem;
}

.game-support-card:hover .game-support-cta svg {
  transform: translateX(3px);
}

/* Panel Section Background */
.panel-section {
  position: relative;
  overflow: hidden;
}

.panel-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.panel-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  z-index: 0;
  pointer-events: none;
}

/* Communities / servers on MonsterNode (index) */
.cs-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.cs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.cs-marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2rem;
  padding: 3rem 0;
  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);
}

.cs-marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2rem;
  min-width: 100%;
  animation: scroll-x 35s linear infinite;
}

.cs-marquee-container:hover .cs-marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 2rem)); }
}

.cs-card {
  width: 340px;
  flex-shrink: 0;
  position: relative;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cs-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 1), 0 0 0 1px rgba(139, 92, 246, 0.1), 0 0 40px rgba(139, 92, 246, 0.15);
}

.cs-banner {
  height: 100px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cs-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.cs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 10;
}

.cs-card:hover::before { opacity: 1; }

.cs-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cs-logo-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding: 0 1.5rem;
}

.cs-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  border: 4px solid #0a0a0a;
  background: #000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.cs-body {
  position: relative;
  z-index: 1;
  padding: 1rem 1.5rem 1.5rem;
  flex: 1;
}

.cs-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.cs-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.cs-ip-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.cs-ip {
  font-size: 0.85rem;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.cs-copy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cs-copy:hover {
  color: var(--purple-300);
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  transform: scale(1.05);
}

.cs-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.4);
}

.cs-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cs-stat-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cs-stat-val {
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-mono);
}

.cs-cta-card {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.08) 0%, rgba(10, 10, 10, 0.85) 100%);
  border: 1px dashed rgba(139, 92, 246, 0.4);
}

.cs-cta-card:hover {
  border-style: solid;
  border-color: var(--purple-400);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
}

.cs-cta-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.2);
}

.relative { position: relative; }
.z-10 { z-index: 10; }

/* Panel Mockup Advanced */
.panel-showcase {
  margin-top: 5rem;
  width: 100%;
  perspective: 1200px;
}

.panel-mockup-large {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,1), 0 0 0 1px rgba(139, 92, 246, 0.1), 0 0 40px rgba(139, 92, 246, 0.15);
  position: relative;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (min-width: 1024px) {
  .panel-mockup-large {
    transform: rotateX(4deg) scale(0.98);
  }
  .panel-showcase:hover .panel-mockup-large {
    transform: rotateX(0deg) scale(1);
    box-shadow: 0 50px 100px -20px rgba(0,0,0,1), 0 0 0 1px rgba(139, 92, 246, 0.2), 0 0 80px rgba(139, 92, 246, 0.25);
  }
}

.panel-mockup-large::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  opacity: 0.7;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.6);
}

.panel-dots {
  display: flex;
  gap: 8px;
  width: 60px;
}

.panel-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.panel-url {
  font-size: 0.8rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 2rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-user {
  width: 60px;
  display: flex;
  justify-content: flex-end;
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
}

.panel-body-large {
  display: flex;
  height: 500px;
}

.panel-sidebar-large {
  width: 220px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 1rem;
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .panel-sidebar-large { display: flex; }
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.sidebar-nav-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.sidebar-nav-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.sidebar-nav-item.active {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple-400);
}

.sidebar-nav-item.active svg {
  opacity: 1;
}

.mt-auto { margin-top: auto; }

.panel-main-large {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.5rem;
  overflow-y: auto;
}

.panel-stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 900px) {
  .panel-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

.panel-stat-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-header svg {
  width: 16px;
  height: 16px;
  color: var(--purple-500);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.text-sm { font-size: 0.9rem; font-family: var(--font-sans); }

.stat-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.stat-progress-fill {
  height: 100%;
  background: var(--purple-500);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--purple-500);
}

.stat-graph {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
}

.stat-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px 2px 0 0;
}

.stat-bar.active {
  background: var(--purple-500);
  box-shadow: 0 0 8px var(--purple-500);
}

.panel-console-large {
  flex: 1;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
}

.console-actions {
  display: flex;
  gap: 0.5rem;
}

.console-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.console-btn:hover { background: rgba(255, 255, 255, 0.1); }
.console-btn.start { background: rgba(39, 201, 63, 0.1); border-color: rgba(39, 201, 63, 0.3); color: #27c93f; }
.console-btn.start:hover { background: rgba(39, 201, 63, 0.2); }
.console-btn.stop { background: rgba(255, 95, 86, 0.1); border-color: rgba(255, 95, 86, 0.3); color: #ff5f56; }
.console-btn.stop:hover { background: rgba(255, 95, 86, 0.2); }

.console-output {
  padding: 1.25rem;
  font-size: 0.8rem;
  line-height: 1.7;
  overflow-y: auto;
}

.mockup-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* Feature Grid below mockup */
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.feature-item svg {
  width: 32px;
  height: 32px;
  color: var(--purple-400);
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Trust section (index, below panel) */
.trust-section {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 7rem;
}

.trust-section-glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.trust-header {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.trust-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.06);
}

.trust-lead {
  line-height: 1.65;
}

.trust-emphasis {
  color: var(--purple-400);
  font-weight: 600;
}

.trust-pillars {
  list-style: none;
  margin: 0 0 3rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .trust-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-pillars {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.trust-pillar {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.trust-pillar:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px -5px rgba(139, 92, 246, 0.15);
  background: rgba(15, 15, 15, 0.8);
}

.trust-pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--purple-400);
  box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.15);
  transition: all 0.3s ease;
}

.trust-pillar:hover .trust-pillar-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: inset 0 0 25px rgba(139, 92, 246, 0.3), 0 0 15px rgba(139, 92, 246, 0.2);
  color: var(--purple-300);
}

.trust-pillar-icon svg {
  width: 26px;
  height: 26px;
}

.trust-pillar-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem 0;
}

.trust-pillar-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.trust-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .trust-proof {
    grid-template-columns: 1fr 1fr;
  }
}

.trust-proof-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.trust-proof-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
  background: rgba(15, 15, 15, 0.7);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6), inset 0 0 30px rgba(139, 92, 246, 0.05);
}

.trust-proof-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: inset 0 0 10px rgba(139, 92, 246, 0.2);
}

.trust-proof-icon svg {
  width: 24px;
  height: 24px;
}

.trust-proof-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.35rem 0;
  letter-spacing: -0.02em;
}

.trust-proof-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.trust-proof-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-400);
  text-decoration: none;
  transition: color var(--transition), gap var(--transition);
}

.trust-proof-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.trust-proof-cta:hover {
  color: #c4b5fd;
  gap: 0.5rem;
}

.trust-proof-cta:hover svg {
  transform: translateX(3px);
}

.trust-operator {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
}

.trust-operator-label {
  margin-right: 0.35rem;
}

.trust-operator-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.trust-operator-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.trust-operator-link:hover {
  color: var(--purple-400);
}

/* Reviews invite (index, advanced layout) */
.reviews-invite-section {
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem;
  padding-bottom: 6.5rem;
}

.reviews-invite-bg-glow {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 140%;
  max-width: 1000px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.06) 40%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.reviews-invite-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  pointer-events: none;
  z-index: 0;
}

.reviews-invite-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.8),
    inset 0 0 30px rgba(139, 92, 246, 0.05);
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .reviews-invite-layout {
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.15fr);
    gap: 3rem;
    padding: 2.5rem 2.75rem;
  }
}

.reviews-invite-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .reviews-invite-visual {
    align-items: stretch;
  }
}

.reviews-visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.reviews-visual-blob {
  position: absolute;
  width: 85%;
  height: 85%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.4) 0%, rgba(139, 92, 246, 0.15) 50%, transparent 70%);
  filter: blur(28px);
  opacity: 0.9;
  animation: reviews-blob-drift 10s ease-in-out infinite;
}

.reviews-visual-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.reviews-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.reviews-ring-1 {
  width: 42%;
  height: 42%;
  animation: reviews-ring-pulse 4s ease-in-out infinite;
}

.reviews-ring-2 {
  width: 62%;
  height: 62%;
  border-color: rgba(139, 92, 246, 0.12);
  animation: reviews-ring-pulse 4s ease-in-out infinite 0.5s;
}

.reviews-ring-3 {
  width: 82%;
  height: 82%;
  border-color: rgba(255, 255, 255, 0.04);
  animation: reviews-ring-pulse 4s ease-in-out infinite 1s;
}

.reviews-visual-core {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 15px 45px -10px rgba(139, 92, 246, 0.6),
    inset 0 0 20px rgba(139, 92, 246, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reviews-invite-layout:hover .reviews-visual-core {
  transform: scale(1.05) rotate(5deg);
  box-shadow:
    0 20px 50px -5px rgba(139, 92, 246, 0.8),
    inset 0 0 30px rgba(139, 92, 246, 0.5);
}

.reviews-visual-core svg {
  width: 50px;
  height: 50px;
}

.reviews-visual-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.06) 50%, transparent);
  animation: reviews-scan 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.reviews-visual-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-visual-meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
}

.reviews-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 10px rgba(134, 239, 172, 0.5);
  flex-shrink: 0;
}

.reviews-meta-dot-amber {
  background: #fcd34d;
  box-shadow: 0 0 10px rgba(252, 211, 77, 0.35);
}

.reviews-invite-content {
  text-align: center;
}

@media (min-width: 900px) {
  .reviews-invite-content {
    text-align: left;
  }
}

.reviews-invite-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  background: rgba(139, 92, 246, 0.08);
}

.reviews-invite-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 1rem 0;
}

.reviews-invite-text {
  margin: 0 0 1.35rem 0;
  font-size: 0.95rem;
  line-height: 1.68;
  color: var(--text-secondary);
  max-width: 38rem;
}

@media (min-width: 900px) {
  .reviews-invite-text {
    margin-left: 0;
    margin-right: 0;
  }
}

.reviews-invite-strong {
  color: var(--text-primary);
  font-weight: 600;
}

.reviews-invite-points {
  list-style: none;
  margin: 0 0 1.75rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
}

.reviews-invite-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.reviews-point-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
  color: var(--purple-400);
}

.reviews-point-icon svg {
  width: 14px;
  height: 14px;
}

.reviews-invite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) {
  .reviews-invite-actions {
    justify-content: flex-start;
  }
}

.reviews-invite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reviews-invite-btn-primary {
  background: linear-gradient(135deg, #5865f2 0%, var(--purple-500) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px -5px rgba(88, 101, 242, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.reviews-invite-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(88, 101, 242, 0.8), inset 0 0 25px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.reviews-invite-btn-ghost {
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.reviews-invite-btn-ghost:hover {
  color: var(--purple-300);
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(139, 92, 246, 0.2);
}

@keyframes reviews-blob-drift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  50% { transform: translate(-48%, -52%) scale(1.08); opacity: 1; }
}

@keyframes reviews-ring-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}

@keyframes reviews-scan {
  0%, 100% { transform: translateY(-30%); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translateY(30%); opacity: 0.6; }
  85% { opacity: 1; }
  100% { transform: translateY(90%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-visual-blob,
  .reviews-ring-1,
  .reviews-ring-2,
  .reviews-ring-3,
  .reviews-visual-scan {
    animation: none;
  }
  .reviews-visual-blob {
    transform: translate(-50%, -50%);
    opacity: 0.85;
  }
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.pricing-card.popular {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, var(--surface) 100%);
  border: 1px solid var(--purple-500);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
}

.pricing-card.popular:hover {
  box-shadow: 0 10px 50px rgba(139, 92, 246, 0.25);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-500);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 99px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.plan-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-weight: 400;
}

.plan-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.plan-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.plan-features li::before {
  content: '→';
  color: var(--purple-500);
  margin-right: 0.75rem;
  font-family: var(--font-mono);
}

/* =========================================
   FOOTER V9
   ========================================= */
.footer-v9 {
  position: relative;
  background: var(--bg);
  padding: 6rem 0 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bg-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.1), transparent 70%);
  pointer-events: none;
}

.footer-grid-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}

.footer-top-v9 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .footer-top-v9 {
    grid-template-columns: 350px 1fr;
  }
}

.footer-brand-v9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-v9 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.logo-img-v9 {
  height: 40px;
  width: auto;
}

.logo-v9 span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.brand-desc-v9 {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.social-links-v9 {
  display: flex;
  gap: 1rem;
}

.social-links-v9 .social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.social-links-v9 .social-icon svg {
  width: 20px;
  height: 20px;
}

.social-links-v9 .social-icon:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--purple-400);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2), inset 0 0 15px rgba(139, 92, 246, 0.1);
}

.footer-links-wrapper-v9 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer-links-wrapper-v9 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col-v9 h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-col-v9 a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  width: fit-content;
}

.footer-col-v9 a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0%;
  height: 1px;
  background: var(--purple-400);
  transition: width 0.3s ease;
}

.footer-col-v9 a:hover {
  color: var(--purple-300);
  transform: translateX(4px);
}

.footer-col-v9 a:hover::after {
  width: 100%;
}

.footer-bottom-v9 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .footer-bottom-v9 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.fb-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fb-left p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0;
}

.fb-operated {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.fb-operated a {
  color: var(--purple-400);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.fb-operated a:hover {
  color: var(--purple-300);
}

.status-badge-v9 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  color: #10b981;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.status-badge-v9:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2), inset 0 0 15px rgba(16, 185, 129, 0.1);
  color: #4ade80;
}

.status-dot-v9 {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px #10b981;
}

.status-dot-v9.pulse::after {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border: 2px solid #10b981;
  border-radius: 50%;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* =========================================
   LEGAL PAGES V10 (TERMINAL MANIFESTO / BENTO)
   ========================================= */
.legal-page-v10 {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.legal-hero-v10 {
  padding: 180px 0 80px;
  position: relative;
  text-align: center;
}

.legal-content-wrapper-v10 {
  max-width: 1000px;
  margin: 0 auto 8rem;
  position: relative;
  z-index: 10;
}

.legal-intro-v10 {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 4rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.legal-card-v10 {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .legal-card-v10 {
    flex-direction: row;
    align-items: flex-start;
    padding: 3.5rem;
  }
}

.legal-card-v10:hover {
  background: rgba(15, 15, 15, 0.8);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.legal-card-v10::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--purple-500);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-card-v10:hover::before {
  opacity: 1;
}

.legal-card-left-v10 {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .legal-card-left-v10 {
    width: 250px;
  }
}

.legal-card-number-v10 {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--purple-400);
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.legal-card-title-v10 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.legal-card-right-v10 {
  flex: 1;
}

.legal-text-v10 {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.legal-text-v10 p {
  margin-bottom: 1.5rem;
}

.legal-text-v10 p:last-child {
  margin-bottom: 0;
}

.legal-text-v10 strong {
  color: #fff;
  font-weight: 600;
}

.legal-list-v10 {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-list-v10 li {
  position: relative;
  padding-left: 1.5rem;
}

.legal-list-v10 li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--purple-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--purple-400);
}

.legal-agreement-v10 {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.01));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.05);
}

.legal-agreement-v10 h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.legal-agreement-v10 h3 svg {
  width: 28px; height: 28px;
  color: #10b981;
}

.legal-agreement-v10 p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.legal-agreement-v10 .meta {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-dim);
}

.legal-agreement-v10 a {
  color: #10b981;
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.legal-agreement-v10 a:hover {
  color: #34d399;
  border-color: #34d399;
}

@media (max-width: 768px) {
  .legal-card-v10 {
    padding: 2rem;
  }
}

/* =========================================
   CONTACT PAGE STYLES V7
   ========================================= */
.contact-main-v7 {
  background: var(--bg);
  color: var(--text-primary);
  overflow: hidden;
  font-family: var(--font-sans);
}

.contact-hero-v7 {
  padding: 180px 0 80px;
  position: relative;
}

.contact-options-v7 {
  padding: 0 0 6rem;
  position: relative;
  z-index: 10;
}

.contact-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-bento-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-bento-card {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.contact-bento-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-6px);
  background: rgba(15, 15, 15, 0.8);
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.8), inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.contact-bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-bento-card:hover::before {
  opacity: 1;
}

.cc-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cc-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.cc-icon-v7 {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.15);
}

.discord-icon-v7 {
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.25);
  color: #5865F2;
}

.email-icon-v7 {
  background: rgba(161, 161, 170, 0.1);
  border: 1px solid rgba(161, 161, 170, 0.25);
  color: #a1a1aa;
}

.contact-bento-card:hover .discord-icon-v7 {
  background: rgba(88, 101, 242, 0.2);
  border-color: #5865F2;
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: inset 0 0 25px rgba(88, 101, 242, 0.4), 0 0 15px rgba(88, 101, 242, 0.3);
}

.contact-bento-card:hover .email-icon-v7 {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.2), 0 0 15px rgba(255, 255, 255, 0.1);
}

.cc-icon-v7 svg { width: 32px; height: 32px; }

.cc-header-text h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.25rem;
}

.cc-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.cc-status.online {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.cc-status.standard {
  background: rgba(161, 161, 170, 0.1);
  color: #a1a1aa;
  border: 1px solid rgba(161, 161, 170, 0.25);
}

.cc-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cc-features-v7 {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.cc-features-v7 li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.cc-features-v7 svg {
  width: 18px; height: 18px;
  color: rgba(255, 255, 255, 0.2);
}

.contact-bento-card:hover .cc-features-v7 svg {
  color: var(--purple-400);
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #5865F2, #4752C4);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(88, 101, 242, 0.6);
  background: linear-gradient(135deg, #4752C4, #3b45a6);
}

.btn-email-v7 {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-email-v7:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

/* FAQ Teaser V7 */
.contact-faq-v7 {
  padding: 0 0 8rem;
}

.faq-bento-panel {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.faq-bento-panel:hover {
  background: rgba(15, 15, 15, 0.8);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), inset 0 0 30px rgba(139, 92, 246, 0.1);
}

@media (min-width: 768px) {
  .faq-bento-panel {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.faq-icon-v7 {
  width: 72px; height: 72px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.15);
}

.faq-bento-panel:hover .faq-icon-v7 {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(139, 92, 246, 0.5);
  color: var(--purple-300);
  box-shadow: inset 0 0 25px rgba(139, 92, 246, 0.3);
}

.faq-icon-v7 svg { width: 36px; height: 36px; }

.faq-text-v7 h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.faq-text-v7 p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-main-v6 {
  background: var(--bg);
  color: var(--text-primary);
  overflow: hidden;
  font-family: var(--font-sans);
}

.about-hero-v6 {
  padding: 170px 0 4.5rem;
  position: relative;
}

.hero-bg-v6 {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
}

.hero-grid-v6 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 48px 48px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
}

.hero-glow-v6 {
  position: absolute;
  top: -120px;
  width: min(720px, 90vw);
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.18) 0%, transparent 62%);
  border-radius: 50%;
  filter: blur(50px);
}

.about-hero-aurora {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  max-width: 900px;
  height: 45%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-top: 2rem;
}

.about-hero-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-400);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.about-hero-link:hover {
  color: #ddd6fe;
  background: rgba(139, 92, 246, 0.1);
}

.about-hero-actions-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-light);
  opacity: 0.6;
}

.hero-badge-v6 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--purple-400);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(12px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--purple-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--purple-500);
}

.hero-title-v6 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1.35rem;
  color: var(--text-primary);
}

.text-glow-purple {
  background: linear-gradient(120deg, #fff 0%, var(--purple-400) 55%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle-v6 {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 34rem;
}

/* About stats strip */
.about-stats-v6 {
  padding: 0 0 5rem;
  position: relative;
  z-index: 10;
}

.about-stats-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(139, 92, 246, 0.1) 45%, rgba(99, 102, 241, 0.2) 100%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(139, 92, 246, 0.1);
}

@media (min-width: 768px) {
  .about-stats-shell {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(139, 92, 246, 0.3);
  }
}

.about-stat-tile {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .about-stat-tile:first-child {
    border-radius: 23px 0 0 23px;
  }
  .about-stat-tile:last-child {
    border-radius: 0 23px 23px 0;
  }
  .about-stat-tile:only-child {
    border-radius: 23px;
  }
}

@media (max-width: 767px) {
  .about-stat-tile {
    border-radius: 23px;
  }
}

.about-stat-tile:hover {
  background: rgba(15, 15, 15, 0.85);
  box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.05);
  transform: translateY(-4px);
}

.about-stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--purple-400);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.15);
  transition: all 0.3s ease;
}

.about-stat-tile:hover .about-stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: inset 0 0 25px rgba(139, 92, 246, 0.3), 0 0 15px rgba(139, 92, 246, 0.2);
  color: var(--purple-300);
}

.about-stat-icon svg {
  width: 28px;
  height: 28px;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.about-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
}

.about-stat-hint {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

/* About values */
.about-values {
  padding: 4rem 0 5.5rem;
  border-top: 1px solid var(--border);
}

.about-values-head {
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.about-values-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.06);
}

.about-values-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 1rem 0;
  color: var(--text-primary);
}

.about-values-lead {
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 32rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.about-value-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-value-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-6px);
  background: rgba(15, 15, 15, 0.8);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.about-value-card:hover::before {
  opacity: 1;
}

.about-value-index {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(139, 92, 246, 0.6);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--purple-400);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.15);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-value-card:hover .about-value-icon {
  transform: scale(1.1) rotate(-5deg);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: inset 0 0 25px rgba(139, 92, 246, 0.3), 0 0 15px rgba(139, 92, 246, 0.2);
  color: var(--purple-300);
}

.about-value-icon svg {
  width: 28px;
  height: 28px;
}

.about-value-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem 0;
  color: var(--text-primary);
}

.about-value-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text-secondary);
}

/* BlueWave split panel */
.about-bw {
  padding: 2rem 0 6.5rem;
}

.about-bw-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(139, 92, 246, 0.05);
}

@media (min-width: 900px) {
  .about-bw-panel {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
  }
}

.about-bw-visual {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 900px) {
  .about-bw-visual {
    min-height: auto;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.about-bw-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(139, 92, 246, 0.15) 45%, transparent 70%);
  filter: blur(32px);
  opacity: 0.9;
}

.about-bw-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.about-bw-mark {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(147, 197, 253, 0.45);
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.25);
}

.about-bw-caption {
  position: relative;
  z-index: 2;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.55);
}

.about-bw-copy {
  padding: 2.5rem 1.75rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 900px) {
  .about-bw-copy {
    padding: 3rem 2.75rem;
  }
}

.about-bw-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.08);
  align-self: flex-start;
}

.about-bw-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 1rem 0;
  color: var(--text-primary);
}

.about-bw-text {
  margin: 0 0 1.35rem 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 36rem;
}

.about-bw-points {
  list-style: none;
  margin: 0 0 1.75rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.about-bw-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.about-bw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, var(--purple-400));
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
}

.about-bw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.about-bw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-bw-btn-primary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.about-bw-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 0 25px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.about-bw-btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.about-bw-btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.06);
}

.btn-primary-v6 {
  background: #fff;
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-v6:hover {
  background: #e4e4e7;
  transform: translateY(-2px);
}

/* =========================================
   PLANS PAGE STYLES (ADVANCED)
   ========================================= */

.plans-hero-v7 {
  padding: 160px 0 60px;
  position: relative;
}

.hero-bg-glow-v7 {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

/* Category Switcher */
.plan-switcher-wrap {
  display: flex;
  justify-content: center;
  margin: 3.5rem auto 2.5rem;
}

.plan-switcher {
  display: inline-flex;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.5rem;
  border-radius: 16px;
  gap: 0.25rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.plan-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.plan-tab svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.plan-tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.plan-tab.active {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple-300);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(139, 92, 246, 0.15);
}

.plan-tab.active svg {
  opacity: 1;
  color: var(--purple-400);
}

/* Billing Toggle */
.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.billing-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bill-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  padding: 0.5rem 0;
}

.bill-btn.active {
  color: var(--text-primary);
  font-weight: 700;
}

.bill-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-400), transparent);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--purple-500);
}

.save-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: inset 0 0 10px rgba(16, 185, 129, 0.1);
}

/* Plan Categories */
.plan-category {
  display: none;
  animation: fadeIn 0.4s ease forwards;
  scroll-margin-top: 7rem;
}

.plan-category.active {
  display: block;
}

/* Blade Grid */
.blade-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .blade-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Blade Card Design V7 */
.blade-card {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blade-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
  pointer-events: none;
}

.blade-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 100px;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.blade-card:hover .blade-glow {
  opacity: 1;
}

.blade-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.8), inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.blade-card.popular {
  border-color: rgba(139, 92, 246, 0.5);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, rgba(10, 10, 10, 0.8) 100%);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15), inset 0 0 30px rgba(139, 92, 246, 0.1);
  transform: scale(1.02);
  z-index: 2;
}

.blade-card.popular:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6), inset 0 0 40px rgba(139, 92, 246, 0.2);
}

.blade-card.popular .blade-glow {
  opacity: 0.5;
}

.pop-ribbon {
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background: var(--purple-500);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
  z-index: 10;
}

.blade-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.blade-icon {
  width: 56px;
  height: 56px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.15);
}

.blade-card:hover .blade-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: inset 0 0 25px rgba(139, 92, 246, 0.3), 0 0 15px rgba(139, 92, 246, 0.2);
  color: var(--purple-300);
}

.blade-card.popular .blade-icon {
  color: var(--purple-300);
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.15);
}

.blade-icon svg { width: 28px; height: 28px; }

.blade-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.blade-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.blade-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  font-weight: 600;
}

.blade-price .period {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  font-weight: 500;
}

.price-val {
  background: linear-gradient(180deg, #fff 0%, #d4d4d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.2s ease;
}

.blade-hardware {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.hw-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.hw-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hw-val {
  font-size: 0.95rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--purple-400);
}

.blade-features {
  list-style: none;
  margin-bottom: 3rem;
  flex: 1;
  position: relative;
  z-index: 2;
}

.blade-features li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.blade-features li svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.2);
}

.blade-card.popular .blade-features li svg {
  color: var(--purple-500);
}

.blade-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 2;
}

.blade-btn.outline {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.blade-btn.outline:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.blade-btn.solid {
  background: linear-gradient(135deg, #fff 0%, #e4e4e7 100%);
  color: #000;
  border: 1px solid transparent;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.blade-btn.solid:hover {
  background: #fff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.4);
}

/* VPS Terminal Placeholder */
.vps-terminal {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,255,255,0.02);
}

.vps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.5);
}

.vps-dots {
  display: flex;
  gap: 8px;
  width: 60px;
}

.vps-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.vps-dots span:nth-child(1) { background: #ef4444; }
.vps-dots span:nth-child(2) { background: #f59e0b; }
.vps-dots span:nth-child(3) { background: #10b981; }

.vps-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.vps-body {
  padding: 4.5rem 2.5rem;
  text-align: center;
  position: relative;
}

.vps-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  z-index: 0;
}

.vps-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.75rem;
  border-radius: 16px;
  border: 1px dashed rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  position: relative;
  z-index: 1;
  animation: pulse-ring 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.1);
}

.vps-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.vps-body h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.vps-body p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  position: relative;
  line-height: 1.6;
  z-index: 1;
}

.vps-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.vps-spec-item {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}

.vps-spec-item span {
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Bottom Cards V7 */
.pricing-bottom-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 4rem auto 8rem;
}

@media (min-width: 768px) {
  .pricing-bottom-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.bottom-card {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bottom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bottom-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-6px);
  background: rgba(15, 15, 15, 0.8);
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.8), inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.bottom-card:hover::before {
  opacity: 1;
}

.bottom-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--purple-400);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.15);
}

.bottom-card:hover .bottom-icon {
  border-color: rgba(139, 92, 246, 0.5);
  color: var(--purple-300);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: inset 0 0 25px rgba(139, 92, 246, 0.3), 0 0 15px rgba(139, 92, 246, 0.2);
}

.bottom-icon svg { width: 28px; height: 28px; }

.bottom-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bottom-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex: 1;
}

.bottom-card a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-card a:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--purple-300);
  gap: 0.75rem;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* =========================================
   STATUS PAGE V9 (AURORA / CYBER GLASS)
   ========================================= */
.status-dashboard-v9 {
  background: var(--bg);
  min-height: 100vh;
  color: #fff;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
}

.aurora-bg {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 800px;
  z-index: 0;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: float-aurora 20s infinite alternate ease-in-out;
}

.aurora-1 { 
  width: 600px; height: 600px; 
  background: var(--purple-500);
  top: 0; left: 0; 
  animation-delay: 0s; 
}
.aurora-2 { 
  width: 500px; height: 500px; 
  background: #3b82f6; 
  bottom: 0; right: 0; 
  animation-delay: -5s; 
}
.aurora-3 { 
  width: 700px; height: 700px; 
  background: var(--purple-400);
  top: 30%; left: 40%; 
  animation-delay: -10s; 
  opacity: 0.1; 
}

@keyframes float-aurora {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 50px) scale(1.2); }
}

.aurora-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  mask-image: radial-gradient(circle at top center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at top center, black 40%, transparent 100%);
}

.status-header-v9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.status-header-v9 h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.status-refresh-v9 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 10, 10, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.status-refresh-v9 svg {
  width: 14px; height: 14px;
  animation: spin 4s linear infinite;
  color: var(--purple-400);
}

.status-global-v9 {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5), 0 20px 40px -10px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.status-global-v9::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ade80, transparent);
  opacity: 0.8;
}

.sg-left-v9 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.sg-icon-v9 {
  width: 72px; height: 72px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #4ade80;
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 0 20px rgba(74, 222, 128, 0.2), 0 0 20px rgba(74, 222, 128, 0.1);
}

.sg-icon-v9::after {
  display: none;
}

.sg-icon-v9 svg { width: 36px; height: 36px; }

.sg-text-v9 h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 0.25rem 0;
  color: #fff;
  letter-spacing: -0.02em;
}

.sg-text-v9 p {
  margin: 0;
  color: #4ade80;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sg-right-v9 {
  text-align: right;
  position: relative;
  z-index: 1;
}

.sg-uptime-v9 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.sg-uptime-label-v9 {
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

@media (max-width: 768px) {
  .status-global-v9 {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
  }
  .sg-right-v9 { text-align: left; }
}

.section-title-v9 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title-v9 svg {
  width: 24px; height: 24px;
  color: var(--purple-400);
}

.status-section-v9 {
  margin-bottom: 4rem;
}

.status-row-v9 {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.75rem 2.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}

.status-row-v9:hover {
  background: rgba(15, 15, 15, 0.8);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.5), inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.sr-header-v9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.sr-info-v9 h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sr-meta-v9 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.sr-url-v9 {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.n-badge-v9 {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--purple-300);
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.n-badge-v9 svg { width: 14px; height: 14px; }

.sr-state-v9 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4ade80;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: inset 0 0 15px rgba(34, 197, 94, 0.1);
}

.sr-state-v9 .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
}

.sr-state-v9.warning {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: inset 0 0 15px rgba(245, 158, 11, 0.1);
}
.sr-state-v9.warning .dot {
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
}

.sr-state-v9.error {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
  box-shadow: inset 0 0 15px rgba(239, 68, 68, 0.1);
}
.sr-state-v9.error .dot {
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

.uptime-bars-v9 {
  display: flex;
  gap: 4px;
  height: 48px;
  align-items: flex-end;
}

.uptime-bar-v9 {
  flex: 1;
  background: #4ade80;
  border-radius: 2px;
  height: 100%;
  opacity: 0.3;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.uptime-bar-v9:hover {
  opacity: 1;
  transform: scaleY(1.15);
  transform-origin: bottom;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
}

.uptime-bar-v9.down {
  background: #ef4444;
  opacity: 0.8;
}

.uptime-legend-v9 {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
}

.incidents-section-v9 {
  margin-top: 5rem;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.incident-day-v9 {
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 2rem;
}

.incident-day-v9::before {
  content: '';
  position: absolute;
  top: 8px; left: 0;
  width: 14px; height: 14px;
  background: rgba(139, 92, 246, 0.2);
  border: 2px solid var(--purple-500);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.incident-day-v9::after {
  content: '';
  position: absolute;
  top: 22px; left: 6px;
  width: 2px; height: calc(100% + 2.5rem - 22px);
  background: rgba(255,255,255,0.05);
  z-index: 1;
}

.incident-day-v9:last-child::after {
  display: none;
}

.incident-day-v9 .date {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 1rem 0;
  font-weight: 800;
}

.incident-msg-v9 {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  background: rgba(255,255,255,0.02);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Global Map Section */
.global-map-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(20, 20, 20, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 50px -15px rgba(139, 92, 246, 0.2), inset 0 0 20px rgba(139, 92, 246, 0.05);
  overflow: hidden;
  padding: 3rem 2rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.global-map-inner {
  position: relative;
  width: 100%;
  padding-bottom: 50%; /* 2:1 aspect ratio */
}

.map-scaler {
  position: absolute;
  width: 500%;
  height: 500%;
  left: -200%;
  top: -65%;
  pointer-events: auto;
}

.global-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(1) opacity(0.3) drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
  -webkit-mask-image: radial-gradient(circle, black 50%, transparent 50%);
  -webkit-mask-size: 6px 6px;
  mask-image: radial-gradient(circle, black 50%, transparent 50%);
  mask-size: 6px 6px;
  pointer-events: none;
}

.map-node {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
}

.node-dot {
  width: 12px;
  height: 12px;
  background: var(--purple-400);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--purple-400), 0 0 30px var(--purple-500);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.map-node.upcoming .node-dot {
  background: var(--text-dim);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.map-node:hover .node-dot {
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 0 25px var(--purple-300), 0 0 50px var(--purple-500);
}

.node-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: var(--purple-500);
  border-radius: 50%;
  opacity: 0;
  animation: pulse-ring-intense 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring-intense {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.node-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -10px);
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.map-node:hover .node-label {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -20px);
}

.node-label .flag {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.node-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.node-info strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.2;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

.node-info span {
  font-size: 0.75rem;
  color: var(--purple-300);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.global-map-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.global-map-list .feature-item {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: all 0.3s ease;
  padding: 2rem 1.5rem;
}

.global-map-list .feature-item:hover {
  background: rgba(10, 10, 10, 0.8);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(139, 92, 246, 0.1);
}

@media (max-width: 768px) {
  .global-map-wrapper {
    display: none;
  }
}
@media (min-width: 769px) {
  .global-map-list {
    display: none;
  }
}

/* =========================================
   ABOUT PAGE V7 (REDESIGN)
   ========================================= */

.about-main-v7 {
  background: var(--bg);
  color: var(--text-primary);
  overflow: hidden;
  font-family: var(--font-sans);
}

/* 1. HERO SECTION */
.about-hero-section {
  position: relative;
  padding: 180px 0 6rem;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* 3D Server Rack */
.about-hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.server-rack-3d {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: rotateY(-15deg) rotateX(10deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.server-rack-3d:hover {
  transform: rotateY(-5deg) rotateX(5deg);
}

.server-blade {
  background: linear-gradient(to right, #111, #1a1a24);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #333;
  border-radius: 8px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  position: relative;
  box-shadow: 10px 20px 30px rgba(0,0,0,0.5);
}

.server-blade.active-blade {
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(to right, #1a1a24, #2d1b4e);
}

.blade-glow {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
  pointer-events: none;
}

.blade-lights {
  display: flex;
  gap: 0.5rem;
}

.blade-lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}

.l-green { background: #10b981 !important; box-shadow: 0 0 8px #10b981; }
.l-blue { background: #3b82f6 !important; box-shadow: 0 0 8px #3b82f6; }
.l-red { background: #ef4444 !important; }
.blink { animation: blinker 1.5s infinite; }

@keyframes blinker { 50% { opacity: 0; } }

.blade-vents {
  width: 150px;
  height: 20px;
  background-image: repeating-linear-gradient(to right, transparent, transparent 2px, rgba(0,0,0,0.8) 2px, rgba(0,0,0,0.8) 4px);
}

/* 2. BENTO STATS & MISSION */
.about-bento-section {
  padding: 4rem 0;
}

.bento-grid-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-grid-about {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-large { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .bento-grid-about {
    grid-template-columns: repeat(4, 1fr);
  }
  .bento-large { grid-column: span 2; grid-row: span 2; }
  .bento-stat { grid-column: span 1; }
  .bento-medium { grid-column: span 2; }
}

.bento-card-about {
  position: relative;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bento-card-about:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.8), inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.bento-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 1.5rem;
}

.bento-title-about {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.bento-desc-about {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
}

.bento-stat {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple-400);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.stat-icon svg { width: 24px; height: 24px; }

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

/* 3. THE STANDARD (VALUES) STACK */
.about-standard-section {
  padding: 6rem 0;
  position: relative;
}

.standard-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.standard-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 4rem auto 0;
}

.standard-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.standard-card:hover {
  background: rgba(15, 15, 15, 0.95);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateX(10px);
  box-shadow: -10px 10px 30px rgba(0,0,0,0.5);
}

.standard-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(139, 92, 246, 0.3);
}

.standard-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.standard-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 4. BLUEWAVE CINEMATIC */
.about-bluewave-cinematic {
  position: relative;
  padding: 8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.bw-cinematic-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(12, 18, 32, 0.8) 0%, var(--bg) 100%);
  z-index: 0;
}

.bw-cinematic-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
  z-index: 1;
}

.bw-cinematic-logo {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(96, 165, 250, 0.5);
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  margin-bottom: 1rem;
}

.bw-cinematic-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.bw-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
