/* ============================================
   JAYGOOD AGENCY - STYLE.CSS
   ============================================ */

/* ---- IMPORTS & VARIABLES ---- */
:root {
  --brand-lime: #ccff00;
  --brand-dark: #030303;
  --brand-gray: #0f0f0f;
  --brand-silver: #cfcfcf;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --container-max: 1280px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar { display: none; }

body {
  background-color: var(--brand-dark);
  color: #fff;
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; border: none; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::selection {
  background: var(--brand-lime);
  color: #000;
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--brand-lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(204, 255, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  mix-blend-mode: difference;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1.5px solid var(--brand-lime);
}

/* ---- NOISE ---- */
.bg-noise {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* ---- PAGE TRANSITION ---- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--brand-lime);
  z-index: 99999;
  transform: translateY(100%);
  transition: transform 0.8s var(--ease-in-out-circ);
}
.page-transition.enter { transform: translateY(0); }
.page-transition.exit { transform: translateY(-100%); }

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-lime);
  color: #000;
  padding: 12px 24px;
  z-index: 100000;
  font-weight: bold;
  transition: top 0.3s;
  font-family: var(--font-sans);
}
.skip-link:focus { top: 10px; }

/* ---- UTILITIES ---- */
.font-mono { font-family: 'Space Mono', 'Courier New', monospace; }
.font-display { font-family: var(--font-display); }
.text-lime { color: var(--brand-lime); }
.text-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
  color: transparent;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.hidden-mobile { display: none; }

@media (min-width: 768px) {
  .hidden-mobile { display: flex; }
}

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--brand-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- GLASS ---- */
.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  pointer-events: none;
  mix-blend-mode: difference;
}

@media (min-width: 768px) {
  .site-header { padding: 28px 48px; }
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo { pointer-events: auto; flex: 1; }

.logo-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  color: #fff;
  transition: font-style 0.3s;
  display: inline-block;
}
.logo-link:hover { font-style: italic; }
.logo-dot { color: var(--brand-lime); transition: opacity 0.3s; }
.logo-link:hover .logo-dot { opacity: 0.5; }

.header-menu-btn {
  pointer-events: auto;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .header-menu-btn { flex: 1; justify-content: center; }
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 16px;
  color: #fff;
}

.menu-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.menu-toggle:hover .menu-label { opacity: 1; }

.hamburger {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bar {
  position: absolute;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.bar-top { transform: translateY(-4px); }
.bar-bottom { transform: translateY(4px); }

.menu-open .bar-top { transform: rotate(45deg); }
.menu-open .bar-bottom { transform: rotate(-45deg); }

.header-time {
  pointer-events: auto;
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.header-time-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.header-clock {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}

/* ---- NAV OPEN STATE ---- */
.site-header.nav-open { mix-blend-mode: normal; }

/* ============================================
   FULLSCREEN NAV
   ============================================ */
.fullscreen-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #0a0a0a;
  clip-path: circle(0% at 50% 3%);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.15s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fullscreen-nav.open {
  clip-path: circle(150% at 50% 3%);
  transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 100px 24px 0;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .nav-inner { padding: 120px 48px 0; }
}

.nav-links-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  flex: 1;
}

@media (min-width: 1024px) {
  .nav-links-wrap {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}

.nav-links { display: flex; flex-direction: column; gap: 4px; }

.nav-item {
  overflow: hidden;
  transform: translateY(100%);
  rotateX: 90deg;
  opacity: 0;
  transition: transform 0.8s var(--ease-out-expo), opacity 0.8s var(--ease-out-expo);
}
.fullscreen-nav.open .nav-item {
  transform: translateY(0);
  opacity: 1;
}
.fullscreen-nav.open .nav-item:nth-child(1) { transition-delay: 0.4s; }
.fullscreen-nav.open .nav-item:nth-child(2) { transition-delay: 0.47s; }
.fullscreen-nav.open .nav-item:nth-child(3) { transition-delay: 0.54s; }
.fullscreen-nav.open .nav-item:nth-child(4) { transition-delay: 0.61s; }
.fullscreen-nav.open .nav-item:nth-child(5) { transition-delay: 0.68s; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-link:hover { color: var(--brand-lime); }

.nav-num {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

.nav-contact {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 24px 0;
}

@media (min-width: 1024px) {
  .nav-contact {
    align-items: flex-end;
    text-align: right;
  }
}

.nav-contact-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}

.nav-contact-email {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.3;
  transition: color 0.3s;
}
.nav-contact-email:hover { color: var(--brand-lime); }

.nav-socials { display: flex; flex-direction: column; gap: 4px; }
.nav-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-social-link:hover { color: var(--brand-lime); }
.social-line {
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--brand-lime);
  transition: width 0.3s;
}
.nav-social-link:hover .social-line { width: 16px; }

.nav-location {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: #fff;
  line-height: 1.7;
}
.nav-location span { color: rgba(255,255,255,0.4); }

.nav-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #050505;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .nav-footer {
    margin-left: -48px;
    margin-right: -48px;
    padding-left: 48px;
    padding-right: 48px;
  }
}

.nav-footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
}
.nav-footer-links { display: flex; gap: 24px; }
.nav-footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.nav-footer-links a:hover { color: var(--brand-lime); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  will-change: opacity, transform;
}
.scroll-reveal.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.scroll-reveal-left.scroll-visible { opacity: 1; transform: translateX(0); }

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.scroll-reveal-right.scroll-visible { opacity: 1; transform: translateX(0); }

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(4px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo), filter 1s var(--ease-out-expo);
}
.scroll-reveal-scale.scroll-visible { opacity: 1; transform: scale(1); filter: blur(0); }

.scroll-line-draw {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-out-expo);
}
.scroll-line-draw.scroll-visible { transform: scaleX(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

.scroll-stagger-1 { transition-delay: 0.05s; }
.scroll-stagger-2 { transition-delay: 0.12s; }
.scroll-stagger-3 { transition-delay: 0.2s; }
.scroll-stagger-4 { transition-delay: 0.3s; }
.scroll-stagger-5 { transition-delay: 0.4s; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 160px 48px 100px; }
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  mix-blend-mode: screen;
  opacity: 0.03;
}
.hero-bg-text span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 15vw, 18rem);
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-lime);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
}
.hero-line { display: block; overflow: hidden; }
.hero-line span { display: inline-block; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-awards {
  position: absolute;
  bottom: 48px;
  right: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.award-badge {
  height: 48px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
  filter: brightness(0) invert(1);
}
.award-badge:hover { opacity: 1; }

@media (max-width: 767px) {
  .hero-awards { display: none; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--brand-lime), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-hint span {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-lime);
  color: #000;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.btn-primary:hover {
  background: #d9ff20;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(204,255,0,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: #fff; border-color: #fff; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}
.btn-outline:hover {
  border-color: var(--brand-lime);
  color: var(--brand-lime);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 40px; font-size: 16px; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  background: rgba(255,255,255,0.01);
}

.marquee-track { overflow: hidden; }

.marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
  gap: 32px;
}

.marquee-inner span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.marquee-dot { color: var(--brand-lime) !important; font-size: 10px !important; }

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 24px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand-lime);
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}

.stats-about { max-width: 640px; }
.stats-about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.stats-about-text strong { color: #fff; font-weight: 600; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-lime);
  border-bottom: 1px solid rgba(204,255,0,0.3);
  padding-bottom: 4px;
  transition: border-color 0.3s, gap 0.3s;
}
.link-arrow:hover { gap: 16px; border-color: var(--brand-lime); }

/* ============================================
   FEATURED WORK
   ============================================ */
.featured-work {
  padding: 100px 0;
}

.section-header { margin-bottom: 32px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.work-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 0;
}

.work-list { display: flex; flex-direction: column; }

.work-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  group: true;
}
.work-item:hover { background: rgba(255,255,255,0.02); }

.work-item-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.work-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  width: 28px;
}

.work-item-info { flex: 1; min-width: 0; }
.work-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.work-item:hover .work-item-title { color: var(--brand-lime); }

.work-item-cat {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.work-item-preview {
  width: 160px;
  height: 100px;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s, transform 0.4s;
}
.work-item:hover .work-item-preview { opacity: 1; transform: scale(1); }
.work-item-preview img { width: 100%; height: 100%; object-fit: cover; }

.work-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s, transform 0.3s;
}
.work-item:hover .work-arrow { color: var(--brand-lime); transform: translateX(4px); }

@media (max-width: 767px) {
  .work-item-preview { display: none; }
}

.work-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ============================================
   TRUSTBAR
   ============================================ */
.trustbar {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trustbar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.trustbar-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.trustbar-img {
  max-width: 500px;
  width: 100%;
  opacity: 0.6;
  transition: opacity 0.3s;
  filter: grayscale(1) brightness(2);
}
.trustbar-img:hover { opacity: 0.9; }

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin: 48px 0;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out-expo);
}
.service-card:hover {
  background: rgba(204,255,0,0.04);
  border-color: rgba(204,255,0,0.2);
  transform: translateY(-8px);
}

.service-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brand-lime);
  opacity: 0.7;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.services-cta { display: flex; justify-content: center; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .footer-inner { padding: 0 48px; }
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0 40px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-nav, .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-link, .footer-social {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-link:hover, .footer-social:hover { color: var(--brand-lime); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal-link {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.footer-legal-link:hover { color: var(--brand-lime); }

/* ============================================
   LINE REVEAL HOVER
   ============================================ */
.line-reveal {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.line-reveal::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--brand-lime);
  transition: width 0.6s var(--ease-out-expo);
}
.line-reveal:hover::after { width: 100%; }

/* ============================================
   PAGE-SPECIFIC: WORK PAGE
   ============================================ */
.page-hero {
  padding: 160px 24px 80px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .page-hero { padding: 180px 48px 100px; }
}

.page-hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--brand-lime);
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.page-hero-desc {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ---- Full Work Grid ---- */
.work-grid-section { padding: 60px 0 120px; }

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

@media (min-width: 768px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

.work-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
  background: #0a0a0a;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), opacity 0.5s;
}
.work-card:hover img { transform: scale(1.05); opacity: 0.6; }

.work-card-overlay {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.work-card:hover .work-card-overlay { opacity: 1; }

.work-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 6px;
}
.work-card-cat {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-lime);
}

/* ============================================
   PAGE: ABOUT
   ============================================ */
.about-intro {
  padding: 160px 24px 80px;
}

@media (min-width: 768px) {
  .about-intro { padding: 180px 48px 100px; }
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-intro-grid { grid-template-columns: 5fr 4fr; }
}

.about-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}
.about-body p strong { color: #fff; font-weight: 600; }

.about-skills-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.skill-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.skill-item:hover { color: #fff; }
.skill-item span { color: var(--brand-lime); font-size: 10px; letter-spacing: 0.2em; }

/* ============================================
   PAGE: SERVICES
   ============================================ */
.services-main { padding: 60px 0 120px; }

.process-cards { display: flex; flex-direction: column; gap: 24px; margin-top: 64px; }

.process-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s;
}
.process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.process-card.dark { background: #0a0a0a; }
.process-card.lime-accent { background: #111; }
.process-card.white { background: #fff; color: #000; }
.process-card.darkest { background: #050505; }

.process-phase {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-opacity: 0.2;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  border-color: rgba(255,255,255,0.15);
  margin-bottom: 40px;
}
.process-card.white .process-phase { border-color: rgba(0,0,0,0.15); color: #000; }

.process-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.process-card.lime-accent .process-title { color: var(--brand-lime); }

.process-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
}
.process-card.white .process-desc { color: rgba(0,0,0,0.6); }

.process-divider { height: 1px; background: rgba(255,255,255,0.08); margin-top: 32px; }
.process-card.white .process-divider { background: rgba(0,0,0,0.1); }

/* ============================================
   PAGE: CONTACT
   ============================================ */
.contact-section {
  min-height: 100vh;
  padding: 160px 24px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact-section { padding: 180px 48px 100px; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-input, .form-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  cursor: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--brand-lime);
}
.form-textarea { min-height: 160px; }

.form-submit {
  align-self: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-item { margin-bottom: 4px; }
.contact-info-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.contact-email {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s;
}
.contact-email:hover { color: var(--brand-lime); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }
  .work-card-overlay { opacity: 1; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 0.8s var(--ease-out-expo) forwards; }
.animate-fade-in-up { animation: fadeInUp 0.8s var(--ease-out-expo) forwards; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-reveal, .scroll-reveal-left, .scroll-reveal-right, .scroll-reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}
