/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --fg: #E8E8E8;
  --fg-muted: #888888;
  --accent: #CAFD11;
  --accent-dim: rgba(202, 253, 17, 0.12);
  --border: rgba(202, 253, 17, 0.2);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Syne', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--accent);
  line-height: 1;
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.5;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 60%, rgba(202,253,17,0.04) 100%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
  z-index: 1;
}

.hero-accent-block {
  flex-shrink: 0;
  width: 12px;
  height: 220px;
  background: var(--accent);
  margin-right: 32px;
}

.hero-content {
  max-width: 900px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.hero-headline br { display: block; }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* === SECTION SHARED === */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

/* === WORK === */
.work {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.work-header {
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}

.work-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.work-piece {
  position: relative;
}

.work-piece--large .work-art {
  aspect-ratio: 1;
  height: 520px;
}

.work-art {
  overflow: hidden;
  background: var(--bg-alt);
}

.work-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.art-skull { aspect-ratio: 1; height: 520px; }
.art-abstract { height: 280px; }
.art-texture { height: 260px; }

.work-label {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* === SERVICES === */
.services {
  padding: 120px 40px;
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--border);
}

.service-card {
  padding: 48px 40px;
  border: 1px solid var(--border);
  transition: background 0.2s ease;
}

.service-card:hover {
  background: var(--accent-dim);
}

.service-icon {
  margin-bottom: 24px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === MANIFESTO === */
.manifesto {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  color: var(--fg);
  margin: 32px 0 40px;
  font-style: normal;
  letter-spacing: -0.5px;
  border-left: 4px solid var(--accent);
  padding-left: 32px;
}

.manifesto-body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 64px;
}

.manifesto-stats {
  display: flex;
  gap: 64px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* === CLOSING === */
.closing {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.closing-inner { max-width: 900px; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.closing-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 6px;
  color: var(--accent);
}

.footer-links {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 40px 24px 80px; }
  .hero-accent-block { height: 140px; margin-right: 20px; }
  .hero-headline { font-size: 64px; }
  .work-grid { grid-template-columns: 1fr; }
  .art-skull { height: 360px; }
  .work, .services, .manifesto, .closing { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .manifesto-stats { gap: 32px; flex-wrap: wrap; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 52px; }
  .badge { font-size: 10px; padding: 6px 14px; }
  .manifesto-quote { font-size: 24px; padding-left: 20px; }
  .stat-num { font-size: 40px; }
}

/* === MOUSE TRAIL / ACCENTS === */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
}
