/* =========================================================
   Blockline Premium Static Site v2
   Dark editorial system inspired by the G-Mesh page.
   Pure CSS/JS, no framework dependency.
========================================================= */
:root {
  --ink: #08090b;
  --ink-2: #101216;
  --ink-3: #171a20;
  --paper: #f5f0e8;
  --paper-2: #ebe2d5;
  --muted: #a9a29a;
  --muted-2: #6f6a63;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(0, 0, 0, 0.12);
  --red: #c61f29;
  --red-2: #8d1118;
  --aqua: #6bc7c2;
  --gold: #d5b56f;
  --white: #fff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(calc(100% - clamp(32px, 6vw, 88px)), 1240px);
  --ease: cubic-bezier(0.2, 0.82, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--paper);
  background: var(--ink);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
::selection {
  background: rgba(198, 31, 41, 0.42);
  color: #fff;
}

.page-shell {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(198, 31, 41, 0.18),
      transparent 30vw
    ),
    linear-gradient(180deg, #08090b 0%, #101216 48%, #08090b 100%);
}
.page-shell.light-tail {
  background: linear-gradient(180deg, #08090b 0 70vh, #f5f0e8 70vh 100%);
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  padding: clamp(74px, 10vw, 145px) 0;
  position: relative;
}
.section.tight {
  padding: clamp(56px, 8vw, 105px) 0;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 240, 232, 0.74);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}
.kicker:before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.18));
}
.kicker.dark {
  color: rgba(8, 9, 11, 0.62);
}
.kicker.dark:before {
  background: linear-gradient(90deg, var(--red), rgba(0, 0, 0, 0.16));
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.58);
  font-weight: 700;
}
.h1,
.h2,
.h3 {
  margin: 0;
  letter-spacing: -0.045em;
  font-weight: 650;
  line-height: 1.02;
  text-wrap: balance;
}
.h1 {
  font-size: clamp(42px, 7vw, 82px);
  max-width: 980px;
}
.h2 {
  font-size: clamp(34px, 5.1vw, 62px);
  max-width: 980px;
}
.h3 {
  font-size: clamp(24px, 3vw, 38px);
}
.lead {
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.48;
  color: rgba(245, 240, 232, 0.78);
  max-width: 760px;
  margin: 0;
}
.text {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.68;
  color: rgba(245, 240, 232, 0.68);
  margin: 0;
}
.text.dark,
.lead.dark {
  color: rgba(8, 9, 11, 0.68);
}
.small {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.58);
}
.dark-area {
  background: #08090b;
  color: var(--paper);
}
.light-area {
  background: var(--paper);
  color: var(--ink);
}
.noise:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  transition:
    height 0.35s var(--ease),
    background 0.35s var(--ease),
    border 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-open {
  height: 76px;
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-inner {
  width: min(calc(100% - 36px), 1360px);
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  height: 38px;
  max-width: 190px;
  object-fit: contain;
}
.brand .brand-logo-dark {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 40px);
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 232, 0.72);
  transition: color 0.22s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform 0.28s var(--ease),
    background 0.28s var(--ease),
    border 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.header-cta:hover,
.btn:hover {
  background: rgba(198, 31, 41, 0.92);
  border-color: rgba(198, 31, 41, 0.92);
  box-shadow: 0 18px 44px rgba(198, 31, 41, 0.18);
}
.btn.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn.secondary {
  background: transparent;
}
.btn.dark {
  color: #111;
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.04);
}
.btn.dark:hover {
  color: #fff;
}
.btn.text-link {
  border: 0;
  background: transparent;
  padding: 0;
  min-height: auto;
  color: rgba(245, 240, 232, 0.72);
}
.btn.text-link:hover {
  box-shadow: none;
  color: #fff;
  transform: none;
  background: transparent;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s var(--ease);
}
.menu-toggle span:first-child {
  transform: translateY(-5px);
}
.menu-toggle span:last-child {
  transform: translateY(5px);
}
.menu-toggle.is-open span:first-child {
  transform: rotate(45deg);
}
.menu-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(8, 9, 11, 0.96);
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  padding: 118px 28px 36px;
  overflow: auto;
}
.mobile-panel.is-open {
  transform: translateY(0);
}
.mobile-nav {
  display: grid;
  gap: 20px;
}
.mobile-nav a {
  font-size: clamp(28px, 9vw, 44px);
  letter-spacing: -0.04em;
  font-weight: 650;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-panel-foot {
  margin-top: 42px;
  display: grid;
  gap: 16px;
  color: rgba(245, 240, 232, 0.62);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 128px 0 clamp(38px, 6vw, 72px);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06) brightness(0.72);
  transform: scale(1.05);
}
.hero-media:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 9, 11, 0.94) 0%,
      rgba(8, 9, 11, 0.76) 38%,
      rgba(8, 9, 11, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(8, 9, 11, 0.96), transparent 48%),
    radial-gradient(
      circle at 68% 35%,
      rgba(198, 31, 41, 0.18),
      transparent 30vw
    );
}
.hero-redline {
  position: absolute;
  z-index: 2;
  right: 8vw;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(198, 31, 41, 0.9),
    transparent
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: clamp(34px, 5vw, 70px);
}
.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(36px, 7vw, 92px);
  align-items: end;
}
.hero-copy {
  display: grid;
  gap: 26px;
}
.hero-title {
  margin-top: 12px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.hero-aside {
  display: grid;
  gap: 14px;
  align-self: end;
}
.signal-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(8, 9, 11, 0.45);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}
.signal-card strong {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}
.signal-card span {
  display: block;
  margin-top: 8px;
  color: rgba(245, 240, 232, 0.62);
  font-size: 14px;
  line-height: 1.55;
}
.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  gap: 20px;
}
.rail-item {
  display: grid;
  gap: 8px;
}
.rail-item b {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rail-item span {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(245, 240, 232, 0.58);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}
.intro-copy {
  display: grid;
  gap: 24px;
}
.intro-copy .lead {
  max-width: 960px;
}
.intro-copy .text {
  max-width: 1040px;
}
.dark-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.065),
    rgba(255, 255, 255, 0.025)
  );
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow);
}
.product-lanes {
  display: grid;
  gap: 18px;
  margin-top: clamp(38px, 5vw, 62px);
}
.product-lane {
  display: grid;
  grid-template-columns:
    minmax(96px, 0.28fr) minmax(220px, 0.72fr) minmax(440px, 1.65fr)
    minmax(160px, 0.38fr);
  gap: clamp(20px, 4vw, 66px);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(24px, 3vw, 34px) 0;
}
.product-lane:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.product-lane .num {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.48);
  letter-spacing: 0.18em;
}
.product-lane h3 {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.04em;
}
.product-lane p {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
  color: rgba(245, 240, 232, 0.66);
}
.product-lane a {
  justify-self: end;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-lane a:hover {
  border-color: var(--red);
  color: #fff;
}

.image-text-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}
.cinema-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: clamp(360px, 48vw, 620px);
  box-shadow: var(--shadow);
  background: #111;
}
.cinema-frame img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.cinema-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 11, 0.52), transparent 50%);
}
.caption-chip {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 9, 11, 0.55);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}
.stack-copy {
  display: grid;
  gap: 24px;
}
.wide-list {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.wide-list li {
  display: grid;
  grid-template-columns: minmax(70px, 0.24fr) minmax(0, 1.76fr);
  gap: clamp(16px, 3vw, 42px);
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.wide-list b {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.wide-list span {
  font-size: 16px;
  line-height: 1.62;
  color: rgba(245, 240, 232, 0.68);
  max-width: none;
  width: 100%;
}
.light-area .wide-list li {
  border-color: rgba(0, 0, 0, 0.11);
}
.light-area .wide-list b {
  color: #111;
}
.light-area .wide-list span {
  color: rgba(8, 9, 11, 0.66);
}

.proof-band {
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  padding: clamp(28px, 5vw, 54px) 0;
}
.proof-grid {
  width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.proof-item {
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.proof-item strong {
  display: block;
  font-size: clamp(26px, 3.4vw, 42px);
  letter-spacing: -0.04em;
}
.proof-item span {
  display: block;
  margin-top: 8px;
  color: rgba(245, 240, 232, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.scene-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
  grid-column: span 4;
}
.scene-card.is-wide {
  grid-column: span 8;
}
.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: saturate(0.86) contrast(1.05);
}
.scene-card:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 9, 11, 0.86),
    rgba(8, 9, 11, 0.2) 64%,
    rgba(8, 9, 11, 0.03)
  );
}
.scene-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 12px;
}
.scene-content h3 {
  font-size: clamp(25px, 3vw, 39px);
  letter-spacing: -0.04em;
  margin: 0;
}
.scene-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.58;
}
.scene-content a {
  width: max-content;
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  padding-bottom: 5px;
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.timeline-row {
  display: grid;
  grid-template-columns: minmax(90px, 0.32fr) minmax(260px, 0.84fr) minmax(
      460px,
      1.84fr
    );
  gap: clamp(20px, 4vw, 70px);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: start;
}
.timeline-row .step {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 232, 0.5);
}
.timeline-row h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.timeline-row p {
  margin: 0;
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.64;
  max-width: none;
  width: 100%;
}

.tech-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.tech-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.tech-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.86);
  transform: scale(1.04);
  transition:
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
}
.tech-card:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 9, 11, 0.93),
    rgba(8, 9, 11, 0.36) 58%,
    rgba(8, 9, 11, 0.1)
  );
}
.tech-card:hover img {
  transform: scale(1.09);
  filter: brightness(0.78) saturate(0.94);
}
.tech-card-body {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 16px;
}
.tech-card-body h3 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.04em;
}
.tech-card-body p {
  margin: 0;
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.6;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.tech-tags span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(245, 240, 232, 0.72);
  font-size: 12px;
}
.tech-card-body a {
  width: max-content;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  padding-bottom: 5px;
}

.cta-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #101216;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}
.cta-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(198, 31, 41, 0.28),
      transparent 34vw
    ),
    linear-gradient(90deg, rgba(8, 9, 11, 0.92), rgba(8, 9, 11, 0.62));
  z-index: 1;
}
.cta-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.7);
}
.cta-copy,
.cta-data {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 56px);
}
.cta-copy {
  display: grid;
  gap: 22px;
}
.cta-data {
  display: grid;
  gap: 14px;
}
.mini-data {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 18px;
}
.mini-data b {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.mini-data span {
  display: block;
  margin-top: 5px;
  color: rgba(245, 240, 232, 0.6);
  font-size: 14px;
  line-height: 1.5;
}

.page-hero {
  min-height: 76svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 132px 0 clamp(54px, 7vw, 92px);
  overflow: hidden;
}
.page-hero-media {
  position: absolute;
  inset: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.58);
  transform: scale(1.04);
}
.page-hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 9, 11, 0.95),
      rgba(8, 9, 11, 0.55) 55%,
      rgba(8, 9, 11, 0.22)
    ),
    linear-gradient(0deg, rgba(8, 9, 11, 0.98), transparent 52%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: end;
}
.page-hero-copy {
  display: grid;
  gap: 24px;
}
.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(245, 240, 232, 0.62);
  font-size: 13px;
}
.crumb a {
  color: rgba(245, 240, 232, 0.72);
}
.crumb a:hover {
  color: #fff;
}
.page-hero-stats {
  display: grid;
  gap: 12px;
}
.stat-line {
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.stat-line b {
  display: block;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
}
.stat-line span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.62);
}

.spec-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.spec-panel {
  display: grid;
  gap: 28px;
}
.spec-aside {
  position: sticky;
  top: 110px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.spec-aside img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.spec-aside-copy {
  padding: 26px;
  display: grid;
  gap: 14px;
}
.spec-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.spec-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.6;
}
.spec-list li:before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--red);
  margin-top: 9px;
  box-shadow: 0 0 0 6px rgba(198, 31, 41, 0.12);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 34px;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.025em;
  font-weight: 650;
}
.faq-question span:last-child {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: rgba(245, 240, 232, 0.48);
  transition: transform 0.28s var(--ease);
}
.faq-item.is-open .faq-question span:last-child {
  transform: rotate(45deg);
  color: var(--red);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  margin: 0 0 24px;
  color: rgba(245, 240, 232, 0.66);
  line-height: 1.7;
  max-width: 900px;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 42px);
  display: grid;
  gap: 24px;
}
.contact-links {
  display: grid;
  gap: 14px;
}
.contact-links a {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}
.contact-links small {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
}
.contact-links b {
  font-size: 18px;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.56);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  outline: 0;
  transition:
    border 0.22s ease,
    background 0.22s ease;
}
.field textarea {
  min-height: 136px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(198, 31, 41, 0.82);
  background: rgba(0, 0, 0, 0.35);
}

.site-footer {
  background: #060708;
  color: var(--paper);
  padding: clamp(54px, 7vw, 82px) 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(140px, 0.5fr));
  gap: clamp(28px, 5vw, 72px);
}
.footer-brand {
  display: grid;
  gap: 20px;
}
.footer-brand img {
  height: 42px;
  max-width: 210px;
}
.impact-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.impact-badges img {
  max-height: 54px;
  width: auto;
  border-radius: 10px;
}
.footer-col {
  display: grid;
  gap: 12px;
  align-content: start;
}
.footer-col h4 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.42);
}
.footer-col a,
.footer-col span {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.62);
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(245, 240, 232, 0.38);
  font-size: 13px;
}
.wa-float {
  position: fixed;
  z-index: 940;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #20b15a;
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  font-weight: 900;
  letter-spacing: -0.08em;
  transition: transform 0.25s var(--ease);
}
.wa-float:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.78s var(--ease),
    transform 0.78s var(--ease);
}
[data-reveal="left"],
[data-reveal="right"] {
  transform: none;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.delay-4 {
  transition-delay: 0.32s;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .hero-top,
  .page-hero-content,
  .image-text-grid,
  .spec-grid,
  .contact-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .hero-aside,
  .page-hero-stats {
    max-width: 620px;
  }
  .product-lane {
    grid-template-columns: minmax(70px, 0.24fr) minmax(200px, 0.72fr) minmax(
        0,
        1.5fr
      );
  }
  .product-lane a {
    grid-column: 2 / -1;
    justify-self: start;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-matrix {
    grid-template-columns: 1fr;
  }
  .tech-card {
    min-height: 460px;
  }
  .scene-card,
  .scene-card.is-wide {
    grid-column: span 12;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spec-aside {
    position: relative;
    top: auto;
  }
  .wide-list li,
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
@media (max-width: 760px) {
  :root {
    --container: min(calc(100% - 32px), 1240px);
  }
  .site-header {
    height: 78px;
  }
  .site-header.is-scrolled,
  .site-header.is-open {
    height: 70px;
  }
  .brand img {
    height: 30px;
    max-width: 152px;
  }
  .hero {
    min-height: 100svh;
    padding: 108px 0 38px;
  }
  .hero-media:before {
    background:
      linear-gradient(
        0deg,
        rgba(8, 9, 11, 0.98),
        rgba(8, 9, 11, 0.52) 54%,
        rgba(8, 9, 11, 0.62)
      ),
      linear-gradient(90deg, rgba(8, 9, 11, 0.74), rgba(8, 9, 11, 0.1));
  }
  .hero-redline {
    right: 22px;
    opacity: 0.45;
  }
  .h1 {
    font-size: clamp(40px, 12.4vw, 46px);
    line-height: 1.04;
  }
  .h2 {
    font-size: clamp(31px, 9vw, 42px);
  }
  .lead {
    font-size: 18px;
  }
  .hero-rail {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .signal-card {
    padding: 18px;
  }
  .editorial-intro {
    grid-template-columns: 1fr;
  }
  .product-lane {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .product-lane a {
    grid-column: auto;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .tech-card {
    min-height: 420px;
  }
  .cinema-frame {
    min-height: 360px;
    border-radius: 24px;
  }
  .scene-card {
    min-height: 390px;
  }
  .section {
    padding: 70px 0;
  }
  .page-hero {
    min-height: 76svh;
    padding-top: 110px;
  }
  .page-hero-media:after {
    background: linear-gradient(
      0deg,
      rgba(8, 9, 11, 0.98),
      rgba(8, 9, 11, 0.48) 58%,
      rgba(8, 9, 11, 0.38)
    );
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-copy,
  .cta-data {
    padding: 26px;
  }
  .wa-float {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
  .mobile-panel {
    padding-top: 96px;
  }
  .mobile-nav a {
    font-size: 32px;
  }
  .spec-aside img {
    height: 300px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   v2: bilingual controls, light editorial sections, WhatsApp
   icon buttons and GSAP/Lenis-ready motion refinements.
========================================================= */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: rgba(245, 240, 232, 0.62);
  border-radius: 999px;
  min-width: 36px;
  height: 32px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition:
    background 0.24s var(--ease),
    color 0.24s var(--ease),
    transform 0.24s var(--ease);
}
.lang-switch button:hover {
  color: #fff;
}
.lang-switch button.is-active {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.mobile-lang {
  justify-self: start;
  margin-bottom: 12px;
}
.wa-btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
  filter: none;
}
.header-cta .wa-btn-icon {
  width: 17px;
  height: 17px;
}
.wa-float {
  overflow: hidden;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.wa-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn.whatsapp-link,
.header-cta.whatsapp-link {
  gap: 9px;
}
.light-area {
  background: linear-gradient(180deg, #f6f0e7 0%, #ebe2d4 100%);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}
.light-area:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(198, 31, 41, 0.075),
      transparent 32vw
    ),
    radial-gradient(circle at 100% 70%, rgba(8, 9, 11, 0.055), transparent 28vw);
}
.light-area .container {
  position: relative;
  z-index: 1;
}
.light-area .kicker {
  color: rgba(8, 9, 11, 0.62);
}
.light-area .kicker:before {
  background: linear-gradient(90deg, var(--red), rgba(0, 0, 0, 0.2));
}
.light-area .lead {
  color: rgba(8, 9, 11, 0.74);
}
.light-area .text,
.light-area .small {
  color: rgba(8, 9, 11, 0.66);
}
.light-area .eyebrow {
  color: rgba(8, 9, 11, 0.52);
}
.light-area .product-lane {
  border-color: rgba(8, 9, 11, 0.13);
  background: linear-gradient(
      90deg,
      rgba(198, 31, 41, 0.06) 0%,
      transparent 38%
    )
    0 0 / 220% 100% no-repeat;
}
.light-area .product-lane:last-child {
  border-color: rgba(8, 9, 11, 0.13);
}
.light-area .product-lane .num {
  color: rgba(8, 9, 11, 0.44);
}
.light-area .product-lane p {
  color: rgba(8, 9, 11, 0.67);
}
.light-area .product-lane a {
  color: var(--ink);
  border-color: rgba(8, 9, 11, 0.28);
}
.light-area .product-lane a:hover {
  color: var(--red);
  border-color: var(--red);
}
.proof-band.light-proof {
  background: linear-gradient(180deg, #f5f0e8, #eee4d6);
  color: var(--ink);
  border-color: rgba(8, 9, 11, 0.12);
}
.proof-band.light-proof .proof-item {
  border-color: rgba(8, 9, 11, 0.12);
}
.proof-band.light-proof .proof-item span {
  color: rgba(8, 9, 11, 0.62);
}
.light-area .timeline {
  border-color: rgba(8, 9, 11, 0.13);
}
.light-area .timeline-row {
  border-color: rgba(8, 9, 11, 0.13);
  background: linear-gradient(
      90deg,
      rgba(198, 31, 41, 0.065) 0%,
      transparent 42%
    )
    0 0 / 220% 100% no-repeat;
}
.light-area .timeline-row .step {
  color: rgba(8, 9, 11, 0.46);
}
.light-area .timeline-row p {
  color: rgba(8, 9, 11, 0.66);
}
.light-area .spec-aside {
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(8, 9, 11, 0.12);
  box-shadow: 0 20px 60px rgba(8, 9, 11, 0.12);
}
.light-area .spec-list li {
  color: rgba(8, 9, 11, 0.69);
}
.light-area .faq-list,
.light-area .faq-item {
  border-color: rgba(8, 9, 11, 0.14);
}
.light-area .faq-question span:last-child {
  color: rgba(8, 9, 11, 0.45);
}
.light-area .faq-answer p {
  color: rgba(8, 9, 11, 0.65);
}
.light-area .contact-card {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(8, 9, 11, 0.12);
  box-shadow: 0 24px 70px rgba(8, 9, 11, 0.1);
}
.light-area .contact-links a {
  border-color: rgba(8, 9, 11, 0.12);
}
.light-area .contact-links small,
.light-area .field label {
  color: rgba(8, 9, 11, 0.52);
}
.light-area .field input,
.light-area .field textarea,
.light-area .field select {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(8, 9, 11, 0.16);
  color: var(--ink);
}
.light-area .field input:focus,
.light-area .field textarea:focus,
.light-area .field select:focus {
  background: #fff;
  border-color: rgba(198, 31, 41, 0.72);
}
.light-area .btn.secondary {
  color: var(--ink);
  border-color: rgba(8, 9, 11, 0.18);
  background: rgba(255, 255, 255, 0.32);
}
.light-area .btn.secondary:hover {
  color: #fff;
}
.light-area .btn.primary {
  color: #fff;
}
.light-area .wide-list li {
  border-color: rgba(8, 9, 11, 0.11);
}
.light-area .wide-list b {
  color: #111;
}
.light-area .wide-list span {
  color: rgba(8, 9, 11, 0.66);
}
.gsap-ready [data-reveal],
.gsap-ready [data-motion] {
  opacity: 1;
  transform: none;
  transition: none;
}
.split-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
  margin-bottom: -0.04em;
}
.product-lane,
.timeline-row {
  will-change: transform, opacity, background-position;
}
.scene-card,
.tech-card,
.cinema-frame,
.cta-panel {
  will-change: transform;
}
.scene-card:hover,
.tech-card:hover {
  transition:
    box-shadow 0.55s var(--ease),
    border-color 0.55s var(--ease);
}
.dark-area .timeline-row,
.dark-area .product-lane {
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 0%,
      transparent 40%
    )
    0 0 / 220% 100% no-repeat;
}
@media (max-width: 1080px) {
  .header-actions {
    gap: 8px;
  }
  .lang-switch {
    order: -1;
  }
  .mobile-panel .lang-switch {
    order: 0;
  }
  .mobile-nav {
    margin-top: 8px;
  }
}
@media (max-width: 760px) {
  .lang-switch button {
    min-width: 34px;
    height: 30px;
  }
  .header-actions .lang-switch {
    display: inline-flex;
  }
  .mobile-lang {
    display: inline-flex;
  }
  .wa-btn-icon {
    width: 17px;
    height: 17px;
  }
  .light-area:before {
    opacity: 0.75;
  }
  .scene-card:hover,
  .tech-card:hover {
    transform: none;
  }
  .site-header.is-open .lang-switch {
    border-color: rgba(255, 255, 255, 0.2);
  }
}

/* =========================================================
   v3: user-provided logo assets, lighter overlays and richer
   GSAP/Lenis choreography without duplicating RAF.
========================================================= */
.cta-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(198, 31, 41, 0.08),
      transparent 34vw
    ),
    linear-gradient(90deg, rgba(8, 9, 11, 0.7), rgba(8, 9, 11, 0.08));
  z-index: 1;
}
.scene-content h3 {
  font-size: clamp(25px, 3vw, 39px);
  letter-spacing: -0.04em;
  margin: 0;
  color: #fff;
}
.hero-redline {
  position: absolute;
  z-index: 2;
  right: 6vw;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(198, 31, 41, 0.9),
    transparent
  );
}
.hero-media:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 9, 11, 0.55) 0%,
      rgba(8, 9, 11, 0.36) 38%,
      rgba(8, 9, 11, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(8, 9, 11, 0.56), transparent 48%),
    radial-gradient(
      circle at 68% 35%,
      rgba(198, 31, 41, 0.18),
      transparent 30vw
    );
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34vh;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(8, 9, 11, 0.95), transparent);
}
.hero-copy,
.hero-aside,
.hero-rail {
  position: relative;
  z-index: 4;
}
.hero .kicker,
.hero-title,
.hero .lead,
.hero-actions,
.hero-aside,
.hero-rail {
  will-change: transform, opacity;
}
.hero-media img {
  will-change: transform, filter;
}
.hero-redline {
  transform-origin: top center;
  will-change: transform, opacity;
}
.wa-btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 20px;
  filter: none;
}
.header-cta .wa-btn-icon {
  width: 18px;
  height: 18px;
}
.wa-float {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.3),
    0 0 0 7px rgba(37, 211, 102, 0.1);
}
.wa-float img {
  width: 66%;
  height: 66%;
  object-fit: contain;
}
.btn.primary .wa-btn-icon,
.header-cta .wa-btn-icon {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.18));
}
.wa-float:hover {
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.34),
    0 0 0 10px rgba(37, 211, 102, 0.13);
}
.impact-badges {
  gap: 16px;
}
.impact-badges img {
  object-fit: contain;
}
.impact-badges img:first-child {
  max-height: 74px;
  max-width: 160px;
}
.impact-badges img:nth-child(2) {
  max-height: 54px;
}
.footer-brand .impact-badges img {
  border-radius: 0;
}
.cinema-frame,
.scene-card,
.tech-card,
.cta-panel,
.proof-item,
.mini-data {
  transform-style: preserve-3d;
}
.cinema-frame:before,
.scene-card:after,
.tech-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 45%,
    transparent 62%
  );
  transform: translateX(-120%);
  opacity: 0;
}
.cinema-frame:hover:before,
.scene-card:hover:after,
.tech-card:hover:after {
  animation: premiumSweep 1.35s var(--ease) forwards;
}
@keyframes premiumSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  15% {
    opacity: 0.55;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}
[data-parallax-soft] {
  will-change: transform;
}
.motion-depth {
  will-change: transform, opacity;
}
.light-area .hero-media:before {
  background:
    linear-gradient(
      90deg,
      rgba(8, 9, 11, 0.48),
      rgba(8, 9, 11, 0.24),
      rgba(8, 9, 11, 0.12)
    ),
    linear-gradient(0deg, rgba(8, 9, 11, 0.4), transparent 50%);
}
@media (max-width: 760px) {
  .hero-media:before {
    background:
      linear-gradient(
        0deg,
        rgba(8, 9, 11, 0.96),
        rgba(8, 9, 11, 0.42) 58%,
        rgba(8, 9, 11, 0.32)
      ),
      linear-gradient(90deg, rgba(8, 9, 11, 0.55), rgba(8, 9, 11, 0.08));
  }
  .hero-redline {
    right: 22px;
  }
  .impact-badges img:first-child {
    max-height: 62px;
    max-width: 132px;
  }
  .wa-float img {
    width: 68%;
    height: 68%;
  }
  .cinema-frame:hover:before,
  .scene-card:hover:after,
  .tech-card:hover:after {
    animation: none;
  }
}

/* =========================================================
   v4 corrections: wider G-Mesh lists, explicit tech title color,
   white WhatsApp icon for primary form button and Lenis-safe polish.
========================================================= */
.tech-card-body h3 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.04em;
  color: #fff;
}
.wide-list li {
  grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1.52fr);
  column-gap: clamp(22px, 3.4vw, 54px);
}
.wide-list b,
.wide-list span {
  min-width: 0;
}
.wide-list b {
  line-height: 1.28;
  overflow-wrap: normal;
}
.contact-form .btn.primary .wa-btn-icon {
  filter: none;
}
@media (max-width: 1080px) {
  .wide-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* =========================================================
   v5: cursor pointer on every WhatsApp CTA hover state.
========================================================= */
.whatsapp-link,
.whatsapp-link:hover,
.whatsapp-link:focus-visible,
.whatsapp-link *,
.whatsapp-link:hover * {
  cursor: pointer;
}

/* =========================================================
   v8: heavier but still premium GSAP choreography.
   Added scroll progress, ambient grid, image wipes, line traces,
   cursor halo, card tilt, page transition and cinematic section depth.
========================================================= */
html.is-transitioning {
  cursor: wait;
}
.page-shell {
  position: relative;
  z-index: 1;
}
.motion-v8 {
  --mx: 50%;
  --my: 50%;
}
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    rgba(198, 31, 41, 0),
    rgba(198, 31, 41, 0.92),
    rgba(255, 255, 255, 0.78)
  );
  box-shadow: 0 0 24px rgba(198, 31, 41, 0.42);
  pointer-events: none;
}
.motion-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.82;
}
.motion-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.16;
  will-change: transform;
}
.motion-orb.one {
  width: 28vw;
  height: 28vw;
  left: -10vw;
  top: 16vh;
  background: rgba(198, 31, 41, 0.85);
}
.motion-orb.two {
  width: 34vw;
  height: 34vw;
  right: -14vw;
  top: 44vh;
  background: rgba(255, 255, 255, 0.18);
}
.motion-orb.three {
  width: 20vw;
  height: 20vw;
  left: 42vw;
  bottom: -10vw;
  background: rgba(198, 31, 41, 0.5);
}
.motion-grid {
  position: absolute;
  inset: -20%;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: rotate(-8deg);
  will-change: transform, opacity;
}
.light-area .motion-grid {
  opacity: 0.03;
}
.cursor-halo {
  position: fixed;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(198, 31, 41, 0.42);
  box-shadow:
    0 0 30px rgba(198, 31, 41, 0.18),
    inset 0 0 20px rgba(255, 255, 255, 0.08);
  z-index: 10000;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor-halo:after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.55);
}
.motion-wipe {
  position: absolute;
  inset: -1px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    #08090b 0%,
    #131416 48%,
    rgba(198, 31, 41, 0.88) 49%,
    #08090b 58%,
    #08090b 100%
  );
  transform-origin: right center;
}
.light-area .motion-wipe {
  background: linear-gradient(
    110deg,
    #f6f0e7 0%,
    #e5dac8 48%,
    rgba(198, 31, 41, 0.78) 49%,
    #f6f0e7 58%,
    #f6f0e7 100%
  );
}
.motion-line-trace {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 31, 41, 0.92),
    rgba(255, 255, 255, 0.34),
    transparent
  );
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
}
.product-lane,
.timeline-row,
.wide-list li,
.faq-item,
.proof-item,
.mini-data {
  position: relative;
  overflow: hidden;
}
.magnetic-active {
  will-change: transform;
}
.tilt-card {
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tilt-card img,
.tilt-card .scene-content,
.tilt-card .tech-card-body {
  will-change: transform;
}
.is-spotlighted {
  z-index: 2;
}
.is-spotlighted:before {
  opacity: 0.75 !important;
}
.hero-title .split-line,
.h2 .split-line {
  will-change: transform, opacity, filter;
}
.motion-v8 .btn,
.motion-v8 .header-cta {
  position: relative;
  overflow: hidden;
}
.motion-v8 .btn:after,
.motion-v8 .header-cta:after {
  content: "";
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 65%
  );
  transform: translateX(-75%) rotate(8deg);
  opacity: 0;
  pointer-events: none;
}
.motion-v8 .btn:hover:after,
.motion-v8 .header-cta:hover:after {
  animation: ctaGlint 0.95s var(--ease) forwards;
}
@keyframes ctaGlint {
  0% {
    transform: translateX(-75%) rotate(8deg);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(75%) rotate(8deg);
    opacity: 0;
  }
}
.wa-float:before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}
.motion-v8 .wa-float:before {
  animation: waPulse 2.8s ease-in-out infinite;
}
@keyframes waPulse {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  35% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}
.motion-v8 .section,
.motion-v8 .proof-band,
.motion-v8 .hero {
  transform-style: preserve-3d;
}
.motion-v8 .site-header {
  will-change: transform, background-color, backdrop-filter;
}
.motion-v8 .mobile-panel.is-open .mobile-nav a,
.motion-v8 .mobile-panel.is-open .mobile-panel-foot > * {
  will-change: transform, opacity;
}
@media (max-width: 760px) {
  .motion-atmosphere,
  .cursor-halo {
    display: none;
  }
  .scroll-progress {
    height: 2px;
  }
  .motion-wipe {
    display: none;
  }
  .motion-orb {
    display: none;
  }
  .motion-grid {
    display: none;
  }
  .motion-v8 .wa-float:before {
    animation: none;
  }
  .motion-v8 .btn:after,
  .motion-v8 .header-cta:after {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-atmosphere,
  .cursor-halo,
  .scroll-progress,
  .motion-wipe,
  .motion-line-trace {
    display: none !important;
  }
  .motion-v8 .wa-float:before {
    animation: none !important;
  }
}

/* v9 refinements: diagonal hero opening, stable CTA hover and visible FAQ rows. */
.hero-media {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  will-change: clip-path;
}
.hero-redline {
  height: 122%;
  top: -11%;
  transform-origin: top center;
}
.faq-item {
  opacity: 1 !important;
  visibility: visible !important;
}
.cta-panel {
  backface-visibility: hidden;
  transform: translateZ(0);
  contain: paint;
  will-change: transform;
}
.cta-panel,
.cta-panel * {
  backface-visibility: hidden;
}
.cta-panel:after {
  display: none !important;
  content: none !important;
}
.cta-panel:hover {
  transition:
    box-shadow 0.55s var(--ease),
    border-color 0.55s var(--ease);
}
.cta-panel img {
  transform: translateZ(0);
  will-change: filter;
}
@media (max-width: 760px) {
  .hero-redline {
    height: 112%;
    top: -6%;
    right: 24px;
  }
  .cta-panel:hover {
    transform: none;
  }
}

/* =========================================================
   v10 refinements: diagonal image reveals + stable hover/scroll.
   - Every image reveal now opens diagonally, matching the #inicio hero.
   - Removed 3D tilt, preserve-3d and mouse-position hover transforms.
   - Section scroll depth is kept stable to avoid drift/tilt perception.
========================================================= */
.motion-v10 .diagonal-reveal-target {
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: clip-path, transform;
}
.motion-v10 .cinema-frame,
.motion-v10 .scene-card,
.motion-v10 .tech-card,
.motion-v10 .cta-panel,
.motion-v10 .proof-item,
.motion-v10 .mini-data,
.motion-v10 .tilt-card {
  transform-style: flat !important;
  perspective: none !important;
  backface-visibility: hidden;
}
.motion-v10 .cinema-frame:before,
.motion-v10 .scene-card:after,
.motion-v10 .tech-card:after {
  display: none !important;
  animation: none !important;
  content: none !important;
}
.motion-v10 .scene-card:hover,
.motion-v10 .tech-card:hover,
.motion-v10 .cinema-frame:hover {
  transition:
    box-shadow 0.38s var(--ease),
    border-color 0.38s var(--ease),
    filter 0.38s var(--ease) !important;
}
.motion-v10 .cta-panel:hover {
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.28);
}
.motion-v10 .product-lane:hover,
.motion-v10 .timeline-row:hover,
.motion-v10 .proof-item:hover {
  transform: none !important;
}
.motion-v10 .motion-wipe {
  display: none !important;
}
.motion-v10 .btn:hover,
.motion-v10 .header-cta:hover {
  filter: saturate(1.04);
}
.motion-v10 .wa-float:hover {
  filter: saturate(1.04);
}
@media (max-width: 760px) {
  .motion-v10 .scene-card:hover,
  .motion-v10 .tech-card:hover,
  .motion-v10 .cinema-frame:hover,
  .motion-v10 .cta-panel:hover,
  .motion-v10 .btn:hover,
  .motion-v10 .header-cta:hover,
  .motion-v10 .wa-float:hover {
    transform: none !important;
  }
}

/* =========================================================
   v13 refinements: smooth Y guard while actively scrolling.
   - Hero redline stays fully vertical and visible; it no longer shrinks/fades on scroll.
   - Y hover motion is gently eased back while scroll is active, instead of snapping.
   - During scroll + debounce, hover Y is suspended through GSAP easing, not abrupt CSS transform overrides.
========================================================= */
.motion-v12 .hero-redline {
  height: 100% !important;
  top: 0 !important;
  rotate: 0deg !important;
  opacity: 1 !important;
  transform-origin: top center !important;
}
body.is-scrolling .motion-y-guard {
  transition:
    box-shadow 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease,
    filter 0.32s ease !important;
}
body.is-scrolling .motion-v8 .btn:after,
body.is-scrolling .motion-v8 .header-cta:after {
  animation: none !important;
  opacity: 0 !important;
}
@media (max-width: 760px) {
  .motion-v12 .hero-redline {
    height: 100% !important;
    top: 0 !important;
    right: 24px;
  }
}

/* =========================================================
   v13 refinements: smooth Y hover guard.
   CSS no longer snaps transforms while scrolling; JS eases Y back with GSAP.
========================================================= */
.motion-v13 .motion-y-guard {
  will-change: transform;
}
.motion-v13 .scene-card,
.motion-v13 .tech-card,
.motion-v13 .cinema-frame,
.motion-v13 .cta-panel,
.motion-v13 .btn,
.motion-v13 .header-cta,
.motion-v13 .wa-float {
  transform: translateZ(0);
}
@media (max-width: 760px) {
  .motion-v13 .motion-y-guard {
    will-change: auto;
  }
}

/* =========================================================
   v14 proof-item refinement
   - Proof strip gets one dedicated GSAP entrance instead of stacked reveals.
   - Hover is smoother and disabled softly while scroll is active.
========================================================= */
.motion-v14 .proof-item {
  min-height: 138px;
  border-left-color: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.012)
  );
  transition:
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, border-color, background-color, box-shadow;
}
.motion-v14 .proof-item:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(198, 31, 41, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 58%);
  opacity: 0;
  transform: translateX(-8%);
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
.motion-v14 .proof-item strong,
.motion-v14 .proof-item span {
  position: relative;
  z-index: 1;
}
.motion-v14 .proof-item:hover {
  transform: translateY(-4px) !important;
  border-left-color: rgba(198, 31, 41, 0.68);
  background-color: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}
.motion-v14 .proof-item:hover:before {
  opacity: 1;
  transform: translateX(0);
}
body.motion-v14.is-scrolling .proof-item,
body.motion-v14.is-scrolling .proof-item:hover {
  transform: translateY(0) !important;
  transition-duration: 0.52s;
}
body.motion-v14.is-scrolling .proof-item:before {
  opacity: 0;
  transform: translateX(-8%);
  transition-duration: 0.52s;
}
.motion-v14 .light-proof .proof-item {
  border-left-color: rgba(8, 9, 11, 0.12);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.3)
  );
}
.motion-v14 .light-proof .proof-item:hover {
  border-left-color: rgba(198, 31, 41, 0.72);
  box-shadow: 0 18px 44px rgba(8, 9, 11, 0.1);
}
@media (max-width: 760px) {
  .motion-v14 .proof-item {
    min-height: auto;
    transition:
      border-color 0.45s var(--ease),
      background-color 0.45s var(--ease),
      box-shadow 0.45s var(--ease);
  }
  .motion-v14 .proof-item:hover,
  body.motion-v14.is-scrolling .proof-item:hover {
    transform: none !important;
  }
}

/* =========================================================
   v15 mini-data refinement
   - mini-data no longer receives stacked generic lift/batch/scrub tweens.
   - It uses a dedicated entrance and a softer hover, with no dry jump while scrolling.
========================================================= */
.motion-v15 .mini-data {
  position: relative;
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.035)
  );
  transition:
    border-color 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.68s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}
.motion-v15 .mini-data:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(198, 31, 41, 0.18), transparent 44%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 62%);
  opacity: 0;
  transform: translateX(-10%);
  transition:
    opacity 0.74s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.74s cubic-bezier(0.16, 1, 0.3, 1);
}
.motion-v15 .mini-data b,
.motion-v15 .mini-data span {
  position: relative;
  z-index: 1;
}
.motion-v15 .mini-data:hover {
  border-color: rgba(198, 31, 41, 0.55);
  background-color: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}
.motion-v15 .mini-data:hover:before {
  opacity: 1;
  transform: translateX(0);
}
body.motion-v15.is-scrolling .mini-data:before {
  opacity: 0;
  transform: translateX(-10%);
  transition-duration: 0.52s;
}
@media (max-width: 760px) {
  .motion-v15 .mini-data {
    transition:
      border-color 0.42s var(--ease),
      background-color 0.42s var(--ease),
      box-shadow 0.42s var(--ease);
    will-change: auto;
  }
  .motion-v15 .mini-data:hover {
    box-shadow: none;
  }
}

/* =========================================================
   v16 scene-card, cinema-frame and signal-card refinement
   - Removes stacked generic reveal/lift/parallax conflicts.
   - Dedicated GSAP entrance + hover depth, eased and suspended during scroll.
   - No 3D rotation, no cursor-position tilt, no abrupt Y snap.
========================================================= */
.motion-v16 .scene-card,
.motion-v16 .cinema-frame,
.motion-v16 .signal-card {
  position: relative;
  isolation: isolate;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition:
    box-shadow 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter;
}
.motion-v16 .scene-card,
.motion-v16 .cinema-frame {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.motion-v16 .scene-card img,
.motion-v16 .cinema-frame img {
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, filter;
}
.motion-v16 .scene-content,
.motion-v16 .caption-chip,
.motion-v16 .signal-card strong,
.motion-v16 .signal-card span {
  will-change: transform, opacity, filter;
}
.motion-v16 .scene-card:hover,
.motion-v16 .cinema-frame:hover {
  border-color: rgba(198, 31, 41, 0.36);
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.3);
}
.motion-v16 .signal-card:hover {
  border-color: rgba(198, 31, 41, 0.38);
  background: rgba(12, 14, 18, 0.54);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.26);
}
body.motion-v16.is-scrolling .scene-card:hover,
body.motion-v16.is-scrolling .cinema-frame:hover,
body.motion-v16.is-scrolling .signal-card:hover {
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}
body.motion-v16.is-scrolling .scene-card img,
body.motion-v16.is-scrolling .cinema-frame img,
body.motion-v16.is-scrolling .scene-content,
body.motion-v16.is-scrolling .caption-chip,
body.motion-v16.is-scrolling .signal-card strong,
body.motion-v16.is-scrolling .signal-card span {
  transition: none !important;
}
@media (max-width: 760px) {
  .motion-v16 .scene-card,
  .motion-v16 .cinema-frame,
  .motion-v16 .signal-card {
    will-change: auto;
    transition:
      border-color 0.42s var(--ease),
      box-shadow 0.42s var(--ease),
      background-color 0.42s var(--ease);
  }
  .motion-v16 .scene-card:hover,
  .motion-v16 .cinema-frame:hover,
  .motion-v16 .signal-card:hover {
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  }
}

/* =========================================================
   v17 footer logo link + richer premium button motion.
   - Footer Blockline logo now behaves as a home link.
   - Buttons get a softer GSAP-friendly glow, diagonal glint and click ripple.
   - Hover movement is suspended during scroll guard to avoid visual bugs.
========================================================= */
.footer-home-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border-radius: 12px;
  outline-offset: 8px;
  transition:
    opacity 0.36s var(--ease),
    filter 0.36s var(--ease);
}
.footer-home-link:hover {
  opacity: 0.86;
  filter: drop-shadow(0 10px 26px rgba(198, 31, 41, 0.2));
}
.footer-home-link:focus-visible {
  outline: 2px solid rgba(198, 31, 41, 0.82);
}
.footer-home-link img {
  display: block;
}

.motion-v17 .btn:not(.text-link),
.motion-v17 .header-cta {
  --btn-x: 50%;
  --btn-y: 50%;
  --btn-glow: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, box-shadow, border-color, background-color;
  transition:
    background-color 0.54s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.54s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.54s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.54s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.54s cubic-bezier(0.16, 1, 0.3, 1);
}
.motion-v17 .btn:not(.text-link)::before,
.motion-v17 .header-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at var(--btn-x) var(--btn-y),
      rgba(255, 255, 255, 0.26),
      transparent 23%
    ),
    radial-gradient(
      circle at var(--btn-x) var(--btn-y),
      rgba(198, 31, 41, 0.44),
      transparent 42%
    ),
    linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.09),
      transparent 44%,
      rgba(255, 255, 255, 0.1)
    );
  opacity: var(--btn-glow);
  transform: scale(0.96);
  transition:
    opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.56s cubic-bezier(0.16, 1, 0.3, 1);
}
.motion-v17 .btn:not(.text-link)::after,
.motion-v17 .header-cta::after {
  content: "";
  position: absolute;
  inset: -65% -92%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 38%,
    rgba(255, 255, 255, 0.16) 48%,
    rgba(255, 255, 255, 0.48) 50%,
    rgba(255, 255, 255, 0.12) 54%,
    transparent 64%
  );
  opacity: 0;
  transform: translateX(-54%) rotate(8deg);
}
.motion-v17 .btn:not(.text-link):hover,
.motion-v17 .header-cta:hover {
  box-shadow:
    0 18px 46px rgba(198, 31, 41, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.motion-v17 .btn.primary:hover {
  box-shadow:
    0 20px 52px rgba(198, 31, 41, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.motion-v17 .btn.dark:hover {
  background: rgba(198, 31, 41, 0.94);
  border-color: rgba(198, 31, 41, 0.94);
  color: #fff;
}
.motion-v17 .btn:not(.text-link).is-btn-hovering::before,
.motion-v17 .header-cta.is-btn-hovering::before {
  transform: scale(1);
}
.motion-v17 .btn:not(.text-link).is-btn-hovering::after,
.motion-v17 .header-cta.is-btn-hovering::after {
  animation: btnDiagonalGlint 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes btnDiagonalGlint {
  0% {
    opacity: 0;
    transform: translateX(-54%) rotate(8deg);
  }
  18% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: translateX(54%) rotate(8deg);
  }
}
.motion-v17 .btn-ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0.18) 42%,
    transparent 72%
  );
  transform: translate(-50%, -50%) scale(0.25);
  opacity: 0.72;
}
.motion-v17 .btn:not(.text-link) > *,
.motion-v17 .header-cta > * {
  position: relative;
  z-index: 2;
}
.motion-v17 .btn:not(.text-link) img,
.motion-v17 .header-cta img {
  transform-origin: center;
  will-change: transform, filter;
}
body.is-scrolling.motion-v17 .btn:not(.text-link)::before,
body.is-scrolling.motion-v17 .header-cta::before {
  opacity: 0 !important;
}
body.is-scrolling.motion-v17 .btn:not(.text-link)::after,
body.is-scrolling.motion-v17 .header-cta::after {
  animation: none !important;
  opacity: 0 !important;
}
@media (hover: none), (max-width: 760px) {
  .motion-v17 .btn:not(.text-link):hover,
  .motion-v17 .header-cta:hover {
    box-shadow: none;
  }
  .motion-v17 .btn:not(.text-link)::after,
  .motion-v17 .header-cta::after {
    display: none;
  }
}

/* =========================================================
   v19 - home balance + stronger .num elements
   Conservative overrides appended after v17 rules.
========================================================= */
.product-lane .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(198, 31, 41, 0.18),
    rgba(198, 31, 41, 0.045)
  );
  border: 1px solid rgba(198, 31, 41, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 36px rgba(198, 31, 41, 0.1);
  font-size: 28px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.055em;
  color: #fff;
}
.light-area .product-lane .num {
  color: var(--ink);
  background: linear-gradient(
    180deg,
    rgba(198, 31, 41, 0.14),
    rgba(198, 31, 41, 0.035)
  );
  border-color: rgba(198, 31, 41, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 16px 36px rgba(198, 31, 41, 0.075);
}
.product-lane:hover .num {
  border-color: rgba(198, 31, 41, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 20px 44px rgba(198, 31, 41, 0.16);
}
.motion-v19 .product-lane .num {
  transition:
    border-color 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    background 0.55s var(--ease),
    color 0.55s var(--ease);
}
#inicio .hero-media img[src*="blockline-products-montage"] {
  object-position: center center;
  filter: saturate(0.9) brightness(0.66) contrast(1.04);
}
.page-hero-media img[src*="blockline-products-montage"] {
  object-position: center center;
  filter: saturate(0.9) brightness(0.62) contrast(1.04);
}
.cinema-frame img[src*="blockline-products-montage"] {
  object-position: center center;
}
@media (max-width: 760px) {
  .product-lane .num {
    width: 62px;
    height: 62px;
    font-size: 24px;
    border-radius: 18px;
  }
  #inicio .hero-media img[src*="blockline-products-montage"],
  .page-hero-media img[src*="blockline-products-montage"] {
    object-position: center center;
  }
}

/* =========================================================
   v20 - remove .num, product stories on home, cinematic montage
========================================================= */
.product-lane {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.65fr) minmax(
      160px,
      0.38fr
    );
}
.product-lane .num {
  display: none !important;
}
#inicio .product-lane a {
  grid-column: auto;
  justify-self: end;
}
#inicio .hero-media img[src*="blockline-products-montage-cinematic"],
.page-hero-media img[src*="blockline-products-montage-cinematic"],
.cinema-frame img[src*="blockline-products-montage-cinematic"] {
  object-position: center center;
  filter: saturate(0.92) brightness(0.68) contrast(1.08);
}
.product-stories-home .editorial-intro {
  margin-bottom: clamp(18px, 2vw, 28px);
}
.product-story-stack {
  display: grid;
  gap: 28px;
  margin-top: clamp(34px, 4vw, 48px);
}
.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  border: 1px solid rgba(8, 9, 11, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fffaf3;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}
.product-story:nth-child(2) {
  background: linear-gradient(180deg, #0d1014, #11161c);
  border-color: rgba(255, 255, 255, 0.08);
}
.product-story:nth-child(2) .product-story-copy,
.product-story:nth-child(2) .product-story-copy .lead,
.product-story:nth-child(2) .product-story-copy p,
.product-story:nth-child(2) .story-points span,
.product-story:nth-child(2) .story-points b {
  color: #fff;
}
.product-story:nth-child(2) .story-points li {
  border-color: rgba(255, 255, 255, 0.12);
}
.product-story.is-reverse .product-story-media {
  order: 2;
}
.product-story.is-reverse .product-story-copy {
  order: 1;
}
.product-story-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.product-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.product-story-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 9, 11, 0.62),
    rgba(8, 9, 11, 0.06) 45%,
    rgba(8, 9, 11, 0.18)
  );
  z-index: 1;
  pointer-events: none;
}
.product-story-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
}
.product-story-copy h3 {
  margin: 0;
  font-size: clamp(31px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: inherit;
}
.product-story-copy .lead {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.68;
  color: rgba(8, 9, 11, 0.72);
}
.product-story-copy .hero-actions {
  margin-top: 4px;
}
.story-points {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.story-points li {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(8, 9, 11, 0.12);
}
.story-points li:first-child {
  padding-top: 0;
  border-top: 0;
}
.story-points b {
  display: block;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.story-points span {
  display: block;
  color: rgba(8, 9, 11, 0.64);
  line-height: 1.58;
}
@media (max-width: 1080px) {
  .product-lane {
    grid-template-columns: minmax(200px, 0.72fr) minmax(0, 1.5fr);
  }
  #inicio .product-lane a {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .product-story,
  .product-story.is-reverse {
    grid-template-columns: 1fr;
  }
  .product-story.is-reverse .product-story-media,
  .product-story.is-reverse .product-story-copy {
    order: initial;
  }
}
@media (max-width: 760px) {
  .product-lane {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .story-points li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .product-story-media {
    min-height: 360px;
  }
  .product-story-copy {
    padding: 26px;
  }
}

/* v21 safety fallback: content stays visible even if CDN motion libraries fail */
body:not(.gsap-ready) [data-reveal],
body:not(.gsap-ready) [data-motion] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  visibility: visible !important;
}
body:not(.gsap-ready) .split-line {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* =========================================================
   v22 - requested visual refinements
========================================================= */
.tech-card-body a {
  color: #fff;
}
.product-lane h3 {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.04;
  margin: 0 0 0 10px;
  letter-spacing: -0.04em;
}
.light-area .btn.secondary:hover {
  color: #000;
}
body:not(.gsap-ready) .product-story,
body:not(.gsap-ready) .product-story-media,
body:not(.gsap-ready) .product-story-copy,
body:not(.gsap-ready) .cinema-frame,
body:not(.gsap-ready) .hero-copy,
body:not(.gsap-ready) .hero-aside,
body:not(.gsap-ready) .hero-rail {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  visibility: visible !important;
}
