/* ─── Hero ─── */
.hero-grid {
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-glow {
  background: radial-gradient(ellipse 900px 600px at 50% 10%, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
}

/* ─── Badges ─── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px;
  border-radius: 9999px;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  background-color: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
  color: #22d3ee;
}

/* ─── Terminal window ─── */
.terminal {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background-color: #161b27;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(34, 211, 238, 0.04);
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background-color: #1c2230;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  gap: 0;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
}

/* ─── Feature cards ─── */
.feature-card {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: #161b27;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: 0 0 35px rgba(34, 211, 238, 0.07);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(34, 211, 238, 0.08);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.16);
}

/* ─── How it works ─── */
.step-card {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: #161b27;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: #22d3ee;
  font-family: ui-monospace, monospace;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ─── Code blocks ─── */
.code-block {
  background-color: #161b27;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
}

.code-block pre {
  font-family: ui-monospace, 'Cascadia Code', 'Fira Code', Menlo, monospace;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: #e2e8f0;
  white-space: pre;
}

.code-inline {
  font-family: ui-monospace, monospace;
  font-size: 0.8em;
  padding: 1px 5px;
  border-radius: 4px;
  background-color: rgba(34, 211, 238, 0.08);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.15);
}

/* ─── Output column cards ─── */
.output-col-card {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: #161b27;
}


/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0d1117; }
::-webkit-scrollbar-thumb { background: #21262d; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #30363d; }
