/*
Theme Name: ID Agencia 2026
Theme URI: https://example.com
Author: ID Agencia
Description: Tema editorial comic-book pop art para ID Agencia 2026.
Version: 0.4.2
Text Domain: id-agencia-2026
*/

:root{
  --primary:#3CA199;
  --secondary:#964890;
  --dark:#1A1A1C;
  --light:#FEFEFE;
  --gray:#626364;
  --soft-gray:#9D9D9E;

  --border:4px;
  --shadow-x:8px;
  --shadow-y:8px;
  --shadow-color: var(--dark);
  --container: min(1440px, 92vw);
  --header-offset: clamp(5.4rem, 9vw, 7rem);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body{
  margin:0;
  background: var(--light);
  color: var(--dark);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 1;
  padding-top: var(--header-offset);
}

.home main {
  padding-top: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.screen-reader-text {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-halftone {
  background-image: radial-gradient(var(--dark) 1.5px, transparent 0);
  background-size: 20px 20px;
  opacity: 0.04;
}

.bg-speed-lines {
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(26, 26, 28, 0.03) 20px,
    rgba(26, 26, 28, 0.03) 21px
  );
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.display{
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.display--black{ font-weight: 900; }
.display--bold{ font-weight: 700; }
.italic{ font-style: italic; }

.comic-border { border: var(--border) solid var(--dark); }

.shadow-comic{
  box-shadow: var(--shadow-x) var(--shadow-y) 0 0 var(--shadow-color);
}

.comic-panel {
  background: var(--light);
  border: var(--border) solid var(--dark);
  box-shadow: var(--shadow-x) var(--shadow-y) 0 0 var(--shadow-color);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter .16s ease;
}

.comic-panel:hover{
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 16px 16px 0 0 var(--shadow-color);
}

::selection { background: var(--primary); color: #fff; }

.section {
  position: relative;
  padding: 6rem 0;
}

.section-head {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  padding: .5rem .9rem;
  font-size: .68rem;
  color: #fff;
  background: var(--primary);
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--secondary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.section-title {
  margin: 1rem 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -.03em;
  line-height: .88;
  font-size: clamp(2.2rem, 8vw, 6.5rem);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap:14px;
  padding: 20px 34px;
  border: var(--border) solid var(--dark);
  box-shadow: var(--shadow-x) var(--shadow-y) 0 0 var(--shadow-color);
  font-family:"Space Grotesk", Inter, system-ui, sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-0.02em;
  cursor:pointer;
  background: var(--light);
  color: var(--dark);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}

.btn:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 12px 12px 0 0 var(--shadow-color);
}

.btn::after {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 80%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transition: left .22s ease;
}

.btn:hover::after {
  left: 140%;
}

.btn:active{
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 0 var(--shadow-color);
}

.btn__icon{
  display:inline-flex;
  transition: transform .12s ease;
  animation: icon-nudge 1.1s ease-in-out infinite;
}
.btn:hover .btn__icon{ transform: rotate(45deg) scale(1.06); }

.btn--primary{ background: var(--primary); color: #fff; }
.btn--primary:hover{ background: var(--dark); color: #fff; }

.btn--secondary{ background: var(--light); color: var(--dark); }
.btn--secondary:hover{ background: var(--secondary); color: #fff; }

.btn--tertiary{
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
  border-bottom: var(--border) solid var(--dark);
}

.site-header {
  position: fixed;
  top: .8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  width: min(1720px, 96vw);
  margin: 0;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1rem 1.4rem;
  background: #fff;
  border: var(--border) solid var(--dark);
  box-shadow: 8px 8px 0 0 var(--dark);
  transition: padding .14s ease, box-shadow .14s ease;
}

.site-header.is-scrolled .site-header__bar {
  padding: .7rem 1.1rem;
  box-shadow: 10px 10px 0 0 var(--dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.header-cta .btn {
  animation: cta-flash 1.3s steps(2, end) infinite, cta-pop 2.1s ease-in-out infinite;
}

.header-cta .btn:hover,
.header-cta .btn:focus-visible {
  animation-play-state: paused;
}

.header-instagram {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .48rem .64rem;
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--dark);
  background: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .04em;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}

.header-instagram__icon {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-grid;
  place-items: center;
}

.header-instagram__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-instagram__icon svg circle:nth-of-type(1) {
  fill: rgba(26, 26, 28, 0.18);
  animation: insta-lens-blink 2.4s steps(2, end) infinite;
}

.header-instagram__flash {
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--dark);
  opacity: 0;
  animation: insta-shot 3.4s steps(2, end) infinite;
}

.header-instagram:hover,
.header-instagram:focus-visible {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 8px 8px 0 0 var(--secondary);
  background: var(--secondary);
  color: #fff;
}

.brand {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-transform: uppercase;
  line-height: 1;
}
.brand em {
  color: var(--secondary);
  text-decoration: underline;
  text-decoration-color: var(--primary);
  font-style: italic;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1rem;
}

.nav-desktop .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.45rem;
  margin: 0;
  padding: 0;
}

.nav-desktop .menu > .menu-item {
  position: relative;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.04rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -.01em;
  padding-bottom: .9rem;
  margin-bottom: -.9rem;
}

.nav-desktop .menu > .menu-item > a {
  padding: .7rem .42rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.nav-desktop .menu > .menu-item-has-children > a::after {
  content: " ▾";
}

.nav-desktop .menu > .menu-item > a:hover,
.nav-desktop .menu > .current-menu-item > a,
.nav-desktop .menu > .current-menu-ancestor > a {
  color: var(--secondary);
}

.nav-desktop .sub-menu {
  list-style: none;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: .35rem;
  transform: translateX(-50%);
  width: 320px;
  background: #fff;
  border: var(--border) solid var(--dark);
  box-shadow: 8px 8px 0 0 var(--dark);
  padding: .7rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .12s ease, transform .12s ease;
  z-index: 80;
}

.nav-desktop .menu > .menu-item > .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-desktop .menu > .menu-item:hover > .sub-menu,
.nav-desktop .menu > .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-4px);
}

.nav-desktop .sub-menu a {
  display: block;
  border: 2px solid transparent;
  padding: .72rem .65rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .88rem;
}
.nav-desktop .sub-menu a:hover { border-color: var(--primary); background: rgba(60, 161, 153, 0.07); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.6rem;
  background: #fff;
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--dark);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(254, 254, 254, 0.97);
  z-index: 120;
  padding: 7rem 6vw 2rem;
  transform: translateX(105%);
  transition: transform .16s ease;
  overflow: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.mobile-menu .menu,
.mobile-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu .menu > .menu-item > a {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(1.8rem, 9vw, 2.8rem);
  line-height: 1;
  margin-bottom: 1.1rem;
}
.mobile-menu .menu-item-has-children > a::after {
  content: " ▾";
}
.mobile-menu .sub-menu {
  margin-left: 1rem;
  border-left: 4px solid rgba(26, 26, 28, 0.16);
  padding-left: .8rem;
  margin-bottom: 1rem;
}
.mobile-menu .sub-menu a {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: .55rem;
}

.hero {
  --hero-pad-top: calc(var(--header-offset) + clamp(1.5rem, 2.4vw, 2.6rem));
  --hero-pad-bottom: clamp(1.4rem, 2.2vw, 2.4rem);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
  background:
    radial-gradient(1100px 520px at 100% 0%, rgba(150,72,144,.12), transparent 60%),
    radial-gradient(900px 420px at 0% 100%, rgba(60,161,153,.11), transparent 60%),
    var(--light);
}

.hero .container {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--hero-pad-top) - var(--hero-pad-bottom));
  display: flex;
}

.hero-id-cloud {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-id-cloud span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 38px;
  padding: 0 .45rem;
  border: 3px solid var(--dark);
  box-shadow: 5px 5px 0 0 var(--dark);
  background: var(--secondary);
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: -.02em;
  opacity: .13;
  transform: rotate(-7deg);
  animation: hero-id-drift 16s linear infinite;
}

.hero-id-cloud span:nth-child(2n) { background: var(--primary); }
.hero-id-cloud span:nth-child(3n) { animation-duration: 20s; }
.hero-id-cloud span:nth-child(4n) { animation-direction: reverse; }

.hero-id-cloud span:nth-child(1) { left: 4%; top: 12%; }
.hero-id-cloud span:nth-child(2) { left: 14%; top: 6%; }
.hero-id-cloud span:nth-child(3) { left: 24%; top: 16%; }
.hero-id-cloud span:nth-child(4) { left: 35%; top: 8%; }
.hero-id-cloud span:nth-child(5) { left: 46%; top: 15%; }
.hero-id-cloud span:nth-child(6) { left: 58%; top: 9%; }
.hero-id-cloud span:nth-child(7) { left: 68%; top: 13%; }
.hero-id-cloud span:nth-child(8) { left: 79%; top: 7%; }
.hero-id-cloud span:nth-child(9) { left: 89%; top: 14%; }
.hero-id-cloud span:nth-child(10) { left: 8%; top: 35%; }
.hero-id-cloud span:nth-child(11) { left: 19%; top: 30%; }
.hero-id-cloud span:nth-child(12) { left: 29%; top: 39%; }
.hero-id-cloud span:nth-child(13) { left: 41%; top: 32%; }
.hero-id-cloud span:nth-child(14) { left: 52%; top: 37%; }
.hero-id-cloud span:nth-child(15) { left: 64%; top: 31%; }
.hero-id-cloud span:nth-child(16) { left: 75%; top: 38%; }
.hero-id-cloud span:nth-child(17) { left: 87%; top: 33%; }
.hero-id-cloud span:nth-child(18) { left: 6%; top: 60%; }
.hero-id-cloud span:nth-child(19) { left: 18%; top: 56%; }
.hero-id-cloud span:nth-child(20) { left: 31%; top: 63%; }
.hero-id-cloud span:nth-child(21) { left: 46%; top: 58%; }
.hero-id-cloud span:nth-child(22) { left: 61%; top: 64%; }
.hero-id-cloud span:nth-child(23) { left: 76%; top: 57%; }
.hero-id-cloud span:nth-child(24) { left: 90%; top: 62%; }
.hero-id-cloud span:nth-child(25) { left: 3%; top: 78%; }
.hero-id-cloud span:nth-child(26) { left: 13%; top: 84%; }
.hero-id-cloud span:nth-child(27) { left: 24%; top: 76%; }
.hero-id-cloud span:nth-child(28) { left: 36%; top: 86%; }
.hero-id-cloud span:nth-child(29) { left: 48%; top: 79%; }
.hero-id-cloud span:nth-child(30) { left: 59%; top: 85%; }
.hero-id-cloud span:nth-child(31) { left: 70%; top: 77%; }
.hero-id-cloud span:nth-child(32) { left: 81%; top: 84%; }
.hero-id-cloud span:nth-child(33) { left: 92%; top: 76%; }
.hero-id-cloud span:nth-child(34) { left: 9%; top: 47%; }
.hero-id-cloud span:nth-child(35) { left: 54%; top: 48%; }
.hero-id-cloud span:nth-child(36) { left: 84%; top: 48%; }

.hero-grid {
  display: grid;
  width: 100%;
  gap: clamp(1.2rem, 2.6vw, 2.8rem);
  padding-inline: clamp(2.1rem, 6vw, 5.4rem);
  align-items: start;
}

.hero-quote-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(.72rem, 1.1vw, 1rem);
  align-self: start;
  align-content: stretch;
}

.hero-editorial-stack {
  display: grid;
  justify-items: end;
  gap: .6rem;
  margin-bottom: .3rem;
}

.hero-quote-stack > p {
  margin: 0 0 0 auto;
  max-width: 640px;
  text-align: right;
}

.hero-quote-stack .hero-cta {
  justify-content: flex-end;
}

.pill {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: .48rem .85rem;
  border: var(--border) solid var(--dark);
  background: var(--primary);
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  box-shadow: 6px 6px 0 0 var(--dark);
  animation: sticker-wobble 3.6s ease-in-out infinite;
}

.hero-cover-meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .85rem;
}

.pill--edition {
  margin-bottom: 0;
  background: var(--dark);
  color: #fff;
  letter-spacing: .12em;
  box-shadow: 6px 6px 0 0 var(--secondary);
}

.hero-year-badge {
  border: var(--border) solid var(--dark);
  appearance: none;
  display: inline-grid;
  place-items: center;
  min-width: 114px;
  min-height: 54px;
  padding: .35rem .7rem;
  box-shadow: 6px 6px 0 0 var(--dark);
  background: var(--secondary);
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .03em;
  transform: rotate(6deg);
  clip-path: polygon(12% 0, 24% 11%, 39% 0, 50% 12%, 62% 0, 74% 11%, 88% 0, 100% 16%, 89% 30%, 100% 46%, 89% 62%, 100% 80%, 88% 100%, 74% 89%, 62% 100%, 50% 88%, 38% 100%, 24% 89%, 12% 100%, 0 82%, 11% 64%, 0 48%, 11% 31%, 0 16%);
}

.hero-year-badge--hitbox {
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.hero-year-badge--hitbox:hover,
.hero-year-badge--hitbox:focus-visible {
  transform: rotate(3deg) translate(-2px, -2px);
  box-shadow: 9px 9px 0 0 var(--dark);
  filter: saturate(1.08);
}

.hero-brand-masthead {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.25rem;
  padding: .46rem .64rem;
  background: linear-gradient(98deg, var(--primary) 0%, var(--primary) 74%, var(--secondary) 74%, var(--secondary) 100%);
  transform: rotate(-1deg);
  isolation: isolate;
}

.hero-brand-masthead::before {
  content: "";
  position: absolute;
  inset: 6px;
  background-image: radial-gradient(rgba(26, 26, 28, .22) 1.2px, transparent 0);
  background-size: 10px 10px;
  opacity: .2;
  z-index: -1;
  pointer-events: none;
}

.hero-brand-masthead__main {
  display: inline-block;
  padding: .22rem .5rem;
  background: #fff;
  border: 3px solid var(--dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-size: clamp(1.1rem, 2.6vw, 1.85rem);
  line-height: 1;
}

.hero-brand-masthead__tag {
  display: inline-block;
  padding: .18rem .5rem;
  background: var(--dark);
  color: #fff;
  border: 3px solid #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(.72rem, 1.7vw, .98rem);
  line-height: 1;
}

.hero-kicker {
  display: inline-block;
  margin: 0;
  padding: .26rem .52rem;
  border: 3px solid var(--dark);
  background: #fff;
  box-shadow: 4px 4px 0 0 var(--dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .68rem;
}

.hero-title {
  margin: 0;
  display: grid;
  gap: .38rem;
}

.hero-title__line {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: .16em .22em .12em;
  border: var(--border) solid var(--dark);
  box-shadow: 8px 8px 0 0 var(--dark);
  background: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -.03em;
  line-height: .74;
  font-size: clamp(2.9rem, 9.6vw, 8.4rem);
  transform: rotate(-1deg);
  animation: hero-title-pop 4.8s ease-in-out infinite;
}

.hero-title__line:nth-child(2) {
  transform: rotate(.5deg);
  animation-delay: .18s;
}

.hero-title__line:nth-child(3) {
  transform: rotate(-1.5deg);
  animation-delay: .34s;
}

.hero-title__line--accent {
  position: relative;
  background: var(--secondary);
  color: #fff;
  box-shadow: 8px 8px 0 0 var(--primary);
}

.hero-title__line--accent::after {
  content: "";
  display: inline-block;
  width: 2.3rem;
  height: 100%;
  margin-left: .35rem;
  background-image: radial-gradient(rgba(255,255,255,.85) 1.2px, transparent 0);
  background-size: 8px 8px;
  opacity: .5;
}

.hero-title__line--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 12%, rgba(255,255,255,.28) 52%, transparent 88%);
  transform: translateX(-130%);
  animation: hero-accent-sweep 3.8s ease-in-out infinite;
  pointer-events: none;
}

.hero p {
  max-width: 820px;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  color: var(--gray);
  line-height: 1;
  font-size: clamp(1.1rem, 1.95vw, 1.52rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.speech-bubble {
  position: relative;
  width: fit-content;
  max-width: 100%;
  align-self: flex-end;
  box-shadow: 8px 8px 0 0 var(--dark), 14px 14px 0 0 rgba(150,72,144,.22);
  transform: rotate(2deg);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  left: 56px;
  bottom: -22px;
  width: 0;
  height: 0;
  border-top: 24px solid var(--dark);
  border-right: 22px solid transparent;
}

.hero-pulse-strip {
  background: #fff;
  width: fit-content;
  max-width: 100%;
  align-self: flex-end;
  overflow: hidden;
  padding: .85rem 0;
  position: relative;
  transform: rotate(-1deg) translateX(-4px);
}

.hero-pulse-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--dark) 1.3px, transparent 0);
  background-size: 16px 16px;
  opacity: .07;
  pointer-events: none;
}

.hero-pulse-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  padding-left: .8rem;
  padding-right: 0;
  animation: pulse-marquee 12s linear infinite;
}

.hero-pulse-track span {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dark);
}

.hero-pulse-track span::after {
  content: "•";
  color: var(--secondary);
  font-size: 1.2rem;
  line-height: 1;
}

.hero-pulse-track span:last-child::after {
  content: "";
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(30px) rotate(-1deg);
  transition: opacity .42s ease, transform .42s ease;
}

.has-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

#clientes.marquee {
  border-top: var(--border) solid var(--dark);
  border-bottom: var(--border) solid var(--dark);
  background: #fff;
  overflow: visible;
  padding: 1.3rem 0;
  position: relative;
  z-index: 220;
  isolation: isolate;
}

#clientes .marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 34s linear infinite;
  position: relative;
  z-index: 240;
  overflow: visible;
}

.marquee-label {
  margin: 0 0 .8rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .34rem .66rem;
  border: 3px solid var(--dark);
  box-shadow: 5px 5px 0 0 var(--dark);
  background: var(--primary);
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.client-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 280px;
  padding: .7rem .9rem;
  text-align: left;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--dark);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
  background: #fff;
  gap: .7rem;
  position: relative;
  overflow: visible;
  z-index: 1;
  isolation: isolate;
}

.client-badge--logo img {
  position: relative;
  width: 104px;
  height: 72px;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.08);
  mix-blend-mode: multiply;
  transition: transform .18s cubic-bezier(0.175, 0.885, 0.32, 1.4), filter .16s ease, box-shadow .16s ease, background .16s ease;
  transform-origin: 50% 85%;
  border: 2px solid transparent;
  box-shadow: 0 0 0 0 transparent;
  z-index: 2;
}

.client-badge__name {
  font-size: .82rem;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--dark);
}

a.client-badge:hover,
a.client-badge:focus-visible,
.client-badge:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 8px 8px 0 0 var(--secondary);
  background: #fff;
  color: var(--dark);
}

.client-badge:hover .client-badge__name {
  color: var(--dark);
}

.client-badge:hover img {
  filter: grayscale(0%) saturate(1.15);
  transform: translateY(-34px) rotate(-9deg) scale(2.16);
  border-color: var(--dark);
  box-shadow: 14px 14px 0 0 var(--secondary);
  background: #fff;
  z-index: 999;
  mix-blend-mode: normal;
  animation: client-logo-pop .28s cubic-bezier(0.16, 1.35, 0.28, 1) 1;
}

#clientes .client-badge:hover {
  z-index: 120;
}

.client-badge:hover::after {
  content: "";
  position: absolute;
  left: 40px;
  top: -30px;
  padding: .18rem .34rem;
  border: 2px solid var(--dark);
  background: var(--primary);
  color: #fff;
  box-shadow: 4px 4px 0 0 var(--dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .02em;
  transform: rotate(-8deg);
  z-index: 65;
}

.grid,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.2rem;
}

.card-title {
  margin: .75rem 0 .2rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 900;
  line-height: .92;
}

.card-meta {
  color: var(--gray);
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.editorial-card {
  --card-accent: var(--primary);
  --card-soft: rgba(60, 161, 153, 0.1);
  --card-tilt: -1deg;
  --tape-w: 48px;
  --tape-h: 8px;
  --tape-rot: -8deg;
  --tape-radius: 0;
  --tape-clip: none;
  --tape-top: .7rem;
  --tape-right: .75rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 52%, var(--card-soft) 100%),
    var(--light);
}
.editorial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-size: 18px 18px;
  background-image: radial-gradient(var(--dark) 1.2px, transparent 0);
}
.editorial-card::after {
  content: "";
  position: absolute;
  right: var(--tape-right);
  top: var(--tape-top);
  width: var(--tape-w);
  height: var(--tape-h);
  border: 2px solid var(--dark);
  background: var(--card-accent);
  box-shadow: 2px 2px 0 0 var(--dark);
  border-radius: var(--tape-radius);
  clip-path: var(--tape-clip);
  transform: rotate(var(--tape-rot));
  pointer-events: none;
}
.editorial-card:hover {
  transform: translate(-2px, -2px) rotate(var(--card-tilt));
  box-shadow: 16px 16px 0 0 var(--shadow-color);
}
.editorial-card > * {
  position: relative;
  z-index: 1;
}
.card-link {
  display: block;
}
.card-link:focus-visible {
  outline: 4px solid var(--primary);
  outline-offset: 4px;
}
.editorial-card .media {
  position: relative;
  overflow: hidden;
  border: var(--border) solid var(--dark);
  box-shadow: 4px 4px 0 0 var(--dark);
  background: var(--card-soft);
  aspect-ratio: 1 / 1;
}
.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter .3s ease, transform .3s ease;
}
.editorial-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.06);
}
.editorial-card .card-meta {
  display: inline-block;
  margin-top: .55rem;
  padding: .12rem .34rem;
  border: 2px solid var(--dark);
  background: rgba(255,255,255,.86);
}
.editorial-card .card-title {
  text-shadow: 1px 1px 0 rgba(26, 26, 28, .06);
}

/* Variações reutilizáveis para evitar cards "todos iguais" */
.grid > .editorial-card:nth-child(5n+1) {
  --card-accent: var(--primary);
  --card-soft: rgba(60, 161, 153, 0.1);
  --card-tilt: -1.1deg;
  --tape-w: 46px;
  --tape-h: 8px;
  --tape-rot: -9deg;
  --tape-radius: 0;
  --tape-clip: none;
}
.grid > .editorial-card:nth-child(5n+2) {
  --card-accent: var(--secondary);
  --card-soft: rgba(150, 72, 144, 0.11);
  --card-tilt: .85deg;
  --tape-w: 44px;
  --tape-h: 10px;
  --tape-rot: 5deg;
  --tape-radius: 999px;
  --tape-clip: none;
}
.grid > .editorial-card:nth-child(5n+2)::before {
  background-image: repeating-linear-gradient(-45deg, rgba(26, 26, 28, .5), rgba(26, 26, 28, .5) 1px, transparent 1px, transparent 11px);
  background-size: auto;
  opacity: .12;
}
.grid > .editorial-card:nth-child(5n+3) {
  --card-accent: var(--dark);
  --card-soft: rgba(26, 26, 28, 0.06);
  --card-tilt: -1.45deg;
  --tape-w: 54px;
  --tape-h: 9px;
  --tape-rot: -14deg;
  --tape-radius: 0;
  --tape-clip: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
.grid > .editorial-card:nth-child(5n+3)::before {
  background-image: linear-gradient(90deg, rgba(26,26,28,.22) 0 3px, transparent 3px 100%);
  background-size: 16px 100%;
  opacity: .09;
}
.grid > .editorial-card:nth-child(5n+4) {
  --card-accent: var(--secondary);
  --card-soft: rgba(60, 161, 153, 0.07);
  --card-tilt: .55deg;
  --tape-w: 40px;
  --tape-h: 12px;
  --tape-rot: 9deg;
  --tape-radius: 2px;
  --tape-clip: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.grid > .editorial-card:nth-child(5n+5) {
  --card-accent: var(--primary);
  --card-soft: rgba(150, 72, 144, 0.08);
  --card-tilt: -0.6deg;
  --tape-w: 52px;
  --tape-h: 10px;
  --tape-rot: 2deg;
  --tape-radius: 0;
  --tape-clip: polygon(0 0, 100% 0, 100% 35%, 89% 35%, 89% 65%, 100% 65%, 100% 100%, 0 100%, 0 65%, 11% 65%, 11% 35%, 0 35%);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.2rem;
}

.tab-btn {
  padding: .8rem 1.1rem;
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  background: #fff;
  cursor: pointer;
}
.tab-btn.is-active { background: var(--dark); color: #fff; box-shadow: 8px 8px 0 0 var(--secondary); }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.about-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .7rem;
  padding: .7rem;
  margin-bottom: 1.4rem;
}

.about-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1rem;
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .06em;
  background: #fff;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}

.about-nav__link:hover,
.about-nav__link:focus-visible,
.about-nav__link.is-active {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 8px 8px 0 0 var(--secondary);
  background: var(--dark);
  color: #fff;
}

.about-copy {
  margin: 0 0 .9rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray);
}

.services-stack {
  display: grid;
  gap: 1.6rem;
}

.services-hub {
  display: grid;
  gap: 2.4rem;
}

.services-hub__item {
  display: grid;
  gap: 1.2rem;
}

.services-hub__sticky {
  position: relative;
}

.services-hub__number {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(4.2rem, 12vw, 8rem);
  font-weight: 900;
  line-height: .82;
  color: rgba(60, 161, 153, 0.17);
  margin-bottom: .45rem;
}

.services-hub__title {
  margin: 0 0 .75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.services-hub__intro-cta {
  margin-top: 1rem;
}

.services-hub__detail {
  padding: 1.2rem;
}

.services-hub__desc {
  margin: 0;
  padding-left: .95rem;
  border-left: 8px solid var(--primary);
  color: var(--gray);
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  line-height: 1.12;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
}

.services-hub__focus {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 4px solid var(--dark);
}

.services-hub__focus-title {
  margin: 0 0 .7rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: .12em;
  font-size: .7rem;
  color: var(--primary);
}

.services-hub__detail-cta {
  margin-top: 1rem;
}

.service-row {
  display: grid;
  gap: .9rem;
  align-items: start;
}

.service-row__code {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  font-style: italic;
  line-height: .8;
  letter-spacing: -.03em;
  color: rgba(60, 161, 153, 0.22);
  font-size: clamp(3.4rem, 11vw, 8rem);
  user-select: none;
}

.service-row__card {
  padding: 1.15rem;
}

.service-row__head {
  margin-bottom: .85rem;
}

.service-row__tag {
  display: inline-block;
  padding: .36rem .62rem;
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--secondary);
  background: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.service-row__title {
  margin-top: .7rem;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.service-row__body {
  display: grid;
  gap: .85rem;
}

.service-row__desc {
  margin: 0;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.15;
}

.service-row__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}

.service-row__checklist li {
  position: relative;
  padding-left: 1.2rem;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  color: var(--dark);
}

.service-row__checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

.service-row__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1rem;
  margin-top: 1.15rem;
}

.service-single__lead {
  margin: .8rem 0 0;
  max-width: 1000px;
  color: var(--gray);
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  line-height: 1.12;
  font-size: clamp(1rem, 2.2vw, 1.55rem);
}

.service-single__media {
  padding: 1rem;
}

.service-single__placeholder {
  border: var(--border) solid var(--dark);
  box-shadow: 7px 7px 0 0 var(--dark);
  min-height: 320px;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(-45deg, rgba(26,26,28,.03), rgba(26,26,28,.03) 14px, transparent 14px, transparent 28px);
}

.service-single__placeholder span {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 3.6vw, 2rem);
  text-transform: uppercase;
  font-style: italic;
}

.service-single__content {
  padding: 1.2rem;
}

.service-single__tag {
  display: inline-block;
  margin-bottom: .85rem;
  padding: .35rem .66rem;
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--secondary);
  background: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lab-section {
  position: relative;
  overflow: clip;
}

.lab-section .container {
  position: relative;
  z-index: 2;
}

.lab-intro {
  position: relative;
  z-index: 2;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.lab-intro__title {
  margin: 0 0 .9rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .92;
  font-size: clamp(1.6rem, 4.3vw, 3.3rem);
}

.lab-intro p {
  margin: 0 0 .7rem;
  color: var(--gray);
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  line-height: 1.16;
  font-size: clamp(.95rem, 1.75vw, 1.18rem);
}

.lab-intro__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .95rem;
}

.lab-bg-flask {
  position: absolute;
  right: clamp(-8rem, -5vw, -3rem);
  bottom: clamp(-2rem, 1vw, 1rem);
  width: clamp(320px, 44vw, 620px);
  height: clamp(390px, 58vw, 760px);
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}

.lab-bg-flask__body {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 6px solid var(--dark);
  box-shadow: 12px 12px 0 0 rgba(26, 26, 28, .55);
  background: linear-gradient(165deg, rgba(254, 254, 254, .5), rgba(254, 254, 254, .08));
  clip-path: polygon(41% 0, 59% 0, 63% 17%, 68% 27%, 86% 62%, 98% 84%, 88% 100%, 12% 100%, 2% 84%, 14% 62%, 32% 27%, 37% 17%);
  overflow: hidden;
}

.lab-bg-flask__liquid {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7%;
  height: 49%;
  border: 4px solid var(--dark);
  background: linear-gradient(180deg, rgba(150, 72, 144, .75), rgba(60, 161, 153, .9));
  box-shadow: inset 0 -6px 0 rgba(26,26,28,.22);
  clip-path: polygon(2% 30%, 10% 26%, 19% 30%, 28% 24%, 37% 29%, 46% 23%, 55% 29%, 64% 23%, 73% 29%, 82% 24%, 91% 30%, 96% 100%, 4% 100%);
  animation: lab-liquid-wave 3s ease-in-out infinite;
}

.lab-bg-flask__spark {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 3px solid var(--dark);
  box-shadow: 4px 4px 0 0 rgba(26,26,28,.5);
  animation: lab-spark-pop 2.8s ease-in-out infinite;
}

.lab-bg-flask__spark--a {
  background: var(--primary);
  left: 22%;
  bottom: 33%;
}

.lab-bg-flask__spark--b {
  background: var(--secondary);
  left: 58%;
  bottom: 40%;
  animation-delay: .5s;
}

.lab-bg-flask__spark--c {
  background: #fff;
  left: 42%;
  bottom: 29%;
  animation-delay: 1.1s;
}

.lab-bg-flask__bubbles {
  position: absolute;
  inset: 0;
}

.lab-bg-flask__bubbles span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 3px solid var(--dark);
  box-shadow: 4px 4px 0 0 rgba(26,26,28,.48);
  background: var(--primary);
  animation: lab-bubble-rise 6s linear infinite;
}

.lab-bg-flask__bubbles span:nth-child(2n) { background: var(--secondary); }
.lab-bg-flask__bubbles span:nth-child(3n) { background: #fff; }
.lab-bg-flask__bubbles span:nth-child(1) { left: 18%; bottom: 20%; animation-delay: .2s; }
.lab-bg-flask__bubbles span:nth-child(2) { left: 36%; bottom: 16%; animation-delay: 1.1s; width: 20px; height: 20px; }
.lab-bg-flask__bubbles span:nth-child(3) { left: 54%; bottom: 18%; animation-delay: .7s; }
.lab-bg-flask__bubbles span:nth-child(4) { left: 72%; bottom: 15%; animation-delay: 2s; width: 22px; height: 22px; }
.lab-bg-flask__bubbles span:nth-child(5) { left: 26%; bottom: 34%; animation-delay: 1.7s; }
.lab-bg-flask__bubbles span:nth-child(6) { left: 45%; bottom: 30%; animation-delay: 2.5s; }
.lab-bg-flask__bubbles span:nth-child(7) { left: 63%; bottom: 33%; animation-delay: .9s; width: 18px; height: 18px; }
.lab-bg-flask__bubbles span:nth-child(8) { left: 80%; bottom: 28%; animation-delay: 1.4s; }
.lab-bg-flask__bubbles span:nth-child(9) { left: 12%; bottom: 44%; animation-delay: 2.2s; width: 20px; height: 20px; }
.lab-bg-flask__bubbles span:nth-child(10) { left: 33%; bottom: 47%; animation-delay: .4s; }
.lab-bg-flask__bubbles span:nth-child(11) { left: 58%; bottom: 49%; animation-delay: 1.8s; width: 21px; height: 21px; }
.lab-bg-flask__bubbles span:nth-child(12) { left: 84%; bottom: 45%; animation-delay: 2.8s; }

.filter-chip {
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--dark);
  background: #fff;
  padding: .8rem 1rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-chip.is-active { background: var(--primary); color: #fff; box-shadow: 8px 8px 0 0 var(--secondary); }

.site-footer {
  position: relative;
  z-index: 1;
  padding: 5rem 0 2rem;
  background: var(--dark);
  color: #fff;
  border-top: 8px solid var(--dark);
}

.footer-grid {
  display: grid;
  gap: 1.3rem;
}

.footer-title {
  margin: 0 0 .8rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  font-size: 1.08rem;
}

.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: .54rem; font-size: 1.08rem; color: var(--soft-gray); text-transform: uppercase; font-weight: 700; }

.footer-social-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}

.footer-social-list--row {
  margin: 0;
  padding: .75rem 1rem .35rem 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: .65rem 1.1rem;
  white-space: nowrap;
}

.footer-social-list--row li {
  min-width: max-content;
  flex: 0 0 auto;
}

.footer-social-marquee {
  border-top: 3px solid rgba(255, 255, 255, .18);
  margin-top: .8rem;
  overflow: hidden;
}

.footer-social-marquee__track {
  display: flex;
  width: max-content;
  animation: footer-marquee 58s linear infinite;
}

.footer-social-marquee:hover .footer-social-marquee__track {
  animation-play-state: paused;
}

.footer-social-list li a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--soft-gray);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 700;
}

.footer-social-list li a:hover {
  color: #fff;
}

.footer-social-icon {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.footer-social-icon svg {
  width: 1rem;
  height: 1rem;
  display: block;
  fill: currentColor;
}

@media (max-width: 779px) {
  .footer-social-list--row {
    gap: .55rem .85rem;
    padding-right: .8rem;
  }
  .footer-social-marquee__track {
    animation-duration: 68s;
  }
}

.contact-panel {
  color: #fff;
  background: var(--dark);
  padding: 1.2rem;
}

.contact-field {
  display: grid;
  gap: .5rem;
}

.contact-field label {
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-size: .64rem;
  letter-spacing: .18em;
  color: var(--soft-gray);
  font-weight: 900;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: .6rem 0;
  font-size: 1rem;
  font-family: Inter, sans-serif;
}

.contact-field textarea { min-height: 130px; resize: vertical; }
.contact-field input:focus,
.contact-field textarea:focus { outline: 0; border-bottom-color: var(--primary); }

.entry-content p,
.entry-content li {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.02rem;
}

.entry-content h2,
.entry-content h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -.02em;
  line-height: .95;
}

.pagination .nav-links,
.comment-navigation .nav-links {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span,
.comment-navigation a {
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--dark);
  padding: .45rem .7rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 900;
  background: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: var(--border) solid var(--dark);
  border-radius: 18px;
  box-shadow: 9px 9px 0 0 var(--dark);
  background: linear-gradient(145deg, #25D366 0%, #0BAE55 100%);
  color: #fff;
  font-size: 2rem;
  z-index: 50;
  animation: wa-float 2.8s ease-in-out infinite, wa-ring 5.2s steps(2, end) infinite;
}

.whatsapp-float__icon {
  display: inline-block;
  font-size: 1.72rem;
  line-height: 1;
  transform: translateY(1px);
  transform-origin: 50% 70%;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 3px solid rgba(37, 211, 102, 0.45);
  border-radius: 24px;
  opacity: 0;
  transform: scale(.92);
  animation: wa-ping 4.4s ease-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 12px 12px 0 0 var(--dark);
}

.wa-note {
  position: fixed;
  z-index: 70;
  pointer-events: none;
  padding: .12rem .38rem;
  border: 3px solid var(--dark);
  background: var(--wa-note-bg, #FEFEFE);
  color: var(--wa-note-fg, #1A1A1C);
  box-shadow: 4px 4px 0 0 var(--dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(var(--wa-note-rot, -8deg)) scale(.72);
  opacity: 0;
  animation: wa-note-pop var(--wa-note-duration, .9s) ease-out forwards;
}

.click-pop {
  position: fixed;
  z-index: 69;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--click-rot-start, -8deg)) scale(var(--click-scale-start, .7));
  opacity: 0;
  padding: .15rem .45rem;
  border: 3px solid var(--dark);
  background: var(--click-bg, var(--primary));
  color: var(--click-fg, #fff);
  box-shadow: 4px 4px 0 0 var(--dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: click-pop var(--click-duration, .34s) var(--click-ease, ease-out) forwards;
}

.click-pop--easter {
  letter-spacing: .02em;
  border-width: 3px;
  box-shadow: 5px 5px 0 0 var(--dark);
}

.click-pop--charge {
  opacity: 1;
  animation: none;
  transform: translate(-50%, -50%) rotate(var(--click-rot-start, -8deg)) scale(var(--charge-scale, .72));
  box-shadow: 6px 6px 0 0 var(--dark);
}

.click-burst {
  position: fixed;
  z-index: 72;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.click-burst-piece {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--burst-size, 10px);
  height: var(--burst-size, 10px);
  background: var(--burst-bg, var(--primary));
  border: 2px solid var(--dark);
  box-shadow: 2px 2px 0 0 var(--dark);
  transform: translate(0, 0) rotate(var(--burst-rot, 0deg)) scale(1);
  opacity: 1;
  animation: click-burst-square var(--burst-dur, .8s) ease-out var(--burst-delay, 0s) forwards;
}

.confetti-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 68;
}

body.mobile-menu-open .wa-note,
body.mobile-menu-open .click-pop,
body.mobile-menu-open .confetti-rain {
  opacity: 0;
}

.confetti-piece {
  position: absolute;
  top: -12vh;
  left: var(--x, 50vw);
  width: var(--w, 10px);
  height: var(--h, 16px);
  background: var(--bg, var(--primary));
  border: 2px solid var(--dark);
  box-shadow: 3px 3px 0 0 var(--dark);
  opacity: .94;
  transform: rotate(var(--rot, 0deg));
  animation: confetti-fall var(--dur, 1.8s) linear var(--delay, 0s) forwards;
}

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

@keyframes footer-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes client-logo-pop {
  0% {
    transform: translateY(-8px) rotate(-7deg) scale(1.08);
  }
  58% {
    transform: translateY(-38px) rotate(-10deg) scale(2.27);
  }
  100% {
    transform: translateY(-34px) rotate(-9deg) scale(2.16);
  }
}

@keyframes icon-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

@keyframes sticker-wobble {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes cta-pop {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2px, -2px); }
}

@keyframes hero-zap-parallax {
  0%, 22%, 52%, 100% { transform: rotate(8deg) translate(0, 0); }
  28% { transform: rotate(8deg) translate(-8px, -14px); }
  34% { transform: rotate(8deg) translate(-10px, -16px); }
  40% { transform: rotate(8deg) translate(-2px, -6px); }
  64% { transform: rotate(8deg) translate(7px, -9px); }
  72% { transform: rotate(8deg) translate(3px, -5px); }
}

@keyframes hero-id-drift {
  0% { transform: translate3d(0, 0, 0) rotate(-7deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(4deg); }
  100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
}

@keyframes hero-title-pop {
  0%, 100% {
    box-shadow: 8px 8px 0 0 var(--dark);
    filter: saturate(1);
  }
  50% {
    box-shadow: 12px 12px 0 0 var(--dark);
    filter: saturate(1.08);
  }
}

@keyframes hero-accent-sweep {
  0%, 68%, 100% { transform: translateX(-130%); }
  78% { transform: translateX(140%); }
}

@keyframes insta-lens-blink {
  0%, 80%, 100% {
    fill: rgba(26, 26, 28, 0.18);
    opacity: 1;
  }
  86% {
    fill: #1A1A1C;
    opacity: .95;
  }
  90% {
    fill: rgba(26, 26, 28, 0.18);
    opacity: .75;
  }
  94% {
    fill: #1A1A1C;
    opacity: .95;
  }
}

@keyframes insta-shot {
  0%, 86%, 100% { opacity: 0; transform: scale(.55); }
  88% { opacity: .95; transform: scale(1.2); }
  91% { opacity: .2; transform: scale(.9); }
  94% { opacity: .85; transform: scale(1.1); }
}

@keyframes cta-flash {
  0%, 43%, 100% {
    background: var(--primary);
    color: #fff;
    box-shadow: 8px 8px 0 0 var(--dark);
  }
  46%, 50% {
    background: var(--secondary);
    color: #fff;
    box-shadow: 8px 8px 0 0 var(--primary);
  }
}

@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes wa-ring {
  0%, 87%, 100% { filter: saturate(1); }
  89% { transform: translate(-1px, -2px) rotate(-3deg); }
  91% { transform: translate(1px, 0) rotate(2deg); }
  93% { transform: translate(-1px, -1px) rotate(-2deg); }
  95% { transform: translate(0, 0) rotate(0deg); filter: saturate(1.2); }
}

@keyframes wa-ping {
  0%, 78%, 100% {
    opacity: 0;
    transform: scale(.92);
  }
  83% {
    opacity: .5;
  }
  92% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes wa-note-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--wa-note-rot, -8deg)) scale(.72);
  }
  18% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(calc(var(--wa-note-rot, -8deg) * -0.45)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 24px)) rotate(0deg) scale(.92);
  }
}

@keyframes click-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--click-rot-start, -8deg)) scale(var(--click-scale-start, .7));
  }
  22% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--click-rot-mid, 3deg)) scale(var(--click-scale-mid, 1));
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--click-dx, 0px)), calc(-50% + var(--click-dy, -14px))) rotate(var(--click-rot-end, 0deg)) scale(var(--click-scale-end, .95));
  }
}

@keyframes click-burst-square {
  0% {
    transform: translate(0, 0) rotate(var(--burst-rot, 0deg)) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--burst-x, 0px), var(--burst-y, -80px)) rotate(calc(var(--burst-rot, 0deg) + 220deg)) scale(.55);
    opacity: 0;
  }
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-6vh) rotate(0deg);
    opacity: .98;
  }
  100% {
    transform: translateY(115vh) rotate(620deg);
    opacity: .12;
  }
}

@keyframes lab-bubble-rise {
  0% {
    transform: translateY(0) scale(.8);
    opacity: .15;
  }
  40% {
    opacity: .35;
  }
  100% {
    transform: translateY(-220px) scale(1.12);
    opacity: 0;
  }
}

@keyframes lab-liquid-wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-6px); }
}

@keyframes lab-spark-pop {
  0%, 100% { transform: translateY(0) scale(.9); opacity: .6; }
  50% { transform: translateY(-10px) scale(1.08); opacity: 1; }
}

.service-special {
  position: relative;
}

.service-special .section {
  padding: clamp(3.3rem, 8vw, 6.2rem) 0;
}

.service-special__breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: .46rem;
  margin-bottom: 1rem;
  padding: .36rem .62rem;
  border: var(--border) solid var(--dark);
  box-shadow: 6px 6px 0 0 var(--dark);
  background: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
}

.service-special__hero-grid {
  display: grid;
  gap: 1.2rem;
  align-items: stretch;
}

.service-special__hero-copy {
  padding: 1.25rem;
  border: var(--border) solid var(--dark);
  box-shadow: 9px 9px 0 0 var(--dark);
  background:
    radial-gradient(circle at 20% 20%, rgba(60, 161, 153, .12), transparent 60%),
    #fff;
}

.service-special__subtitle {
  margin: .85rem 0 0;
  max-width: 30ch;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  line-height: 1.02;
  font-size: clamp(1.05rem, 3.1vw, 1.8rem);
}

.service-special__hero-note {
  margin: .9rem 0 0;
  max-width: 48ch;
  color: var(--gray);
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  line-height: 1.12;
}

.service-special__hero-highlights {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.service-special__hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .26rem .62rem;
  background: #fff;
  box-shadow: 5px 5px 0 0 var(--secondary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
}

.service-special__hero-cta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.service-special__hero-mock {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.service-special__hero-mock img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition: filter .18s ease, transform .18s ease;
}

.service-special__hero-mock:hover img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.02);
}

.service-special__hero-mock figcaption,
.service-special__pain-mock figcaption,
.service-special__process-mock figcaption,
.service-special__proof-mock figcaption {
  margin: 0;
  padding: .62rem .7rem;
  border-top: var(--border) solid var(--dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .64rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 900;
}

.service-special__impact-strip {
  margin-top: 1rem;
  display: grid;
  gap: .8rem;
}

.service-special__impact-card {
  padding: .9rem .85rem .82rem;
  background: #fff;
}

.service-special__impact-card strong {
  display: block;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: .82;
  letter-spacing: -.03em;
}

.service-special__impact-card p {
  margin: .36rem 0 0;
  text-transform: uppercase;
  font-size: .71rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray);
}

.service-special__pain-grid,
.service-special__process-grid,
.service-special__benefits-grid,
.service-special__proof-grid,
.service-special__scope-grid,
.service-special__use-grid {
  display: grid;
  gap: 1rem;
}

.service-special__pain-card,
.service-special__step,
.service-special__benefit,
.service-special__scope-card,
.service-special__proof-copy,
.service-special__use-card {
  padding: 1rem;
}

.service-special__pain-card h3,
.service-special__step h3,
.service-special__use-card h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -.015em;
  font-size: clamp(1.25rem, 3.2vw, 2rem);
  line-height: .92;
}

.service-special__pain-card p,
.service-special__step p,
.service-special__benefit p,
.service-special__proof-copy p,
.service-special__faq-item p,
.service-special__use-card p {
  margin: .72rem 0 0;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.14;
}

.service-special__pain-mock,
.service-special__process-mock,
.service-special__proof-mock {
  margin: 0;
  overflow: hidden;
}

.service-special__pain-mock img,
.service-special__process-mock img,
.service-special__proof-mock img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .16s ease;
}

.service-special__pain-mock:hover img,
.service-special__process-mock:hover img,
.service-special__proof-mock:hover img {
  filter: grayscale(0);
}

.service-special__process-mock {
  max-width: 920px;
  margin: 1rem auto 0;
}

.service-special__process-mock img {
  aspect-ratio: 16 / 7;
  max-height: 360px;
}

.service-special__process {
  position: relative;
}

.service-special__process-line {
  display: block;
  height: 14px;
  margin-bottom: 1rem;
  border: var(--border) solid var(--dark);
  background: repeating-linear-gradient(
    -45deg,
    rgba(26, 26, 28, .04),
    rgba(26, 26, 28, .04) 12px,
    transparent 12px,
    transparent 24px
  );
  overflow: hidden;
}

.service-special__process-fill {
  display: block;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.service-special__step {
  position: relative;
  padding-top: 1.2rem;
}

.service-special__step-no {
  position: absolute;
  right: .6rem;
  top: .45rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 4.4vw, 2.4rem);
  font-weight: 900;
  color: rgba(26, 26, 28, .2);
  line-height: 1;
}

.service-special__benefit h3,
.service-special__proof-copy h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .09em;
}

.service-special__proof-copy h3 + p {
  margin-top: .5rem;
}

.service-special__proof-copy h3:not(:first-of-type) {
  margin-top: 1rem;
}

.service-special__scope-card .section-title {
  margin-top: .8rem;
}

.service-special__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.service-special__list li {
  position: relative;
  padding: .52rem .55rem .52rem 1.5rem;
  border: 3px solid var(--dark);
  background: #fff;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.12;
}

.service-special__list li::before {
  content: ">";
  position: absolute;
  left: .55rem;
  top: .52rem;
  color: var(--primary);
}

.service-special__list--warn li::before {
  content: "!";
  color: var(--secondary);
}

.service-special__faq {
  display: grid;
  gap: .75rem;
}

.service-special__faq-item {
  padding: .8rem .95rem;
  background: #fff;
}

.service-special__faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
  font-weight: 900;
  line-height: .94;
}

.service-special__faq-item summary::-webkit-details-marker {
  display: none;
}

.service-special__final-cta {
  padding: clamp(1rem, 2.4vw, 1.8rem);
  background:
    linear-gradient(145deg, rgba(60, 161, 153, .12), rgba(150, 72, 144, .12)),
    #fff;
}

.service-special__final-cta p {
  margin: .8rem 0 0;
  color: var(--gray);
  max-width: 52ch;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  line-height: 1.14;
}

.service-special__next-links {
  margin-top: 1.05rem;
  display: grid;
  gap: .7rem;
}

.service-special__next-link {
  display: grid;
  gap: .32rem;
  padding: .66rem .75rem;
  background: #fff;
  box-shadow: 6px 6px 0 0 var(--dark);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}

.service-special__next-link:hover,
.service-special__next-link:focus-visible {
  background: var(--dark);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 0 var(--secondary);
}

.service-special__next-link span {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
}

.service-special__next-link strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.1rem, 2.7vw, 1.6rem);
  text-transform: uppercase;
  font-style: italic;
  line-height: .95;
}

.service-special--ia-generativa .service-special__hero-copy {
  background:
    radial-gradient(circle at 16% 18%, rgba(150, 72, 144, .16), transparent 58%),
    radial-gradient(circle at 88% 95%, rgba(60, 161, 153, .18), transparent 45%),
    #fff;
}

.service-special--ia-generativa .service-special__impact-card strong {
  color: var(--secondary);
}

@media (min-width: 780px) {
  .service-special__hero-grid {
    grid-template-columns: minmax(0, 6.6fr) minmax(0, 5.4fr);
    gap: 1.5rem;
  }

  .service-special__impact-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-special__pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-special__process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-special__benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-special__proof-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 3.5fr) minmax(0, 3.5fr);
    align-items: start;
  }

  .service-special__scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-special__use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-special__next-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1160px) {
  .service-special__pain-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .service-special__pain-mock {
    grid-column: span 2;
    grid-row: span 2;
  }

  .service-special__process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-special__process-mock {
    margin-top: 1rem;
    max-width: 860px;
  }

  .service-special__hero-copy {
    padding: 1.5rem;
  }
}

@media (max-width: 779px) {
  .service-special__hero-cta .btn {
    width: 100%;
  }

  .service-special__impact-card strong {
    font-size: clamp(1.8rem, 11vw, 2.7rem);
  }
}

@media (min-width: 780px) {
  .hero {
    display: flex;
    align-items: stretch;
  }
  .hero .container {
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: calc(100svh - var(--hero-pad-top) - var(--hero-pad-bottom));
  }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: 6.25fr 5.75fr; min-height: 100%; align-items: stretch; flex: 1 1 auto; }
  .hero-grid > [data-reveal]:first-child {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    padding-left: 0;
  }
  .hero-grid > [data-reveal]:last-child {
    justify-self: end;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: none;
  }

  .hero-quote-stack > p {
    max-width: 100%;
  }
  .hero-quote-stack {
    width: 100%;
    min-height: 0;
    height: auto;
    align-self: center;
    align-items: flex-end;
    text-align: right;
    justify-content: flex-start;
  }
  .hero-quote-stack.is-revealed,
  .has-reveal .hero-quote-stack.is-revealed {
    width: 100%;
    min-height: 0;
    height: auto;
    align-self: center;
    align-items: flex-end;
    text-align: right;
    justify-content: center;
  }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
  .service-row { grid-template-columns: 150px minmax(0, 1fr); gap: 1.2rem; }
  .services-hub__item { grid-template-columns: 5fr 7fr; gap: 2rem; }
  .services-hub__item.is-reverse .services-hub__intro { order: 2; }
  .services-hub__item.is-reverse .services-hub__detail { order: 1; }
  .services-hub__sticky { position: sticky; top: 7.5rem; }
}

@media (min-width: 1120px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 1119px) {
  .header-cta { display: none; }
  .site-header {
    top: .45rem;
    width: min(1720px, 97vw);
  }
  .hero-cover-meta {
    gap: .5rem;
  }
  .hero-year-badge {
    min-width: 98px;
    min-height: 48px;
    font-size: .74rem;
  }
  .hero-id-cloud span {
    opacity: .1;
  }
}

@media (max-width: 779px) {
  .site-header__bar {
    gap: .7rem;
    padding: .72rem .78rem;
  }

  .brand {
    font-size: clamp(1.55rem, 8.2vw, 2rem);
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }

  .mobile-menu {
    padding: 6.2rem 6vw 2.2rem;
  }

  .mobile-menu .menu > .menu-item > a {
    text-align: center;
    margin-bottom: .9rem;
  }

  .mobile-menu .sub-menu {
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
    text-align: center;
  }

  .hero {
    padding: calc(var(--header-offset) + 1.3rem) 0 2.6rem;
  }

  .hero .container {
    text-align: center;
  }

  .hero-grid {
    padding-inline: clamp(1rem, 9.4vw, 3.3rem);
  }

  .hero-cover-meta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-brand-masthead {
    margin-inline: auto;
  }

  .hero-kicker {
    margin-inline: auto;
  }

  .hero-title {
    justify-items: center;
    gap: .3rem;
  }

  .hero-title__line {
    margin-inline: auto;
    font-size: clamp(2.05rem, 13.2vw, 3.2rem);
    line-height: .78;
  }

  .hero-title__line--accent::after {
    width: 1.45rem;
  }

  .hero p {
    margin-inline: auto;
    max-width: 26ch;
    line-height: 1.04;
    font-size: clamp(1rem, 5.1vw, 1.34rem);
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-quote-stack {
    gap: .72rem;
  }

  .hero-editorial-stack {
    justify-items: center;
    margin-bottom: .1rem;
  }

  .speech-bubble {
    transform: none !important;
  }

  .hero-pulse-strip {
    transform: none;
  }

  .home .section-head {
    text-align: center;
  }

  .home .section-subtitle {
    margin-inline: auto;
  }

  .lab-bg-flask {
    right: -7rem;
    width: clamp(230px, 72vw, 360px);
    height: clamp(300px, 88vw, 500px);
    opacity: .11;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
