/* ============================================================
   YDKJ FILMS — STYLESHEET
   Brand: Dark, cinematic, terminal-HUD inspired.
   Palette + type strictly per BRAND_GUIDELINES v1.0
   ============================================================ */

:root {
  /* ----- BRAND COLORS (per guide) ----- */
  --jac-black:    #080808;
  --elec-lime:    #A8E32A;
  --vivid-green:  #39FF14;
  --pure-white:   #F5F5F5;
  --circuit-gold: #D4A017;
  --studio-purple:#8B2FC9;
  --dust-white:   #E8E8E0;
  --play-red:     #FF0000;

  /* ----- DERIVED ----- */
  --bg:          var(--jac-black);
  --bg-elev:     #0E0E0E;
  --bg-elev-2:   #141414;
  --border:      rgba(168, 227, 42, 0.18);
  --border-soft: rgba(245, 245, 245, 0.08);
  --text:        var(--pure-white);
  --text-dim:    rgba(245, 245, 245, 0.6);
  --text-low:    rgba(245, 245, 245, 0.4);
  --accent:      var(--elec-lime);
  --accent-glow: 0 0 30px rgba(168, 227, 42, 0.5),
                 0 0 60px rgba(168, 227, 42, 0.2);

  /* ----- TYPOGRAPHY ----- */
  --f-display: 'Anton', 'Impact', sans-serif;
  --f-sub:     'Barlow Condensed', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'Space Mono', 'Courier New', monospace;

  /* ----- SPACING ----- */
  --gutter: clamp(20px, 4vw, 60px);
  --section-pad: clamp(64px, 8vw, 120px);
}

/* ============================================================ */
/* RESET                                                         */
/* ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }

/* ============================================================ */
/* DECORATIVE LAYERS                                             */
/* ============================================================ */
.grid-overlay {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 227, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 227, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
  mix-blend-mode: overlay;
}
.scan-rings {
  position: fixed; top: -200px; right: -200px; z-index: 1; pointer-events: none;
}
.scan-rings span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 1px solid rgba(168, 227, 42, 0.15);
  border-radius: 50%;
  animation: pulse-ring 6s ease-in-out infinite;
}
.scan-rings span:nth-child(1) { width: 400px; height: 400px; }
.scan-rings span:nth-child(2) { width: 600px; height: 600px; animation-delay: 1s; }
.scan-rings span:nth-child(3) { width: 800px; height: 800px; animation-delay: 2s; }
@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.6; }
}

/* ============================================================ */
/* UTILITIES                                                     */
/* ============================================================ */
.lime { color: var(--accent); }
.lime-glow {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(168, 227, 42, 0.5);
}
.dot-sep { color: var(--text-low); margin: 0 .5em; }
.arrow { display: inline-block; transition: transform .3s ease; }
a:hover .arrow { transform: translateX(4px); }

/* Section heads */
.section-head {
  position: relative; z-index: 2;
  padding: 0 var(--gutter);
  margin-bottom: 48px;
  display: flex; align-items: baseline; gap: 24px;
  flex-wrap: wrap;
}
.section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--circuit-gold);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

/* ============================================================ */
/* NAV                                                           */
/* ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px var(--gutter);
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), rgba(8,8,8,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  padding: 12px var(--gutter);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1600px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em;
}
.nav-logo .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.4; } }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .nav-cta {
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 8px 16px;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: var(--accent-glow);
}
.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px;
  position: relative;
}
.nav-toggle span {
  height: 2px; background: var(--text);
  transition: transform .3s, opacity .3s;
}
.nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================ */
/* HERO                                                          */
/* ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  padding: 120px var(--gutter) 60px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.yt-scaler {
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%) scale(1.4);
  pointer-events: none;
}
.yt-scaler iframe.yt-bg {
  width: 100%; height: 100%;
  border: 0;
  pointer-events: none;
}
.yt-blocker {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: auto;
  background: transparent;
}
.hero-video-overlay { z-index: 2; }
.hero-video-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(8,8,8,0.4) 50%, var(--bg) 100%),
    linear-gradient(to bottom, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.6) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1600px; margin: 0 auto; width: 100%;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; color: var(--accent);
  margin-bottom: 32px;
  animation: fade-up .8s ease both;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: blink 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-headline .line-1 {
  display: block;
  animation: fade-up .9s ease .15s both;
}
.hero-headline .line-2 {
  display: block;
  animation: fade-up .9s ease .3s both;
}

.hero-sub {
  font-family: var(--f-sub);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
  animation: fade-up .9s ease .5s both;
}

/* Hero CTA buttons */
.hero-ctas {
  display: flex; gap: 16px;
  margin-bottom: 24px;
  animation: fade-up .9s ease .52s both;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .3s ease;
}
.hero-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.hero-btn:active {
  transform: scale(0.97);
}
.hero-btn--primary {
  background: var(--accent);
  color: var(--bg);
  border: 2px solid var(--accent);
  font-weight: 700;
}
.hero-btn--primary:hover {
  box-shadow: var(--accent-glow);
  transform: translateY(-2px);
}
.hero-btn--primary:hover .arrow { transform: translateX(4px); }
.hero-btn--secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.hero-btn--secondary:hover {
  background: rgba(168, 227, 42, 0.1);
  box-shadow: 0 0 20px rgba(168, 227, 42, 0.15);
  transform: translateY(-2px);
}
.hero-btn--secondary:hover .arrow { transform: translateX(4px); }

/* Hero trust line */
.hero-trust {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-low);
  margin-bottom: 40px;
  animation: fade-up .9s ease .6s both;
}

.hero-meta {
  display: flex; gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  animation: fade-up .9s ease .7s both;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--text-low);
}
.meta-val {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.05em; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.scroll-cue {
  position: absolute; bottom: 40px; right: var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--text-dim);
}
.cue-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: cue-pulse 2s ease-in-out infinite;
}
@keyframes cue-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(1.3); opacity: 0.6; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================ */
/* TRUSTED BY (client logo strip)                                */
/* ============================================================ */
.trusted-by {
  padding: var(--section-pad) 0;
  position: relative; z-index: 2;
}
.trusted-strip {
  padding: 0 var(--gutter);
  max-width: 1600px; margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.trusted-scroll {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: trusted-scroll 30s linear infinite;
  width: max-content;
}
.trusted-scroll:hover {
  animation-play-state: paused;
}
@keyframes trusted-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trusted-logo {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  min-width: 180px; height: 80px;
  opacity: 0.55;
  transition: opacity .3s ease;
  font-family: var(--f-sub); font-weight: 800;
  font-size: 20px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.trusted-logo:hover { opacity: 1; }
.trusted-logo img {
  max-height: 72px; max-width: 180px;
  filter: brightness(0) invert(1);
  opacity: inherit;
}
.trusted-placeholder-msg {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-low);
  text-align: center;
  padding: 20px 0 0;
}
.trusted-strip::before,
.trusted-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.trusted-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.trusted-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

/* ============================================================ */
/* WORK                                                          */
/* ============================================================ */
.work { padding: var(--section-pad) 0; position: relative; z-index: 2; }

.work-filters {
  padding: 0 var(--gutter);
  max-width: 1600px; margin: 0 auto 40px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filter {
  padding: 8px 16px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  border: 1px solid var(--border-soft);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.filter:hover { color: var(--text); border-color: var(--border); }
.filter:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.filter.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.work-grid {
  padding: 0 var(--gutter);
  max-width: 1600px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-item--featured {
  grid-column: span 2;
  border-color: var(--accent) !important;
  position: relative;
}
.work-item--featured::before {
  content: ''; position: absolute; inset: -1px;
  border: 1px solid var(--accent);
  pointer-events: none;
  box-shadow:
    0 0 30px rgba(168, 227, 42, 0.2),
    inset 0 0 30px rgba(168, 227, 42, 0.05);
  z-index: 1;
}
.work-item--featured .work-thumb { aspect-ratio: 21 / 9; }
.work-item--featured .work-title {
  font-size: 22px;
  font-family: var(--f-display);
  letter-spacing: 0.03em;
}
.work-featured-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 5;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--accent);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.work-featured-badge .tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.work-item {
  position: relative; cursor: pointer;
  background: var(--bg-elev);
  border: 1px solid rgba(168, 227, 42, 0.10);
  overflow: hidden;
  transition: border-color .3s ease, transform .3s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.work-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.work-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  overflow: hidden;
}
.work-thumb::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 50%);
  pointer-events: none;
}
.work-thumb img {
  position: absolute; inset: 0; z-index: 1;
  display: block;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-thumb img.loaded {
  opacity: 1;
}
.work-item:hover .work-thumb img { transform: scale(1.05); }

.work-thumb-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
  font-family: var(--f-display);
  font-size: 80px;
  color: rgba(168, 227, 42, 0.15);
  letter-spacing: -0.02em;
}
.work-thumb-fallback::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168, 227, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 227, 42, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.work-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.4) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
  opacity: 0; transition: opacity .3s ease;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-play {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,8,8,0.6);
  opacity: 0.85; transition: opacity .3s ease, transform .3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .3s ease;
}
.work-item:hover .work-play {
  opacity: 1;
  box-shadow: var(--accent-glow);
}
.work-play::before {
  content: ''; width: 0; height: 0;
  border-left: 14px solid var(--accent);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}
.work-info {
  padding: 20px;
  border-top: 1px solid var(--border-soft);
}
.work-title {
  font-family: var(--f-sub); font-weight: 700;
  font-size: 18px; letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.work-meta {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em; color: var(--text-low);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.work-meta .role { color: var(--accent); }

/* ============================================================ */
/* SERVICES — Side-by-side                                       */
/* ============================================================ */
.services { padding: var(--section-pad) 0; position: relative; z-index: 2; }

.services-dual {
  padding: 0 var(--gutter);
  max-width: 1600px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-block {
  border: 1px solid rgba(168, 227, 42, 0.12);
  background: var(--bg-elev);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
}
.svc-block-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--circuit-gold);
  margin-bottom: 24px;
}
.svc-block-heading {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.svc-block-subhead {
  font-family: var(--f-sub); font-weight: 600;
  font-size: 15px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.svc-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  margin-bottom: 32px;
  flex-grow: 1;
}
.svc-card {
  background: var(--bg-elev);
  padding: 32px;
  position: relative;
  transition: background .3s;
}
.svc-card:hover { background: var(--bg-elev-2); }
.svc-card:hover .svc-num { color: var(--accent); }

.svc-num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-low);
  margin-bottom: 16px;
  display: block;
  transition: color .3s;
}
.svc-title {
  font-family: var(--f-sub); font-weight: 800;
  font-size: 20px; letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.svc-desc {
  font-size: 14px; color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}
.svc-details {
  font-size: 13px; color: var(--dust-white);
  line-height: 1.6;
  opacity: 0.7;
}

.svc-block-range {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--circuit-gold);
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
  margin-bottom: 20px;
}
.svc-block-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--accent);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
  text-transform: uppercase;
  align-self: flex-start;
}
.svc-block-cta:hover {
  background: var(--accent); color: var(--bg);
  box-shadow: var(--accent-glow);
}
.svc-block-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.svc-block-cta:active {
  transform: scale(0.97);
}

.values-bar {
  margin-top: 40px;
  padding: 20px var(--gutter);
  max-width: 1600px; margin-left: auto; margin-right: auto;
  border-left: 2px solid var(--circuit-gold);
  background: var(--bg-elev);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.values-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--circuit-gold);
}
.values-list {
  font-family: var(--f-sub); font-weight: 700;
  font-size: 16px; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.values-list .lime { color: var(--accent); }

/* ============================================================ */
/* PROCESS — How We Work                                         */
/* ============================================================ */
.process {
  padding: var(--section-pad) 0;
  position: relative; z-index: 2;
}
.process-headline {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0 var(--gutter);
  max-width: 1600px; margin: -12px auto 48px;
}
.process-flow {
  padding: 0 var(--gutter);
  max-width: 1600px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.process-step {
  padding: 40px 32px;
  border: 1px solid rgba(168, 227, 42, 0.12);
  background: var(--bg-elev);
  position: relative;
  transition: border-color .3s ease, transform .3s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-step:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.process-step-num {
  font-family: var(--f-mono); font-size: 32px;
  font-weight: 700; letter-spacing: 0.05em;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(168, 227, 42, 0.3);
  margin-bottom: 20px;
  display: block;
}
.process-step-title {
  font-family: var(--f-sub); font-weight: 800;
  font-size: 20px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 16px;
}
.process-step-desc {
  font-size: 14px;
  color: var(--dust-white);
  line-height: 1.7;
  opacity: 0.75;
}
.process-connector {
  position: absolute;
  top: 50%; right: -14px;
  width: 28px; height: 2px;
  background: var(--accent);
  z-index: 3;
}
.process-connector::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--accent);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.process-step:last-child .process-connector { display: none; }

/* ============================================================ */
/* TESTIMONIALS                                                  */
/* ============================================================ */
.testimonials {
  padding: var(--section-pad) 0;
  position: relative; z-index: 2;
}
.testimonials-grid {
  padding: 0 var(--gutter);
  max-width: 1600px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-elev);
  border: 1px solid rgba(168, 227, 42, 0.12);
  border-left: 3px solid var(--accent);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-card:hover {
  border-color: var(--border);
  border-left-color: var(--accent);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dust-white);
  margin-bottom: 24px;
  flex-grow: 1;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: 48px;
  color: var(--accent);
  display: block;
  line-height: 0.6;
  margin-bottom: 12px;
  opacity: 0.8;
}
.testimonial-author {
  display: flex; align-items: center; gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--accent); letter-spacing: 0.05em;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.testimonial-name {
  font-family: var(--f-sub); font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pure-white);
}
.testimonial-role {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.7;
}

/* ============================================================ */
/* ABOUT                                                         */
/* ============================================================ */
.about { padding: var(--section-pad) 0; position: relative; z-index: 2; }
.about-grid {
  padding: 0 var(--gutter);
  max-width: 1600px; margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.about-portrait { position: relative; }
.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(168, 227, 42, 0.06) 0%, transparent 60%),
    var(--jac-black);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.montage-layer {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex; align-items: flex-end; justify-content: center;
  pointer-events: none;
}
.montage-layer.active {
  opacity: 1;
  z-index: 2;
}
.montage-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: drop-shadow(0 0 40px rgba(168, 227, 42, 0.08));
  animation: kenburns 12s ease-in-out infinite alternate;
}
.montage-layer.active img {
  animation-play-state: running;
}

@keyframes kenburns {
  0%   { transform: scale(1)    translateY(0); }
  100% { transform: scale(1.06) translateY(-2%); }
}

.portrait-frame::before {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
  z-index: 3; pointer-events: none;
  animation: scan-sweep 6s ease-in-out infinite;
}
@keyframes scan-sweep {
  0%   { top: 0%;   opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.4; }
  100% { top: 100%; opacity: 0; }
}

.portrait-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.5) 0%, transparent 40%);
  z-index: 2; pointer-events: none;
}

.portrait-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
}
.portrait-fallback .mono {
  font-family: var(--f-display);
  font-size: 120px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--circuit-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.portrait-fallback .mono-sub {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--text-low);
}
.portrait-corner {
  position: absolute; width: 20px; height: 20px;
  border: 2px solid var(--accent);
  z-index: 4;
}
.portrait-corner.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.portrait-corner.tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.portrait-corner.bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.portrait-corner.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.portrait-tag {
  margin-top: 16px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.about-content {}
.about-role {
  display: block;
  font-family: var(--f-sub); font-weight: 700;
  font-size: 18px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--circuit-gold);
  margin-bottom: 32px;
}
.about-bio { display: flex; flex-direction: column; gap: 20px; }
.about-bio p {
  font-size: 16px; line-height: 1.7;
  color: var(--text-dim);
  max-width: 60ch;
}
.about-bio p:first-child {
  font-size: 18px; color: var(--text);
}
.about-section { margin-top: 48px; }
.about-label {
  display: block;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--circuit-gold);
  margin-bottom: 16px;
}
.capabilities {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.capabilities .cap {
  padding: 8px 16px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--bg-elev);
}

/* ============================================================ */
/* FUTUREPROOF                                                   */
/* ============================================================ */
.futureproof { padding: var(--section-pad) 0; position: relative; z-index: 2; }
.fp-card {
  position: relative;
  margin: 0 var(--gutter);
  max-width: 1600px;
  margin-left: auto; margin-right: auto;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg-elev) 0%, #0a0a0a 100%);
  overflow: hidden;
  padding: 60px;
}
.fp-glow {
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168, 227, 42, 0.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.fp-rings { position: absolute; top: 50%; right: 5%; transform: translateY(-50%); pointer-events: none; }
.fp-rings span {
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
  border: 1px solid rgba(168, 227, 42, 0.2);
  animation: fp-ring 4s ease-in-out infinite;
}
.fp-rings span:nth-child(1) { width: 200px; height: 200px; }
.fp-rings span:nth-child(2) { width: 300px; height: 300px;
  border-color: rgba(212, 160, 23, 0.15); animation-delay: 1s; }
.fp-rings span:nth-child(3) { width: 400px; height: 400px; animation-delay: 2s; }
@keyframes fp-ring {
  0%, 100% { transform: scale(0.95); opacity: 0.4; }
  50%      { transform: scale(1.05); opacity: 0.8; }
}

.fp-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.fp-label {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; color: var(--circuit-gold);
  margin-bottom: 20px;
}
.fp-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin-bottom: 24px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent) 0%, var(--circuit-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(168, 227, 42, 0.3));
}
.fp-desc {
  font-size: 16px; color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.7;
}
.fp-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--accent);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}
.fp-cta:hover {
  background: var(--accent); color: var(--bg);
  box-shadow: var(--accent-glow);
}
.fp-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.fp-visual {
  aspect-ratio: 16 / 9;
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  position: relative;
}
.fp-visual img,
.fp-visual iframe {
  width: 100%; height: 100%;
  object-fit: cover; border: 0;
}
.fp-visual-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  background: radial-gradient(circle at center, rgba(168, 227, 42, 0.1) 0%, transparent 70%);
}
.fp-visual-fallback .big {
  font-family: var(--f-display);
  font-size: 64px; letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--accent), var(--circuit-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fp-visual-fallback .small {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--text-dim);
}

/* ============================================================ */
/* CONTACT                                                       */
/* ============================================================ */
.contact {
  position: relative; z-index: 2;
  padding: var(--section-pad) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.contact-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(200px, 30vw, 480px);
  color: rgba(168, 227, 42, 0.04);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
}
.contact-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.contact-inner .section-num {
  display: block;
  margin-bottom: 24px;
}
.contact-headline {
  font-family: var(--f-display);
  font-size: clamp(48px, 9vw, 140px);
  letter-spacing: 0.01em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.contact-sub {
  font-family: var(--f-sub);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 60px;
}

.contact-buttons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 700px; margin: 0 auto 48px;
}
.btn-primary, .btn-secondary {
  position: relative;
  padding: 24px;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary { border-color: var(--accent); }
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform .35s ease;
  z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover * { color: var(--bg); position: relative; z-index: 1; }
.btn-primary:hover { box-shadow: var(--accent-glow); }
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-primary > * { position: relative; z-index: 1; }

.btn-secondary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--circuit-gold);
  transform: translateY(100%);
  transition: transform .35s ease;
  z-index: 0;
}
.btn-secondary:hover::before { transform: translateY(0); }
.btn-secondary:hover * { color: var(--bg); position: relative; z-index: 1; }
.btn-secondary > * { position: relative; z-index: 1; }
.btn-secondary { border-color: var(--circuit-gold); }

.btn-num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-low);
  display: block; margin-bottom: 8px;
}
.btn-label {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.btn-target {
  font-family: var(--f-mono); font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.contact-meta {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; color: var(--text-low);
}

/* ============================================================ */
/* FOOTER                                                        */
/* ============================================================ */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border-soft);
  padding: 60px var(--gutter) 0;
}
.footer-inner {
  max-width: 1600px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--circuit-gold);
}
.footer-tag {
  font-family: var(--f-display);
  font-size: 28px; letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.footer-col a {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-mono {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--text-dim);
}
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-sitemap { display: flex; flex-direction: column; gap: 8px; }

.footer-location-line,
.footer-response-line {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--text-low);
}

.footer-bar {
  max-width: 1600px; margin: 0 auto;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-rights {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em; color: var(--text-low);
}
.footer-final {
  max-width: 1600px; margin: 0 auto;
  padding: 20px 0 40px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-low);
  text-align: center;
  border-top: 1px solid var(--border-soft);
}

/* ============================================================ */
/* REEL SHOWCASE                                                 */
/* ============================================================ */
.reel-showcase {
  position: relative; z-index: 2;
  padding: 0 0 clamp(48px, 6vw, 80px);
  margin-top: -40px;
}
.reel-showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.reel-showcase-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; color: var(--accent);
  margin-bottom: 24px;
}
.reel-showcase-player {
  position: relative;
  border: 1px solid var(--border);
  background: var(--jac-black);
  box-shadow:
    0 0 60px rgba(168, 227, 42, 0.08),
    0 0 120px rgba(168, 227, 42, 0.04);
}
.reel-player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.reel-player-frame iframe {
  width: 100%; height: 100%; border: 0;
}
.reel-showcase-caption {
  display: flex; align-items: center; gap: 16px;
  margin-top: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border-soft);
}
.reel-caption-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--circuit-gold);
  white-space: nowrap;
}
.reel-caption-title {
  font-family: var(--f-sub); font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-dim);
}

/* ============================================================ */
/* BTS SHOWCASE CAROUSEL                                         */
/* ============================================================ */
.bts-showcase {
  position: relative; z-index: 2;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.bts-carousel {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.bts-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.bts-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.bts-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
  transition: transform 8s ease;
}
.bts-slide.active img {
  transform: scale(1.04);
}
.bts-slide::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 8%),
    linear-gradient(to left, var(--bg) 0%, transparent 8%),
    linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 40%);
  pointer-events: none;
}

.bts-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(8px);
  font-size: 28px;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
  z-index: 5;
  cursor: pointer;
}
.bts-nav:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: var(--accent-glow);
}
.bts-nav:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.bts-prev { left: calc(var(--gutter) + 16px); }
.bts-next { right: calc(var(--gutter) + 16px); }

.bts-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.bts-dot {
  width: 32px; height: 3px;
  background: var(--border-soft);
  cursor: pointer;
  transition: background .3s ease, width .3s ease, box-shadow .3s ease;
  border: none; padding: 0;
}
.bts-dot.active {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(168, 227, 42, 0.5);
  width: 48px;
}
.bts-dot:hover {
  background: var(--text-dim);
}
.bts-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.bts-caption {
  max-width: 1600px;
  margin: 24px auto 0;
  padding: 0 var(--gutter);
  display: flex; align-items: baseline; gap: 16px;
  flex-wrap: wrap;
}
.bts-caption-tag {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.bts-caption-text {
  font-family: var(--f-sub); font-weight: 600;
  font-size: 16px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================ */
/* PAIN POINTS                                                   */
/* ============================================================ */
.pain-points {
  position: relative; z-index: 2;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.pain-points::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(168, 227, 42, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 160, 23, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.pain-points-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.pain-points-header {
  margin-bottom: 48px;
}
.pain-points-headline {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pain-points-sub {
  font-family: var(--f-sub); font-weight: 600;
  font-size: 16px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.pain-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.pain-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pain-col-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dust-white);
}
.pain-x {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 14px; font-weight: 700;
  color: #E54B4B;
  border: 1px solid rgba(229, 75, 75, 0.3);
  background: rgba(229, 75, 75, 0.08);
  margin-top: 1px;
}
.pain-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 14px; font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(168, 227, 42, 0.3);
  background: rgba(168, 227, 42, 0.08);
  margin-top: 1px;
}
.pain-points-cta {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 960px) {
  .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================ */
/* CASE STUDY MODAL                                              */
/* ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: var(--gutter);
}
.modal[aria-hidden="false"] { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
}
.modal-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  animation: modal-in .3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  font-size: 24px;
  z-index: 3;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.modal-close:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.modal-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.modal-video {
  aspect-ratio: 16 / 9;
  background: #000;
}
.modal-video iframe,
.modal-video video {
  width: 100%; height: 100%; border: 0;
}

.modal-case-study {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 32px 40px 40px;
}
.case-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1;
}
.case-meta-labels {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.case-meta-labels span:first-child { color: var(--accent); }
.case-section {
  margin-bottom: 24px;
}
.case-label {
  display: block;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--circuit-gold);
  margin-bottom: 8px;
}
.case-section p {
  font-size: 14px; color: var(--text-dim);
  line-height: 1.7;
}
.case-right {
  padding-left: 40px;
  border-left: 1px solid var(--border-soft);
}
.case-credit-item {
  display: flex; gap: 12px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.case-credit-role {
  color: var(--text-low);
  text-transform: uppercase;
  min-width: 100px;
}
.case-credit-name { color: var(--text); }
.case-deliverable-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin: 0 6px 6px 0;
}

/* ============================================================ */
/* RESPONSIVE                                                    */
/* ============================================================ */
@media (max-width: 960px) {
  /* NAV — full-screen mobile menu */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 100px var(--gutter) 40px;
    gap: 24px;
    z-index: 99;
    align-items: flex-start;
    border-bottom: none;
  }
  .nav.open .nav-links a {
    font-size: 14px;
    color: var(--text);
  }
  .nav.open .nav-links .nav-cta {
    margin-top: 12px;
  }
  .nav-toggle { z-index: 101; }

  /* WORK */
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-item--featured { grid-column: span 2; }
  .work-item--featured .work-thumb { aspect-ratio: 16 / 9; }

  /* BTS */
  .bts-slide { aspect-ratio: 16 / 9; }
  .bts-nav { width: 44px; height: 44px; font-size: 22px; }
  .bts-prev { left: calc(var(--gutter) + 8px); }
  .bts-next { right: calc(var(--gutter) + 8px); }

  /* SERVICES */
  .services-dual { grid-template-columns: 1fr; gap: 32px; }
  .svc-block { padding: 36px 24px; }
  .svc-block-grid { grid-template-columns: 1fr; }

  /* PROCESS */
  .process-flow { grid-template-columns: 1fr; gap: 16px; }
  .process-connector { display: none !important; }
  .process-step {
    border-left: 3px solid var(--accent);
    border-top: 1px solid rgba(168, 227, 42, 0.12);
    border-right: 1px solid rgba(168, 227, 42, 0.12);
    border-bottom: 1px solid rgba(168, 227, 42, 0.12);
    background: var(--bg-elev);
    padding: 32px 24px;
  }

  /* TESTIMONIALS — horizontal snap-scroll */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
  }
  .testimonial-card {
    min-width: 85vw;
    max-width: 85vw;
    scroll-snap-align: start;
    flex-shrink: 0;
    padding: 28px 24px;
  }
  .testimonial-quote {
    font-size: 14px;
    line-height: 1.65;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 320px; }

  /* FUTUREPROOF */
  .fp-inner { grid-template-columns: 1fr; gap: 32px; }
  .fp-card { padding: 40px 24px; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* CONTACT */
  .contact-buttons { grid-template-columns: 1fr; }

  /* TRUSTED BY — smaller logos on tablet */
  .trusted-logo {
    min-width: 120px; height: 52px;
  }
  .trusted-logo img {
    max-height: 44px; max-width: 120px;
  }
  .trusted-scroll { gap: 36px; }

  /* MODAL */
  .modal-case-study {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px 32px;
  }
  .case-right {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
  }
  .modal-inner {
    max-height: 100vh;
    max-width: 100%;
    border: none;
  }
}

/* ============================================================ */
/* MOBILE — iPhone / small screens                               */
/* ============================================================ */
@media (max-width: 600px) {
  /* Tighter section spacing */
  :root {
    --section-pad: clamp(48px, 6vw, 80px);
  }

  /* HERO */
  .hero {
    padding: 100px 20px 40px;
    min-height: 100svh;
  }
  .hero-headline {
    font-size: clamp(48px, 12vw, 80px);
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
  }
  .hero-tag {
    padding: 6px 12px;
    font-size: 10px;
    margin-bottom: 24px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }
  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 11px;
  }
  .hero-trust {
    font-size: 9px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }
  .hero-meta {
    gap: 16px;
    padding-top: 16px;
  }
  .meta-label { font-size: 9px; }
  .meta-val { font-size: 11px; }
  .scroll-cue { display: none; }

  /* SECTION HEADS — fit on mobile */
  .section-head {
    padding: 0 20px;
    margin-bottom: 32px;
    gap: 12px;
  }
  .section-title {
    font-size: clamp(32px, 9vw, 52px);
  }

  /* REEL SHOWCASE */
  .reel-showcase-inner { padding: 0 20px; }
  .reel-showcase-tag { font-size: 10px; padding: 6px 12px; }

  /* SERVICES */
  .services-dual { padding: 0 20px; }
  .svc-block { padding: 28px 20px; }
  .svc-block-heading { font-size: clamp(22px, 6vw, 32px); }
  .svc-block-subhead { font-size: 13px; margin-bottom: 24px; }
  .svc-card { padding: 24px 20px; }
  .svc-title { font-size: 17px; }
  .svc-desc { font-size: 13px; }
  .svc-details { font-size: 12px; }
  .svc-block-range { font-size: 9px; }
  .svc-block-cta { font-size: 10px; padding: 12px 20px; }
  .values-bar {
    padding: 16px 20px;
    margin-top: 32px;
  }
  .values-list { font-size: 13px; }

  /* TRUSTED BY — compact for phone */
  .trusted-by { padding: clamp(40px, 6vw, 64px) 0; }
  .trusted-logo {
    min-width: 80px; height: 40px;
  }
  .trusted-logo img {
    max-height: 32px; max-width: 80px;
  }
  .trusted-scroll { gap: 24px; }
  .trusted-strip { padding: 0 20px; }
  .trusted-strip::before,
  .trusted-strip::after { width: 32px; }

  /* PAIN POINTS */
  .pain-points-inner { padding: 0 20px; }
  .pain-points-headline {
    font-size: clamp(28px, 7vw, 40px);
  }
  .pain-points-sub { font-size: 14px; }
  .pain-item { font-size: 14px; gap: 12px; }

  /* BTS */
  .bts-carousel { padding: 0 20px; }
  .bts-nav { width: 36px; height: 36px; font-size: 18px; }
  .bts-prev { left: calc(20px + 6px); }
  .bts-next { right: calc(20px + 6px); }
  .bts-caption { padding: 0 20px; }
  .bts-caption-tag { font-size: 9px; padding: 4px 10px; }
  .bts-caption-text { font-size: 14px; }

  /* WORK */
  .work-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 16px;
  }
  .work-item--featured { grid-column: span 1; }
  .work-item--featured .work-title { font-size: 18px; }
  .work-filters {
    padding: 0 20px;
    gap: 6px;
    margin-bottom: 28px;
  }
  .filter {
    padding: 6px 12px;
    font-size: 10px;
  }
  .work-info { padding: 16px; }
  .work-title { font-size: 16px; }
  .work-meta { font-size: 9px; }
  .work-play { width: 48px; height: 48px; }
  .work-play::before {
    border-left-width: 10px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    margin-left: 3px;
  }

  /* PROCESS */
  .process-headline {
    font-size: clamp(24px, 6vw, 36px);
    padding: 0 20px;
  }
  .process-flow { padding: 0 20px; }
  .process-step { padding: 24px 20px; }
  .process-step-num { font-size: 24px; margin-bottom: 12px; }
  .process-step-title { font-size: 17px; }
  .process-step-desc { font-size: 13px; }

  /* TESTIMONIALS */
  .testimonials-grid { padding: 0 20px; }
  .testimonial-card {
    min-width: calc(100vw - 56px);
    max-width: calc(100vw - 56px);
    padding: 24px 20px;
  }
  .testimonial-quote {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .testimonial-quote::before {
    font-size: 36px;
    margin-bottom: 8px;
  }
  .testimonial-name { font-size: 13px; }
  .testimonial-role { font-size: 9px; }
  .testimonial-avatar { width: 36px; height: 36px; font-size: 10px; }

  /* ABOUT */
  .about-grid { padding: 0 20px; gap: 32px; }
  .about-portrait { max-width: 280px; }
  .about-role { font-size: 15px; margin-bottom: 24px; }
  .about-bio p { font-size: 14px; }
  .about-bio p:first-child { font-size: 16px; }
  .about-section { margin-top: 36px; }
  .capabilities { gap: 6px; }
  .capabilities .cap {
    padding: 6px 12px;
    font-size: 10px;
  }

  /* FUTUREPROOF */
  .futureproof .section-head { padding: 0 20px; }
  .fp-card {
    padding: 32px 20px;
    margin: 0 20px;
  }
  .fp-title { font-size: clamp(32px, 8vw, 48px); }
  .fp-desc { font-size: 14px; margin-bottom: 24px; }
  .fp-cta { font-size: 10px; padding: 12px 20px; }
  .fp-glow { width: 300px; height: 300px; }

  /* CONTACT */
  .contact { padding: clamp(48px, 6vw, 80px) 20px; }
  .contact-headline {
    font-size: clamp(40px, 10vw, 80px);
  }
  .contact-sub { font-size: 14px; margin-bottom: 40px; }
  .contact-buttons { max-width: 100%; }
  .btn-label { font-size: 24px; }
  .btn-target { font-size: 11px; word-break: break-all; }
  .contact-meta { font-size: 10px; }

  /* FOOTER */
  .footer { padding: 40px 20px 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer-tag { font-size: 22px; }
  .footer-bar { padding: 20px 0; }
  .footer-rights { font-size: 9px; text-align: center; }
  .footer-final { font-size: 9px; padding: 16px 0 32px; }

  /* MODAL on mobile */
  .modal { padding: 0; }
  .modal-inner { max-height: 100dvh; }
  .modal-close { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 20px; }
}
