@charset "UTF-8";

:root {
  --brand: #50cba2;
  --brand-2: #9be2cb;
  --brand-pale: #ebf8f4;
  --teal: #267c87;
  --ink: #061b20;
  --ink-soft: #1d373d;
  --muted: #61757b;
  --line: #dce8e4;
  --surface: #f5f9f7;
  --white: #fff;
  --shadow: 0 28px 80px rgba(6, 27, 32, .12);
  --shadow-soft: 0 14px 44px rgba(6, 27, 32, .08);
  --radius: 34px;
  --header-h: 88px;
  --pad: clamp(20px, 5vw, 80px);
  --max: 1460px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--white); font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--brand-2); }
:focus-visible { outline: 3px solid rgba(38,124,135,.55); outline-offset: 4px; }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; border-radius: 999px; color: #fff; background: var(--ink); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { margin-bottom: .45em; line-height: .98; letter-spacing: -.048em; }
h1 { font-size: clamp(3.4rem, 7.1vw, 8.2rem); font-weight: 650; }
h2 { font-size: clamp(2.65rem, 5.2vw, 6.2rem); font-weight: 630; }
h3 { font-size: clamp(1.55rem, 2.7vw, 3.15rem); font-weight: 650; }
em { font-family: Georgia, "Times New Roman", serif; color: var(--teal); font-weight: 400; letter-spacing: -.06em; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 1.45vw, 1.32rem); }
.eyebrow { margin: 0 0 17px; color: var(--teal); font-size: .72rem; font-weight: 800; line-height: 1.2; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: #b4f2df; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: .9rem; font-weight: 760; transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease; }
.button:hover { transform: translateY(-2px); }
.button--dark { color: #fff; background: var(--ink); box-shadow: 0 12px 28px rgba(6,27,32,.16); }
.button--dark:hover { background: #124650; box-shadow: 0 18px 38px rgba(6,27,32,.2); }
.button--light { color: var(--ink); background: #fff; }
.button--light:hover { background: var(--brand-pale); }
.button--ghost { color: var(--ink); background: transparent; border-color: var(--line); }
.button--ghost:hover { background: var(--brand-pale); border-color: var(--brand-2); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .92rem; font-weight: 730; }
.text-link span,.text-link b { transition: transform .3s var(--ease); }
.text-link:hover span,.text-link:hover b { transform: translate(3px,-2px); }
.text-link--light { color: #fff; border-color: rgba(255,255,255,.28); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 32px; }

.reveal { opacity: 1; transform: none; }
.motion-enabled .reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.motion-enabled .reveal.is-visible { opacity: 1; transform: none; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-h); color: var(--ink); background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(220,232,228,.78); backdrop-filter: blur(18px) saturate(145%); transition: box-shadow .3s ease, background .3s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.97); box-shadow: 0 10px 34px rgba(6,27,32,.07); }
.scroll-progress { position: absolute; inset: auto 0 -1px; height: 2px; overflow: hidden; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,var(--teal),var(--brand)); transform: scaleX(0); transform-origin: left; }
.header-inner { width: min(calc(100% - (var(--pad) * 2)), var(--max)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand { width: clamp(150px, 12vw, 180px); height: 100%; display: flex; align-items: center; flex: 0 0 auto; padding-block: 14px; }
.brand img { width: auto; height: 100%; max-width: 100%; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); }
.main-nav > a:not(.nav-cta) { position: relative; color: #3f565c; font-size: .88rem; font-weight: 650; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 100%; bottom: -9px; left: 0; height: 1px; background: var(--ink); transition: right .3s var(--ease); }
.main-nav > a:hover::after,.main-nav > a.is-active::after { right: 0; }
.main-nav > a.is-active { color: var(--ink); }
.nav-cta { min-height: 42px; display: inline-flex; align-items: center; gap: 10px; padding: 0 17px; border-radius: 999px; background: var(--brand-pale); font-size: .86rem; font-weight: 760; transition: background .25s ease, transform .25s var(--ease); }
.nav-cta:hover { background: var(--brand-2); transform: translateY(-1px); }
.menu-button { display: none; width: 46px; height: 46px; padding: 12px; border: 0; background: transparent; }
.menu-button span { display: block; height: 1px; margin: 7px 0; background: var(--ink); transition: transform .3s ease; }

main { min-height: 70vh; }
.home-hero { width: min(100%, 1700px); min-height: max(720px, 100svh); margin: 0 auto; padding: calc(var(--header-h) + clamp(24px, 2.2vw, 38px)) var(--pad) clamp(62px, 7vw, 96px); display: grid; grid-template-columns: minmax(0,.94fr) minmax(430px,1.06fr); align-items: center; gap: clamp(38px, 7vw, 110px); }
.home-hero__copy { position: relative; z-index: 2; }
.home-hero__copy h1 { max-width: 850px; font-size: clamp(3.8rem, 6.6vw, 7.7rem); }
.home-hero__visual { position: relative; min-height: 610px; isolation: isolate; }
.hero-image { position: absolute; margin: 0; overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image--primary { inset: 2% 0 2% 10%; border-radius: 46% 46% 34px 34px / 22% 22% 34px 34px; }
.hero-image--primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 50%,rgba(4,24,29,.18)); }
.hero-image--secondary { z-index: 2; left: 0; bottom: 0; width: 39%; height: 32%; border: 8px solid #fff; border-radius: 26px; }
.hero-badge { position: absolute; z-index: 3; right: -2%; bottom: 4%; display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 18px; color: #fff; background: var(--ink); box-shadow: var(--shadow-soft); font-size: .72rem; font-weight: 700; line-height: 1.35; }
.hero-badge i { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 7px rgba(80,203,162,.16); }

.intro-band { width: min(calc(100% - (var(--pad) * 2)), var(--max)); margin: 0 auto; padding: clamp(80px, 11vw, 170px) 0; display: grid; grid-template-columns: .45fr 1.55fr; gap: clamp(35px, 8vw, 130px); border-top: 1px solid var(--line); }
.intro-band p { color: var(--muted); font-size: .96rem; }
.intro-band h2 { max-width: 1100px; margin: 0; }

.solutions-section { padding: clamp(90px, 11vw, 170px) 0; overflow: hidden; background: radial-gradient(circle at 10% 10%,rgba(80,203,162,.13),transparent 26%), radial-gradient(circle at 90% 80%,rgba(38,124,135,.1),transparent 28%), var(--surface); }
.solutions-section--catalog { padding-top: calc(var(--header-h) + 60px); }
.section-heading { width: min(calc(100% - (var(--pad) * 2)), var(--max)); margin: 0 auto clamp(45px, 7vw, 90px); display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); align-items: end; gap: clamp(32px, 7vw, 100px); }
.section-heading h2 { max-width: 1050px; margin: 0; }
.section-heading > p { max-width: 520px; margin: 0; color: var(--muted); }

.carousel { position: relative; }
.carousel-head { width: min(calc(100% - (var(--pad) * 2)), var(--max)); margin: 0 auto 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.carousel-status { display: flex; align-items: center; gap: 10px; margin: 0; font-size: .85rem; color: var(--muted); }
.carousel-status strong { color: var(--ink); font-size: 1.45rem; }
.carousel-controls { display: flex; gap: 9px; }
.carousel-controls button { width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.76); cursor: pointer; transition: background .25s ease, transform .25s var(--ease), border-color .25s ease; }
.carousel-controls button:hover { background: #fff; border-color: var(--brand); transform: translateY(-2px); }
.carousel-viewport { overflow: visible; }
.carousel-track { display: flex; align-items: stretch; gap: clamp(18px, 2vw, 30px); padding: 14px max(var(--pad), calc((100vw - var(--max)) / 2)) 34px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scroll-padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2)); scrollbar-width: none; cursor: grab; touch-action: pan-x pan-y; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.solution-slide { flex: 0 0 min(1120px, 82vw); min-height: 630px; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr); overflow: hidden; scroll-snap-align: center; scroll-snap-stop: always; border: 1px solid rgba(220,232,228,.9); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); opacity: .62; transform: scale(.955); transition: opacity .45s ease, transform .55s var(--ease), box-shadow .45s ease; }
.solution-slide.is-active { opacity: 1; transform: scale(1); box-shadow: var(--shadow); }
.solution-slide__media { position: relative; min-width: 0; overflow: hidden; background: #d8eee7; }
.solution-slide__media > img:first-child { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.solution-slide.is-active .solution-slide__media > img:first-child { transform: scale(1.025); }
.solution-slide__media::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(180deg,transparent,rgba(4,24,29,.48)); }
.media-mark { position: absolute; z-index: 2; top: 22px; right: 22px; width: 48px; height: 48px; padding: 9px; border-radius: 14px; background: rgba(255,255,255,.84); backdrop-filter: blur(10px); }
.solution-slide__number { position: absolute; z-index: 2; left: 25px; bottom: 18px; color: rgba(255,255,255,.9); font-size: clamp(4.6rem, 8vw, 8.2rem); font-weight: 250; line-height: .85; letter-spacing: -.08em; }
.solution-slide__body { min-width: 0; padding: clamp(34px, 4vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.solution-slide__body h3 { max-width: 650px; margin-bottom: 22px; }
.solution-slide__body > p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-size: clamp(.98rem, 1.15vw, 1.12rem); }
.slide-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 26px; }
.carousel-tabs { width: min(calc(100% - (var(--pad) * 2)), var(--max)); margin: 12px auto 0; display: flex; gap: 8px; overflow-x: auto; padding: 5px 0 10px; scrollbar-width: none; }
.carousel-tabs::-webkit-scrollbar { display: none; }
.carousel-tab { flex: 0 0 auto; min-width: 145px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid transparent; border-radius: 16px; color: var(--muted); background: transparent; cursor: pointer; text-align: left; transition: color .25s ease, background .25s ease, border-color .25s ease; }
.carousel-tab span { color: var(--teal); font-size: .68rem; font-weight: 800; }
.carousel-tab b { font-size: .78rem; font-weight: 700; white-space: nowrap; }
.carousel-tab:hover,.carousel-tab.is-active { color: var(--ink); background: #fff; border-color: var(--line); }
.carousel-help { width: min(calc(100% - (var(--pad) * 2)), var(--max)); margin: 9px auto 0; color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.story-section {
  --story-progress: 0;
  position: relative;
  min-height: 195svh;
  background: #fff;
}
.story-sticky {
  position: sticky;
  top: var(--header-h);
  width: min(100%,1700px);
  height: calc(100svh - var(--header-h));
  margin: 0 auto;
  padding: clamp(30px,5vw,70px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(430px,.9fr);
  align-items: center;
  gap: clamp(45px,7vw,110px);
}
.story-visual {
  position: relative;
  height: min(72vh,740px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.story-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(80,203,162,.24);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
}
.story-image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.055);
  filter: saturate(.78) brightness(.94);
  transition: opacity .72s ease, transform 1.05s var(--ease), filter .72s ease;
}
.story-image.is-active { opacity: 1; transform: scale(1); filter: saturate(1) brightness(1); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-index {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border-radius: 16px;
  color: #fff;
  background: rgba(6,27,32,.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 35px rgba(3,22,26,.2);
}
.story-index strong { font-size: 1.35rem; }
.story-index span { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.story-heading h2 { max-width: 630px; }
.story-instruction {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .86rem;
}
.story-instruction::before { content: "↓"; display: inline-block; margin-right: 9px; color: var(--teal); font-weight: 800; }
.story-steps {
  position: relative;
  margin-top: clamp(28px,4vw,56px);
  padding-left: 12px;
}
.story-steps::before,.story-steps::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 31px;
  bottom: 31px;
  left: 30px;
  width: 2px;
  border-radius: 99px;
}
.story-steps::before { background: var(--line); }
.story-steps::after {
  background: linear-gradient(180deg,var(--brand),var(--teal));
  transform: scaleY(var(--story-progress));
  transform-origin: top;
  box-shadow: 0 0 18px rgba(80,203,162,.48);
  transition: transform .18s linear;
}
.story-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  margin: 5px 0;
  padding: 20px 20px;
  border: 1px solid transparent;
  border-radius: 20px;
  opacity: .27;
  transform: translateX(0);
  cursor: pointer;
  outline: none;
  transition: opacity .38s ease, transform .45s var(--ease), background .38s ease, border-color .38s ease, box-shadow .38s ease;
}
.story-step::after {
  content: "";
  position: absolute;
  inset: 8px -10px;
  z-index: -1;
  border-radius: 24px;
  background: radial-gradient(circle at 18% 50%,rgba(80,203,162,.2),transparent 68%);
  opacity: 0;
  transition: opacity .38s ease;
}
.story-step + .story-step { border-top-color: rgba(8,45,52,.06); }
.story-step.is-past { opacity: .57; }
.story-step.is-active {
  opacity: 1;
  transform: translateX(10px);
  background: linear-gradient(110deg,rgba(80,203,162,.13),rgba(255,255,255,.92) 72%);
  border-color: rgba(80,203,162,.32);
  box-shadow: 0 16px 40px rgba(19,92,85,.09);
}
.story-step.is-active::after { opacity: 1; }
.story-step:focus-visible { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(80,203,162,.16); }
.story-step > span {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  align-self: start;
  border-radius: 50%;
  color: var(--teal);
  background: #fff;
  border: 1px solid rgba(24,110,106,.18);
  font-size: .68rem;
  font-weight: 850;
  transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s var(--ease);
}
.story-step.is-past > span { color: #fff; background: var(--teal); border-color: var(--teal); }
.story-step.is-active > span { color: #052127; background: var(--brand); border-color: var(--brand); transform: scale(1.08); box-shadow: 0 0 0 7px rgba(80,203,162,.16); }
.story-step h3 { margin-bottom: 8px; font-size: clamp(1.45rem,1.8vw,2.15rem); }
.story-step p { margin: 0; color: var(--muted); }

.stack-section { padding: clamp(100px,13vw,190px) var(--pad); background: var(--surface); }
.stack-heading { width: min(100%,var(--max)); margin: 0 auto 70px; }
.stack-heading h2 { max-width: 1100px; }
.stack-cards { width: min(100%,1100px); margin: 0 auto; }
.stack-card { position: sticky; top: calc(var(--header-h) + 28px); min-height: 270px; display: grid; grid-template-columns: 100px 1fr; gap: 40px; margin-bottom: 28px; padding: clamp(34px,5vw,68px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.stack-card:nth-child(2) { top: calc(var(--header-h) + 54px); }
.stack-card:nth-child(3) { top: calc(var(--header-h) + 80px); }
.stack-card > span { color: var(--brand); font-size: clamp(3.5rem,7vw,7rem); line-height: .8; letter-spacing: -.08em; }
.stack-card h3 { margin-bottom: 12px; }
.stack-card p { max-width: 620px; margin: 0; color: var(--muted); }

.immersive-cta { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.immersive-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.immersive-cta__shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,20,24,.94),rgba(3,20,24,.3)); }
.immersive-cta__copy { position: relative; z-index: 2; width: min(calc(100% - (var(--pad) * 2)),var(--max)); margin: 0 auto; }
.immersive-cta__copy h2 { max-width: 980px; }
.immersive-cta__copy > p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.74); }

.page-hero,.company-hero,.service-hero,.contact-hero { width: min(100%,1700px); margin: 0 auto; padding: calc(var(--header-h) + clamp(65px,9vw,140px)) var(--pad) clamp(80px,10vw,150px); }
.page-hero { min-height: 78vh; display: grid; grid-template-columns: minmax(0,1.3fr) minmax(260px,.4fr); align-items: end; gap: 70px; }
.page-hero > div > p:last-child { margin-bottom: 0; }
.page-hero aside { padding: 30px 0 6px 34px; border-left: 1px solid var(--line); }
.page-hero aside span { display: block; color: var(--brand); font-size: clamp(6rem,12vw,12rem); font-weight: 250; line-height: .7; letter-spacing: -.09em; }
.page-hero aside p { max-width: 240px; margin: 28px 0 0; color: var(--muted); }
.solution-index { padding: clamp(90px,11vw,160px) var(--pad); }
.solution-index-grid { width: min(100%,var(--max)); margin: 0 auto; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.solution-index-card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; transition: transform .35s var(--ease), box-shadow .35s ease; }
.solution-index-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.solution-index-card figure { position: relative; height: 330px; margin: 0; overflow: hidden; }
.solution-index-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.solution-index-card:hover figure img { transform: scale(1.04); }
.solution-index-card figure span { position: absolute; left: 20px; bottom: 12px; color: #fff; font-size: 4.4rem; font-weight: 250; line-height: .8; }
.solution-index-card > div { padding: 30px; }
.solution-index-card h3 { font-size: clamp(1.9rem,3vw,3.3rem); }
.solution-index-card > div > p:not(.eyebrow) { color: var(--muted); }

.company-hero,.service-hero { min-height: 100svh; display: grid; grid-template-columns: minmax(0,.92fr) minmax(430px,1.08fr); align-items: center; gap: clamp(45px,8vw,120px); }
.company-hero__media,.service-hero__media { position: relative; height: min(72vh,760px); margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.company-hero__media > img:first-child,.service-hero__media > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.company-hero__media figcaption,.service-hero__media figcaption { position: absolute; z-index: 3; right: 22px; bottom: 22px; left: 22px; padding: 16px 18px; border-radius: 16px; color: #fff; background: rgba(6,27,32,.82); backdrop-filter: blur(12px); font-size: .8rem; font-weight: 700; }
.company-manifesto { padding: clamp(100px,14vw,210px) var(--pad); text-align: center; }
.company-manifesto h2 { max-width: 1250px; margin: 0 auto 30px; }
.company-manifesto > p:last-child { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.principles-section { padding: clamp(90px,10vw,150px) var(--pad); background: var(--surface); }
.principles-grid { width: min(100%,var(--max)); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.principles-grid article { min-height: 340px; padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: #fff; }
.principles-grid article > span { color: var(--teal); font-size: .75rem; font-weight: 800; }
.principles-grid h3 { margin-top: 70px; }
.principles-grid p { color: var(--muted); }
.company-process { width: min(100%,1700px); margin: 0 auto; padding: clamp(100px,12vw,180px) var(--pad); display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: clamp(50px,8vw,120px); }
.company-process__visual { position: sticky; top: calc(var(--header-h) + 30px); height: min(72vh,720px); overflow: hidden; border-radius: var(--radius); }
.company-process__visual img { width: 100%; height: 100%; object-fit: cover; }
.company-process__copy ol { margin: 40px 0 0; padding: 0; list-style: none; }
.company-process__copy li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 28px 0; border-top: 1px solid var(--line); }
.company-process__copy li:last-child { border-bottom: 1px solid var(--line); }
.company-process__copy li > span { color: var(--teal); font-size: .72rem; font-weight: 800; }
.company-process__copy h3 { margin-bottom: 9px; font-size: 2rem; }
.company-process__copy p { margin: 0; color: var(--muted); }
.wide-cta { padding: clamp(100px,13vw,190px) var(--pad); text-align: center; background: var(--brand-pale); }
.wide-cta h2 { max-width: 1200px; margin: 0 auto 38px; }

.contact-hero { min-height: 76vh; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.5fr); align-items: end; gap: 80px; }
.contact-hero ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-hero li { display: grid; grid-template-columns: 40px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.contact-hero li span { color: var(--teal); font-size: .72rem; }
.contact-section { padding: clamp(90px,11vw,160px) var(--pad); display: grid; grid-template-columns: minmax(280px,.55fr) minmax(500px,1fr); gap: clamp(55px,9vw,140px); background: var(--surface); }
.contact-guide,.contact-form { min-width: 0; }
.contact-guide { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; justify-self: end; max-width: 580px; }
.contact-guide h2 { font-size: clamp(2.6rem,4.5vw,5.2rem); }
.contact-guide ul { margin: 36px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-guide li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-guide > p:last-child { color: var(--muted); }
.contact-guide a { color: var(--ink); font-weight: 720; border-bottom: 1px solid var(--ink); overflow-wrap: anywhere; }
.contact-form { width: 100%; max-width: 780px; padding: clamp(30px,5vw,68px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.form-heading { margin-bottom: 35px; }
.form-heading h2 { font-size: clamp(2.4rem,4vw,4.7rem); }
.form-heading > p:last-child { color: var(--muted); }
.form-row { margin-bottom: 24px; }
.form-row label { display: block; margin-bottom: 8px; font-size: .78rem; font-weight: 760; }
.form-row input,.form-row select,.form-row textarea { width: 100%; padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; outline: 0; color: var(--ink); background: var(--surface); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-row textarea { min-height: 170px; resize: vertical; }
.form-row input:focus,.form-row select:focus,.form-row textarea:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(80,203,162,.14); }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.form-actions p { flex: 1 1 240px; max-width: 320px; margin: 0; color: var(--muted); font-size: .75rem; }
.form-status { min-height: 1.5em; margin: 18px 0 0; font-size: .86rem; }
.form-status.is-error { color: #a52d2d; }
.form-status.is-ok { color: #176a50; }

.service-intro { padding: clamp(100px,12vw,180px) var(--pad); display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.72fr); gap: clamp(55px,9vw,140px); }
.service-intro h2 { max-width: 900px; }
.service-intro > div:last-child > p { color: var(--muted); font-size: 1.08rem; }
.service-intro blockquote { margin: 42px 0 0; padding: 28px 0 0 28px; border-top: 1px solid var(--line); border-left: 3px solid var(--brand); font-family: Georgia,"Times New Roman",serif; font-size: clamp(1.35rem,2vw,2.1rem); line-height: 1.35; }
.feature-section { padding: clamp(90px,11vw,160px) var(--pad); display: grid; grid-template-columns: minmax(0,1.05fr) minmax(420px,.95fr); align-items: start; gap: clamp(50px,8vw,120px); background: var(--surface); }
.feature-visual { position: sticky; top: calc(var(--header-h) + 30px); height: min(72vh,720px); overflow: hidden; border-radius: var(--radius); }
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-visual span { position: absolute; left: 24px; bottom: 18px; color: #fff; font-size: clamp(5rem,10vw,10rem); font-weight: 250; line-height: .8; letter-spacing: -.08em; }
.feature-copy h2 { font-size: clamp(2.7rem,4.5vw,5.2rem); }
.feature-copy ul { margin: 50px 0 0; padding: 0; list-style: none; }
.feature-copy li { min-height: 120px; display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 16px; border-top: 1px solid var(--line); }
.feature-copy li:last-child { border-bottom: 1px solid var(--line); }
.feature-copy li span { color: var(--teal); font-size: .72rem; font-weight: 800; }
.feature-copy li p { margin: 0; font-size: 1.2rem; font-weight: 680; }
.process-section,.related-section { padding: clamp(90px,11vw,160px) var(--pad); }
.process-grid { width: min(100%,var(--max)); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-card { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.process-card span { color: var(--teal); font-size: .72rem; font-weight: 800; }
.process-card h3 { margin-top: 80px; font-size: clamp(1.5rem,2vw,2.25rem); }
.related-section { overflow: clip; background: var(--surface); }
.related-track { width: min(100%,var(--max)); max-width: 100%; min-width: 0; contain: inline-size; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.related-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; transition: transform .35s var(--ease), box-shadow .35s ease; }
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.related-card figure { position: relative; height: 260px; margin: 0; overflow: hidden; }
.related-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease); }
.related-card:hover figure img { transform: scale(1.04); }
.related-card figure span { position: absolute; left: 18px; bottom: 10px; color: #fff; font-size: 4rem; font-weight: 250; line-height: .8; }
.related-card > div { padding: 25px; }
.related-card h3 { min-height: 2.1em; font-size: clamp(1.55rem,2.25vw,2.5rem); }
.service-cta { padding: clamp(90px,11vw,160px) var(--pad); display: flex; align-items: end; justify-content: space-between; gap: 60px; color: #fff; background: var(--ink); }
.service-cta > div { max-width: 1000px; }
.service-cta h2 { margin: 0; }
.service-cta .button { flex: 0 0 auto; }

.not-found { width: min(100%,var(--max)); min-height: 100svh; margin: 0 auto; padding: calc(var(--header-h) + 70px) var(--pad) 90px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.not-found > span { color: var(--brand-2); font-size: clamp(8rem,23vw,26rem); font-weight: 800; line-height: .68; letter-spacing: -.1em; }
.not-found h1 { max-width: 920px; }
.not-found > p:not(.eyebrow) { color: var(--muted); }

.site-footer { padding: clamp(85px,10vw,150px) var(--pad) 24px; color: #fff; background: #03161a; }
.footer-main { width: min(100%,var(--max)); margin: 0 auto; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(420px,.9fr); gap: clamp(60px,10vw,150px); padding-bottom: 85px; }
.footer-pitch h2 { max-width: 820px; font-size: clamp(2.9rem,5vw,5.8rem); }
.footer-links { display: grid; grid-template-columns: .55fr 1fr; gap: 45px; }
.footer-links h3 { margin: 0 0 19px; color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links ul { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.74); font-size: .86rem; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { width: min(100%,var(--max)); margin: 0 auto; padding-top: 22px; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 26px; border-top: 1px solid rgba(255,255,255,.13); }
.footer-bottom img { width: 175px; height: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-bottom p,.footer-bottom a { margin: 0; color: rgba(255,255,255,.46); font-size: .72rem; }

@media (max-width: 1120px) {
  :root { --pad: clamp(22px,4vw,50px); }
  .home-hero,.company-hero,.service-hero { grid-template-columns: minmax(0,1fr) minmax(380px,.9fr); gap: 45px; }
  .solution-slide { flex-basis: 88vw; }
  .story-sticky { grid-template-columns: 1fr 1fr; gap: 42px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 74px; --pad: 22px; }
  h1 { font-size: clamp(3.2rem,13vw,5.8rem); }
  h2 { font-size: clamp(2.5rem,10vw,4.6rem); }
  .header-inner { gap: 14px; }
  .brand { width: 140px; padding-block: 12px; }
  .menu-button { position: relative; z-index: 3; display: block; flex: 0 0 46px; border-radius: 50%; cursor: pointer; }
  .menu-button:hover { background: var(--brand-pale); }
  .menu-button span { position: absolute; top: 50%; right: 12px; left: 12px; height: 1.5px; margin: 0; transform-origin: center; }
  .menu-button span:first-child { transform: translateY(-4px); }
  .menu-button span:last-child { transform: translateY(4px); }
  .menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
  body.menu-open .site-header { background: #fff; backdrop-filter: none; }
  body.menu-open .scroll-progress { opacity: 0; }
  .main-nav { position: absolute; z-index: 2; top: 100%; right: 0; left: 0; height: calc(100dvh - var(--header-h)); min-height: calc(100vh - var(--header-h)); padding: clamp(24px,5vh,40px) var(--pad) calc(28px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; overflow-y: auto; overscroll-behavior: contain; visibility: hidden; opacity: 0; transform: translateY(-12px); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 24px 60px rgba(6,27,32,.1); transition: opacity .28s ease, visibility .28s ease, transform .35s var(--ease); }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .main-nav > a:not(.nav-cta) { width: 100%; min-height: 66px; display: flex; align-items: center; padding: 16px 2px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: clamp(1.55rem,7.2vw,2.15rem); font-weight: 620; line-height: 1.08; letter-spacing: -.04em; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .main-nav > a:not(.nav-cta).is-active { color: var(--teal); }
  .nav-cta { width: 100%; min-height: 58px; justify-content: space-between; margin-top: 22px; padding: 0 21px; font-size: 1rem; }

  .home-hero,.company-hero,.service-hero { min-height: auto; padding-top: calc(var(--header-h) + 24px); grid-template-columns: 1fr; }
  .home-hero__copy h1 { font-size: clamp(3.45rem,13.5vw,6rem); }
  .home-hero__visual { min-height: 520px; }
  .hero-image--primary { inset: 0 0 0 7%; }
  .hero-image--secondary { width: 43%; height: 29%; }
  .intro-band,.section-heading,.service-intro { grid-template-columns: 1fr; gap: 24px; }

  .solution-slide { flex-basis: calc(100vw - 32px); min-height: 0; grid-template-columns: 1fr; grid-template-rows: minmax(250px,42vw) auto; }
  .solution-slide__media { min-height: 290px; }
  .solution-slide__body { min-height: 390px; padding: 28px 25px; justify-content: flex-start; }
  .solution-slide__body h3 { font-size: clamp(2.05rem,8.5vw,3.4rem); }
  .slide-actions { margin-top: auto; padding-top: 22px; }
  .carousel-tabs { width: calc(100% - 30px); }
  .carousel-help { display: none; }

  .story-section { min-height: auto; padding: 78px var(--pad) 110px; }
  .story-sticky { position: relative; top: auto; height: auto; padding: 0; display: flex; flex-direction: column; gap: 0; }
  .story-copy { display: contents; }
  .story-heading { order: 1; margin-bottom: 26px; }
  .story-visual { order: 2; position: sticky; z-index: 4; top: calc(var(--header-h) + 10px); width: 100%; height: min(43vh,390px); min-height: 300px; margin-bottom: 28px; box-shadow: 0 18px 48px rgba(7,46,54,.14); }
  .story-steps { order: 3; margin-top: 0; padding-left: 0; }
  .story-steps::before,.story-steps::after { left: 18px; }
  .story-step { min-height: 38vh; grid-template-columns: 42px 1fr; align-content: center; padding: 28px 16px; opacity: .25; }
  .story-step.is-past { opacity: .52; }
  .story-step.is-active { transform: translateX(4px); }
  .story-instruction::before { content: "↕"; }
  .stack-card,.stack-card:nth-child(2),.stack-card:nth-child(3) { position: relative; top: auto; grid-template-columns: 70px 1fr; }
  .immersive-cta { min-height: 720px; align-items: flex-end; padding-bottom: 80px; }
  .immersive-cta__shade { background: linear-gradient(180deg,rgba(3,20,24,.2),rgba(3,20,24,.94)); }

  .page-hero,.contact-hero { min-height: auto; padding-top: calc(var(--header-h) + 70px); grid-template-columns: 1fr; }
  .page-hero aside { padding: 28px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .solution-index-grid,.principles-grid { grid-template-columns: 1fr; }
  .company-hero__media,.service-hero__media { min-height: 470px; height: 60vh; }
  .company-process,.feature-section,.contact-section { grid-template-columns: minmax(0,1fr); }
  .company-process__visual,.feature-visual,.contact-guide { position: relative; top: auto; }
  .company-process__visual,.feature-visual { height: 55vh; min-height: 420px; }
  .contact-guide { justify-self: start; }
  .related-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
  .related-card { flex: 0 0 min(84vw,390px); scroll-snap-align: start; }
  .service-cta { flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: 9px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .home-hero__visual { min-height: 420px; }
  .hero-image--primary { inset: 0 0 0 3%; border-radius: 38% 38% 24px 24px / 18% 18% 24px 24px; }
  .hero-image--secondary { left: -5px; bottom: -8px; border-width: 5px; }
  .hero-badge { right: 0; bottom: 0; padding: 11px 12px; font-size: .64rem; }
  .carousel-head { margin-bottom: 12px; }
  .carousel-controls button { width: 46px; height: 46px; }
  .solution-slide { grid-template-rows: 260px auto; border-radius: 25px; }
  .solution-slide__media { min-height: 260px; }
  .solution-slide__body { min-height: 430px; padding: 24px 20px; }
  .solution-slide__body h3 { font-size: clamp(2rem,9.4vw,3rem); }
  .slide-actions { flex-direction: column; align-items: stretch; }
  .slide-actions .text-link { justify-content: center; }
  .carousel-tab { min-width: 132px; padding: 10px; }
  .story-visual { min-height: 250px; height: 38vh; }
  .stack-card { grid-template-columns: 1fr; gap: 22px; padding: 30px 24px; }
  .stack-card > span { font-size: 4.3rem; }
  .solution-index-card figure { height: 250px; }
  .company-hero__media,.service-hero__media { min-height: 380px; height: 52vh; }
  .principles-grid article { min-height: 290px; }
  .process-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .button { width: 100%; }
  .service-intro blockquote { padding-left: 18px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-pitch h2 { font-size: 2.75rem; }
}


@media (max-width: 420px) {
  :root { --pad: 18px; }
  .brand { width: 132px; }
  .main-nav { padding-top: 20px; }
  .main-nav > a:not(.nav-cta) { min-height: 60px; font-size: clamp(1.45rem,7.7vw,1.9rem); }
  .nav-cta { min-height: 54px; margin-top: 18px; }
  .home-hero { padding-top: calc(var(--header-h) + 20px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal,.motion-enabled .reveal { opacity: 1 !important; transform: none !important; }
}

/* 2026-06-18 · Home propaganda carousel + punto de venta service */
.page-home .home-hero {
  min-height: max(620px, 82svh);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.propaganda-section {
  position: relative;
  z-index: 2;
  padding: clamp(42px, 6vw, 84px) var(--pad) clamp(78px, 10vw, 142px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(80,203,162,.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 50%, #ffffff 100%);
}
.propaganda-section::before {
  content: "";
  position: absolute;
  inset: 10% -12% auto 55%;
  height: 360px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(38,124,135,.16), transparent 68%);
  filter: blur(10px);
}
.propaganda-shell {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
}
.propaganda-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(310px, .52fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}
.propaganda-heading h2 { margin-bottom: 0; }
.propaganda-heading > p {
  align-self: end;
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(.98rem, 1.2vw, 1.15rem);
}
.ad-carousel {
  position: relative;
  isolation: isolate;
}
.ad-carousel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.ad-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}
.ad-status strong {
  color: var(--ink);
  font-size: 1.7rem;
  letter-spacing: -.05em;
}
.ad-controls { display: flex; gap: 9px; }
.ad-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(6,27,32,.06);
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}
.ad-controls button:hover,
.ad-controls button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--brand);
  background: #fff;
}
.ad-stage {
  position: relative;
  min-height: clamp(520px, 52vw, 660px);
  perspective: 1800px;
  outline: none;
}
.ad-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  overflow: hidden;
  border: 1px solid rgba(220,232,228,.92);
  border-radius: 38px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 34px 90px rgba(6,27,32,.14);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 28px, -90px) scale(.86) rotateY(0deg);
  transition: opacity .55s ease, transform .72s var(--ease), filter .55s ease;
  transform-style: preserve-3d;
}
.ad-slide.is-active {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  filter: saturate(1.03);
}
.ad-slide.is-prev {
  z-index: 2;
  opacity: .44;
  transform: translate3d(-11%, 24px, -180px) scale(.86) rotateY(10deg);
  filter: saturate(.75) blur(.2px);
}
.ad-slide.is-next {
  z-index: 3;
  opacity: .5;
  transform: translate3d(11%, 24px, -160px) scale(.88) rotateY(-10deg);
  filter: saturate(.82) blur(.15px);
}
.ad-slide__media {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #e4f3ef;
}
.ad-slide__media > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.ad-slide.is-active .ad-slide__media > img:first-child { transform: scale(1.065); }
.ad-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,24,29,.06), rgba(4,24,29,.02) 48%, rgba(255,255,255,.08));
  pointer-events: none;
}
.ad-slide__mark {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  width: 74px;
  height: 74px;
  object-fit: contain;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(16px);
}
.ad-slide__content {
  position: relative;
  min-width: 0;
  padding: clamp(34px, 4.8vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ad-slide__number {
  position: absolute;
  right: clamp(22px, 3vw, 46px);
  top: clamp(18px, 2.4vw, 34px);
  color: rgba(7,46,54,.1);
  font-size: clamp(5.4rem, 10vw, 10rem);
  line-height: .74;
  letter-spacing: -.09em;
  font-weight: 250;
  user-select: none;
}
.ad-slide__content h3 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.6vw, 5.2rem);
  letter-spacing: -.075em;
}
.ad-slide__content > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
}
.ad-slide__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  align-items: center;
  margin-top: clamp(24px, 3vw, 42px);
}
.ad-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 18px 0 8px;
  scrollbar-width: none;
}
.ad-tabs::-webkit-scrollbar { display: none; }
.ad-tab {
  flex: 0 0 auto;
  min-width: 138px;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  font-size: .78rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.ad-tab span {
  color: var(--teal);
  font-size: .68rem;
}
.ad-tab:hover,
.ad-tab.is-active {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 26px rgba(6,27,32,.06);
}
.ad-tab:focus-visible { outline-offset: 4px; }

@media (max-width: 980px) {
  .page-home .home-hero { min-height: auto; }
  .propaganda-heading { grid-template-columns: 1fr; }
  .ad-stage { min-height: 720px; }
  .ad-slide { grid-template-columns: 1fr; grid-template-rows: 320px auto; }
  .ad-slide__content { justify-content: flex-start; }
}
@media (max-width: 860px) {
  .propaganda-section { padding-top: 30px; }
  .ad-carousel__top { margin-bottom: 12px; }
  .ad-stage { min-height: 0; perspective: none; }
  .ad-slide,
  .ad-slide.is-prev,
  .ad-slide.is-next {
    display: none;
    position: absolute;
    inset: auto;
    opacity: 0;
    transform: none;
    filter: none;
  }
  .ad-slide.is-active {
    display: grid;
    position: relative;
    opacity: 1;
    transform: none;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(255px, 55vw) auto;
    border-radius: 28px;
    min-height: 0;
  }
  .ad-slide__media { min-height: 255px; }
  .ad-slide__content { padding: 26px 22px 30px; }
  .ad-slide__number { top: 14px; right: 18px; font-size: 4.8rem; }
  .ad-slide__content h3 { font-size: clamp(2.15rem, 10vw, 3.45rem); }
  .ad-slide__actions { align-items: stretch; flex-direction: column; }
  .ad-slide__actions .button,
  .ad-slide__actions .text-link { width: 100%; justify-content: center; }
  .ad-tab { min-width: auto; padding: 10px 12px; }
}
@media (max-width: 430px) {
  .propaganda-heading h2 { font-size: clamp(2.35rem, 13vw, 3.6rem); }
  .ad-controls button { width: 46px; height: 46px; }
  .ad-slide.is-active { grid-template-rows: 230px auto; }
  .ad-slide__media { min-height: 230px; }
  .ad-tabs { margin-inline: calc(var(--pad) * -1); padding-left: var(--pad); padding-right: var(--pad); }
}
@media (prefers-reduced-motion: reduce) {
  .ad-slide,
  .ad-slide__media > img:first-child,
  .ad-controls button,
  .ad-tab { transition: none !important; }
}

/* 2026-06-18 · Reconstrucción del index: carrusel publicitario inicial */
.page-home .hero-campaign {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + clamp(20px, 2.6vw, 40px)) var(--pad) clamp(38px, 5vw, 74px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(80, 203, 162, .20), transparent 26%),
    radial-gradient(circle at 18% 88%, rgba(38, 124, 135, .12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbfa 48%, #fff 100%);
}
.page-home .hero-campaign__bg {
  position: absolute;
  inset: var(--header-h) 0 auto;
  height: min(58svh, 560px);
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.42), rgba(255,255,255,.96)),
    repeating-linear-gradient(90deg, rgba(6,27,32,.035) 0 1px, transparent 1px 92px);
  mask-image: linear-gradient(180deg, #000, transparent 100%);
}
.page-home .hero-campaign__grid {
  position: relative;
  z-index: 1;
  width: min(100%, 1540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, .56fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: clamp(32px, 4.6vw, 76px);
}
.page-home .hero-campaign__copy {
  max-width: 560px;
}
.page-home .hero-campaign__copy h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.65vw, 5.9rem);
  line-height: .91;
  letter-spacing: -.078em;
}
.page-home .hero-campaign__copy .lead {
  max-width: 500px;
  font-size: clamp(1rem, 1.16vw, 1.18rem);
}
.page-home .hero-campaign__showcase {
  min-width: 0;
  position: relative;
  padding-top: 4px;
}
.page-home .campaign-label {
  width: min(100%, 720px);
  margin: 0 0 14px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.page-home .campaign-label strong {
  color: var(--teal);
  font-size: .72rem;
}
.page-home .hero-ad-carousel {
  position: relative;
}
.page-home .hero-ad-carousel::before,
.page-home .hero-ad-carousel::after {
  content: "";
  position: absolute;
  inset: auto 7% -22px;
  height: 42px;
  border-radius: 50%;
  background: rgba(6,27,32,.14);
  filter: blur(22px);
  z-index: -1;
}
.page-home .hero-ad-carousel .ad-carousel__top {
  position: absolute;
  z-index: 20;
  left: 22px;
  right: 22px;
  top: 18px;
  margin: 0;
  color: #fff;
  pointer-events: none;
}
.page-home .hero-ad-carousel .ad-status {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(5,23,28,.62);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(16px);
}
.page-home .hero-ad-carousel .ad-status strong { color: #fff; font-size: 1.1rem; }
.page-home .hero-ad-carousel .ad-controls { pointer-events: auto; }
.page-home .hero-ad-carousel .ad-controls button {
  width: 45px;
  height: 45px;
  color: #fff;
  background: rgba(5,23,28,.62);
  border-color: rgba(255,255,255,.22);
  box-shadow: none;
  backdrop-filter: blur(16px);
}
.page-home .hero-ad-stage {
  min-height: clamp(430px, 42vw, 610px);
  perspective: 2000px;
}
.page-home .hero-ad-stage .ad-slide {
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
  border-radius: clamp(26px, 2.7vw, 42px);
  border-color: rgba(218,230,226,.96);
  background: #fff;
  box-shadow: 0 40px 105px rgba(6,27,32,.17);
}
.page-home .hero-ad-stage .ad-slide.is-active {
  transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
}
.page-home .hero-ad-stage .ad-slide.is-prev {
  opacity: .34;
  transform: translate3d(-7.5%, 22px, -210px) scale(.88) rotateY(11deg);
}
.page-home .hero-ad-stage .ad-slide.is-next {
  opacity: .42;
  transform: translate3d(7.5%, 22px, -185px) scale(.9) rotateY(-11deg);
}
.page-home .hero-ad-stage .ad-slide__media::after {
  background: linear-gradient(90deg, rgba(5,23,28,.08), rgba(5,23,28,.02) 45%, rgba(255,255,255,.08));
}
.page-home .hero-ad-stage .ad-slide__mark {
  width: 58px;
  height: 58px;
  left: 20px;
  bottom: 20px;
  padding: 12px;
  border-radius: 19px;
}
.page-home .hero-ad-stage .ad-slide__content {
  padding: clamp(36px, 4.2vw, 64px) clamp(28px, 3.5vw, 54px);
}
.page-home .hero-ad-stage .ad-slide__content h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 3.45vw, 4.45rem);
  line-height: .94;
}
.page-home .hero-ad-stage .ad-slide__content > p:not(.eyebrow) {
  max-width: 470px;
  font-size: clamp(.96rem, 1.08vw, 1.1rem);
}
.page-home .hero-ad-stage .ad-slide__number {
  font-size: clamp(4.8rem, 8.5vw, 8.8rem);
  color: rgba(7,46,54,.075);
}
.page-home .hero-ad-tabs {
  padding-top: 16px;
  padding-bottom: 0;
  justify-content: flex-start;
}
.page-home .hero-ad-tabs .ad-tab {
  min-width: 0;
  padding: 11px 13px;
  border-color: rgba(220,232,228,.68);
  background: rgba(255,255,255,.58);
}
.page-home .hero-campaign__foot {
  position: relative;
  z-index: 1;
  width: min(100%, 1540px);
  margin: clamp(22px, 3vw, 36px) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(7,46,54,.52);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.page-home .hero-campaign__foot i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
}
.page-home .signal-strip {
  padding: clamp(70px, 9vw, 128px) var(--pad);
  text-align: center;
  background: #fff;
}
.page-home .signal-strip h2 {
  width: min(100%, 1050px);
  margin: 0 auto;
  font-size: clamp(2.25rem, 4.6vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.075em;
}
@media (max-width: 1220px) {
  .page-home .hero-campaign__grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }
  .page-home .hero-campaign__copy {
    max-width: 880px;
  }
  .page-home .hero-campaign__copy h1 {
    max-width: 820px;
    font-size: clamp(3.3rem, 7.8vw, 6.3rem);
  }
  .page-home .campaign-label { margin-left: 0; }
}
@media (max-width: 980px) {
  .page-home .hero-campaign {
    min-height: auto;
    padding-top: calc(var(--header-h) + 22px);
  }
  .page-home .hero-ad-stage { min-height: 690px; }
  .page-home .hero-ad-stage .ad-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 330px auto;
  }
}
@media (max-width: 860px) {
  .page-home .hero-campaign {
    padding-bottom: 46px;
  }
  .page-home .hero-campaign__copy h1 {
    font-size: clamp(3rem, 14vw, 5.4rem);
  }
  .page-home .campaign-label {
    align-items: flex-start;
    flex-direction: column;
  }
  .page-home .hero-ad-carousel .ad-carousel__top {
    left: 14px;
    right: 14px;
    top: 12px;
  }
  .page-home .hero-ad-stage {
    min-height: 0;
    perspective: none;
  }
  .page-home .hero-ad-stage .ad-slide.is-active {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 58vw) auto;
  }
  .page-home .hero-ad-stage .ad-slide__content {
    padding: 28px 22px 30px;
  }
  .page-home .hero-ad-stage .ad-slide__content h3 {
    font-size: clamp(2.05rem, 9vw, 3.55rem);
  }
  .page-home .hero-campaign__foot {
    overflow: hidden;
    justify-content: flex-start;
    white-space: nowrap;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  }
}
@media (max-width: 430px) {
  .page-home .hero-campaign__copy .lead { font-size: .98rem; }
  .page-home .hero-actions { align-items: stretch; flex-direction: column; }
  .page-home .hero-actions .button,
  .page-home .hero-actions .text-link { width: 100%; justify-content: center; }
  .page-home .hero-ad-stage .ad-slide.is-active { grid-template-rows: 232px auto; }
  .page-home .hero-ad-tabs { margin-inline: calc(var(--pad) * -1); padding-left: var(--pad); padding-right: var(--pad); }
  .page-home .signal-strip { padding-block: 62px; }
}

/* 2026-06-18 · Pulido final del carrusel inicial: sin texto técnico visible, autoplay estable e imágenes cuidadas */
.page-home .campaign-label {
  width: min(100%, 760px);
  margin-bottom: 16px;
}
.page-home .campaign-label span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-home .campaign-label span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 6px rgba(80, 203, 162, .12);
}
.page-home .campaign-label strong {
  color: rgba(7,46,54,.56);
  letter-spacing: .05em;
}
.page-home .hero-ad-stage {
  min-height: clamp(480px, 42vw, 640px);
}
.page-home .hero-ad-stage .ad-slide {
  display: block;
  min-height: inherit;
  background: #071c21;
}
.page-home .hero-ad-stage .ad-slide__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #071c21;
}
.page-home .hero-ad-stage .ad-slide__media > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
  transform: scale(1.005);
  filter: saturate(1.02) contrast(1.02);
}
.page-home .hero-ad-stage .ad-slide.is-active .ad-slide__media > img:first-child {
  transform: scale(1.018);
}
.page-home .hero-ad-stage .ad-slide__media::after {
  background:
    linear-gradient(90deg, rgba(1,18,22,.88) 0%, rgba(1,18,22,.70) 31%, rgba(1,18,22,.30) 57%, rgba(1,18,22,.14) 76%, rgba(1,18,22,.32) 100%),
    linear-gradient(0deg, rgba(1,18,22,.60) 0%, rgba(1,18,22,.08) 44%, rgba(255,255,255,.04) 100%);
}
.page-home .hero-ad-stage .ad-slide__mark {
  left: auto;
  right: 22px;
  bottom: 22px;
  background: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.58);
}
.page-home .hero-ad-stage .ad-slide__content {
  position: relative;
  z-index: 4;
  width: min(58%, 620px);
  min-height: inherit;
  padding: clamp(76px, 7vw, 106px) clamp(30px, 5vw, 74px) clamp(42px, 5.6vw, 70px);
  color: #fff;
  justify-content: flex-end;
}
.page-home .hero-ad-stage .ad-slide__content .eyebrow {
  color: #9be2cb;
}
.page-home .hero-ad-stage .ad-slide__content h3 {
  color: #fff;
  text-shadow: 0 20px 42px rgba(0,0,0,.28);
}
.page-home .hero-ad-stage .ad-slide__content > p:not(.eyebrow) {
  color: rgba(255,255,255,.82);
}
.page-home .hero-ad-stage .ad-slide__number {
  top: auto;
  right: auto;
  left: clamp(28px, 5vw, 72px);
  bottom: clamp(18px, 2.8vw, 34px);
  color: rgba(255,255,255,.12);
  text-shadow: none;
}
.page-home .hero-ad-stage .ad-slide__actions .button--dark {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
}
.page-home .hero-ad-stage .ad-slide__actions .button--dark:hover,
.page-home .hero-ad-stage .ad-slide__actions .button--dark:focus-visible {
  background: #effcf8;
}
.page-home .hero-ad-stage .ad-slide__actions .text-link {
  color: #fff;
}
.page-home .hero-ad-stage .ad-slide__actions .text-link::after {
  background: rgba(255,255,255,.46);
}
.page-home .hero-ad-carousel .ad-status {
  background: rgba(1,18,22,.54);
}
.page-home .hero-ad-tabs .ad-tab {
  background: rgba(255,255,255,.74);
}
.page-home .hero-ad-tabs .ad-tab.is-active {
  border-color: rgba(80,203,162,.58);
  box-shadow: 0 12px 28px rgba(80,203,162,.13);
}

@media (max-width: 980px) {
  .page-home .hero-ad-stage {
    min-height: 620px;
  }
  .page-home .hero-ad-stage .ad-slide {
    display: none;
    min-height: 620px;
  }
  .page-home .hero-ad-stage .ad-slide.is-active {
    display: block;
    min-height: 620px;
  }
  .page-home .hero-ad-stage .ad-slide__content {
    width: min(78%, 660px);
    min-height: 620px;
  }
}
@media (max-width: 860px) {
  .page-home .campaign-label strong {
    display: none;
  }
  .page-home .hero-ad-stage,
  .page-home .hero-ad-stage .ad-slide,
  .page-home .hero-ad-stage .ad-slide.is-active,
  .page-home .hero-ad-stage .ad-slide__content {
    min-height: 650px;
  }
  .page-home .hero-ad-stage .ad-slide__content {
    width: 100%;
    padding: 74px 24px 34px;
  }
  .page-home .hero-ad-stage .ad-slide__media::after {
    background:
      linear-gradient(180deg, rgba(1,18,22,.12) 0%, rgba(1,18,22,.36) 36%, rgba(1,18,22,.92) 100%),
      linear-gradient(90deg, rgba(1,18,22,.46), rgba(1,18,22,.08));
  }
  .page-home .hero-ad-stage .ad-slide__media > img:first-child {
    object-position: var(--mobile-focus-x, var(--focus-x, 50%)) var(--mobile-focus-y, var(--focus-y, 50%));
  }
}
@media (max-width: 430px) {
  .page-home .hero-ad-stage,
  .page-home .hero-ad-stage .ad-slide,
  .page-home .hero-ad-stage .ad-slide.is-active,
  .page-home .hero-ad-stage .ad-slide__content {
    min-height: 610px;
  }
  .page-home .hero-ad-stage .ad-slide__content h3 {
    font-size: clamp(2rem, 8.8vw, 3.15rem);
  }
  .page-home .hero-ad-stage .ad-slide__content > p:not(.eyebrow) {
    font-size: .98rem;
  }
  .page-home .hero-ad-stage .ad-slide__number {
    left: 24px;
    bottom: 22px;
    font-size: 4.2rem;
  }
  .page-home .hero-ad-stage .ad-slide__mark {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }
}

/* Ajuste visual adicional: imagen más visible y número sin interferir con llamadas a la acción */
.page-home .hero-ad-stage .ad-slide__media::after {
  background:
    linear-gradient(90deg, rgba(1,18,22,.78) 0%, rgba(1,18,22,.62) 31%, rgba(1,18,22,.24) 56%, rgba(1,18,22,.08) 76%, rgba(1,18,22,.16) 100%),
    linear-gradient(0deg, rgba(1,18,22,.42) 0%, rgba(1,18,22,.06) 46%, rgba(255,255,255,.04) 100%);
}
.page-home .hero-ad-stage .ad-slide__number {
  left: auto;
  right: clamp(26px, 4vw, 56px);
  top: auto;
  bottom: clamp(22px, 3vw, 42px);
  color: rgba(255,255,255,.10);
}
.page-home .hero-ad-stage .ad-slide__mark {
  top: 86px;
  bottom: auto;
}
@media (max-width: 860px) {
  .page-home .hero-ad-stage .ad-slide__media::after {
    background:
      linear-gradient(180deg, rgba(1,18,22,.04) 0%, rgba(1,18,22,.26) 35%, rgba(1,18,22,.88) 100%),
      linear-gradient(90deg, rgba(1,18,22,.34), rgba(1,18,22,.06));
  }
  .page-home .hero-ad-stage .ad-slide__number {
    right: 22px;
    bottom: 22px;
  }
  .page-home .hero-ad-stage .ad-slide__mark {
    top: 72px;
    right: 16px;
  }
}

/* Ajuste de lectura: títulos largos dentro del anuncio sin cortes ni saturación visual */
.page-home .hero-ad-stage .ad-slide__content {
  justify-content: center;
  padding-top: clamp(72px, 6.4vw, 96px);
  padding-bottom: clamp(58px, 5.2vw, 82px);
}
.page-home .hero-ad-stage .ad-slide__content h3 {
  font-size: clamp(2.05rem, 3.05vw, 4rem);
  line-height: .96;
  max-width: 585px;
}
.page-home .hero-ad-stage .ad-slide__actions {
  margin-top: clamp(20px, 2.5vw, 34px);
}
.page-home .hero-ad-stage .ad-slide__number {
  bottom: clamp(18px, 2.2vw, 30px);
}
@media (max-width: 860px) {
  .page-home .hero-ad-stage .ad-slide__content {
    justify-content: flex-end;
    padding-bottom: 32px;
  }
  .page-home .hero-ad-stage .ad-slide__content h3 {
    font-size: clamp(1.95rem, 8.1vw, 3.1rem);
  }
}
