@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Noto+Serif+SC:wght@300;400;600&family=Bebas+Neue&display=swap');

:root {
  --black: #0a0a0a;
  --white: #f5f5f0;
  --gray-1: #1a1a1a;
  --gray-2: #2a2a2a;
  --gray-3: #555;
  --gray-4: #888;
  --accent: #c8f03e;
  --accent-red: #ff3b30;
  --accent-blue: #0af;
  --border: rgba(245,245,240,0.1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Noto Serif SC', serif;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
#cursor {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s, height 0.2s, opacity 0.2s;
  opacity: 0.6;
}




/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--accent); }
nav ul { list-style: none; display: flex; gap: 40px; }
nav ul a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-4);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--accent); }
.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--black);
  padding: 10px 24px;
  border: none;
  cursor: none;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.nav-cta:hover { background: #d8ff4a; transform: translateY(-1px); }

/* FOOTER */
footer {
  padding: 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 4px;
  color: var(--gray-3);
}
.footer-logo span { color: var(--accent); }
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 1px;
  color: var(--gray-3);
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-3); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

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

/* RESPONSIVE COMMON */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  nav ul { gap: 24px; }
}

@media (max-width: 768px) {
  body { cursor: auto; }

  nav {
    padding: 16px 24px;
  }
  nav ul { display: none; } /* Hide menu items on mobile for simplicity, or we could add a burger later */
  
  .logo { font-size: 22px; letter-spacing: 2px; }
  .nav-cta { padding: 8px 16px; font-size: 10px; }

  footer {
    padding: 32px 24px;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

/* CONTENT */
.content-section {
  padding: 160px 48px 120px;
  max-width: 900px;
  margin: 0 auto;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.9;
  margin-bottom: 64px;
}
.page-title span { color: var(--accent); }

.text-block {
  margin-bottom: 48px;
}
.text-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--accent);
}
.text-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-4);
  margin-bottom: 24px;
  font-weight: 300;
}
.text-block strong {
  color: var(--white);
  font-weight: 400;
}

/* RESPONSIVE PAGES */
@media (max-width: 768px) {
  .content-section {
    padding: 120px 24px 60px;
  }
  .page-title {
    font-size: 48px;
    margin-bottom: 40px;
  }
  .text-block {
    margin-bottom: 32px;
  }
  .text-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .text-block p {
    font-size: 15px;
    line-height: 1.7;
  }
}
