:root {
  --bg: #0b0b0f;
  --fg: #f4f0e8;
  --muted: #a6a09a;
  --acid: #d8ff35;
  --hot: #ff3d81;
  --cyan: #3df2ff;
  --line: rgba(244, 240, 232, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 70% 10%, rgba(61,242,255,.16), transparent 28%), var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor {
  position: fixed; width: 24px; height: 24px; border: 1px solid var(--acid); border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 60; mix-blend-mode: difference;
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px clamp(20px, 4vw, 64px); backdrop-filter: blur(16px);
}
.logo { font: 900 24px/1 Space Grotesk, sans-serif; letter-spacing: -.08em; }
.logo span { color: var(--acid); }
.nav nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--acid); }
.section { padding: 120px clamp(20px, 6vw, 96px); }
.hero { min-height: 100vh; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow { color: var(--acid); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; }
h1, h2, h3 { font-family: Space Grotesk, Inter, sans-serif; margin: 0; letter-spacing: -.06em; }
h1 { font-size: clamp(52px, 8vw, 132px); line-height: .84; max-width: 980px; }
h1 span { color: transparent; -webkit-text-stroke: 1px var(--fg); }
.lead { color: var(--muted); max-width: 620px; font-size: clamp(17px, 2vw, 22px); line-height: 1.5; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.btn { border: 1px solid var(--line); padding: 15px 20px; border-radius: 999px; transition: .25s ease; }
.btn:hover { transform: translateY(-4px) rotate(-1deg); border-color: var(--acid); }
.btn.primary { background: var(--acid); color: #0a0a0a; border-color: var(--acid); font-weight: 800; }
.stage { position: relative; height: min(66vw, 620px); border: 1px solid var(--line); overflow: hidden; transform: rotate(-2deg); }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); mix-blend-mode: screen; animation: float 7s infinite alternate ease-in-out; }
.orb--one { width: 44%; aspect-ratio: 1; background: var(--hot); left: 12%; top: 18%; }
.orb--two { width: 35%; aspect-ratio: 1; background: var(--cyan); right: 10%; bottom: 10%; animation-delay: -2s; }
.ring { position: absolute; inset: 17%; border: 2px dashed var(--acid); border-radius: 50%; animation: spin 18s linear infinite; }
.slab { position: absolute; padding: 18px 24px; background: var(--fg); color: var(--bg); font-weight: 900; font-size: clamp(24px, 4vw, 58px); letter-spacing: -.08em; }
.slab--one { left: 8%; bottom: 18%; transform: rotate(12deg); }
.slab--two { right: 4%; top: 22%; transform: rotate(-17deg); background: var(--acid); }
.ticker { position: absolute; left: -20%; bottom: 7%; width: 140%; padding: 12px; background: var(--hot); color: #fff; font-weight: 900; transform: rotate(-7deg); animation: slide 9s linear infinite; white-space: nowrap; }
.marquee { display: flex; overflow: hidden; border-block: 1px solid var(--line); color: var(--bg); background: var(--fg); font: 900 clamp(32px, 6vw, 84px)/1 Space Grotesk; white-space: nowrap; }
.marquee div { animation: marquee 16s linear infinite; padding-right: 24px; }
.section__head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 44px; }
.section__head h2, .contact h2 { font-size: clamp(38px, 5vw, 82px); max-width: 900px; line-height: .9; }
.cards { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.card { min-height: 320px; border: 1px solid var(--line); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.03); transition: .35s ease; }
.card:hover { transform: translateY(-8px) rotate(1deg); background: rgba(216,255,53,.08); }
.card.big { grid-row: span 2; min-height: 658px; background: linear-gradient(135deg, rgba(255,61,129,.28), rgba(61,242,255,.13)); }
.card.invert { background: var(--fg); color: var(--bg); }
.card span { color: var(--acid); font-weight: 900; }
.card.invert span { color: var(--hot); }
.card h3 { font-size: clamp(30px, 4vw, 66px); }
.card p { color: inherit; max-width: 440px; line-height: 1.55; }
.services { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: .7fr 1fr; gap: 40px; }
.service-row h2 { font-size: clamp(42px, 6vw, 96px); }
ul { list-style: none; padding: 0; margin: 0; }
li { border-bottom: 1px solid var(--line); padding: 22px 0; font-size: clamp(22px, 3vw, 44px); font-weight: 800; letter-spacing: -.04em; }
.quote { margin-top: 80px; color: var(--hot); font: 700 clamp(28px, 4vw, 64px)/1 Space Grotesk; max-width: 980px; transform: rotate(-1deg); }
.contact { min-height: 80vh; display: flex; flex-direction: column; justify-content: center; }
.contact-link { display: inline-block; margin: 34px 0; color: var(--acid); font-size: clamp(30px, 5vw, 78px); font-weight: 900; letter-spacing: -.06em; }
.socials { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); }
.socials a { border: 1px solid var(--line); padding: 12px 16px; }
@keyframes float { to { transform: translate(32px, -26px) scale(1.12); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slide { to { transform: translateX(12%) rotate(-7deg); } }
@keyframes marquee { to { transform: translateX(-100%); } }
@media (max-width: 860px) {
  .hero, .service-row, .section__head { grid-template-columns: 1fr; display: grid; }
  .stage { height: 520px; }
  .cards { grid-template-columns: 1fr; }
  .card.big { min-height: 420px; }
  .cursor { display: none; }
}
