/* =========================================================
   CON-SEAL — Brand tokens (lime + black from logo)
   Distinct from PROTECHT (gold/silver safety app).
   ========================================================= */
:root {
  --black: #050505;
  --black-2: #0c0c0c;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --lime: #39FF14;
  --lime-2: #2ed60f;
  --lime-3: #7CFF5A;
  --lime-glow: rgba(57, 255, 20, 0.35);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-2: rgba(255, 255, 255, 0.4);
  --font: "Manrope", system-ui, sans-serif;
  --container: 1160px;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.35s, box-shadow 0.35s, color 0.35s;
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
  padding: 14px 26px;
  font-size: 13px;
}
.btn-primary:hover {
  background: var(--lime-3);
  transform: scale(1.02);
  box-shadow: 0 10px 32px var(--lime-glow);
}
.btn-ghost {
  border: 1px solid rgba(57, 255, 20, 0.45);
  color: var(--lime);
  padding: 13px 24px;
  font-size: 13px;
}
.btn-ghost:hover {
  background: rgba(57, 255, 20, 0.1);
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
