/* ============================================
   CBOTCHEATS — MASTER STYLESHEET
   ============================================ */

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

:root {
  /* === PRIMARY: PURPLE === */
  --cyan: #8b5cf6;
  --cyan-dim: rgba(139, 92, 246, 0.15);
  --cyan-glow: 0 0 20px rgba(139, 92, 246, 0.55), 0 0 60px rgba(139, 92, 246, 0.2);
  --border-cyan: rgba(139, 92, 246, 0.35);

  /* Animation durations */
  --anim-slow: 0.8s;
  --anim-mid: 0.5s;
  --anim-fast: 0.3s;

  /* === SECONDARY: AMBER === */
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.15);
  --amber-glow: 0 0 20px rgba(245, 158, 11, 0.5), 0 0 60px rgba(245, 158, 11, 0.2);

  /* === BACKGROUND === */
  --bg: #07040f;
  --bg-mid: #0d0820;
  --surface: rgba(139, 92, 246, 0.04);
  --surface-hover: rgba(139, 92, 246, 0.08);
  --border: rgba(139, 92, 246, 0.12);

  /* === TEXT === */
  --text: #f0eeff;
  --text-muted: rgba(240, 238, 255, 0.6);
  --text-dim: rgba(240, 238, 255, 0.3);

  /* === TYPOGRAPHY === */
  --font-heading: 'Jura', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;

  /* === PURPLE SHADES === */
  --purple-1: #8b5cf6;
  --purple-2: #6d28d9;
  --purple-3: #4c1d95;
  --purple-light: #c4b5fd;
}

html {
  scroll-behavior: smooth;
  zoom: 1.1;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============================================
   BENTO ANIMATED BACKGROUND
   ============================================ */

/* Base mesh gradient */
.bento-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%,  rgba(109, 40, 217, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%,  rgba(139, 92, 246, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%,  rgba(76, 29, 149, 0.10) 0%, transparent 60%),
    var(--bg);
}

/* Animated floating blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blobFloat var(--dur, 18s) ease-in-out infinite alternate;
  will-change: transform;
}

.bg-blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(109,40,217,0.6) 0%, transparent 70%);
  top: -120px; left: -80px;
  --dur: 22s;
}

.bg-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.5) 0%, transparent 70%);
  bottom: 5%; right: -60px;
  --dur: 17s;
  animation-delay: -8s;
}

.bg-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(76,29,149,0.55) 0%, transparent 70%);
  top: 45%; left: 40%;
  --dur: 26s;
  animation-delay: -14s;
}

.bg-blob-4 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.18) 0%, transparent 70%);
  top: 70%; left: 15%;
  --dur: 20s;
  animation-delay: -5s;
}

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.06); }
  66%  { transform: translate(-20px, 20px) scale(0.96); }
  100% { transform: translate(30px, 40px) scale(1.04); }
}

/* SaaS grid lines overlay */
.bento-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, rgba(0,0,0,0.6) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, rgba(0,0,0,0.6) 0%, transparent 80%);
}

/* Scanline shimmer */
.bento-shimmer {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(139,92,246,0.012) 3px,
    rgba(139,92,246,0.012) 4px
  );
  pointer-events: none;
}

/* Starfield Canvas (kept for stars) */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-cyan); border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
  white-space: nowrap;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--cyan));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--text);
  background: var(--surface-hover);
  border-color: var(--border);
}

.nav-link.nav-cta {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.nav-link.nav-cta:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--cyan-glow);
  color: var(--cyan);
}

#nav-discord:hover {
  color: #5865f2;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(0, 255, 136, 0); }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.mobile-menu a:hover {
  background: var(--surface-hover);
  color: var(--text);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 800px;
}

.glow-text {
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
}

.hero-description {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* Hero Logo Wrap */
.hero-logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px 0;
}

.hero-planet {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
  animation: logo-pulse 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes logo-pulse {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
  }
  50% { 
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.7));
  }
}

.hero-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--text);
  text-transform: uppercase;
  margin-top: -10px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: scale(1.05);
  box-shadow: var(--cyan-glow);
}

.btn-outline-cyan {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--border-cyan);
}

.btn-outline-cyan:hover {
  background: var(--cyan-dim);
  transform: scale(1.03);
  box-shadow: var(--cyan-glow);
}

.btn-amber {
  background: var(--amber);
  color: #000;
}

.btn-amber:hover {
  transform: scale(1.05);
  box-shadow: var(--amber-glow);
}

/* ============================================
   SECTION COMMONS
   ============================================ */
section {
  position: relative;
  z-index: 5;
  padding: 100px 0;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--anim-slow) cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform var(--anim-slow) cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* ============================================
   DEMO SECTION
   ============================================ */
.demo-section {
  background: linear-gradient(180deg, transparent, rgba(0, 242, 255, 0.02), transparent);
}

.demo-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.demo-tab {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 13px;
  padding: 9px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.demo-tab.active, .demo-tab:hover {
  color: var(--cyan);
  border-color: var(--border-cyan);
  background: var(--cyan-dim);
}

.demo-player {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.demo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 6px;
  z-index: 2;
}

.undetected-dot {
  width: 7px;
  height: 7px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
}

.demo-video-placeholder {
  background: linear-gradient(135deg, #0a0a0a, #111);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.demo-video-placeholder:hover {
  background: linear-gradient(135deg, #0f0f0f, #151515);
}

.play-btn {
  width: 72px;
  height: 72px;
  background: var(--cyan-dim);
  border: 2px solid var(--border-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  transition: all 0.3s;
  box-shadow: var(--cyan-glow);
}

.demo-video-placeholder:hover .play-btn {
  transform: scale(1.1);
  background: var(--cyan);
  color: #000;
}

.demo-placeholder-text {
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.demo-games {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.game-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}

.game-badge:hover {
  border-color: var(--border-cyan);
  color: var(--cyan);
}

/* Supported Games Row */
.specialty-games-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sg-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
}

.sg-games {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.sg-game {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.sg-game:hover {
  color: var(--cyan);
}

.valorant-text {
  color: #ff4655;
}

.valorant-text:hover {
  color: #ff6673;
}

.lol-text {
  color: #c89b3c;
}

.lol-text:hover {
  color: #e8bb5c;
}

.sg-sep {
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1;
}

/* Specialty Slider Layout */
.specialty-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Spoofer UI Mockup */
.specialty-ui-wrap {
  display: flex;
  justify-content: center;
}

.spoofer-ui {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.sui-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #111;
}

.sui-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.sui-logo-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px var(--cyan));
}

.sui-clocks {
  display: flex;
  gap: 10px;
}

.sui-clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.sui-clock-val {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.sui-clock-lbl {
  font-family: var(--font-heading);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.sui-welcome {
  padding: 28px 20px 18px;
  text-align: center;
}

.sui-welcome-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 5px;
}

.sui-welcome-sub {
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.sui-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 20px;
}

.sui-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}

.sui-btn:hover {
  background: rgba(255,255,255,0.07);
  color: var(--text);
}

.sui-btn span {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
}

.sui-btn-active {
  background: rgba(0, 242, 255, 0.06) !important;
  border-color: rgba(0, 242, 255, 0.25) !important;
  color: var(--cyan) !important;
}

.sui-btn-active:hover {
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
}

.sui-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #00ff88;
  background: rgba(0,255,136,0.04);
}

.sui-status-dot {
  width: 7px;
  height: 7px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
}

/* Slide Content */
.specialty-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.specialty-slides {
  position: relative;
  min-height: 160px;
}

.sp-slide {
  display: none;
  flex-direction: column;
  gap: 10px;
  animation: fadeSlide 0.4s ease;
}

.sp-slide.active {
  display: flex;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.sp-slide-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}

.sp-slide-sub {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.sp-slide-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 460px;
}

/* Dot Navigation */
.sp-dots {
  display: flex;
  gap: 10px;
}

.sp-dot {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.sp-dot.active {
  background: var(--text);
  width: 48px;
}

.sp-dot:hover {
  background: var(--text-muted);
}



/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  background: linear-gradient(180deg, transparent, rgba(255, 157, 0, 0.02), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 30px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 242, 255, 0.1);
}

.pricing-card.popular {
  border-color: var(--amber);
  background: rgba(255, 157, 0, 0.04);
}

.pricing-card.popular:hover {
  box-shadow: 0 24px 70px rgba(255, 157, 0, 0.12);
}

.pricing-card.lifetime {
  border-color: rgba(100, 50, 255, 0.4);
  background: rgba(100, 50, 255, 0.04);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #000;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pricing-duration {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.pricing-per {
  font-size: 13px;
  color: var(--text-dim);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin: 8px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.check {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

/* Pricing Banner */
.pricing-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  margin-bottom: 28px;
}

.banner-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4));
}

.banner-line:last-child {
  background: linear-gradient(90deg, rgba(255, 60, 60, 0.5), transparent);
}

.banner-text {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

/* Free Trial Tab */
.free-trial-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 20px;
  padding: 6px 18px;
  width: fit-content;
  margin: 0 auto 16px;
}

/* Free Trial Card */
.free-trial-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  transition: all 0.3s;
}

.free-trial-card:hover {
  border-color: var(--border-cyan);
}

.free-trial-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}

.free-trial-duration {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

.free-trial-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
  line-height: 1;
}

.free-trial-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  flex: 1;
}

.ft-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 6px;
}

.amber-badge {
  background: rgba(255, 157, 0, 0.15);
  border-color: rgba(255, 157, 0, 0.4);
  color: var(--amber);
}

.purple-badge {
  background: rgba(130, 80, 255, 0.15);
  border-color: rgba(130, 80, 255, 0.4);
  color: #a57fff;
}

/* Best Value Badge */
.best-value-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #7c3aed;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Strikethrough original price */
.pricing-original {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(139, 92, 246, 0.4);
}

/* Save tags */
.save-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(255, 157, 0, 0.12);
  border: 1px solid rgba(255, 157, 0, 0.3);
  color: var(--amber);
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.save-tag-cyan {
  background: rgba(0, 242, 255, 0.08);
  border-color: rgba(0, 242, 255, 0.25);
  color: var(--cyan);
}

.save-tag-purple {
  background: rgba(130, 80, 255, 0.1);
  border-color: rgba(130, 80, 255, 0.3);
  color: #a57fff;
}

/* Dark outline button (matches Saturn's dark card buttons) */
.btn-outline-dark {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}

/* One-time purchase — redesigned */
.ot-label-row {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 12px;
}

.ot-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
}

.ot-tab-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  border-radius: 20px;
  padding: 5px 18px;
  width: fit-content;
  margin: 0 auto 16px;
  background: var(--cyan-dim);
}

/* One-time card */
.one-time-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(0, 242, 255, 0.03);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex-wrap: wrap;
  transition: all 0.3s;
}

.one-time-card:hover {
  box-shadow: 0 0 50px rgba(0, 242, 255, 0.1);
}

.one-time-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
}

.one-time-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
}

.one-time-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.one-time-sub {
  font-size: 12px;
  color: var(--cyan);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.one-time-desc {
  flex: 1;
  min-width: 220px;
}

.one-time-desc p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.one-time-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.one-time-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 140px;
}



/* ============================================
   SCENARIO / PLAN CHOICE
   ============================================ */
.plan-choice-section {
  padding: 90px 0;
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 32px;
}

.scenario-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  cursor: pointer;
  transition: all 0.3s;
}

.scenario-card.active, .scenario-card:hover {
  border-color: var(--border-cyan);
  background: rgba(0, 242, 255, 0.04);
}

.scenario-icon {
  width: 38px;
  height: 38px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 14px;
}

.scenario-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.scenario-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Plan Compare Table */
.plan-compare-table {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pct-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}

.pct-row-label {
  padding: 14px 20px;
}

.pct-col-header {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: center;
}

.sub-header { color: var(--amber); }
.perm-header { color: var(--cyan); }

.pct-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.pct-row:last-child { border-bottom: none; }
.pct-row:hover { background: var(--surface-hover); }

.pct-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 14px 20px;
  text-transform: uppercase;
}

.pct-val {
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px 20px;
  text-align: center;
  border-left: 1px solid var(--border);
}

/* ============================================
   HARDWARE COST SECTION
   ============================================ */
.hardware-section {
  padding: 90px 0 0;
}

.hw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.hw-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all 0.3s;
}

.hw-card:hover {
  border-color: var(--border-cyan);
  background: var(--surface-hover);
}

.hw-card-red {
  border-color: var(--border-cyan);
  background: var(--surface);
}

.hw-icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.hw-name {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hw-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.hw-tag {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* Hardware Total Bar */
.hw-total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 18px 28px;
  margin-top: 0;
  flex-wrap: wrap;
  gap: 12px;
}

.hw-total-left, .hw-total-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hw-total-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.hw-total-price-red {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.hw-total-price-cyan {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
}

/* ============================================
   TESTIMONIALS — MARQUEE
   ============================================ */
.testimonials-section {
  padding: 90px 0;
  overflow: hidden;
}

.trusted-title {
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

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

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 16px;
  transition: all 0.3s;
  width: 300px;
  flex-shrink: 0;
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0055ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
  text-transform: uppercase;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.testimonial-platform {
  font-size: 11px;
  color: var(--text-dim);
}

.testimonial-stars {
  margin-left: auto;
  color: var(--amber);
  font-size: 11px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.testimonial-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.tcard-footer {
  display: flex;
  align-items: center;
}

.tcard-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 3px 8px;
  border-radius: 5px;
}

.undetected-badge {
  border-color: rgba(0, 255, 136, 0.3);
  color: #00ff88;
  background: rgba(0, 255, 136, 0.06);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 90px 0;
}

.faq-title {
  letter-spacing: 0.18em;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  gap: 16px;
}

.faq-q:hover {
  background: var(--surface-hover);
  color: var(--cyan);
}

.faq-arrow {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-dim);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  color: var(--cyan);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(0,0,0,0.3);
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  padding: 16px 24px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   COMPARISON
   ============================================ */
.comparison-section {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5), transparent);
}

.comparison-table {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 900px;
  margin: 50px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-col {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hardware-col {
  background: rgba(255, 50, 50, 0.03);
  border-right: 1px solid var(--border);
}

.software-col {
  background: rgba(0, 242, 255, 0.03);
}

.comparison-col h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.comp-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.comp-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 0 0;
  margin-top: 4px;
}

.software-total span:last-child {
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
}

.included {
  color: #00ff88;
  font-size: 12px;
  font-weight: 700;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.4);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.03);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 242, 255, 0.08);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0055ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.testimonial-platform {
  font-size: 11px;
  color: var(--text-dim);
}

.testimonial-stars {
  margin-left: auto;
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 60px rgba(0, 242, 255, 0.3);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--cyan));
}

.footer-brand-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--text);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 220px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-links-group a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}

.footer-links-group a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text-muted);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  max-width: 300px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), var(--cyan-glow);
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-green 1.5s infinite;
}

.toast-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-muted);
}

.toast-text strong {
  color: var(--text);
  font-family: var(--font-heading);
}

.toast-time {
  font-size: 11px;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  background: var(--cyan-dim);
  border: 1.5px solid var(--border-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  cursor: pointer;
  box-shadow: var(--cyan-glow);
  transition: all 0.3s;
}

.chat-widget:hover {
  background: var(--cyan);
  color: #000;
  transform: scale(1.1);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .plan-choice-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    flex-direction: column;
  }
  
  .vs-divider {
    writing-mode: horizontal-tb;
    padding: 14px 32px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .hardware-col {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .one-time-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    justify-content: center;
  }

  .navbar {
    padding: 12px 16px;
  }
}

/* ============================================
   STATUS PAGE STYLES
   ============================================ */
.status-page {
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

/* Status Hero Hub */
.status-hero {
  background: rgba(13, 8, 32, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.status-hub {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-cyan);
  opacity: 0.3;
}

.hub-ring-1 { inset: 0; animation: rotate 20s linear infinite; border-style: dashed; }
.hub-ring-2 { inset: 15px; animation: rotate 15s linear reverse infinite; opacity: 0.5; }
.hub-ring-3 { inset: 30px; border-color: var(--cyan); opacity: 0.2; }

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

.hub-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hub-title {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.hub-main-status {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  letter-spacing: 0.05em;
  max-width: 100px;
  line-height: 1.2;
}

.hub-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent 70%);
  animation: hubPulse 2s ease-out infinite;
}

@keyframes hubPulse {
  0% { transform: scale(0.8); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.status-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 600px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.meta-value {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.meta-sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.glow-green { color: #00ff88; text-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
.glow-purple { color: #a78bfa; text-shadow: 0 0 10px rgba(167, 139, 250, 0.3); }
.glow-cyan { color: #22d3ee; text-shadow: 0 0 10px rgba(34, 211, 238, 0.3); }
.glow-amber { color: #fbbf24; text-shadow: 0 0 10px rgba(251, 191, 36, 0.3); }

/* Uptime Section */
.uptime-section {
  background: rgba(13, 8, 32, 0.3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sh-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
}

.sh-left h2 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sh-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.uptime-visual {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.uptime-grid-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.uptime-bars {
  display: flex;
  gap: 4px;
  height: 44px;
  margin-bottom: 20px;
}

.u-bar {
  flex: 1;
  background: #00ff88;
  border-radius: 3px;
  opacity: 0.6;
  transition: all 0.2s;
  cursor: help;
}

.u-bar:hover {
  opacity: 1;
  transform: scaleY(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.u-bar.u-degraded {
  background: var(--amber);
  opacity: 0.8;
}

.uptime-legend {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.leg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-dim);
}

.leg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.leg-dot.green { background: #00ff88; box-shadow: 0 0 8px rgba(0, 255, 136, 0.5); }
.leg-dot.amber { background: var(--amber); }
.leg-dot.red { background: #ef4444; }

/* Service Panels */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.service-panel {
  background: rgba(13, 8, 32, 0.3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s;
}

.service-panel:hover {
  border-color: var(--border-cyan);
  background: rgba(139, 92, 246, 0.05);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.panel-tag {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
}

.cyan-tag {
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
}

.status-indicator {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-indicator.online { color: #00ff88; }
.status-indicator.online::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
}

.panel-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.panel-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  height: 36px;
  overflow: hidden;
}

.panel-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.p-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-stat span {
  font-family: var(--font-heading);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.p-stat strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

/* Log Feed */
.system-logs {
  background: #050308;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  font-family: 'Courier New', Courier, monospace;
}

.log-entries {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.log-entry {
  font-size: 12px;
  line-height: 1.4;
  display: flex;
  gap: 12px;
}

.log-time { color: var(--text-dim); width: 85px; }
.log-type { color: var(--cyan); width: 50px; font-weight: bold; }
.log-msg { color: var(--text-muted); }

@media (max-width: 768px) {
  .status-meta {
    flex-direction: column;
    gap: 20px;
  }
  
  .meta-sep { 
    width: 40px; 
    height: 1px; 
  }
  
  .uptime-bars { 
    gap: 2px; 
    height: 30px; 
  }
  
  .u-bar:nth-child(even) { 
    display: none; 
  }
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #0d0a1a;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.15);
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.modal-header svg {
  color: var(--cyan);
}

.modal-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.modal-body p {
  margin-bottom: 16px;
}

.modal-body ol, .modal-body ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.modal-body li {
  margin-bottom: 10px;
}

.modal-body b {
  color: var(--cyan);
}

.modal-note {
  font-size: 12px;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--cyan);
}

.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.modal-footer .btn {
  padding: 10px 22px;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05));
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-card {
  background: rgba(13, 8, 32, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-cyan);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), var(--cyan-glow);
}

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

.partner-icon {
  width: 140px;
  height: 60px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform 0.3s;
}

.partner-card:hover .partner-icon {
  transform: scale(1.05);
  border-color: var(--border-cyan);
  background: rgba(139, 92, 246, 0.05);
}

.partner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.3));
}

.partner-info h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.partner-info p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .partner-card {
    padding: 20px 24px;
  }
}
