:root {
  --bg: #040815;
  --bg-alt: #070d1f;
  --surface: #0c1224;
  --surface-alt: #111827;
  --border-subtle: #1f2937;

  --hive-amber: #f5a623;
  --hive-amber-soft: rgba(245, 166, 35, 0.18);
  --hive-accent: #15e0ff;
  --text: #e5e7eb;
  --text-soft: #9ca3af;
  --text-muted: #6b7280;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 10px 25px rgba(0, 0, 0, 0.35);

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top left, #071024, var(--bg));
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Layout helpers */

.section {
  padding: 80px 24px;
}

.section-alt {
  padding: 80px 24px;
  background: radial-gradient(circle at top left, #0b1020, var(--bg-alt));
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.1rem;
  margin: 0 0 12px;
}

.section-lead {
  max-width: 640px;
  margin: 0 0 32px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(4, 8, 21, 0.95),
    rgba(4, 8, 21, 0.85)
  );
  border-bottom: 1px solid rgba(31, 41, 55, 0.8);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 10%, #ffe6af, var(--hive-amber));
  box-shadow: 0 0 24px rgba(245, 166, 35, 0.5);
  font-size: 16px;
}

.logo-text {
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 32px;
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content:
