:root {
  --bg: #050505; --surface: #0f0f0f; --surface-2: #1a1a1a;
  --text: #f5f5f5; --text-muted: #888;
  --accent: #fbff80; --accent-dark: #d4d900; --border: #222;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 64px; --max-w: 1200px; --radius: 4px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: clamp(15px,1.1vw,18px); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(3rem,6.5vw,6.5rem); }
h2 { font-size: clamp(2.4rem,4.2vw,4rem); }
h3 { font-size: clamp(1.25rem,2.2vw,2rem); }
.label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-family: var(--font-display); font-weight: 600; display: block; margin-bottom: 1rem; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1rem,4vw,3rem); }
section { padding: clamp(4rem,8vw,8rem) 0; }
section:nth-child(even) { background: var(--surface); }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.75rem; font-family: var(--font-display); font-size: .88rem; font-weight: 600; cursor: pointer; border: none; transition: all .2s ease; border-radius: var(--radius); white-space: nowrap; }
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); background: rgba(5,5,5,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1rem,4vw,3rem); gap: 1.5rem; }
.nav-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-logo img { height: 26px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: .15rem; flex: 1; justify-content: center; }
.nav-links a { padding: .4rem .7rem; font-size: .78rem; font-family: var(--font-display); color: var(--text-muted); transition: color .15s; border-radius: var(--radius); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -1px; left: .7rem; right: .7rem; height: 2px; background: var(--accent); border-radius: 1px; }
.nav-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-phone { font-size: .78rem; color: var(--text-muted); font-family: var(--font-display); transition: color .15s; }
.nav-phone:hover { color: var(--accent); }

/* HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform .25s ease, opacity .2s ease; border-radius: 1px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.nav-mobile-menu { position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 99; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); overflow-y: auto; border-top: 1px solid var(--border); }
.nav-mobile-menu.open { transform: translateX(0); }
.nav-mobile-inner { padding: 1rem clamp(1rem,4vw,3rem) 3rem; display: flex; flex-direction: column; }
.nav-mobile-inner a[href^="#"] { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text-muted); padding: 1rem 0; border-bottom: 1px solid var(--border); transition: color .15s; display: block; letter-spacing: .01em; }
.nav-mobile-inner a[href^="#"]:hover { color: var(--accent); }
.nav-mobile-phone { display: block; font-family: var(--font-display); font-size: .9rem; color: var(--text-muted); padding: 1rem 0; border-bottom: 1px solid var(--border); transition: color .15s; }
.nav-mobile-phone:hover { color: var(--accent); }
.nav-mobile-cta { margin-top: 2rem; }
.nav-mobile-cta .btn { width: 100%; justify-content: center; font-size: .95rem; padding: 1rem; }

/* HERO */
#hero { min-height: 100svh; padding-top: calc(var(--nav-h) + 5rem); padding-bottom: 5rem; display: flex; align-items: center; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: center; }
.hero-heading { margin-bottom: 1.5rem; }
.hero-heading em { font-style: normal; color: var(--accent); }
.hero-sub { color: var(--text-muted); font-size: clamp(1rem,1.2vw,1.15rem); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* HERO STAT RAW — no card, pure typography */
.hero-stat-raw { display: flex; flex-direction: column; }
.hero-stat-big { display: block; font-family: var(--font-display); font-size: clamp(4rem,7.5vw,8rem); font-weight: 700; color: var(--accent); line-height: .85; letter-spacing: -.03em; }
.hero-stat-big-lbl { display: block; font-family: var(--font-display); font-size: clamp(.95rem,1.4vw,1.2rem); font-weight: 600; color: var(--text); margin-top: .85rem; letter-spacing: -.01em; }
.hero-stat-sub { font-size: .78rem; color: var(--text-muted); margin-top: .4rem; max-width: 300px; line-height: 1.55; }
.hero-stat-divider { height: 1px; background: var(--border); margin: 2rem 0; }
.hero-proof-metrics { display: flex; gap: 2.5rem; }
.hero-stat-val { display: block; font-family: var(--font-display); font-size: clamp(1.4rem,2.2vw,2rem); font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: .35rem; }
.hero-stat-lbl { font-size: .62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
.hero-proof-attr { margin-top: 1.25rem; font-size: .68rem; color: var(--text-muted); font-family: var(--font-display); letter-spacing: .08em; text-transform: uppercase; }

.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .4rem; color: var(--text-muted); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; font-family: var(--font-display); }
.hero-scroll-inner { display: flex; flex-direction: column; align-items: center; gap: .4rem; animation: scrollbounce 2s ease-in-out infinite; }
.hero-scroll svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
@keyframes scrollbounce { 0%,100%{transform:translateY(0);opacity:.5}50%{transform:translateY(7px);opacity:1} }

/* RESULTS */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.result-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface-2); transition: border-color .25s, transform .25s; }
.result-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.result-card-img-wrapper { position: relative; overflow: hidden; cursor: zoom-in; }
.result-card-img-wrapper img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: top; transition: transform .35s ease; display: block; }
.result-card:hover .result-card-img-wrapper img { transform: scale(1.03); }
.expand-btn { position: absolute; bottom: .6rem; right: .6rem; width: 30px; height: 30px; background: rgba(0,0,0,.82); border: none; border-radius: 2px; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; padding: 0; }
.result-card:hover .expand-btn { opacity: 1; }
.expand-btn svg { width: 13px; height: 13px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.result-card-body { padding: 1.25rem; }
.result-campaign { font-size: .75rem; color: var(--text-muted); margin-bottom: 1rem; font-family: var(--font-display); line-height: 1.4; }
.result-stats { display: flex; gap: 1.5rem; }
.result-stat-val { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--accent); }
.result-stat-lbl { font-size: .62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

/* VIMEO LITE */
.work-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
.vimeo-lite { position: relative; padding-bottom: 56.25%; background: #111; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 1px solid var(--border); transition: border-color .2s; }
.vimeo-lite:hover { border-color: var(--accent); }
.vimeo-lite img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vimeo-lite .play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.35); transition: background .2s; }
.vimeo-lite:hover .play-btn { background: rgba(0,0,0,.15); }
.vimeo-lite .play-icon { width: 60px; height: 60px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.vimeo-lite:hover .play-icon { transform: scale(1.08); }
.vimeo-lite .play-icon svg { fill: #000; width: 22px; margin-left: 3px; }
.vimeo-lite iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vimeo-caption { margin-top: .6rem; font-size: .75rem; color: var(--text-muted); font-family: var(--font-display); }

/* MARQUEE — deck-style with edge fade */
#clients { padding: 3rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-label { text-align: center; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2rem; font-family: var(--font-display); }
.marquee-outer { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%); }
.marquee-track { display: flex; align-items: center; gap: 4rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track img { height: 40px; width: auto; opacity: .5; filter: brightness(0) invert(1); transition: opacity .25s, filter .25s; flex-shrink: 0; }
.marquee-track img:hover { opacity: 1; filter: none; }
@keyframes marquee { from{transform:translateX(0)}to{transform:translateX(-50%)} }

/* PROBLEM */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; max-width: 680px; }
.problem-item { display: flex; align-items: flex-start; gap: .75rem; padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-2); }
.problem-x { color: rgba(255,75,75,0.6); font-size: 1rem; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.problem-text { font-size: .88rem; color: var(--text-muted); line-height: 1.55; }

/* SERVICES */
.services-list { margin-top: 4rem; }
.service-item { display: grid; grid-template-columns: 72px 1fr; gap: 2.5rem; padding: 3rem 0; border-top: 1px solid var(--border); align-items: start; }
.service-num { font-family: var(--font-display); font-size: .65rem; letter-spacing: .15em; color: var(--text-muted); text-transform: uppercase; padding-top: .3rem; }
.service-tag { display: inline-block; background: var(--surface-2); color: var(--text-muted); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 2px; margin-bottom: .85rem; font-family: var(--font-display); border: 1px solid var(--border); }
.service-content h3 { margin-bottom: .85rem; }
.service-bullets { margin-top: .75rem; display: flex; flex-direction: column; gap: .45rem; }
.service-bullets li { font-size: .88rem; color: var(--text-muted); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.service-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 4rem; position: relative; }
.process-step { position: relative; }
.process-step-num { width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: .8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 1.5rem; background: var(--bg); position: relative; z-index: 1; transition: border-color .2s, color .2s, background .2s; }
.process-step:hover .process-step-num { border-color: var(--accent); color: var(--accent); background: rgba(251,255,128,.05); }
.process-step h3 { font-size: .95rem; margin-bottom: .65rem; }
.process-step p { font-size: .83rem; color: var(--text-muted); line-height: 1.65; }
.process-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1rem; }
.process-tag { font-size: .6rem; padding: .2rem .5rem; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-muted); border-radius: 2px; font-family: var(--font-display); }

/* INDUSTRIES */
.industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; margin-top: 3rem; }
.industry-col h3 { font-size: .95rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.industry-col li { font-size: .88rem; color: var(--text-muted); padding: .45rem 0; border-bottom: 1px solid var(--border); line-height: 1.4; }
.industries-cta { margin-top: 3rem; }

/* WHY */
.why-list { margin-top: 4rem; }
.why-item { display: grid; grid-template-columns: 72px 1fr; gap: 2.5rem; padding: 2.5rem 0; border-top: 1px solid var(--border); align-items: start; }
.why-num { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: rgba(251,255,128,.12); line-height: 1; transition: color .3s; }
.why-item:hover .why-num { color: rgba(251,255,128,.28); }
.why-content h3 { margin-bottom: .75rem; }
.why-content p { font-size: .92rem; color: var(--text-muted); line-height: 1.75; max-width: 580px; }

/* CTA — full accent background */
#cta { text-align: center; background: var(--accent) !important; }
.cta-inner { max-width: 620px; margin: 0 auto; }
#cta .label { color: rgba(0,0,0,.4); }
#cta h2 { color: #050505; margin-bottom: 1.5rem; }
.cta-checks { display: flex; flex-direction: column; align-items: center; gap: .5rem; margin-bottom: 2.5rem; }
.cta-checks li { font-size: .9rem; color: rgba(0,0,0,.6); }
.cta-checks li::before { content: '✓  '; color: #050505; font-weight: 700; }
.cta-btns { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }
#cta .btn-primary { background: #050505; color: var(--accent); }
#cta .btn-primary:hover { background: #1a1a1a; transform: translateY(-1px); }
#cta .btn-secondary { background: transparent; border-color: rgba(0,0,0,.3); color: #050505; }
#cta .btn-secondary:hover { border-color: #050505; color: #050505; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 3rem 0; background: var(--bg); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 4rem; align-items: start; }
.footer-brand .nav-logo { margin-bottom: .65rem; }
.footer-tagline { font-size: .82rem; color: var(--text-muted); }
.footer-col h4 { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); font-family: var(--font-display); margin-bottom: .85rem; }
.footer-col a { display: block; font-size: .85rem; color: var(--text-muted); margin-bottom: .5rem; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-copy { font-size: .72rem; color: var(--text-muted); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media(max-width:960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: block; }
  .hero-stat-big { font-size: clamp(3rem,12vw,5rem); }
  .hero-stat-divider { margin: 1.5rem 0; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1/-1; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }
}
@media(max-width:600px) {
  .problem-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-proof-metrics { gap: 1.5rem; flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .cta-btns { flex-direction: column; }
}

/* IMAGE LIGHTBOX */
.img-lightbox { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s ease; padding: 1.5rem; }
.img-lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.93); cursor: pointer; }
.lightbox-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1rem; max-width: min(95vw, 1100px); }
.lightbox-img { max-width: 100%; max-height: 82dvh; object-fit: contain; border-radius: var(--radius); display: block; }
.lightbox-caption { font-size: .72rem; color: var(--text-muted); font-family: var(--font-display); letter-spacing: .08em; text-transform: uppercase; text-align: center; }
.lightbox-close { position: absolute; top: -2.75rem; right: -.5rem; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; padding: .5rem; line-height: 1; opacity: .6; transition: opacity .15s; }
.lightbox-close:hover { opacity: 1; }

/* VIDEO MODAL */
.video-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.95); cursor: pointer; }
.video-modal-content { position: relative; z-index: 1; --modal-h: 90dvh; height: var(--modal-h); width: calc(var(--modal-h) * 9 / 16); max-width: 85vw; transform: scale(.96); transition: transform .25s ease; }
.video-modal.open .video-modal-content { transform: scale(1); }
.video-modal-player { width: 100%; height: 100%; }
.video-modal-player iframe { width: 100%; height: 100%; border: none; display: block; border-radius: var(--radius); }
.video-modal-close { position: absolute; top: -2.75rem; right: 0; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; padding: .5rem; line-height: 1; opacity: .6; transition: opacity .15s; }
.video-modal-close:hover { opacity: 1; }
.video-modal-caption { position: absolute; bottom: -2.25rem; left: 0; right: 0; text-align: center; font-size: .7rem; color: var(--text-muted); font-family: var(--font-display); letter-spacing: .06em; text-transform: uppercase; }
/* vimeo lite — click now opens modal, keep thumbnail look but signal interactivity */
.vimeo-lite .play-icon { transition: transform .2s, background .2s; }
.vimeo-lite:hover .play-icon { transform: scale(1.1); }
