/* ===== Fonts (lokal) ===== */
@font-face {
  font-family: "Unbounded";
  src: url("../assets/fonts/unbounded-latin-500-normal.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../assets/fonts/unbounded-latin-800-normal.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ===== Palette / Tokens ===== */
:root {
  --bg-deep: #07130C;
  --mint: #00E676;
  --lime: #C6FF00;
  --orange: #FF9100;
  --turmeric: #FFC400;
  --apple-red: #FF3D5A;
  --spirulina: #00BFA5;
  --cream: #FFF8EC;

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

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

html { scroll-behavior: auto; }

body {
  background: var(--bg-deep);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, canvas, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ===== Header ===== */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  mix-blend-mode: difference;
  pointer-events: none;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
}
.wordmark span { font-weight: 500; opacity: .85; }
.head-tag {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #fff;
  opacity: .8;
}

/* ===== noscript ===== */
.noscript-poster {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
}
.noscript-poster h1 { font-family: var(--font-display); font-size: 64px; color: var(--mint); }
