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

:root {
  --ink: #050D06;
  --ink-2: #0A1A0C;
  --ink-3: #0F2412;
  --panel: #122B16;
  --green: #2D7A3C;
  --green-hi: #46C25B;
  --led: #5BFF7E;
  --led-soft: rgba(91,255,126,0.5);
  --paper: #F4F7F3;
  --paper-2: #E9EFE8;
  --line-d: rgba(91,255,126,0.12);
  --line-l: rgba(5,13,6,0.1);
  --txt-on-d: rgba(244,247,243,0.92);
  --txt-on-d-2: rgba(244,247,243,0.55);
  --txt-on-l: #0E1F11;
  --txt-on-l-2: #4A5A4C;
  --disp: 'Barlow Condensed', sans-serif;
  --body: 'Archivo', sans-serif;
  --maxw: 1320px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--ink); color: var(--txt-on-d); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--led); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ═══ PRELOADER ═══ */
#preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
  transition: opacity .5s, visibility .5s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-logo {
  font-family: var(--disp);
  font-size: 64px; font-weight: 800; letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(91,255,126,0.35);
  position: relative;
  animation: pre-flicker 1.6s steps(1) forwards;
}
@keyframes pre-flicker {
  0%, 8%, 14% { color: transparent; text-shadow: none; }
  10%, 16%, 30% { color: var(--led); text-shadow: 0 0 24px var(--led-soft), 0 0 60px rgba(91,255,126,0.3); }
  22%, 26% { color: transparent; text-shadow: none; }
  100% { color: var(--led); text-shadow: 0 0 24px var(--led-soft), 0 0 60px rgba(91,255,126,0.3); }
}
.pre-sub { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--txt-on-d-2); }

/* ═══ SCROLL PROGRESS ═══ */
#progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--green-hi), var(--led)); width: 0; z-index: 600; box-shadow: 0 0 12px var(--led-soft); }

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 76px;
  background: transparent;
  border-bottom: 1px solid var(--line-d);
  transition: height .3s;
}
/* Blur lives on a pseudo-element so nav itself doesn't become the containing
   block for the fixed-position mobile menu (which would clamp it to nav height). */
nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(5,13,6,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
nav.shrunk { height: 62px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 46px; width: auto; transition: height .3s; }
nav.shrunk .nav-logo-img { height: 38px; }
.nav-logo-main { font-family: var(--disp); font-size: 25px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--paper); }
.nav-logo-main em { font-style: normal; color: var(--led); text-shadow: 0 0 14px var(--led-soft); }
.nav-logo-sub { font-size: 8.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--txt-on-d-2); }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a {
  font-size: 12.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--txt-on-d-2); padding: 9px 14px; border-radius: 3px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--led); background: rgba(91,255,126,0.06); }
.nav-quote {
  background: var(--led) !important; color: var(--ink) !important;
  font-weight: 700 !important; padding: 11px 22px !important;
  box-shadow: 0 0 20px rgba(91,255,126,0.25);
  transition: box-shadow .25s, transform .2s !important;
}
.nav-quote:hover { box-shadow: 0 0 32px rgba(91,255,126,0.5); transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; position: relative; z-index: 500; }
.burger span { width: 24px; height: 2px; background: var(--led); border-radius: 2px; display: block; transition: transform .3s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#navScrim {
  position: fixed; inset: 0; z-index: 470;
  background: rgba(5,13,6,0.55);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}

/* ═══ HERO ═══ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 5vw 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 75% 25%, rgba(45,122,60,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 8% 90%, rgba(45,122,60,0.14) 0%, transparent 60%),
    var(--ink);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(91,255,126,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,255,126,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
  pointer-events: none;
}
.glow-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: .55; }
.orb-1 { width: 480px; height: 480px; background: rgba(45,122,60,0.4); top: -10%; right: -5%; }
.orb-2 { width: 360px; height: 360px; background: rgba(91,255,126,0.12); bottom: 5%; left: -8%; }

.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }

.hero-topbar {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 12px; margin-bottom: 24px; flex-wrap: wrap;
  opacity: 0; animation: rise .8s ease forwards .25s;
}
.hero-topbar a {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--txt-on-d-2); padding: 7px 10px; border-radius: 999px;
  transition: color .2s, background .2s, border-color .2s;
  border: 1px solid transparent;
}
.hero-topbar a:hover {
  color: var(--led); background: rgba(91,255,126,0.08); border-color: rgba(91,255,126,0.2);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--led); margin-bottom: 34px;
  opacity: 0; animation: rise .8s ease forwards .3s;
}
.hero-kicker::before { content: ''; width: 44px; height: 1px; background: linear-gradient(90deg, var(--led), transparent); box-shadow: 0 0 8px var(--led-soft); }

.hero-h1 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(64px, 10.5vw, 158px);
  line-height: .92;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 38px;
}
.hero-h1 .row { display: block; overflow: hidden; }
.hero-h1 .row span { display: inline-block; transform: translateY(110%); animation: lift .9s cubic-bezier(.22,1,.36,1) forwards; }
.hero-h1 .row:nth-child(1) span { animation-delay: .45s; }
.hero-h1 .row:nth-child(2) span { animation-delay: .58s; }
.hero-h1 .row:nth-child(3) span { animation-delay: .71s; }
@keyframes lift { to { transform: translateY(0); } }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.hero-h1 .ghost { color: transparent; -webkit-text-stroke: 1.5px rgba(244,247,243,0.3); }
.hero-h1 .led {
  color: var(--led);
  text-shadow: 0 0 18px var(--led-soft), 0 0 70px rgba(91,255,126,0.35);
  animation: led-on 2.4s steps(1) forwards .9s, led-hum 4.5s ease-in-out infinite 3.4s;
  color: rgba(91,255,126,0.25); text-shadow: none;
}
@keyframes led-on {
  0%, 12% { color: rgba(91,255,126,0.25); text-shadow: none; }
  14%, 22% { color: var(--led); text-shadow: 0 0 18px var(--led-soft), 0 0 70px rgba(91,255,126,0.35); }
  26%, 30% { color: rgba(91,255,126,0.25); text-shadow: none; }
  32%, 100% { color: var(--led); text-shadow: 0 0 18px var(--led-soft), 0 0 70px rgba(91,255,126,0.35); }
}
@keyframes led-hum {
  0%, 100% { text-shadow: 0 0 18px var(--led-soft), 0 0 70px rgba(91,255,126,0.35); }
  50% { text-shadow: 0 0 26px var(--led-soft), 0 0 90px rgba(91,255,126,0.5); }
}

.hero-row2 { display: flex; gap: 56px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
.hero-sub { font-size: 16.5px; font-weight: 300; color: var(--txt-on-d-2); line-height: 1.85; max-width: 480px; opacity: 0; animation: rise .8s ease forwards 1s; }
.hero-sub strong { color: var(--txt-on-d); font-weight: 500; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: rise .8s ease forwards 1.15s; }

.btn-led {
  background: var(--led); color: var(--ink);
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 36px; border-radius: 3px; border: none;
  box-shadow: 0 0 24px rgba(91,255,126,0.3);
  transition: box-shadow .25s, transform .2s;
  display: inline-block;
}
.btn-led:hover { box-shadow: 0 0 44px rgba(91,255,126,0.55); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(244,247,243,0.22); color: var(--txt-on-d);
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 36px; border-radius: 3px; background: transparent;
  transition: border-color .2s, background .2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--led); background: rgba(91,255,126,0.05); color: var(--led); }

.hero-marquee { margin-top: 72px; border-top: 1px solid var(--line-d); padding: 22px 0; overflow: hidden; position: relative; z-index: 2; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 36s linear infinite; }
.hero-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.mq-item { font-family: var(--disp); font-size: 16px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--txt-on-d-2); padding: 0 34px; white-space: nowrap; display: flex; align-items: center; gap: 34px; }
.mq-item::after { content: '◆'; font-size: 8px; color: var(--led); text-shadow: 0 0 8px var(--led-soft); }

/* ═══ REVEAL SYSTEM ═══ */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.rv.in { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .1s; } .rv-d2 { transition-delay: .2s; } .rv-d3 { transition-delay: .3s; } .rv-d4 { transition-delay: .4s; }

/* ═══ SHARED ═══ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 5vw; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 18px;
}
.kicker::before { content: ''; width: 36px; height: 1px; }
.dark .kicker, .kicker.on-dark { color: var(--led); }
.dark .kicker::before, .kicker.on-dark::before { background: var(--led); box-shadow: 0 0 8px var(--led-soft); }
.light .kicker { color: var(--green); }
.light .kicker::before { background: var(--green); }
.h2 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: .95; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 22px;
}
.h2 .out {
  display: block;
  color: inherit;
  opacity: .78;
  -webkit-text-stroke: 0;
  margin-top: 8px;
}
.lede { font-size: 16px; font-weight: 300; line-height: 1.85; max-width: 560px; }
.dark .lede { color: var(--txt-on-d-2); }
.light .lede { color: var(--txt-on-l-2); }

/* ═══ STATS ═══ */
#stats { background: var(--ink-2); border-top: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell {
  padding: 56px 40px; text-align: center;
  border-right: 1px solid var(--line-d);
  position: relative; overflow: hidden;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--led); box-shadow: 0 0 14px var(--led-soft);
  transform: scaleX(0); transition: transform .5s;
}
.stat-cell:hover::after { transform: scaleX(1); }
.stat-num { font-family: var(--disp); font-size: clamp(52px, 5vw, 76px); font-weight: 800; color: var(--led); text-shadow: 0 0 22px var(--led-soft); line-height: 1; white-space: nowrap; }
.stat-num sup { font-size: .45em; vertical-align: super; }
.stat-lab { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--txt-on-d-2); margin-top: 12px; font-weight: 600; }

/* ═══ ABOUT ═══ */
#about { padding: 130px 0; background: var(--paper); color: var(--txt-on-l); }
.about-cols { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: start; }
.about-body { font-size: 16px; color: var(--txt-on-l-2); line-height: 1.9; margin-bottom: 18px; }
.about-body strong { color: var(--txt-on-l); font-weight: 600; }
.cap-list { margin-top: 40px; border-top: 1px solid var(--line-l); }
.cap-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 19px 4px; border-bottom: 1px solid var(--line-l);
  transition: padding .25s, background .25s;
  cursor: default;
}
.cap-row:hover { background: rgba(45,122,60,0.05); padding-left: 14px; }
.cap-name { font-family: var(--disp); font-size: 21px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.cap-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green); font-weight: 700; }
.about-stickwrap { position: sticky; top: 110px; }
.about-img-card { position: relative; border-radius: 6px; overflow: hidden; box-shadow: 0 30px 80px rgba(5,13,6,0.25); }
.about-img-card img { width: 100%; height: 460px; object-fit: cover; }
.about-img-banner {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(5,13,6,0.92));
  padding: 70px 28px 24px;
  color: var(--paper);
}
.about-img-banner .t { font-family: var(--disp); font-size: 22px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.about-img-banner .s { font-size: 12px; color: rgba(244,247,243,0.6); letter-spacing: 1px; margin-top: 2px; }
.cred-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.cred-chip {
  background: var(--ink-2); color: var(--txt-on-d);
  border: 1px solid var(--line-d); border-radius: 4px;
  padding: 15px 16px; font-size: 12px; font-weight: 600; letter-spacing: .5px;
  display: flex; align-items: center; gap: 10px;
}
.cred-chip::before { content: '◆'; color: var(--led); font-size: 9px; text-shadow: 0 0 8px var(--led-soft); }

/* ═══ SERVICES - interactive expanding panels ═══ */
#services { padding: 130px 0; background: var(--ink); }
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 60px; }
.svc-stack { display: flex; flex-direction: column; border-top: 1px solid var(--line-d); }
.svc-panel {
  border-bottom: 1px solid var(--line-d);
  overflow: hidden;
  transition: background .3s;
  cursor: pointer;
}
.svc-panel:hover, .svc-panel.open { background: var(--ink-2); }
.svc-bar {
  display: grid; grid-template-columns: 90px 1fr auto 60px;
  align-items: center; gap: 24px;
  padding: 30px 4px;
}
.svc-idx { font-family: var(--disp); font-size: 19px; font-weight: 700; color: var(--txt-on-d-2); letter-spacing: 2px; }
.svc-panel:hover .svc-idx, .svc-panel.open .svc-idx { color: var(--led); text-shadow: 0 0 10px var(--led-soft); }
.svc-title { font-family: var(--disp); font-size: clamp(30px, 4vw, 52px); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; line-height: 1; transition: transform .3s; }
.svc-panel:hover .svc-title { transform: translateX(10px); }
.svc-mini { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--txt-on-d-2); font-weight: 600; text-align: right; }
.svc-plus {
  width: 44px; height: 44px; border: 1px solid var(--line-d); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300; color: var(--txt-on-d-2);
  transition: transform .35s, border-color .3s, color .3s, box-shadow .3s;
  justify-self: end;
}
.svc-panel.open .svc-plus { transform: rotate(45deg); border-color: var(--led); color: var(--led); box-shadow: 0 0 16px rgba(91,255,126,0.25); }
.svc-body { max-height: 0; transition: max-height .55s cubic-bezier(.22,1,.36,1); }
.svc-panel.open .svc-body { max-height: 460px; }
.svc-body-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; padding: 6px 4px 42px 114px; }
.svc-desc { font-size: 15px; font-weight: 300; color: var(--txt-on-d-2); line-height: 1.85; margin-bottom: 22px; }
.svc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--led); border: 1px solid rgba(91,255,126,0.3); border-radius: 100px;
  padding: 7px 15px; transition: background .2s, box-shadow .2s;
  cursor: default;
}
.chip:hover { background: rgba(91,255,126,0.08); box-shadow: 0 0 12px rgba(91,255,126,0.15); }
.svc-cta-line { margin-top: 26px; }
.svc-cta-line a { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--led); }
.svc-cta-line a:hover { text-shadow: 0 0 12px var(--led-soft); }
.svc-img { border-radius: 5px; overflow: hidden; align-self: start; }
.svc-img img { width: 100%; height: 260px; object-fit: cover; transition: transform .6s; }
.svc-panel.open .svc-img img:hover { transform: scale(1.04); }

/* ═══ GALLERY ═══ */
#work { padding: 130px 0 110px; background: var(--ink-2); position: relative; overflow: hidden; }
#work::before {
  content: 'PROJECTS'; position: absolute; top: 30px; right: -40px;
  font-family: var(--disp); font-weight: 800; font-size: clamp(120px, 18vw, 280px);
  letter-spacing: 8px; color: transparent;
  -webkit-text-stroke: 1px rgba(91,255,126,0.07);
  pointer-events: none; line-height: 1;
}
.work-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 44px; position: relative; z-index: 2; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; position: relative; z-index: 2; }
.filter-btn {
  background: transparent; border: 1px solid var(--line-d); border-radius: 100px;
  color: var(--txt-on-d-2); font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 22px; transition: all .25s;
}
.filter-btn:hover { border-color: rgba(91,255,126,0.4); color: var(--txt-on-d); }
.filter-btn.active { background: var(--led); border-color: var(--led); color: var(--ink); box-shadow: 0 0 18px rgba(91,255,126,0.3); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; position: relative; z-index: 2; }
.work-card {
  position: relative; border-radius: 5px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--line-d);
  transition: transform .35s, box-shadow .35s, opacity .4s;
  background: var(--ink-3);
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(5,13,6,0.6), 0 0 0 1px rgba(91,255,126,0.25); }
.work-card.hide { display: none; }
.work-card img { width: 100%; height: 320px; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.work-card:hover img { transform: scale(1.06); }
.work-card.tall { grid-row: span 2; }
.work-card.tall img { height: 100%; min-height: 654px; }
.work-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(5,13,6,0.95) 75%);
  padding: 60px 22px 20px;
  transform: translateY(8px); opacity: .92;
  transition: transform .35s, opacity .35s;
}
.work-card:hover .work-info { transform: translateY(0); opacity: 1; }
.work-cat { display: none; }
.work-name { font-family: var(--disp); font-size: 23px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--paper); }
.work-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(5,13,6,0.6); backdrop-filter: blur(6px);
  border: 1px solid rgba(91,255,126,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--led); font-size: 16px;
  opacity: 0; transform: scale(.8);
  transition: opacity .3s, transform .3s;
}
.work-card:hover .work-zoom { opacity: 1; transform: scale(1); }

/* ═══ LIGHTBOX ═══ */
#lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(5,13,6,0.96); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 5vh 5vw;
}
#lightbox.show { display: flex; animation: lb-in .3s ease; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lb-stage { max-width: 1100px; width: 100%; position: relative; }
.lb-img { width: 100%; max-height: 76vh; object-fit: contain; border-radius: 6px; box-shadow: 0 0 80px rgba(91,255,126,0.12); }
.lb-cap { text-align: center; margin-top: 18px; }
.lb-cap .c { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--led); }
.lb-cap .n { font-family: var(--disp); font-size: 26px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--paper); margin-top: 4px; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(18,43,22,0.8); border: 1px solid rgba(91,255,126,0.3);
  color: var(--led); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, box-shadow .2s;
}
.lb-btn:hover { background: var(--panel); box-shadow: 0 0 20px rgba(91,255,126,0.3); }
.lb-prev { left: -70px; } .lb-next { right: -70px; }
.lb-close {
  position: absolute; top: -10px; right: -10px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--led); border: none; color: var(--ink);
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(91,255,126,0.4);
}

/* ═══ PROCESS ═══ */
#process { padding: 130px 0; background: var(--paper); color: var(--txt-on-l); position: relative; overflow: hidden; }
.proc-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 64px; }
.proc-card {
  background: #fff; border: 1px solid var(--line-l); border-radius: 6px;
  padding: 38px 30px; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.proc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(5,13,6,0.12); }
.proc-num {
  font-family: var(--disp); font-size: 70px; font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--green);
  margin-bottom: 22px; opacity: .65;
}
.proc-card:hover .proc-num { color: var(--green); -webkit-text-stroke: 0; opacity: 1; }
.proc-t { font-family: var(--disp); font-size: 24px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.proc-d { font-size: 13.5px; color: var(--txt-on-l-2); line-height: 1.8; }
.proc-arrow { position: absolute; top: 44px; right: -14px; color: var(--green); font-size: 18px; z-index: 2; }
.proc-card:last-child .proc-arrow { display: none; }

/* ═══ WHY (band) ═══ */
#why { background: var(--ink); padding: 130px 0; position: relative; overflow: hidden; }
#why::after {
  content: ''; position: absolute; right: -15%; top: -30%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,60,0.18), transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 60px; position: relative; z-index: 2; }
.why-tile {
  background: var(--ink-2); border: 1px solid var(--line-d); border-radius: 6px;
  padding: 42px 38px; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.why-tile:hover { border-color: rgba(91,255,126,0.35); transform: translateY(-4px); }
.why-tile::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--led); box-shadow: 0 0 16px var(--led-soft);
  transform: scaleY(0); transform-origin: top; transition: transform .4s;
}
.why-tile:hover::before { transform: scaleY(1); }
.why-t { font-family: var(--disp); font-size: 27px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.why-d { font-size: 14px; font-weight: 300; color: var(--txt-on-d-2); line-height: 1.85; }

/* ═══ TESTIMONIALS ═══ */
#voices { padding: 130px 0; background: var(--ink-2); border-top: 1px solid var(--line-d); }
.voice-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 56px; }
.voice-card {
  background: var(--ink); border: 1px solid var(--line-d); border-radius: 6px;
  padding: 40px 34px; position: relative;
  transition: border-color .3s, transform .3s;
}
.voice-card:hover { border-color: rgba(91,255,126,0.3); transform: translateY(-4px); }
.voice-stars { color: var(--led); letter-spacing: 4px; font-size: 13px; text-shadow: 0 0 10px var(--led-soft); margin-bottom: 22px; }
.voice-q { font-size: 15px; font-weight: 300; font-style: italic; color: var(--txt-on-d-2); line-height: 1.9; margin-bottom: 30px; }
.voice-who { display: flex; gap: 14px; align-items: center; }
.voice-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--panel); border: 1px solid rgba(91,255,126,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--disp); font-size: 17px; font-weight: 700; color: var(--led);
}
.voice-n { font-size: 14px; font-weight: 600; }
.voice-r { font-size: 11.5px; color: var(--txt-on-d-2); letter-spacing: .5px; }
.voices-note {
  margin-top: 36px; text-align: center;
  border: 1px dashed rgba(91,255,126,0.3); border-radius: 5px;
  padding: 18px; font-size: 13px; color: var(--txt-on-d-2);
}
.voices-note strong { color: var(--led); }

/* ═══ FAQ ═══ */
#faq { padding: 130px 0; background: var(--paper); color: var(--txt-on-l); }
.faq-cols { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.faq-stick { position: sticky; top: 110px; }
.faq-list { border-top: 1px solid var(--line-l); }
.faq-it { border-bottom: 1px solid var(--line-l); }
.faq-qbtn {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; color: var(--txt-on-l);
  font-family: var(--disp); font-size: 21px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  transition: color .2s, padding-left .25s;
}
.faq-qbtn:hover { color: var(--green); padding-left: 12px; }
.faq-ic {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--green); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-family: var(--body); font-weight: 400;
  transition: transform .3s, background .3s, color .3s;
}
.faq-it.open .faq-ic { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.22,1,.36,1); }
.faq-a p { padding: 0 40px 26px 4px; font-size: 14.5px; color: var(--txt-on-l-2); line-height: 1.85; }
.faq-it.open .faq-a { max-height: 300px; }

/* ═══ CTA ═══ */
#cta-band {
  background: var(--ink); padding: 110px 5vw; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line-d);
}
#cta-band::before {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(45,122,60,0.22), transparent 65%);
  filter: blur(50px); pointer-events: none;
}
.cta-h {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(44px, 7vw, 96px);
  line-height: .95; letter-spacing: 1px; text-transform: uppercase;
  position: relative; z-index: 2; margin-bottom: 20px;
}
.cta-h .led2 { color: var(--led); text-shadow: 0 0 22px var(--led-soft), 0 0 80px rgba(91,255,126,0.3); }
.cta-p { font-size: 16px; font-weight: 300; color: var(--txt-on-d-2); margin-bottom: 44px; position: relative; z-index: 2; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-phone { font-family: var(--disp); font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--paper); display: flex; align-items: center; padding: 0 8px; }
.cta-phone:hover { color: var(--led); }

/* ═══ CONTACT ═══ */
#contact { padding: 130px 0; background: var(--ink-2); border-top: 1px solid var(--line-d); }
.contact-cols { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; margin-top: 56px; }
.cinfo-row { padding: 20px 0; border-bottom: 1px solid var(--line-d); }
.cinfo-l { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--led); margin-bottom: 6px; }
.cinfo-v { font-size: 16px; line-height: 1.6; }
.cinfo-v a:hover { color: var(--led); }
.cform {
  background: var(--ink); border: 1px solid var(--line-d); border-radius: 8px;
  padding: 44px 40px; position: relative; overflow: hidden;
}
.cform::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-hi), var(--led)); box-shadow: 0 0 16px var(--led-soft); }
.cform-t { font-family: var(--disp); font-size: 30px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.cform-s { font-size: 13.5px; color: var(--txt-on-d-2); margin-bottom: 32px; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-g { display: flex; flex-direction: column; gap: 7px; }
.f-g.full { grid-column: 1 / -1; }
.f-g label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--txt-on-d-2); }
.f-g input, .f-g textarea, .f-g select {
  background: var(--ink-3); border: 1px solid var(--line-d); border-radius: 4px;
  padding: 13px 15px; color: var(--txt-on-d);
  font-family: var(--body); font-size: 14.5px; outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.f-g input:focus, .f-g textarea:focus, .f-g select:focus { border-color: var(--led); box-shadow: 0 0 0 3px rgba(91,255,126,0.1); }
.f-g textarea { min-height: 110px; resize: vertical; }
.f-g select option { background: var(--ink-3); }
.f-submit {
  margin-top: 24px; width: 100%;
  background: var(--led); color: var(--ink); border: none; border-radius: 4px;
  padding: 17px; font-size: 13.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  box-shadow: 0 0 24px rgba(91,255,126,0.25);
  transition: box-shadow .25s, transform .2s;
}
.f-submit:hover { box-shadow: 0 0 40px rgba(91,255,126,0.5); transform: translateY(-1px); }
.f-note { font-size: 11px; color: var(--txt-on-d-2); text-align: center; margin-top: 12px; }
#f-success {
  display: none; margin-top: 16px; text-align: center;
  background: rgba(91,255,126,0.08); border: 1px solid rgba(91,255,126,0.35); border-radius: 4px;
  padding: 14px; font-size: 14px; color: var(--led);
}

/* ═══ FOOTER ═══ */
footer { background: var(--ink); border-top: 1px solid var(--line-d); }
.ft-main { max-width: var(--maxw); margin: 0 auto; padding: 70px 5vw 50px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 52px; }
.ft-logo { font-family: var(--disp); font-size: 30px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.ft-logo em { font-style: normal; color: var(--led); text-shadow: 0 0 14px var(--led-soft); }
.ft-tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--txt-on-d-2); margin: 6px 0 20px; }
.ft-desc { font-size: 13.5px; font-weight: 300; color: var(--txt-on-d-2); line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.ft-social { display: flex; gap: 10px; }
.ft-soc {
  width: 38px; height: 38px; border: 1px solid var(--line-d); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-on-d-2);
  transition: all .25s;
}
.ft-soc svg { width: 16px; height: 16px; display: block; }
.ft-soc:hover { border-color: var(--led); color: var(--led); box-shadow: 0 0 14px rgba(91,255,126,0.2); }
.ft-col h4 { font-size: 10.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--led); margin-bottom: 20px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col a, .ft-col span { font-size: 13.5px; color: var(--txt-on-d-2); font-weight: 300; }
.ft-col a:hover { color: var(--paper); }
.ft-btm {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 5vw;
  border-top: 1px solid var(--line-d);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 11.5px; color: rgba(244,247,243,0.3);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1080px) {
  .about-cols, .faq-cols, .contact-cols { grid-template-columns: 1fr; gap: 56px; }
  .about-stickwrap, .faq-stick { position: static; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { border-bottom: 1px solid var(--line-d); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card.tall { grid-row: span 1; }
  .work-card.tall img { min-height: 320px; height: 320px; }
  .proc-track { grid-template-columns: 1fr 1fr; }
  .proc-arrow { display: none; }
  .svc-body-inner { grid-template-columns: 1fr; padding-left: 4px; }
  .voice-rail { grid-template-columns: 1fr; }
  .ft-main { grid-template-columns: 1fr 1fr; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { right: 8px; top: 8px; }
}
@media (max-width: 720px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(82vw, 330px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0;
    padding: 100px 26px 32px;
    background: #050D06;
    border-left: 1px solid rgba(91,255,126,0.18);
    box-shadow: -24px 0 60px rgba(0,0,0,0.6);
    z-index: 480;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; width: 100%;
    padding: 17px 8px; font-size: 15px; letter-spacing: 1.5px;
    color: var(--txt-on-d);
    border-bottom: 1px solid rgba(91,255,126,0.10);
    border-radius: 0;
  }
  .nav-links a:hover { background: rgba(91,255,126,0.06); }
  .nav-links .nav-quote {
    margin-top: 22px; text-align: center;
    border-bottom: none;
    padding: 15px 22px !important;
  }
  .hero-h1 { font-size: clamp(44px, 13vw, 72px); }
  #hero { padding-top: 110px; }
  .svc-bar { grid-template-columns: 50px 1fr 50px; }
  .svc-mini { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .proc-track { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .ft-main { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 40px 16px; }
  .stat-num { font-size: clamp(38px, 11vw, 56px); }
  .hero-marquee { margin-top: 48px; }
}
