/* ═══════════════════════════════════════════════════════════
   CSS VARIABLES
════════════════════════════════════════════════════════════════ */
:root {
  --purple:      #7c3aed;
  --purple-dark: #5b21b6;
  --purple-light:#a78bfa;
  --bg0:         #08080f;
  --bg1:         #0d0d1a;
  --bg2:         #12121f;
  --bg3:         #1a1a2e;
  --card:        #111120;
  --border:      #1e1e3a;
  --border2:     #2a2a4a;
  --text:        #d4d4e8;
  --text-dim:    #7878a0;
  --text-hi:     #ffffff;
  --radius:      12px;
  --radius-sm:   8px;
}

/* ═══════════════════════════════════════════════════════════
   BASE
════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg0);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: rgba(124,58,237,0.35); }

/* ─── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2a2a4a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a6a; }

/* ─── Typography helpers ──────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--purple-light), #c084fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ls-wide { letter-spacing: 0.08em; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════ */
.db-navbar {
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  z-index: 1030;
  transition: background 0.3s;
}

.brand-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
  flex-shrink: 0;
}
.brand-icon-sm { width: 28px; height: 28px; font-size: 13px; border-radius: 6px; }

.brand-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-hi);
  letter-spacing: -0.02em;
}

.db-navbar .nav-link {
  color: var(--text-dim) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.db-navbar .nav-link:hover {
  color: var(--text-hi) !important;
  background: rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════════ */
.db-btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.db-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(124,58,237,0.5);
}
.db-btn-primary:active { transform: translateY(0); }

.db-btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border2);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.db-btn-ghost:hover {
  border-color: var(--purple-light);
  background: rgba(124,58,237,0.08);
  transform: translateY(-1px);
}

.btn-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.db-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,0.18) 0%, transparent 70%),
              var(--bg0);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(124,58,237,0.15);
  top: -150px; left: 50%;
  transform: translateX(-50%);
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(99,102,241,0.1);
  bottom: 0; right: 10%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--purple-light);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text-hi);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-meta {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── Hero Mockup ────────────────────────────────────────── */
.hero-mockup {
  margin-top: 64px;
  perspective: 1200px;
}

.mockup-window {
  background: #0d0d1a;
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
  transform: rotateX(4deg) scale(0.97);
  transform-origin: top center;
  transition: transform 0.4s ease;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.mockup-window:hover { transform: rotateX(0deg) scale(1); }

.mockup-titlebar {
  background: #0a0a14;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.mockup-traffic { display: flex; gap: 6px; }
.traffic-dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #27c93f; }
.mockup-title { font-size: 12px; color: var(--text-dim); flex: 1; text-align: center; }
.mockup-controls { display: flex; gap: 6px; }
.mockup-ctrl-btn { width: 8px; height: 8px; border-radius: 2px; background: var(--border2); }

.mockup-body { display: flex; height: 260px; }

.mockup-sidebar {
  width: 140px;
  background: #0a0a12;
  border-right: 1px solid var(--border);
  padding: 10px 0;
  flex-shrink: 0;
}
.mockup-sidebar-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  padding: 0 10px 6px;
}
.mockup-file, .mockup-folder {
  font-size: 11px;
  padding: 3px 10px;
  color: var(--text-dim);
  cursor: default;
  display: flex; align-items: center;
}
.mockup-file.active { background: #1a1a30; color: var(--text-hi); }
.mockup-folder { color: #e2c08d; }
.mockup-file.indent { padding-left: 22px; }

.mockup-editor {
  flex: 1;
  background: #0f0f1e;
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.mockup-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #0a0a14;
}
.mockup-tab {
  font-size: 11px;
  padding: 6px 14px;
  color: var(--text-dim);
  border-right: 1px solid var(--border);
  cursor: default;
}
.mockup-tab.active { background: #0f0f1e; color: var(--text-hi); }
.tab-dot { color: var(--purple-light); }

.mockup-code { padding: 10px; font-family: 'Consolas', monospace; }
.code-line { display: flex; align-items: baseline; gap: 10px; font-size: 11px; line-height: 1.7; }
.ln { color: #3a3a5a; min-width: 14px; text-align: right; user-select: none; }
.tag  { color: #569cd6; }
.attr { color: #9cdcfe; }
.str  { color: #ce9178; }
.cursor-line { position: relative; }
.cursor {
  display: inline-block; width: 2px; height: 13px;
  background: var(--purple-light);
  animation: blink 1.1s step-end infinite;
  vertical-align: text-bottom; margin-left: 1px;
}

.mockup-browser {
  width: 220px;
  background: #0d0d1a;
  flex-shrink: 0;
  display: flex; flex-direction: column;
}
.mockup-browser-bar {
  background: #0a0a14;
  border-bottom: 1px solid var(--border);
  padding: 6px 10px;
  display: flex; align-items: center; gap: 8px;
}
.browser-nav-btns { font-size: 10px; color: var(--text-dim); display: flex; gap: 6px; }
.browser-url {
  font-size: 10px;
  background: #1a1a2e;
  color: var(--text-dim);
  padding: 2px 8px;
  border-radius: 4px;
  flex: 1;
}
.mockup-browser-content {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 16px;
  gap: 8px;
}
.preview-heading { font-size: 18px; font-weight: 700; color: var(--text-hi); }
.preview-sub { font-size: 9px; color: var(--text-dim); text-align: center; }
.preview-btn {
  font-size: 9px; font-weight: 600;
  background: var(--purple); color: #fff;
  padding: 4px 12px; border-radius: 4px; margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════════════════════════ */
.db-section        { padding: 100px 0; }
.db-section-sm     { padding: 50px 0; }
.db-section-dark   { background: var(--bg1); }
.db-section-cta {
  padding: 120px 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(124,58,237,0.18) 0%, transparent 70%),
              var(--bg0);
  position: relative; overflow: hidden;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-hi);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE CARDS
════════════════════════════════════════════════════════════════ */
.db-feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.db-feature-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.feature-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(from var(--icon-color) r g b / 0.12);
  background: color-mix(in srgb, var(--icon-color) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--icon-color);
  flex-shrink: 0;
}

.db-feature-card h5 {
  font-size: 15px; font-weight: 700;
  color: var(--text-hi); margin: 0;
}
.db-feature-card p {
  font-size: 13.5px; color: var(--text-dim);
  line-height: 1.65; margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PREVIEW SECTION
════════════════════════════════════════════════════════════════ */
.preview-features-list { display: flex; flex-direction: column; gap: 4px; }

.pf-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pf-item:hover { background: rgba(255,255,255,0.03); }
.pf-item.active {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.3);
}

.pf-icon {
  width: 36px; height: 36px;
  background: rgba(124,58,237,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--purple-light);
  flex-shrink: 0;
}
.pf-title  { font-size: 14px; font-weight: 600; color: var(--text-hi); margin-bottom: 2px; }
.pf-desc   { font-size: 12.5px; color: var(--text-dim); line-height: 1.5; }

/* ─── Preview Screen ────────────────────────────────────── */
.preview-screen-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 1px solid var(--border2);
}

.preview-screen {
  background: #0a0a14;
  font-family: 'Consolas', monospace;
  font-size: 11px;
}

.ps-toolbar {
  background: #07070f;
  border-bottom: 1px solid var(--border);
  padding: 8px 12px;
  display: flex; align-items: center; gap: 12px;
}
.ps-logo { color: var(--purple-light); font-weight: 700; font-size: 12px; white-space: nowrap; }
.ps-tabs { display: flex; gap: 2px; flex: 1; overflow: hidden; }
.ps-tab {
  padding: 4px 10px; border-radius: 4px;
  font-size: 11px; color: var(--text-dim);
  background: transparent; white-space: nowrap;
}
.ps-tab.active { background: #1a1a2e; color: var(--text-hi); }
.ps-actions { display: flex; gap: 6px; }
.ps-btn {
  padding: 3px 8px;
  background: var(--bg3);
  border-radius: 4px;
  font-size: 10px;
  color: var(--text-dim);
  cursor: default;
}

.ps-body { display: flex; height: 220px; }

.ps-sidebar {
  width: 130px; flex-shrink: 0;
  background: #070710;
  border-right: 1px solid var(--border);
  padding: 8px 0;
}
.ps-sidebar-hdr { font-size: 9px; font-weight: 700; color: var(--text-dim); letter-spacing: 0.1em; padding: 0 10px 6px; }
.ps-file { padding: 3px 10px; color: var(--text-dim); font-size: 10px; }
.ps-file.selected { background: #1a1a30; color: var(--text-hi); }
.ps-file.folder { color: #e2c08d; }
.ps-file.sub { padding-left: 20px; }

.ps-editor { flex: 1; padding: 10px; border-right: 1px solid var(--border); overflow: hidden; }
.ps-code-line { display: flex; gap: 8px; line-height: 1.75; }
.ps-ln  { color: #2a2a4a; min-width: 12px; text-align: right; user-select: none; }
.ps-tag { color: #569cd6; }
.ps-attr{ color: #9cdcfe; }
.ps-str { color: #ce9178; }
.ps-cmt { color: #6a9955; }
.ps-cursor-line { position: relative; }
.ps-cursor-blink {
  color: var(--purple-light);
  animation: blink 1.1s step-end infinite;
  font-weight: 100;
}

.ps-browser { width: 200px; flex-shrink: 0; background: #0d0d1a; display: flex; flex-direction: column; }
.ps-browser-bar {
  background: #070710;
  border-bottom: 1px solid var(--border);
  padding: 6px 8px;
  display: flex; align-items: center; gap: 6px;
}
.ps-nav-btns { font-size: 10px; color: var(--text-dim); }
.ps-url { font-size: 9px; background: #1a1a2e; color: var(--text-dim); padding: 2px 6px; border-radius: 3px; flex: 1; }
.ps-preview { flex: 1; display: flex; align-items: center; justify-content: center; padding: 16px; }
.ps-preview-hero { text-align: center; }
.ps-preview-h1 { font-size: 16px; font-weight: 700; color: var(--text-hi); font-family: sans-serif; }
.ps-preview-tagline { font-size: 9px; color: var(--text-dim); margin-top: 4px; font-family: sans-serif; }

.ps-statusbar {
  background: #050509;
  border-top: 1px solid var(--border);
  padding: 3px 10px;
  display: flex; gap: 16px;
  font-size: 10px; color: var(--text-dim);
}

/* ─── Preview panel states ──────────────────────────────── */
.ps-body { position: relative; }

.ps-state {
  display: none;
  width: 100%; height: 100%;
}
.ps-state.active { display: flex; }

/* Brand image */
.brand-img    { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.brand-img-sm { width: 28px; height: 28px; border-radius: 6px; }

/* ── Browser state ──────────────────────────────────────── */
.ps-browser-full { display: flex; flex-direction: column; width: 100%; }

.ps-browser-tabstrip {
  display: flex; align-items: center; gap: 2px;
  background: #07070f; border-bottom: 1px solid var(--border);
  padding: 5px 8px 0;
}
.ps-btab {
  font-size: 10px; padding: 3px 10px;
  background: #1a1a2e; color: var(--text-dim);
  border-radius: 4px 4px 0 0;
  cursor: default; white-space: nowrap;
  border: 1px solid var(--border); border-bottom: none;
}
.ps-btab.active { background: #0f0f1e; color: var(--text-hi); }
.ps-btab-add { font-size: 13px; color: var(--text-dim); padding: 0 6px; cursor: default; }

.ps-browser-bar-full {
  background: #07070f; border-bottom: 1px solid var(--border);
  padding: 5px 8px; display: flex; align-items: center; gap: 8px;
}
.ps-url-full {
  flex: 1; font-size: 10px;
  background: #1a1a2e; color: var(--text-dim);
  padding: 3px 8px; border-radius: 4px;
}
.ps-resp { font-size: 11px; color: var(--text-dim); }

.ps-browser-page { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.ps-page-nav {
  background: #0d0d1f; border-bottom: 1px solid var(--border);
  font-size: 10px; padding: 6px 12px;
  color: var(--purple-light); font-weight: 700;
  display: flex; gap: 12px;
}
.ps-page-nav span { color: var(--text-dim); font-weight: 400; }
.ps-page-hero { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.ps-page-h1 { font-size: 18px; font-weight: 700; color: var(--text-hi); font-family: sans-serif; }
.ps-page-h1-sm { font-size: 13px; }
.ps-page-sub { font-size: 10px; color: var(--text-dim); font-family: sans-serif; }
.ps-page-sub-sm { font-size: 9px; }
.ps-page-btn {
  font-size: 10px; font-weight: 600;
  background: var(--purple); color: #fff;
  padding: 4px 14px; border-radius: 4px; margin-top: 4px;
  font-family: sans-serif;
}

/* ── Terminal state ─────────────────────────────────────── */
.ps-term-layout { display: flex; flex-direction: column; width: 100%; }
.ps-term-editor {
  flex: 1; padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ps-term-panel { height: 110px; display: flex; flex-direction: column; }
.ps-term-tabs-bar {
  display: flex; gap: 2px;
  background: #07070f; border-bottom: 1px solid var(--border);
  padding: 4px 8px 0;
}
.ps-term-tab {
  font-size: 10px; padding: 3px 10px;
  color: var(--text-dim); cursor: default;
  border-radius: 4px 4px 0 0;
}
.ps-term-tab.active { background: #1a1a2e; color: var(--text-hi); }
.ps-term-output { flex: 1; padding: 6px 10px; overflow: hidden; background: #070710; }
.ps-tline { font-size: 10px; line-height: 1.7; color: var(--text-dim); font-family: 'Consolas', monospace; }
.ps-t-info { color: #7878a0; }
.ps-t-ok   { color: #22c55e; }
.ps-prompt { color: var(--purple-light); margin-right: 6px; }
.ps-kw  { color: #c586c0; }
.ps-var { color: #9cdcfe; }
.ps-fn  { color: #dcdcaa; }
.ps-num { color: #b5cea8; }

/* ── Pop-out state ──────────────────────────────────────── */
.ps-popout-layout { display: flex; width: 100%; height: 100%; position: relative; }
.ps-popout-bg {
  flex: 1; display: flex; flex-direction: column;
  background: #0d0d1a;
}
.ps-popout-preview {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
}
.ps-popout-win {
  position: absolute;
  top: 12px; right: 10px;
  width: 160px;
  background: #12122a;
  border: 1px solid rgba(124,58,237,0.5);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  overflow: hidden;
}
.ps-popout-titlebar {
  background: #0a0a1a;
  border-bottom: 1px solid var(--border);
  padding: 5px 8px;
  display: flex; align-items: center; gap: 6px;
}
.ps-popout-traffic { display: flex; gap: 4px; }
.ps-popout-traffic span { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.ps-dot-red    { background: #ff5f56; }
.ps-dot-yellow { background: #ffbd2e; }
.ps-dot-green  { background: #27c93f; }
.ps-popout-filename { font-size: 9px; color: var(--text-dim); }
.ps-popout-code { padding: 6px 8px; }

/* ═══════════════════════════════════════════════════════════
   TECH BADGES
════════════════════════════════════════════════════════════════ */
.tech-badge {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}
.tech-badge:hover { border-color: var(--purple-light); color: var(--text-hi); }

/* ═══════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════════════ */
.db-pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.db-pricing-card:hover { transform: translateY(-4px); }

.db-pricing-card-pro {
  border-color: rgba(124,58,237,0.4);
  background: linear-gradient(180deg, rgba(124,58,237,0.08) 0%, var(--card) 40%);
  box-shadow: 0 0 60px rgba(124,58,237,0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px; right: 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.pricing-tier {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--purple-light); margin-bottom: 8px;
}
.pricing-price {
  font-size: 3rem; font-weight: 800;
  color: var(--text-hi); line-height: 1; margin-bottom: 8px;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-dim); }
.pricing-desc { font-size: 13.5px; color: var(--text-dim); margin-bottom: 24px; line-height: 1.6; }

.pricing-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--text);
}
.pricing-features li .bi-check-circle-fill { color: #22c55e; flex-shrink: 0; }
.pricing-features li .bi-dash-circle { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   COMMUNITY CARDS
════════════════════════════════════════════════════════════════ */
.db-community-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-decoration: none;
  color: var(--text-dim);
  transition: border-color 0.25s, color 0.25s, transform 0.25s, background 0.25s;
}
.db-community-card:hover {
  color: var(--text-hi);
  border-color: rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.06);
  transform: translateY(-4px);
  text-decoration: none;
}
.comm-title { font-size: 15px; font-weight: 700; color: var(--text-hi); margin-bottom: 6px; }
.comm-desc  { font-size: 13px; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.db-footer {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-heading {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-hi);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  color: var(--text-dim); text-decoration: none; font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--purple-light); }
.footer-socials a {
  color: var(--text-dim); font-size: 18px;
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--purple-light); }
.footer-divider { border-color: var(--border); margin: 48px 0 24px; }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
════════════════════════════════════════════════════════════════ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════════════════════════ */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .db-hero  { padding: 80px 0 60px; }
  .db-section { padding: 70px 0; }
  .mockup-browser, .mockup-sidebar { display: none; }
  .ps-browser, .ps-sidebar { display: none; }
  .ps-body { height: auto; }
  .ps-editor { padding: 8px; }
}
