/* ── BusinessBloom – Shared Styles ──────────────────────────────────────────── */

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

/* Design tokens */
:root {
  --bg: #0a0e12;
  --surface: #111720;
  --surface2: #1a2333;
  --border: #1e2d42;
  --accent: #C6E700;
  --accent-dim: rgba(198, 231, 0, 0.08);
  --warn: #f59e0b;
  --warn-dim: rgba(245, 158, 11, 0.10);
  --danger: #ef4444;
  --danger-dim: rgba(239, 68, 68, 0.10);
  --text: #e2e8f0;
  --muted: #64748b;
  --dim: #94a3b8;
  --mono: "IBM Plex Mono", monospace;
  --sans: "IBM Plex Sans", sans-serif;
}

/* Base */
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(rgb(26, 37, 47), rgb(44, 62, 80));
}

/* Layout */
.wrap {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  padding: 40px 20px;
}

/* Header */
.header { margin-bottom: 44px; }
.header-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.header h1 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.header p {
  color: var(--dim);
  font-size: 14px;
}

/* Footer */
footer {
  width: 100%;
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
footer p, footer a {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
}
footer a {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color .2s;
}
footer a:hover { color: var(--accent); }

/* Shared keyframes */
@keyframes pulse {
  0%, 100% { opacity: .2; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}
