:root {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --fg: #f2ece4;
  --muted: #8a8278;
  --accent: #ff2d55;
  --accent-2: #ff6b35;
  --glow: rgba(255, 45, 85, 0.45);
  --border: rgba(242, 236, 228, 0.08);
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

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

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: none;
}

#webgl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.gfx-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 45, 85, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 85, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
}

.skulls-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.38;
  mix-blend-mode: screen;
}

.skulls-svg {
  width: 100%;
  height: 100%;
}

.skull-cranium {
  fill: rgba(255, 45, 85, 0.1);
  stroke: rgba(255, 90, 115, 0.6);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.skull-eye {
  fill: rgba(5, 5, 5, 0.6);
  stroke: rgba(255, 90, 115, 0.5);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.skull-nose,
.skull-crack {
  fill: none;
  stroke: rgba(255, 90, 115, 0.45);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.skull-teeth {
  stroke: rgba(255, 90, 115, 0.4);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.skull--1 { filter: drop-shadow(0 0 20px rgba(255, 45, 85, 0.4)); }
.skull--4 { filter: drop-shadow(0 0 28px rgba(255, 107, 53, 0.45)); }

.skulls-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 50% at 50% 45%, rgba(255, 45, 85, 0.12), transparent 70%),
    radial-gradient(ellipse 30% 40% at 75% 70%, rgba(255, 107, 53, 0.1), transparent 70%);
  pointer-events: none;
}

.gfx-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.gfx-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  stroke: rgba(255, 45, 85, 0.25);
  stroke-width: 1;
  fill: none;
}

.gfx-corner--tl { top: 5rem; left: 1.5rem; }
.gfx-corner--tr { top: 5rem; right: 1.5rem; }
.gfx-corner--bl { bottom: 1.5rem; left: 1.5rem; }
.gfx-corner--br { bottom: 1.5rem; right: 1.5rem; }

.gfx-crosshair--c {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 45, 85, 0.08);
  border-radius: 50%;
}

.gfx-crosshair--c::before,
.gfx-crosshair--c::after {
  content: '';
  position: absolute;
  background: rgba(255, 45, 85, 0.1);
}

.gfx-crosshair--c::before {
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  transform: translateY(-50%);
}

.gfx-crosshair--c::after {
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 1px;
  transform: translateX(-50%);
}

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.5s steps(2) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, -3%); }
  50% { transform: translate(3%, 1%); }
  75% { transform: translate(-1%, 4%); }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.35s;
}

.cursor.is-hover .cursor-ring {
  width: 64px;
  height: 64px;
  border-color: var(--accent);
}

.cursor.is-click .cursor-ring {
  width: 28px;
  height: 28px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  mix-blend-mode: difference;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-mark {
  color: var(--accent);
  font-size: 1rem;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 1;
}

.lang-switch {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
}

.lang-switch:hover {
  opacity: 1;
  color: var(--accent);
}

.cta-small {
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
}

.cta-small:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

main {
  position: relative;
  z-index: 1;
}

.section-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.section--center {
  text-align: center;
}

.section--center .section-label,
.section--center .hero-meta,
.section--center .hero-actions,
.section--center .truth-grid,
.section--center .void-stats {
  justify-content: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  color: var(--muted);
}

.tag--hot {
  border-color: rgba(255, 45, 85, 0.4);
  color: var(--accent);
}

.hero-title-wrap {
  position: relative;
  margin-bottom: 2.5rem;
  z-index: 2;
  perspective: 900px;
  transform-style: preserve-3d;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 2;
}

.hero-title .line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 11rem);
  overflow: visible;
}

.hero-title .line--accent {
  white-space: nowrap;
  font-size: clamp(2.6rem, 9.5vw, 8.5rem);
  letter-spacing: -0.03em;
}

.hero-title .split-char {
  display: inline-block;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 600px;
}

.hero-title .split-char-inner {
  display: inline-block;
  will-change: transform;
}

.hero-title .line--accent .split-char-inner {
  color: var(--accent);
}

.hero-sub {
  max-width: 38rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 3rem;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}

.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s;
}

.cta-primary:hover::before {
  transform: translateX(120%);
}

.cta-primary__arrow {
  transition: transform 0.4s var(--ease-out);
}

.cta-primary:hover .cta-primary__arrow {
  transform: translateX(6px);
}

.cta-primary--full {
  width: 100%;
  justify-content: center;
}

.hero-warning {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-line {
  width: 60px;
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: scroll-pulse 2s var(--ease-in-out) infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero-counter {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  text-align: right;
  font-family: var(--font-display);
}

.hero-counter span {
  display: block;
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.hero-counter small {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-section {
  border-block: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
  background: rgba(255, 45, 85, 0.03);
}

.marquee {
  display: flex;
  width: max-content;
}

.marquee__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  animation: marquee 25s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__inner span:nth-child(even) {
  color: var(--accent);
}

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

.section {
  padding: 8rem 3rem;
  position: relative;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 4rem;
}

.section-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px var(--fg);
}

.section-title--tight {
  margin-bottom: 2rem;
}

.truth-chart {
  max-width: 400px;
  margin: 0 auto 3rem;
}

.chart-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: chart-draw 2.5s var(--ease-out) forwards;
}

.chart-fill {
  fill: rgba(255, 45, 85, 0.08);
  stroke: none;
  opacity: 0;
  animation: chart-fill-in 1s var(--ease-out) 1.5s forwards;
}

@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes chart-fill-in {
  to { opacity: 1; }
}

.chart-label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.truth-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.5s var(--ease-out), border-color 0.5s;
  position: relative;
  overflow: hidden;
}

.truth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.truth-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 85, 0.3);
}

.truth-card:hover::before {
  transform: scaleX(1);
}

.truth-card--invert {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.truth-card--invert .truth-card__num {
  color: rgba(255, 255, 255, 0.5);
}

.truth-card__num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  margin-bottom: 1.5rem;
}

.truth-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.truth-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.85;
}

.truth-card strong {
  font-weight: 500;
  color: inherit;
}

.body {
  background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.04), transparent);
}

.body-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.body-copy {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.body-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.body-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.4s var(--ease-out), color 0.4s;
}

.body-list li:hover {
  padding-left: 1rem;
  color: var(--accent);
}

.body-list li span {
  font-size: 0.65rem;
  color: var(--accent);
  font-family: var(--font-mono);
}

.glitch {
  position: relative;
  display: inline-block;
  color: var(--accent);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.glitch::before {
  color: #00fff0;
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
  color: var(--accent-2);
  animation: glitch-2 2s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
  96% { transform: translate(-2px, 0); }
}

@keyframes glitch-2 {
  0%, 85%, 100% { transform: translate(0); }
  87% { transform: translate(2px, -1px); }
  89% { transform: translate(-3px, 1px); }
  91% { transform: translate(1px, 2px); }
}

.body-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orb-float 8s var(--ease-in-out) infinite;
}

.orb--1 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  opacity: 0.35;
  top: 10%;
  left: 10%;
}

.orb--2 {
  width: 150px;
  height: 150px;
  background: var(--accent-2);
  opacity: 0.3;
  bottom: 15%;
  right: 5%;
  animation-delay: -3s;
}

.orb--3 {
  width: 100px;
  height: 100px;
  background: #fff;
  opacity: 0.15;
  top: 50%;
  left: 50%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.1); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.body-visual__frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px);
}

.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.02) 2px,
    rgba(255, 255, 255, 0.02) 4px
  );
  pointer-events: none;
}

.body-visual__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.body-visual__quote em {
  font-style: normal;
  color: var(--accent);
}

.body-visual__sig {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

.nexus {
  overflow: hidden;
}

.nexus-stage {
  position: relative;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  margin: 0 auto 2.5rem;
}

#nexus-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.nexus-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 45, 85, 0.2);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.nexus-ring--1 {
  width: 100%;
  height: 100%;
  animation: nexus-spin 12s linear infinite;
  border-style: dashed;
}

.nexus-ring--2 {
  width: 72%;
  height: 72%;
  animation: nexus-spin 8s linear infinite reverse;
  border-color: rgba(255, 107, 53, 0.25);
}

.nexus-ring--3 {
  width: 44%;
  height: 44%;
  animation: nexus-pulse 3s var(--ease-in-out) infinite;
  border-width: 2px;
}

@keyframes nexus-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes nexus-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.nexus-scan {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

.nexus-scan::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 45, 85, 0.35) 30deg, transparent 60deg);
  animation: nexus-scan 2.5s linear infinite;
}

@keyframes nexus-scan {
  to { transform: rotate(360deg); }
}

.nexus-orbit {
  position: absolute;
  inset: 0;
  animation: nexus-spin 6s linear infinite;
}

.nexus-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  top: 50%;
  left: 50%;
}

.nexus-node:nth-child(1) { transform: translate(calc(50vw * 0.11), -50%); }
.nexus-node:nth-child(2) { transform: translate(-50%, calc(-50vw * 0.11)); }
.nexus-node:nth-child(3) { transform: translate(calc(-50vw * 0.11 - 100%), -50%); }
.nexus-node:nth-child(4) { transform: translate(-50%, calc(50vw * 0.11)); }

@media (min-width: 580px) {
  .nexus-node:nth-child(1) { transform: translate(230px, -4px); }
  .nexus-node:nth-child(2) { transform: translate(-4px, -230px); }
  .nexus-node:nth-child(3) { transform: translate(-234px, -4px); }
  .nexus-node:nth-child(4) { transform: translate(-4px, 226px); }
}

.nexus-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.nexus-skull {
  width: 72px;
  height: auto;
  fill: rgba(255, 45, 85, 0.15);
  stroke: var(--accent);
  stroke-width: 1.5;
  animation: nexus-skull-pulse 2s var(--ease-in-out) infinite;
}

.nexus-skull ellipse,
.nexus-skull path {
  vector-effect: non-scaling-stroke;
}

@keyframes nexus-skull-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(255,45,85,0.3)); }
  50% { transform: scale(1.12); filter: drop-shadow(0 0 20px rgba(255,45,85,0.7)); }
}

.nexus-word {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  animation: nexus-glitch 4s steps(1) infinite;
}

@keyframes nexus-glitch {
  0%, 88%, 100% { opacity: 1; transform: translate(0); }
  90% { opacity: 0.4; transform: translate(-3px, 1px); color: #00fff0; }
  92% { opacity: 1; transform: translate(2px, -1px); color: var(--accent-2); }
  94% { opacity: 0.7; transform: translate(-1px, 2px); }
}

.nexus-caption {
  max-width: 32rem;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

.void {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.void-inner {
  position: relative;
  max-width: 900px;
}

.void-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 45, 85, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.void-ring--1 {
  width: 300px;
  height: 300px;
  animation: ring-pulse 4s var(--ease-in-out) infinite;
}

.void-ring--2 {
  width: 500px;
  height: 500px;
  animation: ring-pulse 4s var(--ease-in-out) infinite 1s;
}

.void-ring--3 {
  width: 700px;
  height: 700px;
  animation: ring-pulse 4s var(--ease-in-out) infinite 2s;
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.void-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.void-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.void-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.void-stat__val {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 200;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.void-stat__val::after {
  content: attr(data-suffix);
}

.void-stat:nth-child(1) .void-stat__val::after { content: 'B+'; }
.void-stat:nth-child(3) .void-stat__val::after { content: '%'; }

.void-stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 140px;
  display: block;
  margin-top: 0.5rem;
}

.contact {
  border-top: 1px solid var(--border);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  text-align: left;
}

.section--center .contact-left {
  text-align: center;
}

.contact-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  max-width: 28rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0 0.75rem;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  outline: none;
  resize: none;
  cursor: none;
  transition: border-color 0.3s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field label {
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
  transition: transform 0.3s var(--ease-out), font-size 0.3s, color 0.3s;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.4rem);
  font-size: 0.6rem;
  color: var(--accent);
}

.field-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}

.field input:focus ~ .field-line,
.field textarea:focus ~ .field-line {
  width: 100%;
}

.form-note {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-align: center;
}

.terminal {
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255, 45, 85, 0.06), transparent 70%);
  overflow: hidden;
}

.monitor-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  margin: 3rem auto;
}

.monitor {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(680px, 92vw);
  margin-inline: auto;
  transform-style: preserve-3d;
  transform-origin: center center;
  animation: monitor-float 6s var(--ease-in-out) infinite;
}

@keyframes monitor-float {
  0%, 100% { transform: rotateX(2deg) rotateY(-1deg); }
  50% { transform: rotateX(-1deg) rotateY(1.5deg); }
}

.monitor-bezel {
  position: relative;
  width: 100%;
  padding: 1.25rem 1.25rem 2rem;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 12px 12px 4px 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(255, 45, 85, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.monitor-screen {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #020202;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #111;
}

#monitor-static {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.05s;
}

.monitor-screen.is-static #monitor-static {
  opacity: 0.35;
}

.monitor-rgb {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(255,0,60,0.15), transparent 30%, transparent 70%, rgba(0,255,240,0.12));
}

.monitor-screen.is-glitch .monitor-rgb {
  animation: monitor-rgb 0.15s steps(2) 3;
}

@keyframes monitor-rgb {
  0%, 100% { opacity: 0; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(6px); }
}

.monitor-scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.25) 2px,
    rgba(0, 0, 0, 0.25) 4px
  );
  animation: scanline-roll 8s linear infinite;
}

@keyframes scanline-roll {
  to { transform: translateY(4px); }
}

.monitor-output {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1.5rem 1.5rem 2.5rem;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  line-height: 1.7;
  color: #39ff14;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
  text-align: left;
  scrollbar-width: none;
}

.monitor-output::-webkit-scrollbar {
  display: none;
}

.monitor-output .line-ai {
  display: block;
  margin-bottom: 0.4rem;
  opacity: 0;
  transform: translateX(-8px);
  animation: line-appear 0.3s var(--ease-out) forwards;
}

.monitor-output .line-ai--system { color: var(--muted); text-shadow: none; }
.monitor-output .line-ai--warn { color: var(--accent); text-shadow: 0 0 10px rgba(255,45,85,0.5); }
.monitor-output .line-ai--you { color: #00fff0; }
.monitor-output .line-ai--corrupt {
  color: var(--accent-2);
  animation: line-appear 0.3s forwards, corrupt 0.4s steps(3) infinite;
}

@keyframes line-appear {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes corrupt {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; letter-spacing: 0.1em; }
}

.monitor-cursor {
  position: absolute;
  bottom: 1.2rem;
  left: 1.5rem;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #39ff14;
  animation: cursor-blink 0.8s step-end infinite;
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.6);
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.monitor-flash {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
}

.monitor-flash.is-active {
  animation: monitor-flash 0.12s ease-out;
}

@keyframes monitor-flash {
  0% { opacity: 0.7; }
  100% { opacity: 0; }
}

.monitor-screen.is-shake {
  animation: screen-shake 0.4s var(--ease-out);
}

@keyframes screen-shake {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-6px, 3px); }
  40% { transform: translate(5px, -4px); }
  60% { transform: translate(-3px, -2px); }
  80% { transform: translate(4px, 2px); }
}

.monitor-led {
  position: absolute;
  bottom: 0.65rem;
  right: 1.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: led-pulse 2s var(--ease-in-out) infinite;
}

@keyframes led-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 18px var(--accent); }
}

.monitor-brand {
  position: absolute;
  bottom: 0.55rem;
  left: 1.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.monitor-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.monitor-neck {
  width: 80px;
  height: 50px;
  margin-inline: auto;
  background: linear-gradient(90deg, #111, #1c1c1c, #111);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.monitor-base {
  width: 200px;
  height: 12px;
  margin-inline: auto;
  background: #141414;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-caption {
  max-width: 32rem;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

.monitor.is-active {
  animation: monitor-float 6s var(--ease-in-out) infinite, monitor-glow 3s var(--ease-in-out) infinite;
}

@keyframes monitor-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255,45,85,0.15)); }
  50% { filter: drop-shadow(0 0 40px rgba(255,45,85,0.35)); }
}

.footer {
  padding: 2rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-mid {
  color: var(--accent);
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  padding: 1rem 2rem;
  background: var(--fg);
  color: var(--bg);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  z-index: 10001;
  transition: transform 0.5s var(--ease-out);
  pointer-events: none;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.split-char {
  display: inline-block;
  overflow: visible;
}

.split-char-inner {
  display: inline-block;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

@media (max-width: 1024px) {
  .header { padding: 1.25rem 1.5rem; }
  .nav { display: none; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .section { padding: 5rem 1.5rem; }
  .truth-grid { grid-template-columns: 1fr; }
  .body-layout,
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .body-visual { height: 360px; }
  .void-stats { gap: 2rem; }
  .footer { padding: 1.5rem; flex-direction: column; text-align: center; }
  body, button, .field input, .field textarea { cursor: auto; }
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}