/* 
  LiteNode - 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: hidden;
}

/* Utility Classes */
.container {
  width: min(100% - 3rem, var(--max-w));
  margin-inline: auto;
}

.font-mono { font-family: var(--font-mono); }
.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-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: 160px 0 140px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.875rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.pill-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--purple-500);
  box-shadow: 0 0 8px var(--purple-500);
}

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

.hero-title span {
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

/* Code Snippet */
.hero-code {
  width: 100%;
  max-width: 640px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

.hero-code::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  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: var(--text-primary);
  font-weight: 500;
}

.code-body .success {
  color: #27c93f;
}

.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);
}

/* 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;
}

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

/* Panel Mockup Advanced */
.panel-showcase {
  margin-top: 4rem;
  width: 100%;
}

.panel-mockup-large {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

.panel-mockup-large::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
}

.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.4);
}

.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);
}

/* 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 */
.footer {
  padding: 5rem 0 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

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

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1.25rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-links a svg {
  width: 18px;
  height: 18px;
}

.social-links a:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  color: var(--purple-400);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--purple-400);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-owned {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

/* =========================================
   CONTACT PAGE STYLES V6
   ========================================= */
.contact-main-v6 {
  background: #000;
  color: #ededed;
  overflow: hidden;
  font-family: var(--font-sans);
}

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

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

.contact-grid-v6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.contact-card-v6 {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.contact-card-v6:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
}

.cc-border-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.contact-card-v6:hover .cc-border-glow {
  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.5rem;
  margin-bottom: 2rem;
}

.cc-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}

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

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

.contact-card-v6:hover .discord-icon {
  background: #5865F2;
  color: #fff;
  transform: scale(1.05) rotate(-5deg);
}

.contact-card-v6:hover .email-icon {
  background: #fff;
  color: #000;
  transform: scale(1.05) rotate(5deg);
}

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

.cc-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.cc-status {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
}

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

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

.cc-content p {
  color: #a1a1aa;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.cc-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d4d4d8;
  font-size: 0.95rem;
  font-weight: 500;
}

.cc-features svg {
  width: 18px; height: 18px;
  color: var(--purple-400);
}

.btn-outline-v6 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-outline-v6:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.faq-box-v6 {
  background: linear-gradient(90deg, #0a0a0a, #050505);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

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

.faq-icon {
  width: 64px; height: 64px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
}

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

.faq-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.faq-text p {
  color: #a1a1aa;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.btn-secondary-v6 {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary-v6:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* =========================================
   ABOUT PAGE STYLES V6 (LINEAR / STRIPE VIBE)
   ========================================= */
.about-main-v6 {
  background: #000;
  color: #ededed;
  overflow: hidden;
  font-family: var(--font-sans);
}

.about-hero-v6 {
  padding: 180px 0 100px;
  position: relative;
}

.hero-bg-v6 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
}

.hero-grid-v6 {
  position: absolute;
  width: 100%; height: 100%;
  background-size: 40px 40px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  mask-image: radial-gradient(circle at top, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at top, black 30%, transparent 70%);
}

.hero-glow-v6 {
  position: absolute;
  top: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-badge-v6 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #a1a1aa;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

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

.hero-title-v6 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.text-glow-purple {
  background: linear-gradient(to right, #fff, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.hero-subtitle-v6 {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #a1a1aa;
  max-width: 650px;
}

/* Stats */
.about-stats-v6 {
  padding: 0 0 6rem;
  position: relative;
  z-index: 10;
}

.stats-grid-v6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.stat-card-v6 {
  background: #050505;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease;
}

.stat-card-v6:hover {
  background: #0a0a0a;
}

.stat-num-v6 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stat-label-v6 {
  font-size: 0.85rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid-v6 {
    grid-template-columns: 1fr;
  }
}

/* Features */
.about-features-v6 {
  padding: 6rem 0;
}

.section-header-v6 {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-v6 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header-v6 p {
  color: #a1a1aa;
  font-size: 1.1rem;
}

.features-grid-v6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card-v6 {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card-v6:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.15);
}

.fc-border-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card-v6:hover .fc-border-glow {
  opacity: 1;
}

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

.fc-icon {
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card-v6:hover .fc-icon {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple-400);
  border-color: rgba(139, 92, 246, 0.2);
}

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

.feature-card-v6 h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.feature-card-v6 p {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* BlueWave */
.about-parent-v6 {
  padding: 4rem 0 8rem;
}

.parent-card-v6 {
  background: linear-gradient(180deg, #0a0a0a, #050505);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.parent-bg-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.parent-content-v6 {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.parent-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.parent-content-v6 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.parent-content-v6 p {
  color: #a1a1aa;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.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 {
  padding: 160px 0 60px;
  position: relative;
}

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

.plan-switcher {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.35rem;
  border-radius: 12px;
  gap: 0.25rem;
}

.plan-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.plan-tab svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

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

.plan-tab.active {
  background: var(--surface);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

.bill-btn.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple-500);
  border-radius: 2px;
}

.save-badge {
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple-400);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.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 */
.blade-card {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  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 var(--transition);
  z-index: 1;
  pointer-events: none;
}

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

.blade-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
}

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

.blade-card.popular:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.6), 0 0 50px 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: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.blade-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.blade-card:hover .blade-icon {
  color: var(--purple-400);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.1);
}

.blade-card.popular .blade-icon {
  color: var(--purple-400);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.1);
}

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

.blade-title {
  font-size: 1.25rem;
  margin: 0;
}

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

.blade-price .currency {
  font-size: 1.25rem;
  vertical-align: super;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-weight: 500;
}

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

.price-val {
  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: 8px;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 2rem;
  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.25rem;
}

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

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

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

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

.blade-features li svg {
  width: 16px;
  height: 16px;
  color: var(--text-dim);
}

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

.blade-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  z-index: 2;
}

.blade-btn.outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.blade-btn.outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.blade-btn.solid {
  background: var(--text-primary);
  color: var(--bg);
  border: 1px solid transparent;
}

.blade-btn.solid:hover {
  background: #e5e5e5;
  transform: translateY(-1px);
}

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

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

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

.vps-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border);
}

.vps-title {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.vps-body {
  padding: 4rem 2rem;
  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: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  border: 1px dashed var(--purple-500);
  background: rgba(139, 92, 246, 0.05);
  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;
}

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

.vps-body h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.vps-body p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.vps-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  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.6rem 1rem;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

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

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

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

.bottom-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bottom-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);
}

.bottom-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

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

.bottom-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--purple-300);
  transition: all var(--transition);
}

.bottom-card:hover .bottom-icon {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  color: var(--purple-400);
  transform: scale(1.05);
}

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

.bottom-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.bottom-card a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}

.bottom-card a:hover {
  color: var(--purple-400);
  gap: 0.75rem;
}

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

.aurora-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

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

.aurora-1 { 
  width: 600px; height: 600px; 
  background: #4ade80; /* Emerald */
  top: -200px; left: -100px; 
  animation-delay: 0s; 
}
.aurora-2 { 
  width: 500px; height: 500px; 
  background: #8b5cf6; /* Purple */
  bottom: -100px; right: -100px; 
  animation-delay: -5s; 
}
.aurora-3 { 
  width: 700px; height: 700px; 
  background: #3b82f6; /* Blue */
  top: 30%; left: 40%; 
  animation-delay: -10s; 
  opacity: 0.2; 
}

@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 center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

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

.status-header-v9 h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.status-refresh-v9 {
  font-size: 0.85rem;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
}

.status-refresh-v9 svg {
  width: 14px; height: 14px;
  animation: spin 4s linear infinite;
  color: #4ade80;
}

.status-global-v9 {
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(74, 222, 128, 0.2);
  position: relative;
  overflow: hidden;
}

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

.sg-icon-v9 {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #4ade80, #10b981);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.4);
}

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

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

.sg-text-v9 h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #fff;
  letter-spacing: -0.02em;
}

.sg-text-v9 p {
  margin: 0;
  color: #4ade80;
  font-size: 1rem;
  font-weight: 500;
}

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

.sg-uptime-v9 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.sg-uptime-label-v9 {
  color: #a1a1aa;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

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

.section-title-v9 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title-v9 svg {
  width: 20px; height: 20px;
  color: #a78bfa;
}

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

.status-row-v9 {
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.status-row-v9:hover {
  background: rgba(30, 30, 35, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.sr-info-v9 h3 {
  font-size: 1.15rem;
  font-weight: 600;
  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: #a1a1aa;
  font-family: var(--font-mono);
}

.n-badge-v9 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #d4d4d8;
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

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

.sr-state-v9 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4ade80;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 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: #fbbf24;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}
.sr-state-v9.warning .dot {
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
}

.sr-state-v9.error {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
  box-shadow: 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: 40px;
  align-items: flex-end;
}

.uptime-bar-v9 {
  flex: 1;
  background: #4ade80;
  border-radius: 2px;
  height: 100%;
  opacity: 0.4;
  transition: all 0.2s ease;
}

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

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

.uptime-legend-v9 {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #71717a;
  margin-top: 0.75rem;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.75rem;
}

.incidents-section-v9 {
  margin-top: 5rem;
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 3rem;
}

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

.incident-day-v9::before {
  content: '';
  position: absolute;
  top: 6px; left: 0;
  width: 12px; height: 12px;
  background: rgba(255,255,255,0.1);
  border: 2px solid #3f3f46;
  border-radius: 50%;
  z-index: 2;
}

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

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

.incident-day-v9 .date {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.incident-msg-v9 {
  color: #a1a1aa;
  font-size: 1rem;
  line-height: 1.6;
  background: rgba(255,255,255,0.02);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.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; }
