/* ==========================================================================
   EasyDropsMiner — Raycast-style theme
   Void-black canvas, single coral accent, keyboard-key card shadows, Inter
   ========================================================================== */

:root {
  /* Colors */
  --color-void-black: #040506;
  --color-ink: #07080a;
  --color-obsidian: #111214;
  --color-graphite: #1b1c1e;
  --color-smoke: #6a6b6c;
  --color-ash: #9c9c9d;
  --color-mist: #e6e6e6;
  --color-iron: #454647;
  --color-slate: #2f3031;
  --color-pure-white: #ffffff;
  --color-coral-pulse: #ff6363;
  --color-ember-hush: #452324;
  --color-electric-sky: #63a1ff;
  --color-cobalt-edge: #143ca3;
  --color-deep-space: #02193b;
  --color-info-blue: #56c2ff;
  --color-success-green: #59d499;
  --color-border: #26272a;
  --color-border-soft: #1c1d1f;

  --font-inter: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --radius-cards: 16px;
  --radius-pills: 9999px;
  --radius-badges: 6px;
  --radius-inputs: 8px;
  --radius-buttons: 8px;
  --radius-largecards: 20px;
  --radius-icon: 99999px;

  --shadow-key:
    rgba(255,255,255,0.05) 0px 1px 0px 0px inset,
    rgba(255,255,255,0.16) 0px 0px 0px 1px,
    rgba(0,0,0,0.35) 0px -1px 0px 0px inset;
  --shadow-btn: rgba(0,0,0,0.03) 0px 7px 3px 0px, rgba(0,0,0,0.25) 0px 4px 4px 0px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-inter);
  background: var(--color-void-black);
  color: var(--color-ash);
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: 'calt','kern','liga';
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3 { color: var(--color-pure-white); font-weight: 500; }

.gradient-text { color: var(--color-coral-pulse); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-buttons); font-weight: 500; font-size: 14px;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--color-mist); color: var(--color-iron);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-outline {
  background: transparent; border: 1px solid var(--color-border); color: var(--color-ash);
}
.btn-outline:hover { border-color: var(--color-slate); color: var(--color-pure-white); }
.btn-ghost { color: var(--color-ash); }
.btn-ghost:hover { color: var(--color-pure-white); }
.btn-lg { padding: 12px 24px; font-size: 15px; }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.3s ease;
  padding: 16px 0;
}
.navbar.scrolled { padding: 12px 0; }
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
  border-radius: var(--radius-pills);
  border: 1px solid var(--color-border);
  background: rgba(7,8,10,0.72);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  padding: 0 12px 0 20px;
  transition: all 0.3s ease;
}
.navbar.scrolled .nav-container { background: rgba(4,5,6,0.9); }
.logo {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 500; color: var(--color-pure-white); letter-spacing: 0.01em;
}
.logo-icon { font-size: 15px; color: var(--color-coral-pulse); }
.logo-accent { color: var(--color-coral-pulse); }
.nav-links {
  display: flex; list-style: none; gap: 28px;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--color-ash);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-pure-white); }
.nav-actions {
  display: flex; align-items: center; gap: 14px;
}
.lang-switcher {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-family: var(--font-mono);
}
.lang-btn {
  padding: 4px 6px; border-radius: 4px;
  color: var(--color-smoke); font-weight: 500;
  transition: all 0.2s;
}
.lang-btn.active { color: var(--color-pure-white); }
.lang-btn:hover { color: var(--color-pure-white); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--color-ash); border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 88px; padding-bottom: 60px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.gradient-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.55; pointer-events: none;
}
.orb-1 { width: 560px; height: 560px; background: radial-gradient(circle, var(--color-cobalt-edge), var(--color-deep-space) 70%); top: -160px; left: -140px; opacity: 0.6; animation: float 22s infinite ease-in-out; }
.orb-2 { width: 420px; height: 420px; background: var(--color-electric-sky); top: 4%; right: -100px; opacity: 0.28; animation: float 22s infinite ease-in-out; animation-delay: -7s; }
.orb-3 { width: 460px; height: 460px; background: var(--color-coral-pulse); bottom: -160px; left: 32%; opacity: 0.28; animation: float 22s infinite ease-in-out; animation-delay: -14s; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 40%, transparent 90%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 780px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px; border-radius: var(--radius-pills);
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.03);
  color: var(--color-ash); font-size: 12px; font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  font-family: var(--font-mono);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-success-green); animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(34px, 5.4vw, 56px);
  font-weight: 400; line-height: 1.15;
  letter-spacing: 0.002em; margin-bottom: 20px;
  color: var(--color-pure-white);
}
.hero-subtitle {
  font-size: 17px; color: var(--color-ash); font-weight: 400;
  max-width: 560px; margin: 0 auto 36px;
}
.hero-cta {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.stat-item {
  display: flex; align-items: center; gap: 12px;
}
.stat-icon {
  width: 36px; height: 36px; border-radius: var(--radius-icon);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-obsidian) !important;
  border: 1px solid var(--color-border);
}
.stat-icon svg { stroke: var(--color-ash) !important; width: 16px; height: 16px; }
.stat-number { font-size: 18px; font-weight: 500; display: block; color: var(--color-pure-white); }
.stat-label { font-size: 12px; color: var(--color-smoke); }
.stat-divider { width: 1px; height: 32px; background: var(--color-border); }

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 44px 0;
  background: var(--color-ink);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stats-item { text-align: center; }
.stats-number {
  font-size: 32px; font-weight: 500;
  color: var(--color-pure-white);
  display: inline;
  font-family: var(--font-mono);
}
.stats-suffix {
  font-size: 32px; font-weight: 500;
  color: var(--color-pure-white);
  font-family: var(--font-mono);
}
.stats-label { font-size: 13px; color: var(--color-smoke); margin-top: 6px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-tag {
  display: inline-flex; padding: 0 10px; height: 22px; align-items: center; border-radius: var(--radius-badges);
  border: 1px solid var(--color-border); background: var(--color-graphite);
  color: var(--color-ash); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(26px, 3.6vw, 36px); font-weight: 400;
  letter-spacing: 0; margin-bottom: 14px;
  color: var(--color-pure-white);
}
.section-subtitle {
  font-size: 16px; color: var(--color-smoke);
}

/* ===== CARD BASE (keyboard-key treatment) ===== */
.feature-card, .module-card, .pricing-card, .screenshot-card, .demo-frame, .terminal-window, .cta-box {
  background: var(--color-ink);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-key);
}

/* ===== FEATURES ===== */
.features { padding: 96px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
}
.feature-card {
  border-radius: var(--radius-cards); padding: 28px;
  transition: all 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-slate);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius-icon);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--color-obsidian) !important;
  border: 1px solid var(--color-border);
}
.feature-icon svg { stroke: var(--color-mist) !important; width: 18px; height: 18px; }
.feature-card h3 {
  font-size: 17px; font-weight: 500; margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px; color: var(--color-smoke); line-height: 1.6;
}

/* ===== DEMO ===== */
.demo-section { padding: 96px 0; }
.demo-frame {
  max-width: 1000px; margin: 0 auto;
  border-radius: var(--radius-largecards);
  overflow: hidden;
}
.demo-window { display: flex; min-height: 480px; }
.demo-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: var(--color-obsidian);
  border-bottom: 1px solid var(--color-border-soft);
}
.demo-dots { display: flex; gap: 6px; }
.demo-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--color-graphite);
}
.demo-title { font-size: 12px; color: var(--color-smoke); font-family: var(--font-mono); margin-left: 8px; }

/* Sidebar */
.demo-sidebar {
  width: 176px; background: var(--color-obsidian);
  border-right: 1px solid var(--color-border-soft);
  padding: 8px 0;
}
.demo-sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; width: 100%;
  font-size: 13px; font-weight: 500;
  color: var(--color-smoke); transition: all 0.2s;
  border-left: 2px solid transparent;
}
.demo-sidebar-item:hover { color: var(--color-ash); background: rgba(255,255,255,0.02); }
.demo-sidebar-item.active {
  color: var(--color-pure-white); background: rgba(255,255,255,0.03);
  border-left-color: var(--color-coral-pulse);
}

/* Main */
.demo-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.demo-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 12px 16px; background: var(--color-ink);
  border-bottom: 1px solid var(--color-border-soft);
}
.demo-stat-card {
  background: var(--color-void-black); border-radius: var(--radius-inputs); padding: 10px 12px;
  border: 1px solid var(--color-border-soft);
}
.demo-stat-label { font-size: 11px; color: var(--color-smoke); margin-bottom: 4px; }
.demo-stat-value { font-size: 18px; font-weight: 500; color: var(--color-pure-white); font-family: var(--font-mono); }

/* Action Bar */
.demo-action-bar {
  display: flex; gap: 10px; padding: 12px 16px;
  background: var(--color-obsidian);
  border-bottom: 1px solid var(--color-border-soft);
}
.demo-btn-start {
  padding: 8px 16px; border-radius: var(--radius-buttons);
  background: var(--color-mist); color: var(--color-iron);
  font-size: 12px; font-weight: 500;
  transition: all 0.2s;
}
.demo-btn-start:hover:not(:disabled) { filter: brightness(1.05); }
.demo-btn-start:disabled { opacity: 0.5; cursor: not-allowed; }
.demo-btn-stop {
  padding: 8px 16px; border-radius: var(--radius-buttons);
  background: transparent; border: 1px solid var(--color-border);
  color: var(--color-ash);
  font-size: 12px; font-weight: 500;
  transition: all 0.2s;
}
.demo-btn-stop:hover { border-color: var(--color-slate); color: var(--color-pure-white); }
.demo-btn-add {
  padding: 8px 16px; border-radius: var(--radius-buttons);
  background: var(--color-graphite); border: 1px solid var(--color-border-soft);
  color: var(--color-ash); font-size: 12px; font-weight: 500;
  margin-left: auto;
}

/* Table */
.demo-tab-content { flex: 1; overflow: auto; max-height: 280px; }
.demo-tab-content.hidden { display: none; }
.demo-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.demo-table th {
  text-align: left; padding: 10px 16px;
  background: var(--color-obsidian); color: var(--color-smoke);
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  position: sticky; top: 0;
}
.demo-table td { padding: 10px 16px; border-top: 1px solid var(--color-border-soft); color: var(--color-ash); }
.demo-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.demo-table td:nth-child(2) { font-family: var(--font-mono); color: var(--color-pure-white); }
.status-badge {
  display: inline-flex; padding: 3px 10px; border-radius: var(--radius-pills);
  font-size: 11px; font-weight: 500;
}
.status-idle { background: rgba(255,255,255,0.06); color: var(--color-smoke); }
.status-farming { background: rgba(89,212,153,0.12); color: var(--color-success-green); }
.status-error { background: rgba(255,99,99,0.12); color: var(--color-coral-pulse); }
.progress-bar {
  width: 100%; height: 5px; background: var(--color-obsidian);
  border-radius: 3px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 3px;
  background: var(--color-mist);
  transition: width 2s ease-out;
}
.demo-row-btn {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 4px;
  background: var(--color-obsidian);
  border: 1px solid var(--color-border-soft);
}
.demo-row-btn.play svg { fill: var(--color-success-green) !important; }
.demo-row-btn.play:hover { border-color: var(--color-slate); }
.demo-row-btn.stop svg { fill: var(--color-coral-pulse) !important; }
.demo-row-btn.stop:hover { border-color: var(--color-slate); }

/* Chart */
.demo-chart { padding: 24px; }
.demo-chart-title { font-size: 13px; font-weight: 500; margin-bottom: 16px; color: var(--color-pure-white); }
.demo-chart-bars {
  display: flex; align-items: flex-end; gap: 12px; height: 120px;
}
.demo-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: var(--color-obsidian);
  border: 1px solid var(--color-border-soft);
  border-bottom: none;
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 8px;
}
.demo-bar::after {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px;
  background: var(--color-coral-pulse); opacity: 0.7;
}
.demo-bar span { font-size: 11px; color: var(--color-smoke); }

/* Logs */
.demo-logs { padding: 16px; font-family: var(--font-mono); font-size: 12px; }
.log-line { margin-bottom: 4px; }
.log-info .log-level { color: var(--color-electric-sky); }
.log-success .log-level { color: var(--color-success-green); }
.log-error .log-level { color: var(--color-coral-pulse); }
.log-text { color: var(--color-ash); }

/* Completed */
.demo-completed-list { padding: 16px; }
.demo-completed-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--color-border-soft);
}
.demo-completed-item strong { display: block; font-size: 14px; color: var(--color-pure-white); font-weight: 500; }
.demo-completed-item span { font-size: 12px; color: var(--color-smoke); }

/* Settings */
.demo-settings { padding: 16px; }
.demo-setting-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--color-border-soft);
}
.demo-setting-row span { font-size: 14px; color: var(--color-ash); }
.demo-toggle {
  width: 36px; height: 18px; border-radius: 10px;
  background: var(--color-graphite); position: relative; cursor: pointer;
  transition: background 0.3s;
  border: 1px solid var(--color-border-soft);
}
.demo-toggle::after {
  content: ''; position: absolute;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-mist); top: 1px; left: 1px;
  transition: transform 0.3s;
}
.demo-toggle.active { background: rgba(255,99,99,0.18); border-color: rgba(255,99,99,0.3); }
.demo-toggle.active::after { transform: translateX(18px); background: var(--color-coral-pulse); }

/* Console */
.demo-console {
  height: 116px; overflow-y: auto;
  background: var(--color-void-black); border-top: 1px solid var(--color-border-soft);
  padding: 12px 16px; font-family: var(--font-mono);
  font-size: 12px; line-height: 1.6;
}
.console-line { margin-bottom: 2px; }
.console-level-info { color: var(--color-electric-sky); }
.console-level-success { color: var(--color-success-green); }
.console-level-error { color: var(--color-coral-pulse); }
.console-level-warning { color: #d4b06a; }
.console-text { color: var(--color-ash); }
.console-cursor { animation: blink 1s infinite; }

/* ===== MODULES ===== */
.modules { padding: 96px 0; }
.modules-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.module-card {
  border-radius: var(--radius-cards); padding: 28px;
  transition: all 0.25s ease;
}
.module-card:hover { transform: translateY(-2px); border-color: var(--color-slate); }
.module-icon {
  width: 44px; height: 44px; border-radius: var(--radius-icon);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--color-obsidian) !important;
  border: 1px solid var(--color-border);
}
.module-icon svg { stroke: var(--color-mist) !important; width: 18px; height: 18px; }
.module-card h3 { font-size: 17px; font-weight: 500; margin-bottom: 10px; }
.module-card p { font-size: 14px; color: var(--color-smoke); line-height: 1.6; margin-bottom: 18px; }
.module-features { list-style: none; }
.module-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--color-ash); margin-bottom: 8px;
}
.module-features li svg { stroke: var(--color-success-green) !important; }

/* ===== VPS ===== */
.vps-section { padding: 96px 0; background: var(--color-ink); border-top: 1px solid var(--color-border-soft); border-bottom: 1px solid var(--color-border-soft); }
.vps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.vps-desc { font-size: 16px; color: var(--color-smoke); line-height: 1.65; margin: 20px 0 28px; }
.vps-features { list-style: none; }
.vps-features li {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; font-size: 15px; color: var(--color-ash);
}
.vps-features li svg { stroke: var(--color-success-green) !important; flex-shrink: 0; }
.terminal-window {
  border-radius: var(--radius-cards);
  background: var(--color-void-black); overflow: hidden;
}
.terminal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--color-border-soft);
  background: var(--color-obsidian);
}
.terminal-dots { display: flex; gap: 6px; }
.terminal-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--color-graphite); }
.terminal-title { font-size: 12px; color: var(--color-smoke); font-family: var(--font-mono); }
.terminal-body { padding: 16px; min-height: 260px; }
.terminal-line { font-family: var(--font-mono); font-size: 13px; margin-bottom: 6px; }
.terminal-prompt { color: var(--color-coral-pulse); }
.terminal-path { color: var(--color-electric-sky); }
.terminal-fade { color: var(--color-smoke); }
.terminal-cursor { color: var(--color-ash); animation: blink 1s infinite; }

/* ===== SCREENSHOTS ===== */
.screenshots { padding: 96px 0; }
.screenshots-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.screenshot-card {
  border-radius: var(--radius-cards); overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.screenshot-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.screenshot-card-telegram img {
  object-fit: contain;
  background: var(--color-void-black);
  padding: 10px;
}
.screenshot-card:hover img { transform: scale(1.02); }
.screenshot-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--color-smoke);
}

/* ===== PRICING ===== */
.pricing { padding: 96px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
  max-width: 1000px; margin: 0 auto;
}
.pricing-card {
  border-radius: var(--radius-cards); padding: 28px;
  position: relative; transition: all 0.25s;
}
.pricing-card:hover { transform: translateY(-2px); }
.pricing-card.popular {
  border-color: rgba(255,99,99,0.3);
  background: linear-gradient(180deg, var(--color-ember-hush) 0%, var(--color-ink) 40%);
}
.popular-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: 3px 12px; border-radius: var(--radius-pills);
  background: var(--color-coral-pulse); color: var(--color-void-black);
  font-size: 11px; font-weight: 600;
}
.pricing-card h3 { font-size: 18px; font-weight: 500; margin-bottom: 16px; color: var(--color-pure-white); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing-currency { font-size: 22px; font-weight: 500; color: var(--color-pure-white); }
.pricing-amount { font-size: 44px; font-weight: 500; color: var(--color-pure-white); font-family: var(--font-mono); letter-spacing: -0.02em; }
.pricing-label { font-size: 13px; color: var(--color-smoke); display: block; margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 14px; color: var(--color-ash);
  border-top: 1px solid var(--color-border-soft);
}
.pricing-features li svg { stroke: var(--color-success-green) !important; flex-shrink: 0; }

/* ===== FAQ ===== */
.faq { padding: 96px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border-soft); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 22px 0;
  font-size: 15px; font-weight: 500; color: var(--color-pure-white);
  text-align: left;
}
.faq-question:hover { color: var(--color-mist); }
.faq-icon { transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; color: var(--color-smoke); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px; padding-bottom: 22px;
}
.faq-answer p { font-size: 14px; color: var(--color-smoke); line-height: 1.65; }

/* ===== CTA ===== */
.cta-section { padding: 96px 0 120px; }
.cta-box {
  position: relative; text-align: center;
  border-radius: var(--radius-largecards); padding: 80px 40px;
  overflow: hidden;
}
.cta-orb {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--color-coral-pulse), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0.16;
  filter: blur(80px);
}
.cta-box h2 { font-size: 34px; font-weight: 400; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-box p { font-size: 16px; color: var(--color-smoke); margin-bottom: 32px; position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.footer { padding: 56px 0 32px; border-top: 1px solid var(--color-border-soft); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--color-smoke); }
.footer-links h4 { font-size: 13px; font-weight: 500; margin-bottom: 16px; color: var(--color-pure-white); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: var(--color-smoke); transition: color 0.2s; }
.footer-links a:hover { color: var(--color-pure-white); }
.footer-bottom {
  text-align: center; padding-top: 28px;
  border-top: 1px solid var(--color-border-soft);
  font-size: 12px; color: var(--color-smoke);
  font-family: var(--font-mono);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-30px) translateX(20px); }
  66% { transform: translateY(20px) translateX(-20px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .nav-links, .nav-actions .btn-ghost, .nav-actions .btn-primary { display: none; }
  .nav-actions { gap: 12px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 84px; left: 16px; right: 16px;
    background: rgba(4,5,6,0.98); backdrop-filter: blur(20px);
    flex-direction: column; gap: 0; padding: 8px;
    border: 1px solid var(--color-border); border-radius: var(--radius-cards);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.mobile-open {
    transform: translateY(0); opacity: 1; pointer-events: all;
  }
  .nav-links li { border-bottom: 1px solid var(--color-border-soft); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 12px 12px; font-size: 15px; }
  .features-grid, .modules-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .vps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .modules-grid, .pricing-grid, .screenshots-grid { grid-template-columns: 1fr; }
  .demo-window { flex-direction: column; }
  .demo-sidebar { width: 100%; display: flex; overflow-x: auto; }
  .demo-sidebar-item { min-width: 120px; justify-content: center; }
  .demo-stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 48px 24px; }
  .cta-box h2 { font-size: 26px; }
}

/* ===== CUSTOM SCROLLBAR ===== */
* { scrollbar-width: thin; scrollbar-color: var(--color-slate) var(--color-void-black); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-void-black); }
::-webkit-scrollbar-thumb { background: var(--color-slate); border-radius: 10px; border: 2px solid var(--color-void-black); }
::-webkit-scrollbar-thumb:hover { background: var(--color-iron); }
::-webkit-scrollbar-corner { background: var(--color-void-black); }


/* EasyDropsMiner tariff cards */
.edm-tariffs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.billing-pills { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: -4px 0 16px; }
.billing-pills span { border: 1px solid var(--color-border); border-radius: 10px; padding: 9px 0; text-align: center; color: var(--color-smoke); font-family: var(--font-mono); font-size: 13px; background: rgba(255,255,255,.03); cursor: pointer; transition: border-color .2s, color .2s, background .2s, transform .2s; }
.billing-pills span:hover { border-color: rgba(0,245,255,.55); color: var(--color-pure-white); transform: translateY(-1px); }
.billing-pills span.active { border-color: var(--color-purple); color: var(--color-pure-white); background: rgba(145,70,255,.16); box-shadow: 0 0 0 1px rgba(145,70,255,.14) inset; }
.pricing-note { margin: 24px auto 0; max-width: 780px; text-align: center; color: var(--color-smoke); font-size: 14px; }
.pricing-features li.muted { color: var(--color-smoke); opacity: .8; }
.pricing-features li.muted span:first-child { color: #ff6b6b; font-size: 18px; line-height: 1; }
@media (max-width: 980px) { .edm-tariffs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .edm-tariffs { grid-template-columns: 1fr; } }

/* ===== DOCS ===== */
.docs-body {
    background:
        radial-gradient(circle at 12% 8%, rgba(145,70,255,.18), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(0,245,255,.10), transparent 28%),
        #0B0B14;
    color: #E2E8F0;
    overflow-x: hidden;
}
.docs-shell {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    padding: 72px 0 0;
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr) minmax(230px, 300px);
    gap: 0;
}
.docs-sidebar,
.docs-content-wrap,
.docs-toc-card {
    background: rgba(18,18,31,.58);
    border: 0;
    box-shadow: none;
    backdrop-filter: blur(18px);
}
.docs-sidebar {
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    overflow: auto;
    border-right: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
    padding: 26px 22px 34px;
    background:
        linear-gradient(180deg, rgba(22,18,39,.88), rgba(11,11,20,.78)),
        rgba(18,18,31,.82);
}
.docs-sidebar-head h1 { font-size: 24px; margin: 14px 0 8px; }
.docs-sidebar-head p { color: #94A3B8; line-height: 1.55; font-size: 14px; }
.docs-search { display: grid; gap: 8px; margin: 22px 0; color: #94A3B8; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.docs-search input,
.docs-editor input,
.docs-editor textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(7,7,14,.78);
    color: #E2E8F0;
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
}
.docs-search input:focus,
.docs-editor input:focus,
.docs-editor textarea:focus {
    border-color: rgba(145,70,255,.8);
    box-shadow: 0 0 0 4px rgba(145,70,255,.15);
}
.docs-tree { display: grid; gap: 18px; }
.docs-tree-group { display: grid; gap: 6px; }
.docs-tree-group strong { color: #00F5FF; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin: 5px 0; }
.docs-tree-group a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #A9B7D0;
    border-radius: 14px;
    padding: 10px 12px;
    border: 1px solid transparent;
    transition: .18s ease;
}
.docs-tree-group a:hover,
.docs-tree-group a.active {
    color: #fff;
    background: rgba(145,70,255,.16);
    border-color: rgba(145,70,255,.28);
}
.docs-tree-group em {
    color: #FFD166;
    font-size: 11px;
    font-style: normal;
}
.docs-admin-card {
    margin-top: 22px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(0,245,255,.06);
    border: 1px solid rgba(0,245,255,.18);
}
.docs-admin-card p { color: #94A3B8; font-size: 13px; line-height: 1.5; margin: 6px 0 14px; }
.docs-content-wrap {
    min-height: calc(100vh - 72px);
    border-right: 1px solid rgba(255,255,255,.07);
    border-radius: 0;
    padding: 44px clamp(32px, 5vw, 86px) 80px;
    background:
        radial-gradient(circle at 25% 5%, rgba(145,70,255,.10), transparent 34%),
        rgba(11,11,20,.50);
}
.docs-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    max-width: 1080px;
}
.docs-breadcrumb { color: #00F5FF; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.docs-topbar h2 { font-size: clamp(32px, 3vw, 46px); margin: 10px 0 10px; line-height: 1.08; }
.docs-topbar p { color: #94A3B8; font-size: 16px; line-height: 1.6; max-width: 760px; }
.docs-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.docs-danger { border-color: rgba(255,107,107,.45); color: #FF8B8B; }
.docs-article {
    max-width: 980px;
    padding-top: 28px;
    color: #C9D4E8;
    font-size: 15.5px;
    line-height: 1.74;
}
.docs-article h1,
.docs-article h2,
.docs-article h3,
.docs-article h4 {
    color: #fff;
    line-height: 1.18;
    scroll-margin-top: 110px;
}
.docs-article h1 { font-size: 32px; margin: 8px 0 20px; }
.docs-article h2 { font-size: 23px; margin: 32px 0 12px; }
.docs-article h3 { font-size: 19px; margin: 24px 0 10px; }
.docs-article p { margin: 0 0 16px; }
.docs-article ul,
.docs-article ol { padding-left: 22px; margin: 0 0 18px; display: grid; gap: 8px; }
.docs-article code {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(145,70,255,.14);
    color: #D9C2FF;
    border: 1px solid rgba(145,70,255,.18);
    padding: 2px 6px;
    border-radius: 7px;
}
.docs-loading,
.docs-error {
    border-radius: 18px;
    padding: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}
.docs-error { color: #FF8B8B; border-color: rgba(255,107,107,.25); }
.docs-editor {
    margin-top: 28px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(7,7,14,.72);
    border: 1px solid rgba(145,70,255,.22);
    display: grid;
    gap: 16px;
}
.docs-editor[hidden] { display: none; }
.docs-editor label { display: grid; gap: 8px; color: #94A3B8; font-size: 13px; font-weight: 700; }
.docs-editor-grid { display: grid; grid-template-columns: 1.2fr 1.2fr 1fr 110px; gap: 14px; }
.docs-editor textarea { resize: vertical; min-height: 320px; font-family: 'JetBrains Mono', monospace; line-height: 1.6; }
.docs-checkbox { display: flex !important; grid-template-columns: auto 1fr; align-items: center; }
.docs-checkbox input { width: auto; }
.docs-editor-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.docs-toc {
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    overflow: auto;
    padding: 26px 20px;
    background: rgba(7,10,18,.35);
}
.docs-toc-card {
    border-radius: 18px;
    padding: 18px;
    background: rgba(18,18,31,.62);
    border: 1px solid rgba(255,255,255,.07);
}
.docs-toc-card > span { display: block; color: #94A3B8; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.docs-toc nav { display: grid; gap: 8px; }
.docs-toc a { color: #94A3B8; font-size: 14px; line-height: 1.35; }
.docs-toc a:hover { color: #00F5FF; }
.docs-toc a.toc-child { padding-left: 12px; font-size: 13px; }
.nav-links a.active { color: #fff; }
@media (max-width: 1180px) {
    .docs-shell { grid-template-columns: 280px minmax(0, 1fr); }
    .docs-toc { display: none; }
}
@media (max-width: 860px) {
    .docs-shell { width: 100%; grid-template-columns: 1fr; padding-top: 72px; }
    .docs-sidebar { position: relative; top: 0; height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .docs-content-wrap { min-height: auto; padding: 28px 20px 56px; border-right: 0; }
    .docs-topbar { display: grid; }
    .docs-editor-grid { grid-template-columns: 1fr; }
}

/* Docs custom scrollbar */
body.docs-body,
body.docs-body .docs-sidebar,
body.docs-body .docs-content-wrap,
body.docs-body .docs-article,
body.docs-body .docs-toc {
    scrollbar-width: thin;
    scrollbar-color: #9146FF rgba(11, 11, 20, 0.65);
}

body.docs-body::-webkit-scrollbar,
body.docs-body .docs-sidebar::-webkit-scrollbar,
body.docs-body .docs-content-wrap::-webkit-scrollbar,
body.docs-body .docs-article::-webkit-scrollbar,
body.docs-body .docs-toc::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

body.docs-body::-webkit-scrollbar-track,
body.docs-body .docs-sidebar::-webkit-scrollbar-track,
body.docs-body .docs-content-wrap::-webkit-scrollbar-track,
body.docs-body .docs-article::-webkit-scrollbar-track,
body.docs-body .docs-toc::-webkit-scrollbar-track {
    background: rgba(11, 11, 20, 0.65);
    border-radius: 999px;
}

body.docs-body::-webkit-scrollbar-thumb,
body.docs-body .docs-sidebar::-webkit-scrollbar-thumb,
body.docs-body .docs-content-wrap::-webkit-scrollbar-thumb,
body.docs-body .docs-article::-webkit-scrollbar-thumb,
body.docs-body .docs-toc::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #9146FF, #00F5FF);
    border: 2px solid rgba(11, 11, 20, 0.85);
    border-radius: 999px;
}

body.docs-body::-webkit-scrollbar-thumb:hover,
body.docs-body .docs-sidebar::-webkit-scrollbar-thumb:hover,
body.docs-body .docs-content-wrap::-webkit-scrollbar-thumb:hover,
body.docs-body .docs-article::-webkit-scrollbar-thumb:hover,
body.docs-body .docs-toc::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00F5FF, #9146FF);
}

body.docs-body::-webkit-scrollbar-corner,
body.docs-body .docs-sidebar::-webkit-scrollbar-corner,
body.docs-body .docs-content-wrap::-webkit-scrollbar-corner,
body.docs-body .docs-article::-webkit-scrollbar-corner,
body.docs-body .docs-toc::-webkit-scrollbar-corner {
    background: rgba(11, 11, 20, 0.65);
}
