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

:root {
  --black: #080807;
  --white: #f5f2ec;
  --lime: #c8f547;
  --gray: #2a2a28;
  --muted: #666660;
  --line: rgba(245,242,236,0.1);
  --serif: 'Libre Baskerville', Georgia, serif;
  --mono: 'Space Mono', monospace;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

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: 0;
  opacity: 0.4;
}

.cursor {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.2s, height 0.2s;
  transform: translate(-50%,-50%);
}
.cursor.hovering { width: 40px; height: 40px; background: transparent; border: 1px solid var(--lime); }
a, button { cursor: none; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 48px;
  border-bottom: 0.5px solid var(--line);
  background: rgba(8,8,7,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--white); text-decoration: none;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-status { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* SECTION UTILS */
.section-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.split-eyebrow {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 40px;
  display: flex; align-items: center; gap: 12px;
}
.split-eyebrow::before { content: ''; display: block; width: 24px; height: 0.5px; background: var(--muted); }

/* FADE ANIM */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* FOOTER */
footer { display: flex; justify-content: space-between; align-items: center; padding: 20px 48px; }
.footer-logo { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--muted); }
.footer-right { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; }

/* SHARED CURSOR JS trigger */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }
  a, button { cursor: auto; }
  nav { padding: 20px 24px; }
  .nav-status { display: none; }
  footer { padding: 20px 24px; }
}
