/* ── CSS VARIABLES ── */
:root {
  --black: #080808;
  --white: #F5F0E8;
  --acid: #C8FF00;
  --hot: #FF2D55;
  --blue: #0047FF;
  --glass: rgba(245,240,232,0.04);
  --border: rgba(245,240,232,0.10);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 12px; height: 12px;
  background: var(--acid);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--acid);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

/* ── NOISE OVERLAY ── */
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='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");
  opacity: 0.35;
  pointer-events: none;
  z-index: 1000;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--acid); }
.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--acid);
  padding: 10px 22px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.15s, background 0.15s;
}
.nav-cta:hover { background: var(--hot); color: var(--white); transform: skewX(-6deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--acid);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-title .acid { color: var(--acid); }
.hero-title .hot  { color: var(--hot); }
.hero-sub {
  max-width: 520px;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
  margin-top: 36px;
  margin-left: 4px;
  animation: fadeUp 1s 0.25s ease both;
}
.hero-actions {
  margin-top: 52px;
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeUp 1s 0.35s ease both;
}
.btn-primary {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--acid);
  color: var(--black);
  padding: 18px 40px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: none;
  display: inline-block;
  position: relative;
  transition: transform 0.15s;
}
.btn-primary::after { content: '→'; margin-left: 10px; }
.btn-primary:hover  { transform: translate(-3px, -3px); }
.btn-primary:hover::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--acid);
  transform: translate(6px, 6px);
  pointer-events: none;
}
.btn-ghost {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,240,232,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* rotating badge */
.hero-badge {
  position: absolute;
  right: 80px; bottom: 120px;
  width: 140px; height: 140px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 18s linear infinite;
}
.hero-badge-inner {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--acid);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hero-badge svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--glass);
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: rgba(245,240,232,0.25);
  padding: 0 48px;
  white-space: nowrap;
}
.marquee-item.hot  { color: var(--hot); }
.marquee-item.acid { color: var(--acid); }

/* ── SECTIONS ── */
.section { padding: 120px 48px; position: relative; }
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--black);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--acid);
  transition: width 0.4s ease;
}
.service-card:hover { background: rgba(200,255,0,0.04); }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.15);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.service-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.service-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
}

/* ── COMING SOON ── */
.coming-soon {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cs-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,255,0,0.08) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: pulse 4s ease-in-out infinite;
}
.cs-inner { position: relative; z-index: 2; }
.cs-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 28px;
}
.cs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
}
.cs-title .line1 { display: block; color: var(--white); }
.cs-title .line2 {
  display: block;
  -webkit-text-stroke: 2px var(--hot);
  color: transparent;
}
.cs-sub {
  margin-top: 32px;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.05em;
}
.blink {
  animation: blink 1s step-end infinite;
  color: var(--acid);
  font-family: 'Space Mono', monospace;
}

/* ── CLIENTS ── */
.clients-section { padding: 100px 48px; }
.carousel-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77,0,0.175,1);
}
.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
.client-cell {
  background: var(--black);
  padding: 52px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.client-cell:hover { background: rgba(200,255,0,0.04); }
.client-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.35);
  transition: color 0.25s;
}
.client-cell:hover .client-name { color: var(--white); }
.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}
.c-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.c-btn:hover { background: var(--acid); border-color: var(--acid); color: var(--black); }

/* ── CONTACT ── */
.contact-section {
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border);
}
.contact-left .big-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}
.contact-left .big-text .acid { color: var(--acid); }
.contact-right { display: flex; flex-direction: column; gap: 32px; }
.contact-item { border-bottom: 1px solid var(--border); padding-bottom: 28px; }
.contact-item-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 10px;
}
.contact-item-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.contact-item-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--acid); }

/* ── FOOTER ── */
footer {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.3);
}
.footer-logo span { color: var(--acid); }
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: rgba(245,240,232,0.2);
  letter-spacing: 0.1em;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin   { to { transform: rotate(360deg); } }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.1); }
}
@keyframes blink  { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-badge { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 24px; }
  .carousel-slide { grid-template-columns: repeat(3, 1fr); }
  .contact-section { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
  footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
  .clients-section { padding: 80px 24px; }
}
