/* ── DOWNLOAD BUTTON ────────────────────────────────────── */

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-dim), var(--red));
  padding: 14px 32px;
  border: 1px solid var(--red);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.dl-btn:hover {
  box-shadow: 0 0 30px rgba(139,37,37,0.4);
  transform: translateY(-1px);
}

.dl-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.dl-btn:hover::after { transform: translateX(0); }

.dl-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dl-btn-ghost {
  background: transparent;
  border: 1px solid var(--red-dim);
  color: var(--red);
}

.dl-btn-ghost:hover {
  background: var(--red-subtle);
  border-color: var(--red);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeUp 1.2s ease-out 0.9s both;
}

.dl-size {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.2em;
  margin-top: 12px;
  text-align: center;
  animation: fadeUp 1.2s ease-out 1s both;
}

.dl-size a {
  color: var(--red);
  text-decoration: none;
  font-size: 11px;
  transition: color 0.3s;
}

.dl-size a:hover {
  color: var(--red-glow);
  text-decoration: underline;
}
