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

html {
  scroll-behavior: smooth;
  background: #0a0a0a;
}

body {
  background: #0a0a0a;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* ── Cookie banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  border-top: 1px solid #333;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  transition: opacity .3s;
}
#cookie-banner a { color: var(--amber); text-decoration: underline; }
#cookie-ok {
  background: var(--amber);
  color: #000;
  border: none;
  padding: 7px 18px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: .05em;
  cursor: pointer;
  white-space: nowrap;
}

/* ── Consent checkbox in lead form ── */
.lead-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 4px;
}
.lead-form-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--amber);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}
.lead-form-consent a { color: var(--amber); text-decoration: underline; }
