/* ═══════════════════════════════════════════════════════
   DROPSCOUT V2 — Design System
   Dark editorial aesthetic. Barlow Condensed + Space Mono.
   Primary accent: #e8ff47 (electric yellow-green)
   ═══════════════════════════════════════════════════════ */

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

/* ── ROOT / TOKENS ──────────────────────────────────── */
:root {
  --bg:         #0a0a0a;
  --bg-surface: #0f0f0f;
  --bg-raised:  #111111;
  --border:     #1a1a1a;
  --border-mid: #2a2a2a;
  --text-primary:   #f0ede8;
  --text-secondary: #999999;
  --text-muted:     #999999;
  --text-dim:       #777777;
  --accent:     #e8ff47;
  --accent-dim: rgba(232, 255, 71, 0.08);
  --accent-border: rgba(232, 255, 71, 0.25);
  --red:        #ff4747;
  --green:      #47ff8a;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-body:    'Barlow', sans-serif;
}

/* ── BASE ───────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body.ds-root {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ────────────────────────────────────────── */
.ds-hidden   { display: none !important; }
.ds-visible  { display: block !important; }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes ds-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

@keyframes ds-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ds-shimmer {
  to { left: 160%; }
}

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.ds-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.97);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ds-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ds-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: ds-pulse 2s ease-in-out infinite;
}

.ds-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.ds-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  transition: color 0.15s;
}

.ds-nav-links a:hover { color: var(--text-primary); }

/* ── PRIMARY BUTTON ─────────────────────────────────── */
.ds-btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, transform 0.1s;
  line-height: 1;
}

.ds-btn-primary:hover { background: #fff; transform: translateY(-1px); }

.ds-btn-block {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.ds-hero {
  padding: 70px 40px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.ds-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ds-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.ds-hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.ds-hero-h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.ds-hero-sub {
  color: #888;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

/* ── URL INPUT GROUP ────────────────────────────────── */
.ds-input-group {
  display: flex;
  border: 1px solid #555;
  background: #0f0f0f;
  transition: border-color 0.2s;
  margin-bottom: 12px;
}

.ds-input-group:focus-within { border-color: #e8ff47; }

.ds-url-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #f0ede8;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 14px 16px;
}

.ds-url-input::placeholder { color: #999; }

.ds-track-btn {
  background: #e8ff47;
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 22px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.ds-track-btn:hover { background: #fff; }

.ds-track-btn:disabled {
  background: #b8cc38;
  color: rgba(10, 10, 10, 0.45);
  cursor: default;
}

.ds-input-hint {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #999;
  letter-spacing: 0.06em;
}

/* ── CATEGORY PILLS ─────────────────────────────────── */
.ds-cat-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ds-cat-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  border: 1px solid var(--border);
  padding: 5px 11px;
  cursor: default;
  transition: color 0.15s, border-color 0.15s;
}

.ds-cat-pill:hover {
  color: var(--accent);
  border-color: var(--accent-border);
}

/* ═══════════════════════════════════════════════════════
   PREVIEW PANEL
   ═══════════════════════════════════════════════════════ */
.ds-preview-panel {
  border: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
}

/* Idle */
.ds-idle-state {
  padding: 48px 24px;
  text-align: center;
}

.ds-idle-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.ds-idle-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #777;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Scanning */
.ds-scan-state { padding: 28px; display: none; }
.ds-scan-state.ds-visible { display: block; }

.ds-scan-bar-wrap { height: 2px; background: var(--border); margin-bottom: 20px; overflow: hidden; }
.ds-scan-bar { height: 100%; width: 0%; background: var(--accent); transition: width 0.1s linear; }

.ds-scan-row {
  height: 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  background: #161616;
  position: relative;
  overflow: hidden;
}

.ds-scan-row::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, #222, transparent);
  animation: ds-shimmer 1.2s ease-in-out infinite;
}

.ds-scan-wide  { width: 70%; }
.ds-scan-mid   { width: 45%; }
.ds-scan-short { width: 30%; }

/* Product */
.ds-product-state { display: none; }
.ds-product-state.ds-visible { display: block; }

.ds-product-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ds-product-store {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ds-live-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  background: var(--accent-dim);
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ds-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: ds-pulse 1.5s ease-in-out infinite;
}

.ds-product-body { padding: 18px 22px; }

.ds-product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 4px;
}

.ds-product-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.ds-locked-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }

.ds-locked-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: var(--bg);
  border: 1px solid #141414;
}

.ds-locked-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ds-locked-value { display: flex; align-items: center; gap: 8px; }

.ds-lock-blur {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: transparent;
  text-shadow: 0 0 8px #555;
  user-select: none;
}

/* Gate CTA */
.ds-gate {
  border-top: 1px solid var(--border);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ds-gate-copy {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.ds-gate-copy strong { color: var(--text-secondary); font-weight: 500; }

.ds-gate-btn {
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 18px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
  flex-shrink: 0;
}

.ds-gate-btn:hover { background: #fff; }

/* ── ALERT CARDS (hero sample) ───────────────────────── */
.ds-alerts-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
}

.ds-alert-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-bottom: none;
  padding: 14px 18px;
  position: relative;
  animation: ds-fade-up 0.4s ease both;
}

.ds-alert-card:last-child { border-bottom: 1px solid var(--border); }
.ds-alert-card:nth-child(1) { animation-delay: 0.05s; }
.ds-alert-card:nth-child(2) { animation-delay: 0.15s; }
.ds-alert-card:nth-child(3) { animation-delay: 0.25s; }

.ds-alert-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
}

.ds-alert-dim { opacity: 0.28; }
.ds-alert-dim::before { background: var(--border-mid); }

.ds-alert-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.ds-alert-store {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

.ds-alert-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 2px 7px;
}

.ds-alert-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════
   SHARED SECTION LAYOUT
   ═══════════════════════════════════════════════════════ */
.ds-divider {
  height: 1px;
  background: var(--border);
  margin: 0 40px;
}

.ds-section {
  padding: 52px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.ds-section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ds-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.ds-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.ds-step {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.ds-step:last-child { border-right: none; }

.ds-step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  color: #222;
  margin-bottom: 12px;
}

.ds-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.ds-step-body {
  color: #aaa;
  font-size: 15px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════════════════ */
.ds-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.ds-feature {
  padding: 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ds-feature:nth-child(3n)   { border-right: none; }
.ds-feature:nth-child(n+4)  { border-bottom: none; }

.ds-feature-accent {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #e8ff47;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ds-feature-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.ds-feature-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
.ds-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.ds-plan {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s;
}

.ds-plan:hover { border-color: var(--border-mid); }

.ds-plan-featured {
  border-color: var(--accent);
  background: #0f0f0c;
}

.ds-plan-badge {
  position: absolute;
  top: -1px;
  left: 18px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.ds-plan-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
  margin-top: 10px;
}

.ds-plan-price {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.ds-plan-price span {
  font-size: 13px;
  color: #3a3a3a;
  font-weight: 400;
}

.ds-plan-desc {
  color: #777;
  font-size: 13px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.ds-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.ds-plan-features li {
  font-size: 14px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 9px;
}

.ds-plan-features li::before {
  content: '';
  width: 4px;
  height: 1px;
  background: var(--border-mid);
  flex-shrink: 0;
}

.ds-plan-featured .ds-plan-features li::before { background: var(--accent); }

.ds-pricing-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #999;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.ds-footer {
  padding: 28px 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.ds-footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #3a3a3a;
  line-height: 1.6;
  max-width: 560px;
}

.ds-footer-links { display: flex; gap: 22px; flex-shrink: 0; }

.ds-footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #3a3a3a;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s;
}

.ds-footer-links a:hover { color: #888; }

.ds-product-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 0; }

.ds-product-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; background: #0a0a0a; border: 1px solid #141414;
  margin-bottom: 6px;
}

.ds-product-row-locked { opacity: 0.5; }

.ds-product-row-label {
  font-family: 'Space Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #777;
}

.ds-status-in {
  font-family: 'Space Mono', monospace; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #6bffaa; border: 1px solid rgba(107,255,170,0.2);
  padding: 3px 8px; display: inline-flex; align-items: center; gap: 5px;
}

.ds-status-in::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #47ff8a; flex-shrink: 0; }

.ds-status-out {
  font-family: 'Space Mono', monospace; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #ff6b6b; border: 1px solid rgba(255,107,107,0.2);
  padding: 3px 8px; display: inline-flex; align-items: center; gap: 5px;
}

.ds-status-out::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #ff4747; flex-shrink: 0; }

.ds-status-detected {
  font-family: 'Space Mono', monospace; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: #999;
}

.ds-demo-link {
  margin-top: 14px;
}

.ds-demo-link a {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

.ds-demo-link a:hover {
  color: #e8ff47;
  border-color: rgba(232,255,71,0.4);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — basic mobile handling
   ═══════════════════════════════════════════════════════ */
.ds-mobile-login { display: none; }

@media (max-width: 768px) {
  .ds-nav { padding: 16px 20px; }
  .ds-nav-links { display: none; }
  .ds-mobile-login {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 14px;
    font-family: var(--font-mono);
    text-decoration: none;
    margin-right: 8px;
    opacity: 0.8;
  }
  .ds-mobile-login:hover { color: var(--text-primary); opacity: 1; }

  .ds-hero {
    grid-template-columns: 1fr;
    padding: 40px 20px 32px;
    gap: 40px;
  }

  .ds-hero-h1 { font-size: 52px; }

  .ds-section { padding: 40px 20px; }
  .ds-divider { margin: 0 20px; }

  .ds-how-grid   { grid-template-columns: 1fr; }
  .ds-step { border-right: none; border-bottom: 1px solid var(--border); }
  .ds-step:last-child { border-bottom: none; }

  .ds-features-grid { grid-template-columns: 1fr; }
  .ds-feature { border-right: none; }

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

  .ds-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 16px;
  }
}

/* ── GLOBAL LEGIBILITY FLOOR ─────────────────────────
   No muted text below #999 on dark backgrounds.
   Overrides previous dim values across all pages.
   ─────────────────────────────────────────────────── */
.ds-step-body,
.ds-feature-desc,
.ds-plan-desc,
.ds-plan-features li,
.ds-footer-copy,
.ds-footer-links a,
.ds-input-hint,
.ds-hero-sub,
.ds-alert-store,
.ds-pricing-note,
.ds-section-label {
  color: #aaa;
}

/* Pricing card flex layout — keeps all CTA buttons on the same row */
.ds-plan {
  display: flex;
  flex-direction: column;
}

.ds-plan-features {
  flex: 1;
}

/* ── HERO GRID TEXTURE (nav + hero zone only) ────────────────── */
.ds-hero-zone {
  background-image:
    linear-gradient(rgba(232,255,71,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,255,71,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── ANIMATED LOGO MARK ─────────────────────────────────── */
.ds-mark {
  width: 28px;
  height: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  flex-shrink: 0;
}

.ds-sq {
  border-radius: 1px;
  background: #1e1e1e;
  transition: background 0.3s ease;
}

.ds-sq-active {
  background: #e8ff47;
  animation-name: ds-sq-pulse;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
}

@keyframes ds-sq-pulse {
  0%   { background: #e8ff47; }
  40%  { background: #e8ff47; }
  50%  { background: #ffffff; }
  60%  { background: #e8ff47; }
  100% { background: #e8ff47; }
}

.ds-logo:hover .ds-sq-tl { animation: ds-sq-cycle 1.2s ease-in-out; }
.ds-logo:hover .ds-sq-tr { animation: ds-sq-cycle 1.2s ease-in-out 0.15s; }
.ds-logo:hover .ds-sq-bl { animation: ds-sq-cycle 1.2s ease-in-out 0.3s; }
.ds-logo:hover .ds-sq-active {
  animation: ds-sq-cycle-br 1.2s ease-in-out 0.45s, ds-sq-pulse 3s ease-in-out infinite 1.6s !important;
}

@keyframes ds-sq-cycle {
  0%   { background: #1e1e1e; }
  30%  { background: #e8ff47; }
  60%  { background: #1e1e1e; }
  100% { background: #1e1e1e; }
}

@keyframes ds-sq-cycle-br {
  0%   { background: #e8ff47; }
  30%  { background: #fff; }
  60%  { background: #e8ff47; }
  100% { background: #e8ff47; }
}

.ds-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}

.ds-logo:hover { color: #e8ff47; }
