@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@700,600,500&display=swap');

:root {
  --void: #000000;
  --slate: #111111;
  --border: #333333;
  --text: #ffffff;
  
  /* The Thermal Shift */
  --acid-amber: #ff4500;
  --electric-magenta: #ff00ff;
  --phosphor-cyan: #00ffff;
}

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

body {
  background-color: var(--void);
  color: var(--text);
  font-family: 'Inter', sans-serif; /* The Whisper */
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

::selection {
  background: var(--electric-magenta);
  color: var(--void);
}

/* Custom Cursor - The Pulse */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 16px; height: 16px;
  background-color: var(--acid-amber);
  border-radius: 0; /* Brutalist square block */
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: exclusion;
  transition: width 0.1s linear, height 0.1s linear;
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background-color: var(--phosphor-cyan);
}

/* Typography - The Shout */
h1, h2, h3, h4, .logo, .cta-button, .marquee-text {
  font-family: 'Clash Display', sans-serif;
  text-transform: uppercase;
}

/* Background Grid - Raw lines */
.bg-grid {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: -1;
  pointer-events: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: var(--void);
  border-bottom: 2px solid var(--text);
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--electric-magenta);
}

.nav a {
  margin-left: 32px;
  font-size: 1rem;
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  cursor: none;
}

.nav a:hover {
  color: var(--phosphor-cyan);
}

/* Sections */
section {
  min-height: 100vh;
  padding: 120px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-bottom: 2px solid var(--border);
}

/* Hero Section */
.hero {
  border-bottom: none;
}

.marquee-container {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  overflow: hidden;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.marquee-text {
  display: inline-block;
  font-size: 20vw;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 100%;
  color: transparent;
  -webkit-text-stroke: 2px var(--slate);
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.85;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero .highlight {
  color: var(--acid-amber);
}

.hero p {
  font-size: clamp(1.2rem, 3vw, 2rem);
  max-width: 900px;
  margin-bottom: 48px;
  color: #cccccc;
  border-left: 4px solid var(--phosphor-cyan);
  padding-left: 24px;
}

/* Brutalist Buttons */
.cta-button {
  display: inline-block;
  padding: 20px 48px;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--text);
  color: var(--void);
  border: none;
  cursor: none;
  position: relative;
  z-index: 1;
  transition: transform 0.1s, box-shadow 0.1s;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px; width: 100%; height: 100%;
  background: var(--electric-magenta);
  z-index: -1;
  transition: transform 0.1s;
}

.cta-button:hover {
  transform: translate(4px, 4px);
}
.cta-button:hover::after {
  transform: translate(-4px, -4px);
  background: var(--phosphor-cyan);
}

/* Collage */
.hero-collage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  margin-top: 80px;
  z-index: 2;
}

.collage-img {
  position: absolute;
  border: 4px solid var(--text); /* Hard borders */
  border-radius: 0; /* Brutalist geometry */
  filter: contrast(1.2) grayscale(0.5); /* Gritty photography feel */
  box-shadow: 12px 12px 0 var(--border);
  transition: transform 0.1s ease-out, filter 0.3s;
}

.collage-img:hover {
  filter: contrast(1.1) grayscale(0); /* Reveal raw colors on hover */
  z-index: 10 !important;
}

.img-1 { top: 10%; left: 5%; width: 280px; z-index: 2; }
.img-2 { top: -5%; right: 15%; width: 220px; z-index: 1; border-color: var(--phosphor-cyan); }
.img-3 { bottom: -20%; left: 30%; width: 340px; z-index: 3; }
.img-4 { bottom: -5%; right: 5%; width: 200px; z-index: 2; border-color: var(--acid-amber); }

/* Manifesto Layout */
.manifesto {
  background: var(--slate);
  border-top: 4px solid var(--text);
  border-bottom: 4px solid var(--text);
}

.manifesto h2 {
  font-size: 5rem;
  margin-bottom: 48px;
  color: var(--acid-amber);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.manifesto-col p {
  font-size: 1.5rem;
  margin-bottom: 32px;
  border-top: 2px solid var(--border);
  padding-top: 16px;
}

/* Archetypes */
.archetypes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
}

.archetypes h2 {
  grid-column: 1 / -1;
  font-size: 4rem;
  margin-bottom: 48px;
}

.archetype-card {
  background: var(--void);
  border: 2px solid var(--border);
  padding: 48px;
  transition: background 0.2s, border-color 0.2s;
}

.archetype-card:hover {
  background: var(--slate);
  border-color: var(--electric-magenta);
}

.archetype-card h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--phosphor-cyan);
}

/* The End (Anti-Doomscroll) */
.the-end {
  min-height: 80vh;
  text-align: center;
  align-items: center;
  background: var(--void);
  border-top: 8px solid var(--acid-amber);
}

.the-end h2 {
  font-size: 6rem;
  color: var(--acid-amber);
  margin-bottom: 32px;
}

/* Legal Pages Overrides */
.legal {
  max-width: 800px;
  margin: 120px auto 40px auto;
  padding: 0 24px;
}
.legal h1 { font-size: 4rem; margin-bottom: 24px; color: var(--electric-magenta); }
.legal h2 { font-size: 2rem; margin-top: 64px; border-bottom: 4px solid var(--text); padding-bottom: 8px; }
.legal p, .legal ul { font-size: 1.1rem; color: #ccc; margin-bottom: 24px; }
.legal ul { margin-left: 24px; }

/* Overrides for mobile */
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; }
  .header { padding: 16px 24px; }
  .nav { display: none; }
  .hero-collage { height: 300px; perspective: none; }
  .img-1 { width: 160px; }
  .img-2 { width: 140px; }
  .img-3 { width: 200px; }
  .img-4 { width: 120px; }
  body { cursor: auto; }
  .custom-cursor { display: none; }
  .the-end h2 { font-size: 4rem; }
}
