/* ============================================
   GLOBAL STYLES & DESIGN TOKENS
   ============================================ */

:root {
  --bg: #0A0A0A;
  --white: #FFFFFF;
  --red: #E8294A;
  --grey: #888888;
  --border: rgba(255, 255, 255, 0.07);
  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  overflow-x: hidden;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

/* Topo canvas — fixed fullscreen background */
#topo-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* All sections sit above the canvas */
section, nav, footer {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Page load overlay */
.page-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  pointer-events: none;
}

/* ---- Utility ---- */
.red-text { color: var(--red); }
.dark-text { color: #0A0A0A; }

/* Word reveal animation structure */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.18em;
}

.word {
  display: inline-block;
  will-change: transform;
  transform: translateY(110%);
}

/* ---- Buttons ---- */
.btn-filled {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 14px 36px;
  border-radius: 0;
  text-decoration: none;
  border: 1.5px solid var(--red);
  transition: background 0.2s, color 0.2s;
}

.btn-filled:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 14px 36px;
  border-radius: 0;
  text-decoration: none;
  border: 1.5px solid var(--white);
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ---- Custom Cursor ---- */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: none;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
}

/* Scrollbar */
::-webkit-scrollbar { width: 0px; }

/* Link reset */
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Link red */
.link-red {
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.2s;
}
.link-red:hover { opacity: 0.7; }
