:root {
  --black: #050505;
  --ink: #111111;
  --line: rgba(255, 255, 255, 0.28);
  --text: #f8f8f8;
  --muted: #cfcfcf;
  --lime: #c9ff00;
  --lime-2: #a6da00;
  --blue: #021fd8;
  --blue-2: #0031ff;
  --radius: 8px;
  --max: 1560px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 51, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 80% 40%, rgba(201, 255, 0, 0.06), transparent 22rem),
    var(--black);
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}
body.is-lightbox-open { overflow: hidden; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  transform: translate(calc(var(--mx, 50vw) - 50%), calc(var(--my, 50vh) - 50%));
  background: radial-gradient(circle, rgba(201, 255, 0, 0.13), rgba(0, 49, 255, 0.09) 35%, transparent 68%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 50;
  transition: transform 90ms linear, opacity 140ms ease;
}
.is-gallery-cursor-active .cursor-glow {
  opacity: 0;
}

.gallery-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: clamp(72px, 5.6vw, 104px);
  aspect-ratio: 3 / 2;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-120px, -120px, 0) translate(-50%, -50%) scale(0.92);
  transition: opacity 120ms ease;
  mix-blend-mode: difference;
  filter: contrast(1.2);
  contain: layout paint style;
  will-change: transform, opacity;
}
.gallery-cursor.is-visible {
  opacity: 1;
}
.gallery-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@supports not (mix-blend-mode: difference) {
  .gallery-cursor {
    mix-blend-mode: normal;
    filter: invert(1) contrast(1.2);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: clamp(0.8rem, 1.4vw, 1.4rem);
  min-height: 98px;
  padding: 1.15rem clamp(1rem, 3vw, 3rem);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease, box-shadow 260ms ease;
}

.site-header.is-transparent,
.site-header:not(.is-solid),
.is-at-gallery .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-solid {
  background: rgba(7, 7, 7, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-transparent .main-nav a,
.site-header.is-transparent .menu-toggle,
.site-header:not(.is-solid) .main-nav a,
.site-header:not(.is-solid) .menu-toggle,
.is-at-gallery .site-header .main-nav a,
.is-at-gallery .site-header .menu-toggle {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.62);
}

.logo-link img {
  width: 150px;
  background: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
  transition: opacity 220ms ease, transform 220ms ease;
}
.site-header.is-transparent .logo-link,
.site-header:not(.is-solid) .logo-link,
.is-at-gallery .site-header .logo-link {
  pointer-events: none;
}
.site-header.is-transparent .logo-link img,
.site-header:not(.is-solid) .logo-link img,
.is-at-gallery .site-header .logo-link img {
  opacity: 0;
  transform: translateY(-6px);
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(0.9rem, 1.8vw, 2rem);
}

.main-nav a,
.site-footer a {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 1rem;
  color: #f4f4f4;
}
.main-nav a {
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 0.86rem;
  white-space: nowrap;
}
.site-footer a {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.main-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.46rem;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--lime); }
.main-nav a:hover::after,
.main-nav a.active::after,
.site-footer a:hover::after { transform: scaleX(1); }

.menu-toggle { display: none; }

.btn {
  --tx: 0px;
  --ty: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.1rem;
  min-height: 48px;
  padding: 0.78rem 1.45rem;
  border: 1px solid var(--lime);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--lime), #d7ff24);
  color: #060606;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow: hidden;
  transform: translate(var(--tx), var(--ty));
  box-shadow: 0 0 0 rgba(201, 255, 0, 0);
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -35% -10%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-120%) rotate(12deg);
  transition: transform 520ms ease;
}

.btn:hover {
  box-shadow: 0 0 32px rgba(201, 255, 0, 0.42), 0 10px 30px rgba(0, 0, 0, 0.35);
}
.btn:hover::before { transform: translateX(125%) rotate(12deg); }
.btn span { position: relative; font-size: 1.14rem; line-height: 1; }
.btn:has(.whatsapp-icon) { gap: 0.85rem; }
.btn .whatsapp-icon + span { font-size: 1.05rem; }
.btn.ghost { background: transparent; color: var(--lime); }
.btn.center { margin-inline: auto; display: flex; width: min(360px, 100%); }
.nav-cta {
  min-width: 218px;
  min-height: 42px;
  padding: 0.64rem 1rem;
  gap: 0.62rem;
  text-align: center;
}
.nav-cta > span:last-child {
  font-size: 0.92rem;
  line-height: 1;
}
.whatsapp-icon {
  display: inline-block;
  width: 30px;
  aspect-ratio: 1;
  position: relative;
  flex: 0 0 30px;
  background: url("assets/message-black.png") center / contain no-repeat;
}
.whatsapp-icon::before {
  content: "";
  display: none;
}
.whatsapp-icon::after {
  content: "";
  display: none;
}
@media (min-width: 1181px) {
  .nav-cta {
    min-width: 184px;
    min-height: 36px;
    padding: 0.5rem 0.78rem;
    gap: 0.5rem;
  }
  .nav-cta > span:last-child {
    font-size: 0.78rem;
  }
  .nav-cta .whatsapp-icon {
    width: 22px;
    flex-basis: 22px;
  }
}
.home-blue-section .btn.ghost .whatsapp-icon { background-image: url("assets/message-green.png"); }
.light-surface .btn.ghost .whatsapp-icon { background-image: url("assets/message-black.png"); }
.light-surface .home-blue-section .btn.ghost .whatsapp-icon { background-image: url("assets/message-green.png"); }

.section {
  position: relative;
  width: min(100%, 1920px);
  margin-inline: auto;
  padding: clamp(4.2rem, 7vw, 7rem) clamp(1.25rem, 3.5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.light-surface {
  --text: #101010;
  --muted: #343434;
  --line: rgba(0, 0, 0, 0.25);
  --lime: var(--blue);
  color: var(--text);
  background:
    radial-gradient(circle at var(--mx, 50vw) var(--my, 50vh), rgba(201, 255, 0, 0.2), transparent 18rem),
    linear-gradient(rgba(0, 0, 0, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.042) 1px, transparent 1px),
    #f2f2ee;
  background-size: auto, 86px 86px, 86px 86px, auto;
}
.dark-surface {
  --text: #f8f8f8;
  --muted: #cfcfcf;
  --line: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at var(--mx, 50vw) var(--my, 50vh), rgba(0, 49, 255, 0.16), transparent 21rem),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #050505;
  background-size: auto, 88px 88px, 88px 88px, auto;
}
.blue-callout,
.service-card,
.problem,
.portfolio-wall,
.video-shell,
.contact-card,
.contact-form,
.blue-ticker {
  --text: #f8f8f8;
  color: var(--text);
}
.light-surface .liquid-title span,
.light-surface h3 {
  --title-color: var(--blue);
  color: var(--blue);
}
.light-surface .liquid-title strong {
  --title-color: #101010;
  color: #101010;
}
.light-surface .btn.ghost {
  color: #101010;
  border-color: #101010;
}
.light-surface .eyebrow,
.light-surface p,
.light-surface .bottom-values b,
.light-surface .solve-bar b {
  color: #101010;
}
.light-surface .spark,
.light-surface .badge-star::before,
.light-surface .icon.speed::before,
.light-surface .icon.loops::before,
.light-surface .icon.globe::before {
  background: var(--blue);
}
.light-surface .burst {
  background: repeating-conic-gradient(from 0deg, var(--blue) 0 5deg, transparent 5deg 15deg);
}
.light-surface .badge-star,
.light-surface .icon {
  color: var(--blue);
  border-color: var(--blue);
}
.service-card h3,
.problem h3,
.contact-card h3,
.contact-form h3,
.blue-ticker h3 {
  color: var(--lime);
}

.section h1,
.section h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

h1 { font-size: clamp(3.3rem, 6.4vw, 6rem); }
h2 { font-size: clamp(3.2rem, 5.6vw, 5.55rem); }
h3 {
  margin: 0;
  color: var(--lime);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  line-height: 1.05;
}
p { color: var(--text); font-size: clamp(1rem, 1.25vw, 1.3rem); line-height: 1.45; }
.lead { max-width: 760px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow::after {
  content: "";
  display: block;
  width: min(360px, 35vw);
  height: 1px;
  background: var(--line);
}

.hero {
  min-height: calc(100vh - 98px);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  padding: 0;
}
.hero-mouse {
  display: block;
  min-height: calc(100svh - 98px);
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at var(--mx, 50vw) var(--my, 50vh), rgba(201, 255, 0, 0.28), transparent 17rem),
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    #f2f2ee;
  background-size: auto, 82px 82px, 82px 82px, auto;
}
.home-mouse-stage {
  position: relative;
  min-height: calc(100svh - 98px);
  overflow: hidden;
  cursor: crosshair;
  display: grid;
  place-items: center;
  padding: clamp(4.5rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4rem);
  isolation: isolate;
}
.home-mouse-stage::before {
  display: none;
}
.mouse-gallery {
  position: absolute;
  inset: 8px 0 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  contain: paint;
}
.home-white-content {
  position: relative;
  z-index: 8;
  width: min(1120px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  pointer-events: none;
}
.home-white-content .actions,
.home-white-content .mini-strip {
  pointer-events: auto;
}
.home-white-title {
  max-width: 920px;
  margin: 0;
  color: var(--blue);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 5.7vw, 6.3rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
}
.home-white-title span {
  --title-color: var(--blue);
  color: var(--blue);
  margin-inline: auto;
}
.light-surface .home-white-title span,
.light-surface .home-white-title:hover span {
  --title-color: var(--blue);
  color: var(--blue);
}
.home-white-content .btn,
.home-white-content .btn.ghost {
  background: linear-gradient(135deg, #c9ff00, #d7ff24);
  border-color: #c9ff00;
  color: #050505;
}
.home-white-content .btn.ghost .whatsapp-icon {
  background-image: url("assets/message-black.png");
}
.home-white-content .actions {
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}
.home-white-content .mini-strip {
  justify-content: center;
  color: #101010;
}
.home-white-content .mini-strip span {
  border-right-color: rgba(0, 0, 0, 0.3);
}
.home-white-content .badge-star {
  color: var(--blue);
  border-color: var(--blue);
}
.home-white-content .badge-star::before {
  background: var(--blue);
}
.mouse-follow-item {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(104px, 12vw, 205px);
  height: auto;
  max-height: clamp(126px, 20vw, 270px);
  object-fit: contain;
  border-radius: 0;
  opacity: 0;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.18)) saturate(1.08);
  transform: translate3d(-50%, -50%, 0) scale(0.82) rotate(var(--rot, 0deg));
  transition: opacity 180ms ease, filter 220ms ease;
  will-change: transform, opacity;
  z-index: var(--layer, 1);
}
.mouse-follow-item.is-visible { opacity: 1; }
.mouse-follow-item:nth-child(2) { width: clamp(102px, 11.5vw, 198px); }
.mouse-follow-item:nth-child(3) { width: clamp(98px, 11vw, 190px); }
.mouse-follow-item:nth-child(4) { width: clamp(110px, 12.5vw, 214px); }
.mouse-follow-item:nth-child(5) { width: clamp(106px, 12vw, 204px); }
.mouse-follow-item:nth-child(6) { width: clamp(100px, 11vw, 192px); }

.home-blue-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: auto;
  overflow: hidden;
  background: #050505;
}
.home-blue-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  background:
    radial-gradient(circle at 8% 22%, rgba(255, 255, 255, 0.12), transparent 5rem),
    radial-gradient(circle at 20% 93%, rgba(0, 0, 0, 0.18), transparent 12rem),
    linear-gradient(135deg, #0826f2, #001aa8 68%, #001476);
  z-index: 0;
}
.home-blue-section > * {
  position: relative;
  z-index: 1;
}
.home-blue-section,
.home-blue-section .hero-copy,
.home-blue-section .feature-row,
.home-blue-section .ticker {
  --lime: #c9ff00;
  --text: #f8f8f8;
  --line: rgba(255, 255, 255, 0.28);
}
.home-blue-section .liquid-title span,
.home-blue-section .liquid-title strong {
  --title-color: var(--lime);
  color: var(--lime);
}
.home-blue-section .eyebrow .spark {
  background: var(--lime);
}
.home-blue-section .btn.ghost {
  color: var(--lime);
  border-color: var(--lime);
}
.home-blue-section h3,
.home-blue-section p,
.home-blue-section .eyebrow {
  color: var(--text);
}
.home-blue-section .feature-row h3 {
  color: var(--lime);
}
.home-blue-section .hero-copy {
  min-height: calc(100vh - 98px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(1.35rem, 6vw, 7rem);
}
.home-blue-section .hero-copy .lead {
  max-width: 920px;
}
.home-blue-section .hero-statement {
  max-width: 1180px;
}
.home-blue-section .hero-statement span {
  color: var(--lime);
  --title-color: var(--lime);
}
.home-blue-section .hero-support {
  max-width: 880px;
  margin: 1.2rem 0 0;
  color: var(--text);
  font-size: clamp(1.1rem, 1.65vw, 1.65rem);
}
.home-blue-section .mini-strip {
  color: var(--text);
}
.home-blue-section .mini-strip .badge-star,
.home-blue-section .feature-row .badge-star,
.home-blue-section .feature-row .icon {
  color: var(--lime);
  border-color: var(--lime);
}
.home-blue-section .mini-strip .badge-star::before,
.home-blue-section .feature-row .badge-star::before,
.home-blue-section .feature-row .icon.speed::before,
.home-blue-section .feature-row .icon.loops::before,
.home-blue-section .feature-row .icon.globe::before {
  background: var(--lime);
}
.home-blue-section .feature-row .burst {
  background: repeating-conic-gradient(from 0deg, var(--lime) 0 5deg, transparent 5deg 15deg);
}
.hero-fast-gallery {
  grid-column: 1 / -1;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
  cursor: none;
}
.hero-fast-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.16));
}
.hero-frame-swap {
  position: absolute;
  inset: 0;
}
.hero-frame-swap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(201, 255, 0, 0.58) 6% 9%, transparent 9% 28%, rgba(0, 49, 255, 0.62) 28% 31%, transparent 31% 58%, rgba(255, 255, 255, 0.42) 58% 60%, transparent 60% 100%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0 2px, transparent 2px 9px);
  clip-path: inset(0 0 0 0);
  animation: frameGlitchOverlay 1.2s steps(1, end) infinite;
  filter: contrast(1.18) saturate(1.3);
  will-change: opacity, transform, clip-path, filter;
}
.hero-frame-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.08) contrast(1.04);
  transform: none;
  animation: frameSwap 10.8s ease-in-out infinite;
  will-change: opacity;
  z-index: 1;
}
.hero-gallery-logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(62vw, 820px);
  max-height: 34vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-gallery-logo-wrap::before {
  display: none;
}
.hero-gallery-logo {
  width: 100%;
  max-height: 34vh;
  object-fit: contain;
  filter: none;
  transform: none;
  transform-origin: center;
}
.hero-frame-swap img:nth-child(2) { animation-delay: 1.2s; }
.hero-frame-swap img:nth-child(3) { animation-delay: 2.4s; }
.hero-frame-swap img:nth-child(4) { animation-delay: 3.6s; }
.hero-frame-swap img:nth-child(5) { animation-delay: 4.8s; }
.hero-frame-swap img:nth-child(6) { animation-delay: 6s; }
.hero-frame-swap img:nth-child(7) { animation-delay: 7.2s; }
.hero-frame-swap img:nth-child(8) { animation-delay: 8.4s; }
.hero-frame-swap img:nth-child(9) { animation-delay: 9.6s; }

.section-blue::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 214px;
  width: 39.2%;
  background:
    radial-gradient(circle at 8% 22%, rgba(255, 255, 255, 0.12), transparent 5rem),
    radial-gradient(circle at 20% 93%, rgba(0, 0, 0, 0.18), transparent 12rem),
    linear-gradient(135deg, #0826f2, #001aa8 68%, #001476);
  z-index: -1;
}

.hero-copy {
  padding: clamp(3.1rem, 5.6vw, 4.5rem) clamp(1.35rem, 3.2vw, 3.25rem) 2rem;
  align-self: stretch;
  background:
    radial-gradient(circle at 8% 22%, rgba(255, 255, 255, 0.12), transparent 5rem),
    radial-gradient(circle at 20% 93%, rgba(0, 0, 0, 0.18), transparent 12rem),
    linear-gradient(135deg, #0826f2, #001aa8 68%, #001476);
}
.hero h1 span { display: block; color: var(--lime); --title-color: var(--lime); }
.hero h1 strong { display: block; color: var(--text); --title-color: var(--text); font-weight: 400; }
.liquid-title span,
.liquid-title strong {
  display: block;
  position: relative;
  width: max-content;
  max-width: calc(100% - 0.28em);
  padding: 0.06em 0.14em 0.11em;
  margin: -0.06em -0.14em -0.11em;
  overflow: visible;
  background-image: linear-gradient(90deg, var(--title-color) 0 28%, #fff 42%, var(--lime) 55%, var(--title-color) 72% 100%);
  background-size: 260% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  transition: color 220ms ease, filter 220ms ease, transform 220ms ease;
}
.liquid-title,
.portfolio-copy,
.solve-head,
.reel-copy {
  overflow: visible;
}
.liquid-title span { --title-color: var(--lime); }
.liquid-title strong { color: var(--text); --title-color: var(--text); font-weight: 400; }
.liquid-title:hover span,
.liquid-title:hover strong {
  color: transparent;
  animation: titleSweep 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both, titleMelt 900ms ease-in-out both;
  filter: drop-shadow(0 0 18px rgba(201, 255, 0, 0.42));
}
.liquid-title:hover span:nth-child(2) { animation-delay: 90ms; }
.liquid-title:hover span:nth-child(3) { animation-delay: 150ms; }
.liquid-title:hover span:nth-child(4) { animation-delay: 210ms; }
.liquid-title:hover strong { animation-delay: 170ms; }
.actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.7rem; }
.actions .btn { min-width: min(220px, 100%); }

.mini-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 2rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.mini-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.48);
}
.mini-strip span:last-child { border-right: 0; }

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 52% 46%, rgba(0, 49, 255, 0.24), transparent 22rem),
    radial-gradient(circle at 68% 35%, rgba(201, 255, 0, 0.08), transparent 16rem),
    #060606;
  transform-style: preserve-3d;
}
.hero-gallery {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050505;
}
.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at var(--mx, 52%) var(--my, 44%), rgba(201, 255, 0, 0.18), transparent 18rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 42%, rgba(0, 0, 0, 0.42));
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  filter: saturate(1.04) contrast(1.03);
  animation: galleryFade 25s linear infinite;
  transition: transform 720ms ease, filter 720ms ease;
}
.hero-gallery img:nth-child(2) { animation-delay: 5s; }
.hero-gallery img:nth-child(3) { animation-delay: 10s; }
.hero-gallery img:nth-child(4) { animation-delay: 15s; }
.hero-gallery img:nth-child(5) { animation-delay: 20s; }
.hero-media:hover .hero-gallery img {
  animation-play-state: paused;
  filter: saturate(1.28) contrast(1.08);
  transform: scale(1.16) rotate(0.8deg);
}
.hero-media::after,
.portfolio-wall::after,
.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.15) 48%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 750ms ease;
  z-index: 5;
}
.hero-media:hover::after,
.portfolio-wall:hover::after,
.video-shell:hover::after { transform: translateX(130%); }

.feature-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  min-height: 145px;
  background: rgba(16, 16, 16, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.feature-row article {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-content: center;
  column-gap: 1rem;
  padding: 1.5rem 2.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.36);
}
.feature-row article:last-child { border-right: 0; }
.feature-row i {
  grid-row: span 2;
  align-self: center;
  animation: featureIconLive 3.2s ease-in-out infinite;
}
.feature-row article:nth-child(2) i { animation-delay: 160ms; }
.feature-row article:nth-child(3) i { animation-delay: 320ms; }
.feature-row article:nth-child(4) i { animation-delay: 480ms; }
.feature-row article {
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.feature-row article:hover {
  background: linear-gradient(135deg, rgba(0, 49, 255, 0.22), rgba(201, 255, 0, 0.05));
  box-shadow: inset 0 0 45px rgba(201, 255, 0, 0.08);
  transform: translateY(-3px);
}
.feature-row article:hover i { animation-duration: 900ms; }
.feature-row h3 { font-size: 1.35rem; }
.feature-row p { margin: 0.6rem 0 0; font-size: 1rem; }
.studio-feature-row {
  width: auto;
  margin: 2rem calc(clamp(1.25rem, 3.5vw, 4rem) * -1) calc(clamp(4.2rem, 7vw, 7rem) * -1);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
}

.ticker {
  grid-column: 1 / -1;
  --lime: #c9ff00;
  overflow: hidden;
  background: var(--lime);
  color: #050505;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  margin-bottom: -2px;
  box-shadow: 0 3px 0 var(--lime);
}
.ticker div {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 3rem;
  padding: 1.4rem 2.9rem;
  animation: ticker 18s linear infinite;
}
.ticker span::after {
  content: "✶";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 3rem;
  font-size: 1.35rem;
  line-height: 1;
  vertical-align: middle;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(520px, 1.28fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.studio-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 3vw, 3.4rem);
  align-items: stretch;
}
.copy h2 span,
.service-intro h2,
.solve h2,
.reel h2 span,
.portfolio h2,
.contact h2 span { color: var(--lime); }
.copy h2 { color: var(--text); }
.copy p { max-width: 700px; }
.studio-title {
  font-size: clamp(3rem, 4.65vw, 5.35rem);
  line-height: 0.98;
}
.studio-title span,
.studio-title strong {
  max-width: 100%;
  width: auto;
}

.blue-callout {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0030ff, #001899 74%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.04);
}
.blue-callout p { margin: 0; font-size: clamp(1.1rem, 1.5vw, 1.55rem); }

.studio-collage {
  display: block;
  min-height: clamp(520px, 62vh, 720px);
}
.studio-collage img,
.help-images img,
.problem,
.service-card,
.video-shell,
.contact-card,
.contact-form,
.portfolio-wall {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.02);
}
.studio-collage .large {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 62vh, 720px);
  object-fit: cover;
  object-position: 50% 42%;
}

.cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }
.glass-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 116px;
  padding: 1.25rem 1.6rem;
  border: 1px solid rgba(201, 255, 0, 0.62);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.glass-card:hover {
  transform: translateY(-6px);
  background: rgba(0, 49, 255, 0.18);
  box-shadow: 0 0 30px rgba(201, 255, 0, 0.16);
}
.glass-card i { grid-row: span 2; }
.glass-card p { margin: 0.35rem 0 0; font-size: 1rem; }

.bottom-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.bottom-values span,
.solve-bar span {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 1rem;
  font-size: 0.98rem;
  line-height: 1.25;
}
.bottom-values i,
.solve-bar i { grid-row: span 2; }
.bottom-values b,
.solve-bar b {
  display: block;
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
}

.services {
  display: grid;
  grid-template-columns: minmax(340px, 0.58fr) minmax(650px, 1fr);
  gap: clamp(2rem, 3vw, 3.6rem);
  padding-bottom: 0;
  border-bottom: 0;
}
.service-intro { align-self: center; }
.service-intro h2 { font-size: clamp(4rem, 6.5vw, 6.3rem); }
.service-intro p { max-width: 650px; }
.service-intro .actions { margin-top: 1.05rem; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card {
  position: relative;
  min-height: 635px;
  overflow: hidden;
  transform-style: preserve-3d;
  border-color: var(--blue);
}
.service-card img {
  width: 100%;
  height: 48%;
  object-fit: cover;
  transition: transform 480ms ease, filter 480ms ease;
}
.service-card:nth-child(1) img { object-position: 50% 48%; }
.service-card:nth-child(2) img { object-position: 50% 52%; }
.service-card:nth-child(3) img { object-position: 50% 24%; }
.service-card:nth-child(4) img { object-position: 50% 42%; }
.service-card:hover img { transform: scale(1.08); filter: saturate(1.18); }
.service-card div { position: relative; padding: 1.35rem 1.25rem 1.5rem; }
.service-card .badge-star { position: absolute; top: -28px; right: 1rem; }
.service-card .badge-star {
  border-color: #c9ff00;
}
.service-card .badge-star::before {
  background: #c9ff00;
}
.service-card h3 { min-height: 3.45em; }
.service-card p { font-size: 1rem; }
.service-card div::after {
  content: "";
  display: block;
  width: 82px;
  height: 5px;
  margin-top: 2.5rem;
  background: var(--lime);
  transition: width 240ms ease;
}
.service-card:hover div::after { width: 150px; }

.blue-ticker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.7fr repeat(7, 1fr);
  gap: 0;
  align-items: center;
  min-height: 112px;
  margin: 2.1rem calc(clamp(1.25rem, 3.5vw, 4rem) * -1) 0;
  padding-inline: clamp(1.25rem, 3.5vw, 4rem);
  background: linear-gradient(135deg, #072ff5, #0019a8);
  box-shadow: 0 3px 0 #0019a8;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}
.blue-ticker span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 64px;
  padding: 0 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  text-align: center;
}
.blue-ticker span:last-child { border-right: 0; }
.blue-ticker .burst {
  background: repeating-conic-gradient(from 0deg, #fff 0 5deg, transparent 5deg 15deg);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.42));
}

.help-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 3vw, 3.4rem);
  align-items: stretch;
}
.help {
  padding-bottom: clamp(3.2rem, 4.8vw, 5rem);
}
.help-title {
  font-size: clamp(4.45rem, 7.4vw, 7.35rem);
  line-height: 0.96;
}
.help-title span,
.help-title strong {
  display: block;
}
.help-images {
  display: block;
  min-height: clamp(520px, 62vh, 720px);
  perspective: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  overflow: hidden;
  transform: none;
}
.help-images img {
  width: 100%;
  aspect-ratio: auto;
  height: 100%;
  min-height: clamp(520px, 62vh, 720px);
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
  transition: transform 320ms ease, filter 320ms ease, box-shadow 320ms ease;
  object-position: 50% 45%;
}
.help-images img:first-child {
  clip-path: none;
}
.help-images:hover img {
  filter: saturate(1.12) contrast(1.04);
}
.help-images img:hover {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px) scale(1.025);
  box-shadow: 0 34px 90px rgba(0, 49, 255, 0.28);
  z-index: 2;
}
.audience-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.96);
  overflow: hidden;
}
.audience-tabs article {
  padding: 1.6rem 2.2rem;
  min-height: 170px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 10, 10, 0.96);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.audience-tabs article:last-child { border-right: 0; }
.audience-tabs article.active {
  background: rgba(10, 10, 10, 0.96);
}
.audience-tabs article:hover {
  background: linear-gradient(135deg, #0032ff, #001dbd);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 255, 0, 0.42);
}
.audience-tabs h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.audience-tabs p {
  position: relative;
  margin: 0.25rem 0;
  padding-left: 1.4rem;
  font-size: 1rem;
}
.audience-tabs p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background: var(--lime);
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}
.process {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1.3rem;
  align-items: center;
  margin-top: 1.6rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.process span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.98rem;
  line-height: 1.3;
}
.process b {
  color: var(--lime);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1.35rem;
}
.process em {
  display: inline-grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border: 2px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: normal;
  font-size: 1.2rem;
}

.solve-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.35fr);
  gap: 2.5rem;
  align-items: center;
}
.solve-head h2 {
  font-size: clamp(3.7rem, 5.5vw, 5.45rem);
  line-height: 1.04;
}
.solve-title {
  display: block;
  min-width: max-content;
}
.solve-title span {
  display: block !important;
  width: max-content;
  max-width: none;
  white-space: nowrap;
}
.solve-head .blue-callout {
  margin-left: 0;
  margin-top: 0;
  grid-template-columns: 1fr 92px;
  width: fit-content;
  max-width: 100%;
  justify-self: end;
  padding: 1rem 1.1rem 1rem 1.25rem;
  gap: 1.25rem;
}
.solve-head .blue-callout {
  background: transparent;
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(0, 49, 255, 0.18);
}
.solve-head .blue-callout p {
  color: #101010;
  margin: 0;
  font-size: clamp(1rem, 1.22vw, 1.24rem);
}
.solve-head .blue-callout p span {
  display: block;
}
.solve-head .blue-callout .burst {
  place-self: center;
  width: 68px;
}
.solve-head .blue-callout b {
  color: #101010;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.problem {
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--blue);
  border-color: var(--blue);
}
.problem:hover { border-color: var(--blue); }
.problem img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  height: auto;
  object-fit: cover;
  transition: transform 450ms ease;
}
.problem:hover img { transform: scale(1.07); }
.problem div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1rem;
  padding: 1.35rem;
}
.problem i { grid-row: span 3; }
.light-surface .problem h3 { color: var(--blue); }
.light-surface .problem p { color: #101010; }
.light-surface .problem h3::after { background: var(--blue); }
.problem p { grid-column: 2; margin: 0.45rem 0 0; font-size: 0.96rem; color: #dedede; }
.problem h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 1rem;
  background: var(--lime);
}
.solve-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--blue);
}
.solve {
  padding-bottom: 0;
  border-bottom: 0;
}
.solve + .reel {
  margin-top: 0;
}
.solve-bar a {
  width: fit-content;
  min-width: 0;
  justify-self: center;
  white-space: nowrap;
}
.solve-bar .compact-case-btn {
  width: auto;
  min-width: 178px;
  max-width: 210px;
  min-height: 36px;
  padding: 0.42rem 0.95rem;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1;
  border-radius: 6px;
}
.solve-bar .compact-case-btn span { font-size: 1rem; }
.solve-bar span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 82px;
  text-align: center;
}
.solve-bar span i { flex: 0 0 auto; grid-row: auto; }

.reel {
  display: grid;
  grid-template-columns: minmax(370px, 0.82fr) minmax(600px, 1.18fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.reel h2 { color: var(--text); }
.reel-title {
  font-size: clamp(3.8rem, 5.55vw, 6.5rem);
  line-height: 0.98;
}
.reel .eyebrow { white-space: nowrap; }
.reel-list {
  display: grid;
  gap: 1.1rem;
  margin: 1.8rem 0;
}
.reel-list span {
  display: grid;
  grid-template-columns: 70px 120px 1fr;
  align-items: center;
  gap: 1rem;
  line-height: 1.35;
}
.reel-list b {
  color: var(--lime);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}
.reel-list small {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}
.video-shell {
  position: relative;
  padding: 1rem;
  border-radius: 22px;
  overflow: hidden;
}
.reel-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(1.08);
  background: #050505;
}
.video-shell.is-playing .play-button {
  opacity: 0;
  pointer-events: none;
}
.play-button {
  position: absolute;
  left: 50%;
  top: 47%;
  display: grid;
  place-items: center;
  width: clamp(78px, 8vw, 112px);
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: var(--lime);
  color: #050505;
  font-size: 2.4rem;
  padding-left: 0.3rem;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 40px rgba(201, 255, 0, 0.48);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.play-button:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 78px rgba(201, 255, 0, 0.7);
}
.video-controls {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.55rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.video-controls span {
  position: relative;
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.75);
}
.video-controls span::before {
  content: "";
  display: block;
  width: 28%;
  height: 100%;
  background: var(--lime);
}
.video-controls b { font-weight: 500; }
.video-shell:has(.reel-video) .video-controls { display: none; }

.portfolio {
  display: grid;
  grid-template-columns: minmax(330px, 0.42fr) minmax(680px, 1fr);
  gap: 3rem;
  align-items: center;
}
.portfolio-copy h2 {
  font-size: clamp(3.85rem, 6.45vw, 6.65rem);
  line-height: 1.04;
}
.portfolio-copy p { max-width: 440px; }
.portfolio-wall {
  position: relative;
  overflow: hidden;
  padding: clamp(0.7rem, 1.3vw, 1.2rem);
  border: 0;
  border-radius: 0;
  background:
    #070707;
}
.portfolio-wall::after {
  display: none;
}
.portfolio-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(140px, 14vw, 230px);
  gap: 0;
}
.portfolio-item {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #111;
  overflow: hidden;
  cursor: zoom-in;
}
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  filter: saturate(1.04) contrast(1.03);
  transition: transform 520ms ease, filter 520ms ease;
}
.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.34));
  opacity: 0;
  transition: opacity 220ms ease;
}
.portfolio-item::after {
  content: "Ver proyecto";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.52rem 1rem;
  border: 1px solid #c9ff00;
  border-radius: 6px;
  background: #c9ff00;
  color: #050505;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0;
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.9);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.18, 0.9, 0.2, 1.2);
  pointer-events: none;
  white-space: nowrap;
}
.portfolio-item:hover img {
  transform: scale(1.09);
  filter: saturate(1.18) contrast(1.08);
}
.portfolio-item:hover::before { opacity: 1; }
.portfolio-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.wall-light {
  position: absolute;
  width: 280px;
  height: 2px;
  left: var(--px, 50%);
  top: var(--py, 50%);
  transform: translate(-50%, -50%) rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(201, 255, 0, 0.65), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}
.portfolio-wall:hover .wall-light { opacity: 0; }
.wall-light { display: none; }

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - 98px);
}
.contact h2 { color: var(--text); }
.contact-title {
  position: relative;
  font-size: clamp(4.1rem, 6.4vw, 7.1rem);
}
.contact-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.08em;
  width: min(68%, 520px);
  height: 0.08em;
  background: linear-gradient(90deg, var(--lime), #fff, transparent);
  transform: scaleX(0.38);
  transform-origin: left;
  filter: drop-shadow(0 0 18px rgba(201, 255, 0, 0.6));
  transition: transform 360ms ease, filter 360ms ease;
}
.contact-title:hover::after {
  transform: scaleX(1);
  filter: drop-shadow(0 0 34px rgba(201, 255, 0, 0.9));
}
.contact-title:hover span,
.contact-title:hover strong {
  animation: titleSweep 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both, contactPop 980ms ease-in-out both;
  filter: drop-shadow(0 0 28px rgba(201, 255, 0, 0.72));
}
.contact-copy > p { max-width: 760px; }
.contact-copy {
  width: min(100%, 1120px);
  margin-inline: auto;
}
.contact-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.contact-card,
.contact-form {
  border-color: rgba(201, 255, 0, 0.7);
  border-radius: var(--radius);
  padding: 1.55rem;
}
.person {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1.15rem;
  align-items: center;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--lime);
}
.person > img {
  width: 112px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.person h3 { font-size: 1.7rem; }
.person p { margin: 0.25rem 0; font-size: 1rem; color: #fff; }
.person div img { width: 88px; }
.contact-card > p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.05rem 0 0;
  font-size: 1.05rem;
}
.contact-card b { color: var(--lime); }
.contact-form {
  background: linear-gradient(135deg, #0534ff, #001cb3);
  box-shadow: inset 0 -70px 110px rgba(255, 255, 255, 0.05);
}
.contact-form h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.required-note {
  margin: -0.35rem 0 0.8rem;
  color: #fff;
  font-size: 0.88rem;
  opacity: 0.86;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.08);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.contact-form textarea { min-height: 88px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.82); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(201, 255, 0, 0.16);
}
.contact-form .btn { width: 100%; margin-top: 0.25rem; }
.contact-action {
  display: grid;
  grid-template-columns: minmax(260px, 450px) 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 1.4rem;
}
.contact-action span {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}
.contact-visual { display: none; }
.creative-stage {
  position: relative;
  width: min(720px, 100%);
  aspect-ratio: 1.16 / 1;
  border: 1px solid rgba(201, 255, 0, 0.35);
  border-radius: 28px 4px 28px 4px;
  background:
    radial-gradient(circle at 22% 50%, rgba(201, 255, 0, 0.1), transparent 18rem),
    radial-gradient(circle at 78% 50%, rgba(0, 49, 255, 0.28), transparent 20rem),
    linear-gradient(135deg, rgba(0, 49, 255, 0.24), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 58px),
    #050505;
  box-shadow: inset 0 0 110px rgba(0, 49, 255, 0.2), 0 30px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  transform-style: preserve-3d;
}
.contact-flow {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.ready-stage { border-color: rgba(201, 255, 0, 0.22); }
.signal-line {
  position: absolute;
  height: 2px;
  width: 72%;
  left: 14%;
  background: linear-gradient(90deg, transparent, var(--lime), #fff, transparent);
  transform-origin: center;
  animation: signalSlide 3.4s ease-in-out infinite;
}
.line-a { top: 30%; transform: rotate(-18deg); }
.line-b { top: 52%; transform: rotate(8deg); animation-delay: 420ms; }
.line-c { top: 70%; transform: rotate(-4deg); animation-delay: 820ms; }
.creative-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.creative-core .burst {
  width: clamp(108px, 15vw, 180px);
  filter: drop-shadow(0 0 40px rgba(201, 255, 0, 0.72));
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 3.5vw, 4rem);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(1180px, 92vw);
  min-height: min(640px, 78vh);
  margin: 0;
}
.lightbox-frame::after {
  content: "Cargando";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: none;
  transform: translate(-50%, -50%);
  padding: 0.65rem 1rem;
  background: var(--lime);
  color: #050505;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}
.lightbox.is-loading .lightbox-frame::after { display: block; }
.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border: 1px solid rgba(201, 255, 0, 0.48);
  border-radius: 0;
  box-shadow: 0 0 70px rgba(0, 49, 255, 0.36);
  transform: scale(0.96);
  transition: transform 220ms ease, opacity 180ms ease;
}
.lightbox.is-loading img { opacity: 0.22; }
.lightbox.open img { transform: scale(1); }
.lightbox-caption {
  position: absolute;
  left: 0;
  bottom: -2.4rem;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0;
  opacity: 0.82;
}
.lightbox-close {
  position: absolute;
  top: clamp(1rem, 2vw, 2rem);
  right: clamp(1rem, 2vw, 2rem);
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background: var(--lime);
  color: #050505;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(46px, 5vw, 68px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 255, 0, 0.75);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.66);
  color: var(--lime);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.8;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}
.lightbox-nav:hover {
  background: var(--lime);
  color: #050505;
  transform: translateY(-50%) scale(1.08);
}
.lightbox-nav[hidden] { display: none; }
.lightbox-prev { left: clamp(0.9rem, 3vw, 3rem); }
.lightbox-next { right: clamp(0.9rem, 3vw, 3rem); }
.site-footer > span:first-child,
.social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-footer nav { display: flex; gap: 2rem; }
.social { justify-self: end; color: var(--lime); }
.social a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.social a:hover {
  background: var(--lime);
  color: #050505;
  transform: translateY(-3px);
}
.social a::after { display: none; }

.spark {
  display: inline-block;
  width: 28px;
  aspect-ratio: 1;
  background: var(--lime);
  clip-path: polygon(50% 0, 62% 37%, 100% 50%, 62% 63%, 50% 100%, 38% 63%, 0 50%, 38% 37%);
  filter: drop-shadow(0 0 12px rgba(201, 255, 0, 0.55));
  animation: pulseStar 2.7s ease-in-out infinite;
}
.spark.twin {
  width: 42px;
  background: conic-gradient(from 45deg, transparent 0 12%, var(--lime) 12% 16%, transparent 16% 37%, var(--lime) 37% 42%, transparent 42% 62%, var(--lime) 62% 67%, transparent 67% 87%, var(--lime) 87% 92%, transparent 92%);
  clip-path: none;
}
.burst {
  display: inline-block;
  width: 84px;
  aspect-ratio: 1;
  background: repeating-conic-gradient(from 0deg, var(--lime) 0 5deg, transparent 5deg 15deg);
  clip-path: circle(50%);
  filter: drop-shadow(0 0 20px rgba(201, 255, 0, 0.5));
  animation: spin 12s linear infinite;
}
.burst.small { width: 64px; }
.burst.tiny { width: 28px; }
.hero-burst { position: absolute; left: -3rem; top: 12%; }
.badge-star {
  display: inline-grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 2px solid var(--lime);
  border-radius: 50%;
}
.badge-star::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: var(--lime);
  clip-path: polygon(50% 0, 62% 37%, 100% 50%, 62% 63%, 50% 100%, 38% 63%, 0 50%, 38% 37%);
}
.icon {
  display: inline-grid;
  place-items: center;
  width: 66px;
  aspect-ratio: 1;
  color: var(--lime);
  border: 2px solid var(--lime);
  border-radius: 50%;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.6rem;
}
.icon.speed {
  position: relative;
  border: 0;
}
.icon.speed::before {
  content: "";
  width: 34px;
  aspect-ratio: 1;
  background: var(--lime);
  clip-path: polygon(50% 0, 61% 34%, 96% 18%, 72% 48%, 100% 70%, 64% 65%, 50% 100%, 36% 65%, 0 70%, 28% 48%, 4% 18%, 39% 34%);
  filter: drop-shadow(0 0 14px rgba(201, 255, 0, 0.55));
  animation: orbitStar 2.8s linear infinite;
}
.icon.loops,
.icon.globe {
  position: relative;
  border: 0;
}
.icon.loops::before,
.icon.globe::before {
  content: "";
  width: 34px;
  aspect-ratio: 1;
  background: var(--lime);
  filter: drop-shadow(0 0 14px rgba(201, 255, 0, 0.55));
  animation: orbitStar 3.1s linear infinite;
}
.icon.loops::before {
  clip-path: polygon(50% 0, 62% 34%, 100% 50%, 62% 66%, 50% 100%, 38% 66%, 0 50%, 38% 34%);
}
.icon.globe::before {
  clip-path: polygon(50% 0, 58% 30%, 86% 14%, 70% 42%, 100% 50%, 70% 58%, 86% 86%, 58% 70%, 50% 100%, 42% 70%, 14% 86%, 30% 58%, 0 50%, 30% 42%, 14% 14%, 42% 30%);
  animation-direction: reverse;
}
.icon.clapper::before { content: "▣"; }
.icon.people::before { content: "●●"; font-size: 1rem; }
.icon.money::before { content: "$"; }
.icon.route::before { content: "⌁"; font-size: 2.5rem; }
.icon.ai::before { content: "AI"; font-size: 1.1rem; }
.icon.mail::before { content: "✉"; }
.icon.chat::before { content: "☏"; }
.icon.web::before {
  content: "www";
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.tilt {
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0));
  transition: transform 180ms ease, box-shadow 220ms ease;
  will-change: transform;
}
.tilt:hover { --lift: -4px; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35); }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.parallax-soft {
  translate: 0 var(--parallax-y, 0px);
  will-change: translate;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes galleryFade {
  0% { opacity: 0; transform: scale(1.16) translateX(2%); }
  5%, 18% { opacity: 1; transform: scale(1.08) translateX(0); }
  24%, 100% { opacity: 0; transform: scale(1.02) translateX(-2%); }
}
@keyframes frameSwap {
  0% {
    opacity: 0;
  }
  2.5% {
    opacity: 0.7;
  }
  7%, 14.2% {
    opacity: 1;
  }
  19% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes frameGlitchOverlay {
  0%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }
  2% {
    opacity: 0.52;
    transform: translate3d(1.2%, 0, 0) skewX(-2deg);
    clip-path: inset(7% 0 76% 0);
  }
  3% {
    opacity: 0.72;
    transform: translate3d(-1.6%, 0, 0) skewX(2deg);
    clip-path: inset(18% 0 54% 0);
  }
  6% {
    opacity: 0.44;
    transform: translate3d(1%, 0, 0);
    clip-path: inset(39% 0 39% 0);
  }
  8% {
    opacity: 0.62;
    transform: translate3d(-1.1%, 0, 0) skewX(-1deg);
    clip-path: inset(63% 0 18% 0);
  }
  12% {
    opacity: 0.3;
    transform: translate3d(0.55%, 0, 0);
    clip-path: inset(84% 0 5% 0);
  }
  16% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulseStar {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.22); }
}
@keyframes featureIconLive {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); filter: drop-shadow(0 0 0 rgba(201, 255, 0, 0)); }
  45% { transform: translateY(-6px) rotate(8deg) scale(1.08); filter: drop-shadow(0 0 18px rgba(201, 255, 0, 0.5)); }
}
@keyframes orbitStar {
  0% { transform: rotate(0deg) translateX(0) rotate(0deg); }
  50% { transform: rotate(180deg) translateX(5px) rotate(-180deg) scale(1.12); }
  100% { transform: rotate(360deg) translateX(0) rotate(-360deg); }
}
@keyframes titleSweep {
  from { background-position: 100% 0; }
  to { background-position: 0 0; }
}
@keyframes titleMelt {
  0%, 100% { transform: translateY(0) skewX(0); }
  28% { transform: translateY(0.04em) skewX(-2deg); }
  52% { transform: translateY(-0.025em) skewX(2deg) scaleY(1.04); }
  76% { transform: translateY(0.025em) skewX(-1deg); }
}
@keyframes contactPop {
  0%, 100% { transform: translateY(0) scale(1); }
  24% { transform: translateY(-0.04em) scale(1.025); }
  48% { transform: translateY(0.025em) scale(0.99); }
  72% { transform: translateY(-0.015em) scale(1.012); }
}
@keyframes creativeRotate {
  to { transform: rotate(350deg); }
}
@keyframes signalSlide {
  0%, 100% { opacity: 0.3; clip-path: inset(0 74% 0 0); }
  50% { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes chipFloat {
  0%, 100% { transform: translate(var(--chip-x), var(--chip-y)) translateY(0); }
  50% { transform: translate(var(--chip-x), var(--chip-y)) translateY(-12px); }
}
@keyframes framePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(0.98); }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 145px auto auto;
    min-height: 86px;
  }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    border: 1px solid var(--lime);
    border-radius: var(--radius);
    padding: 0.65rem 0.9rem;
    background: transparent;
    color: var(--lime);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    text-transform: uppercase;
  }
  .main-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 88px;
    display: grid;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid rgba(201, 255, 0, 0.5);
    border-radius: var(--radius);
    background: rgba(4, 4, 4, 0.96);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 0.95rem; }
  .main-nav a::after { bottom: 0.45rem; left: 0.95rem; right: auto; width: 42px; }
  .nav-cta { min-width: 188px; }
  .hero,
  .section-grid,
  .services,
  .help-top,
  .solve-head,
  .reel,
  .portfolio,
  .contact,
  .home-blue-section {
    grid-template-columns: 1fr;
  }
  .solve-head .blue-callout {
    margin-left: 0;
    justify-self: stretch;
  }
  .section-blue::before { display: none; }
  .hero:not(.hero-mouse),
  .hero-copy {
    background:
      radial-gradient(circle at 8% 22%, rgba(255, 255, 255, 0.12), transparent 5rem),
      radial-gradient(circle at 20% 93%, rgba(0, 0, 0, 0.18), transparent 12rem),
      linear-gradient(135deg, #0826f2, #001aa8 68%, #001476);
  }
  .hero-mouse,
  .home-mouse-stage {
    min-height: calc(100svh - 86px);
  }
  .home-blue-section::before { display: none; }
  .hero-media { min-height: 460px; }
  .feature-row,
  .bottom-values,
  .problem-cards,
  .solve-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .blue-ticker { grid-template-columns: repeat(4, 1fr); margin-bottom: 0; }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .cursor-glow { display: none; }
  .site-header {
    grid-template-columns: 120px 1fr;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
  }
  .logo-link img { width: 120px; }
  .nav-cta {
    grid-column: 1 / -1;
    width: min(245px, 100%);
    min-width: 0;
    min-height: 40px;
    padding: 0.58rem 0.9rem;
    justify-self: center;
  }
  .main-nav {
    top: 128px;
  }
  .section {
    width: 100%;
    max-width: 100vw;
    padding: 3.2rem 1rem;
    overflow: hidden;
  }
  .liquid-title,
  .liquid-title span,
  .liquid-title strong {
    width: auto;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-wrap: balance;
  }
  .liquid-title span,
  .liquid-title strong {
    padding-inline: 0.04em;
    margin-inline: -0.04em;
  }
  h1 { font-size: clamp(2.35rem, 11.2vw, 3.65rem); line-height: 0.98; }
  h2 { font-size: clamp(2.75rem, 13.2vw, 4.35rem); line-height: 0.98; }
  .btn {
    min-height: 44px;
    padding: 0.72rem 1rem;
    gap: 0.75rem;
  }
  .btn span,
  .btn .whatsapp-icon + span,
  .nav-cta > span:last-child {
    font-size: 0.96rem;
  }
  .whatsapp-icon {
    width: 25px;
    flex-basis: 25px;
  }
  .main-nav a::after { bottom: 0.32rem; }
  .hero-mouse {
    width: 100vw;
    max-width: none;
    padding: 0;
    overflow: hidden;
    margin-inline: calc(50% - 50vw);
    border-bottom: 0;
  }
  .hero-mouse,
  .home-mouse-stage {
    min-height: 76svh;
    width: 100vw;
  }
  .home-mouse-stage {
    overflow: hidden;
    padding: 4.5rem 1rem;
  }
  .mouse-gallery { inset: 10px 0 0; }
  .mouse-follow-item {
    width: clamp(82px, 30vw, 138px);
    max-height: 158px;
  }
  .home-blue-section,
  .hero-fast-gallery,
  .ticker {
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
  }
  .home-blue-section {
    overflow: hidden;
  }
  .home-blue-section .hero-copy {
    min-height: auto;
    padding: 3.25rem 1rem 2.6rem;
    width: 100%;
  }
  .home-blue-section .hero-statement {
    font-size: clamp(2.25rem, 10.8vw, 3.45rem);
    line-height: 1;
  }
  .home-blue-section .hero-statement span {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }
  .hero-fast-gallery {
    min-height: 78svh;
  }
  .hero-frame-swap img {
    height: 78svh;
  }
  .hero-gallery-logo {
    max-height: 24vh;
  }
  .hero-gallery-logo-wrap {
    width: min(72vw, 440px);
    max-height: 24vh;
  }
  .home-white-title {
    font-size: clamp(2.15rem, 9.8vw, 3.35rem);
    line-height: 0.98;
  }
  .home-white-content .actions {
    width: 100%;
  }
  .home-white-content .mini-strip {
    width: 100%;
    justify-content: center;
    margin-top: 1.4rem;
  }
  .home-white-content {
    width: 100%;
  }
  .home-white-content .mini-strip span {
    padding-right: 0;
  }
  .ticker {
    margin-bottom: -1px;
    box-shadow: 0 3px 0 var(--lime);
  }
  .ticker div {
    padding: 1.15rem 1.25rem;
  }
  .hero-copy { padding: 3.4rem 1rem 2rem; }
  .hero h1 span:first-child { white-space: normal; }
  .hero-media { min-height: 380px; }
  .hero-gallery img { object-position: center; }
  .actions, .contact-action { grid-template-columns: 1fr; display: grid; gap: 0.8rem; }
  .actions .btn, .btn { width: 100%; }
  .home-white-content .actions {
    justify-items: center;
  }
  .home-white-content .actions .btn {
    width: min(245px, 100%);
  }
  .solve-bar .compact-case-btn {
    width: auto;
    min-width: 172px;
    max-width: 210px;
    justify-self: center;
    min-height: 36px;
    padding: 0.42rem 0.9rem;
  }
  .mini-strip { gap: 0.7rem; }
  .mini-strip span { border-right: 0; }
  .feature-row,
  .cards.three,
  .bottom-values,
  .help-images,
  .audience-tabs,
  .process,
  .problem-cards,
  .solve-bar,
  .contact-panels,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .feature-row article { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.24); }
  .studio-grid { grid-template-columns: 1fr; }
  .studio {
    padding-top: 3.2rem;
  }
  .studio .copy h2 {
    font-size: clamp(2.05rem, 8.9vw, 3.2rem);
    line-height: 1;
  }
  .studio-title span,
  .studio-title strong {
    width: auto;
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
  }
  .blue-callout {
    grid-template-columns: 52px 1fr;
    gap: 0.9rem;
    padding: 1.05rem;
  }
  .blue-callout .burst { width: 52px; }
  .blue-callout p { font-size: 1rem; line-height: 1.35; }
  .studio-collage {
    min-height: 430px;
    margin-inline: -1rem;
  }
  .studio-collage .large {
    grid-row: auto;
    min-height: 430px;
  }
  .studio-collage img {
    min-height: 430px;
    object-position: 50% 38%;
  }
  .service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .service-cards::-webkit-scrollbar { display: none; }
  .service-card {
    width: 100%;
    min-height: 0;
    scroll-snap-align: none;
    border-color: var(--blue);
    color: #101010;
    background: transparent;
  }
  .service-card img {
    height: auto;
    aspect-ratio: 1.05 / 1;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .service-card:nth-child(1) img { object-position: 50% 44%; }
  .service-card:nth-child(2) img { object-position: 50% 43%; }
  .service-card:nth-child(3) img { object-position: 50% 6%; }
  .service-card:nth-child(4) img { object-position: 50% 32%; }
  .service-card div { padding: 1.7rem 1.15rem 1.35rem; }
  .service-card h3 {
    min-height: 0;
    margin: 0 3.1rem 0.75rem 0;
    color: var(--blue);
    font-size: 1.55rem;
    line-height: 1.08;
  }
  .service-card p {
    color: #101010;
    font-size: 1rem;
    line-height: 1.42;
  }
  .service-card .badge-star {
    top: -23px;
    right: 0.9rem;
  }
  .service-card div::after {
    margin-top: 1.25rem;
    background: var(--blue);
  }
  .blue-ticker {
    display: flex;
    overflow-x: auto;
    gap: 0;
    margin-inline: -1rem;
    margin-bottom: -1px;
    padding: 1rem;
    min-height: 92px;
    scrollbar-width: none;
  }
  .blue-ticker::-webkit-scrollbar { display: none; }
  .blue-ticker span {
    flex: 0 0 auto;
    min-width: 158px;
    min-height: 62px;
    padding-inline: 1rem;
  }
  .blue-ticker span:first-child { min-width: 220px; }
  .services {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .studio-feature-row {
    margin-inline: -1rem;
    margin-bottom: -3.4rem;
  }
  .help {
    padding-bottom: 1.35rem;
  }
  .help-title {
    font-size: clamp(2.8rem, 13.8vw, 4.4rem);
    line-height: 0.98;
  }
  .help .copy p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .help-images {
    min-height: 430px;
    margin-inline: -1rem;
    transform: none;
  }
  .help-images img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 430px;
    margin-top: 0;
    object-position: 50% 44%;
  }
  .audience-tabs {
    margin-top: 1rem;
  }
  .audience-tabs article {
    padding: 1rem;
  }
  .reel-title {
    font-size: clamp(2rem, 9.2vw, 3rem);
    white-space: normal;
  }
  .reel-title span {
    max-width: 100%;
    text-wrap: balance;
  }
  .audience-tabs article { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.24); }
  .reel {
    display: flex;
    flex-direction: column;
  }
  .reel-copy { display: contents; }
  .reel-copy .eyebrow { order: 1; width: 100%; }
  .reel-copy h2 { order: 2; width: 100%; }
  .video-shell { order: 3; }
  .reel-copy > p { order: 4; width: 100%; margin: 0.6rem 0 0; }
  .reel-copy .actions { order: 5; width: 100%; margin-top: 1rem; }
  .video-shell { padding: 0.5rem; border-radius: var(--radius); }
  .video-controls b { display: none; }
  .solve {
    padding-top: 3rem;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .solve-head {
    gap: 0.85rem;
  }
  .solve-title {
    min-width: 0;
  }
  .solve-head h2 {
    font-size: clamp(2.15rem, 8.9vw, 3.05rem);
    line-height: 1;
  }
  .solve-title span {
    width: auto;
    max-width: 100%;
    white-space: nowrap;
  }
  .solve-head .blue-callout {
    width: 100%;
    margin: -0.1rem 0 0.2rem;
    grid-template-columns: 1fr 48px;
    gap: 0.75rem;
    padding: 0.85rem 0.85rem 0.85rem 1rem;
  }
  .solve-head .blue-callout p {
    font-size: 0.95rem;
    line-height: 1.28;
  }
  .solve-head .blue-callout .burst {
    width: 42px;
  }
  .problem-cards {
    gap: 0.9rem;
  }
  .problem {
    min-height: 0;
  }
  .problem img {
    aspect-ratio: 1.08 / 0.84;
  }
  .problem div {
    grid-template-columns: 42px 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }
  .problem i,
  .problem .spark {
    width: 42px;
  }
  .problem h3::after {
    width: 34px;
    height: 2px;
    margin-top: 0.7rem;
  }
  .problem h3 {
    font-size: 1.35rem;
    line-height: 1.04;
  }
  .problem p {
    font-size: 0.95rem;
    line-height: 1.35;
  }
  .solve-bar {
    gap: 0.65rem;
    padding: 0.75rem;
  }
  .solve-bar span {
    min-height: 66px;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.55rem;
    text-align: center;
    line-height: 1.08;
  }
  .portfolio-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }
  .portfolio-item.tall,
  .portfolio-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .portfolio-copy h2,
  .contact-title {
    font-size: clamp(2.9rem, 14vw, 4.25rem);
    line-height: 0.98;
  }
  .portfolio-item::after {
    font-size: 0.78rem;
    padding: 0.42rem 0.72rem;
  }
  .portfolio-wall {
    margin-inline: -1rem;
    border-inline: 0;
  }
  .portfolio {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .contact { min-height: auto; }
  .contact-panels {
    gap: 1rem;
  }
  .contact-card,
  .contact-form {
    padding: 1.05rem;
  }
  .contact-card > p {
    grid-template-columns: 42px 1fr;
    gap: 0.75rem;
    align-items: center;
  }
  .contact-visual {
    min-height: 390px;
  }
  .service-intro p,
  .help .copy p,
  .reel-copy > p,
  .contact-copy > p {
    max-width: 100%;
  }
  .lightbox {
    padding: 0.75rem;
  }
  .lightbox-frame {
    width: 100%;
    min-height: min(520px, 72vh);
  }
  .lightbox img {
    max-width: 94vw;
    max-height: 78vh;
  }
  .site-footer {
    gap: 1rem;
  }
  .site-footer span,
  .site-footer nav,
  .site-footer .social {
    justify-self: stretch;
  }
  .creative-stage {
    aspect-ratio: 0.88 / 1;
    border-radius: 20px 4px 20px 4px;
  }
  .site-footer nav { flex-wrap: wrap; gap: 1rem; }
  .social { justify-self: start; }
}

@media (pointer: coarse) {
  .gallery-cursor { display: none; }
  .hero-fast-gallery { cursor: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-soft { translate: 0 0; }
}
