/* ============================================
   RT INTELLIGENCE — v3
   Light Apple-style with 3D motion
   Palette: real brand colors from rtvendas.com
   ============================================ */
:root {
  /* Brand palette (extracted from site) */
  --navy: #0c3049;
  --navy-deep: #06192a;
  --navy-soft: #1a4360;
  --orange: #f89540;
  --orange-deep: #e67a1d;
  --brown: #8c644c;
  --gray-blue-1: #849cac;
  --gray-blue-2: #7494a4;

  /* Surface — cool crisp (Frio + Nítido) */
  --paper: #F7F9FB;
  --paper-2: #E9EFF4;
  --paper-3: #DAE4EC;
  --line: rgba(12, 48, 73, 0.13);
  --line-strong: rgba(12, 48, 73, 0.24);

  /* Text */
  --ink: #0c3049;
  --ink-soft: #2C4961;
  --ink-mid: #5E7385;
  --ink-mute: #91A2B0;

  /* Type */
  --display: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;

  /* Layout */
  --container: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(96px, 12vw, 180px);

  /* Motion */
  --motion: 1;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: 0; cursor: pointer; color: inherit; }
::selection { background: var(--orange); color: var(--navy); }

/* Scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--gray-blue-1); border: 3px solid var(--paper-2); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 144px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.h1 {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.h2 {
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 620px;
}
.muted { color: var(--ink-mid); }
.accent { color: var(--orange); }
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--orange-deep);
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  position: relative;
}
.section { padding: var(--section-y) 0; position: relative; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn--primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 6px 20px -8px rgba(248, 149, 64, 0.6);
}
.btn--primary:hover {
  background: var(--orange-deep);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(230, 122, 29, 0.7);
}
.btn--ink {
  background: var(--navy);
  color: var(--paper);
}
.btn--ink:hover { background: var(--navy-deep); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { background: var(--paper-2); border-color: var(--navy); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 var(--pad-x);
  pointer-events: none;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 8px 8px 8px 24px;
  background: rgba(251, 249, 245, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 20px -4px rgba(12, 48, 73, 0.08);
  pointer-events: auto;
  max-width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.nav__logo-img { height: 40px; width: auto; display: block; }
.nav__logo-mark {
  position: relative;
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nav__logo-mark::before {
  content: 'rt';
  font-weight: 800;
  color: var(--orange);
  font-size: 14px;
  letter-spacing: -0.04em;
}
.nav__logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 4px; right: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 0 0 2px 2px;
}
.nav__links {
  display: flex;
  gap: 4px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--navy); background: var(--paper-2); }
.nav__cta {
  font-size: 14px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--paper);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: background 0.3s;
}
.nav__cta:hover { background: var(--orange); color: var(--navy); }
@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ============================================
   GONDOLA (3D component)
   ============================================ */
.gondola-stage {
  perspective: 1600px;
  perspective-origin: 50% 45%;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gondola {
  --chaos: 1;
  --tilt: 0;
  --scan: 0;
  --scan-on: 0;
  transform-style: preserve-3d;
  transition: transform 0.18s linear;
  position: relative;
  width: 640px;
  height: 480px;
  max-width: 90vw;
  max-height: 75vh;
  will-change: transform;
}
.gondola__frame {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}

/* Animatable CSS vars for smooth transitions on var-driven transforms */
@property --chaos { syntax: '<number>'; inherits: true; initial-value: 1; }
@property --tilt { syntax: '<number>'; inherits: true; initial-value: 0; }

/* Sign — drops in from above as gondola assembles */
.gondola__sign {
  position: absolute;
  top: -56px; left: 0; right: 0;
  height: 44px;
  background: var(--navy);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px -8px rgba(12, 48, 73, 0.4);
  transform:
    translateY(calc(var(--chaos) * -200px))
    translateZ(24px);
  opacity: calc(1 - var(--chaos));
  overflow: hidden;
  z-index: 5;
}
.gondola__sign-text { position: relative; z-index: 2; }
.gondola__sign::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 8px;
  background: var(--orange);
}
.gondola__sign::before {
  content: '';
  position: absolute;
  top: 0; left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(248, 149, 64, 0.35) 50%,
    rgba(248, 149, 64, 0.55) 50%,
    transparent 70%);
  animation: signSweep 4.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes signSweep {
  0%, 25% { transform: translateX(0); }
  60%, 100% { transform: translateX(500%); }
}

/* Vertical posts + base — fade in as assembly completes */
.gondola__post {
  position: absolute;
  top: 0; bottom: -20px;
  width: 10px;
  background: linear-gradient(180deg, var(--gray-blue-1), var(--gray-blue-2));
  border-radius: 2px;
  opacity: calc(1 - var(--chaos) * 0.92);
  transform: scaleY(calc(1 - var(--chaos) * 0.5));
  transform-origin: bottom center;
}
.gondola__post--left { left: -6px; }
.gondola__post--right { right: -6px; }
.gondola__base {
  position: absolute;
  bottom: -28px; left: -14px; right: -14px;
  height: 16px;
  background: var(--navy);
  border-radius: 3px;
  box-shadow: 0 14px 32px -10px rgba(12, 48, 73, 0.45);
  opacity: calc(1 - var(--chaos) * 0.85);
  transform: scaleX(calc(1 - var(--chaos) * 0.4));
}

/* Floor glow that intensifies as assembled */
.gondola__glow {
  position: absolute;
  bottom: -60px;
  left: -40px; right: -40px;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(248, 149, 64, 0.5), transparent 65%);
  filter: blur(20px);
  opacity: calc((1 - var(--chaos)) * 0.6 + var(--tilt) * 0.4);
  transform: translateZ(-10px);
  pointer-events: none;
}

/* Shelf — alternate sides slide in from off-screen as chaos decreases */
.shelf {
  --shelf-idx: 0;
  --shelf-side: 1;
  position: absolute;
  left: 0; right: 0;
  height: 110px;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transform: translate3d(
    calc(var(--chaos) * var(--shelf-side) * 260px),
    0,
    calc(var(--chaos) * -40px)
  );
  opacity: calc(1 - var(--chaos) * 0.7);
}
.shelf__board {
  position: absolute;
  bottom: 0; left: -8px; right: -8px;
  height: 7px;
  background: linear-gradient(180deg, var(--paper-3), var(--paper-2));
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 4px 12px -2px rgba(12, 48, 73, 0.15);
  opacity: calc(1 - var(--chaos));
  transform: scaleX(calc(1 - var(--chaos) * 0.5));
}
.shelf__products {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 0 4px 8px;
  transform-style: preserve-3d;
}

/* Products — each has per-instance random scatter offsets (--rx, --ry, --rz, --rrx, --rry)
   When chaos=1 they're flung; when chaos=0 they dock at origin. */
.product {
  --c: var(--gray-blue-1);
  --h: 95%;
  --from-center: 0;
  --rx: 0;
  --ry: 0;
  --rz: 0;
  --rrx: 0;
  --rry: 0;
  flex: 1;
  height: var(--h);
  transform-style: preserve-3d;
  position: relative;
  will-change: transform;
  transform:
    translate3d(
      calc(
        var(--chaos) * var(--rx) * 1px
        + var(--tilt) * var(--from-center) * 20px
      ),
      calc(
        var(--chaos) * var(--ry) * 1px
      ),
      calc(
        var(--chaos) * var(--rz) * 1px
        + var(--tilt) * 50px
      )
    )
    rotateX(calc(var(--chaos) * var(--rrx) * 1deg))
    rotateY(calc(var(--chaos) * var(--rry) * 1deg));
}
.product__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}
.product__face--front {
  background: var(--c);
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 18%),
    linear-gradient(90deg, rgba(255,255,255,0.14) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.2) 100%);
  border-radius: 2px 2px 1px 1px;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.18);
}
.product__face--front::after {
  content: '';
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 18%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1px;
}
.product__face--front::before {
  content: '';
  position: absolute;
  top: 60%;
  left: 20%; right: 20%;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
}
.product__face--side {
  width: 8px;
  left: auto;
  right: -8px;
  background: color-mix(in oklab, var(--c) 78%, black);
  transform: rotateY(90deg);
  transform-origin: left center;
}
.product__face--top {
  height: 8px;
  top: -8px;
  background: color-mix(in oklab, var(--c) 88%, white);
  transform: rotateX(90deg);
  transform-origin: center bottom;
}

/* Detection boxes — Z lift based on tilt */
.detect-box {
  position: absolute;
  border: 1.5px solid var(--orange);
  background: rgba(248, 149, 64, 0.08);
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  transform: translateZ(calc(60px + var(--tilt) * 30px));
}
.detect-box.on { opacity: 1; }
.detect-box__tag {
  position: absolute;
  top: -22px; left: -1px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  padding: 3px 6px;
  border-radius: 2px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.detect-box::after {
  content: '';
  position: absolute;
  inset: -1.5px;
  border: 1.5px solid var(--orange);
  border-radius: 3px;
  opacity: 0;
  animation: detectPulse 1.6s ease-out infinite;
}
@keyframes detectPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Scan line — Y position driven by --scan */
.scan-line {
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 50%, transparent);
  box-shadow: 0 0 8px var(--orange), 0 0 16px var(--orange);
  transform: translate3d(0, calc(var(--scan) * 460px), 50px);
  opacity: var(--scan-on);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  overflow: hidden;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-weight: 700;
  font-size: clamp(56px, 8.4vw, 138px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.hero__title span.accent { color: var(--orange); display: inline-block; }

/* Headline line-by-line reveal (non-clipping — safe at any width) */
.hl-line {
  display: block;
}
.hl-in {
  display: inline-block;
  opacity: 1;
  animation: hlRise 0.9s var(--ease-out) var(--d, 0s) forwards;
}
@keyframes hlRise {
  from { opacity: 1; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hl-key, .hl-dot { color: var(--orange); }
.hl-key { display: inline-block; }

/* "Destaque" mode — keyword sits on a solid brand color block */
.headline-destaque .hero__title { font-weight: 800; line-height: 0.86; letter-spacing: -0.05em; }
.headline-destaque .hl-key {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  padding: 0 0.12em 0.02em;
  margin: 0 0.02em;
}
.headline-destaque .hl-key::before {
  content: '';
  position: absolute;
  inset: 0.12em -0.01em 0.04em;
  z-index: -1;
  background: var(--orange);
  border-radius: 7px;
  box-shadow: 0 14px 34px -12px rgba(248, 149, 64, 0.55);
  transform: skewX(-7deg) scaleX(0);
  transform-origin: left center;
  animation: keyWipe 0.65s var(--ease-out) 1.05s both;
}
@keyframes keyWipe { to { transform: skewX(-7deg) scaleX(1); } }

/* Section-title color block — subtler than hero (smaller skew/radius), wipes in on reveal */
.hl-blk { color: var(--orange); display: inline-block; }
.headline-destaque .hl-blk {
  position: relative;
  color: var(--paper);
  background: var(--orange);
  border-radius: 6px;
  padding: 0.02em 0.16em 0.06em;
  margin: 0 0.03em;
  white-space: nowrap;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0 12px 30px -14px rgba(248,149,64,0.55);
}
.hero__sub {
  margin-top: 28px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 500px;
}
.hero__cta-row {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__stage {
  position: relative;
  height: 600px;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg-blob {
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(248, 149, 64, 0.18), transparent 65%);
  filter: blur(40px);
  animation: blobFloat calc(12s / var(--motion, 1)) ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero__stage { height: 480px; order: -1; }
}

/* Hero gondola: transform driven by JS (mouse parallax + idle drift).
   Smooth the per-frame updates without fighting the rAF loop. */
.hero .gondola {
  transition: none;
}

/* Recurring WHITE AI scan sweep across the hero gondola */
.hero .scan-line {
  background: linear-gradient(90deg, transparent, #ffffff 50%, transparent);
  box-shadow: 0 0 10px #fff, 0 0 22px rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: none;
  animation: heroGondScan calc(6.5s / var(--motion, 1)) cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes heroGondScan {
  0%   { transform: translate3d(0, 0, 50px); opacity: 0; }
  5%   { opacity: 1; }
  40%  { opacity: 1; }
  46%  { transform: translate3d(0, 440px, 50px); opacity: 0; }
  100% { transform: translate3d(0, 440px, 50px); opacity: 0; }
}
/* faint analysis wash trailing the scan */
.hero .gondola__glow { opacity: 0.4 !important; }

/* Detection boxes pop as the scan passes their region, then fade */
.hero .detect-box { opacity: 0; }
.hero .detect-box:nth-last-child(3) { animation: heroDetect calc(6.5s / var(--motion, 1)) ease-in-out infinite; animation-delay: 0.5s; }
.hero .detect-box:nth-last-child(2) { animation: heroDetect calc(6.5s / var(--motion, 1)) ease-in-out infinite; animation-delay: 1.3s; }
.hero .detect-box:nth-last-child(1) { animation: heroDetect calc(6.5s / var(--motion, 1)) ease-in-out infinite; animation-delay: 2.0s; }
@keyframes heroDetect {
  0%, 100% { opacity: 0; }
  8% { opacity: 0; transform: translateZ(60px) scale(0.96); }
  14% { opacity: 1; transform: translateZ(60px) scale(1); }
  40% { opacity: 1; }
  48% { opacity: 0; }
}

/* Subtle "alive" shimmer wave across products (brightness only — never transform) */
.hero .product__face--front {
  animation: prodShimmer calc(5.5s / var(--motion, 1)) ease-in-out infinite;
  animation-delay: calc(var(--from-center) * 0.8s);
}
@keyframes prodShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.13); }
}
@keyframes gentleFloat {
  0% { transform: rotateX(6deg) rotateY(-8deg) scale(0.92) translateY(0); }
  100% { transform: rotateX(8deg) rotateY(-6deg) scale(0.92) translateY(-8px); }
}

/* Spotlight that crosses the gondola on the hero */
.hero__stage::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 50%;
  top: 28%;
  left: -20%;
  background: radial-gradient(ellipse at center, rgba(248, 149, 64, 0.18), transparent 55%);
  filter: blur(28px);
  animation: spotlightMove calc(9s / var(--motion, 1)) ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes spotlightMove {
  0% { transform: translateX(-20%) translateY(-8%); }
  100% { transform: translateX(20%) translateY(8%); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollCue 2s ease-in-out infinite;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, var(--ink-mute), transparent);
}
@keyframes scrollCue {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ============================================
   SCROLL STAGE — pinned deconstruction
   ============================================ */
.scroll-stage {
  position: relative;
  height: clamp(600px, 86vh, 920px);
}
.scroll-stage__sticky {
  position: relative;
  top: 0;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 15%, #0c3049 0%, transparent 55%),
    radial-gradient(circle at 80% 100%, #06192a 0%, transparent 55%),
    linear-gradient(150deg, #0a2740 0%, #06192a 60%, #050e1a 100%);
  color: var(--paper);
}
.scroll-stage__sticky::before {
  /* very subtle noise to keep deep blue from looking flat */
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(248, 149, 64, 0.06), transparent 60%);
  pointer-events: none;
}
.scroll-stage__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.synapses {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.scroll-stage__grid {
  display: none;
}
.scroll-stage__inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.scroll-stage__copy {
  position: relative;
  z-index: 5;
  max-width: 480px;
}
.scroll-stage__step {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--orange-deep);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-stage__step .num {
  display: inline-block;
  min-width: 28px;
}
.scroll-stage__step-bar {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  max-width: 160px;
}
.scroll-stage__step-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: var(--step-progress, 0);
  background: var(--orange);
  transition: width 0.3s var(--ease-out);
}
.scroll-stage__title {
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--paper);
}
.scroll-stage__title .accent { color: var(--orange); }
.scroll-stage__body {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(251, 249, 245, 0.72);
  max-width: 440px;
}
.scroll-stage__step {
  color: var(--orange);
}
.scroll-stage__step-bar {
  background: rgba(251, 249, 245, 0.18);
}
.scroll-stage__stage {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-stage__progress {
  position: absolute;
  bottom: 32px;
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.scroll-stage__pip {
  flex: 1;
  height: 3px;
  background: rgba(251, 249, 245, 0.18);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.scroll-stage__pip::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: var(--pip, 0%);
  background: var(--orange);
  transition: width 0.3s var(--ease-out);
}

/* Step fade animation — toggled via 'on'/'off' classes set imperatively */
.scroll-stage__step-content {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: capCycle 19s linear infinite;
}
.scroll-stage__copy--overlay .scroll-stage__step-content:nth-child(1) { animation-delay: 0s; }
.scroll-stage__copy--overlay .scroll-stage__step-content:nth-child(2) { animation-delay: 3.8s; }
.scroll-stage__copy--overlay .scroll-stage__step-content:nth-child(3) { animation-delay: 7.6s; }
.scroll-stage__copy--overlay .scroll-stage__step-content:nth-child(4) { animation-delay: 11.4s; }
.scroll-stage__copy--overlay .scroll-stage__step-content:nth-child(5) { animation-delay: 15.2s; }
@keyframes capCycle {
  0%   { opacity: 0; transform: translateY(20px); }
  3%   { opacity: 1; transform: translateY(0); }
  18%  { opacity: 1; transform: translateY(0); }
  21%  { opacity: 0; transform: translateY(-14px); }
  100% { opacity: 0; transform: translateY(-14px); }
}

/* Floating data callouts (revealed in final stages) */
.callout {
  position: absolute;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateZ(60px) scale(0.85);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
  box-shadow: 0 10px 24px -8px rgba(12, 48, 73, 0.5);
}
.callout.on { opacity: 1; transform: translateZ(60px) scale(1); }
.callout .v {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-top: 2px;
}
.callout--leader {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 6px 16px -4px rgba(248, 149, 64, 0.6);
}
.callout--leader.on { transform: translateZ(80px) scale(1); }

@media (max-width: 880px) {
  .scroll-stage__inner { grid-template-columns: 1fr; gap: 16px; }
  .scroll-stage__copy { order: 2; }
  .scroll-stage__stage { order: 1; height: 50vh; }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: clamp(72px, 9vw, 140px) 0;
  position: relative;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.stats__intro {
  max-width: 760px;
  margin-bottom: 80px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
@media (max-width: 880px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  position: relative;
  background: var(--paper);
  padding: 36px 28px 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.4s var(--ease);
  overflow: hidden;
}
.stat:hover { background: var(--paper-2); }
.stat__bar {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  transition: width 1s var(--ease-out);
}
.stat.in .stat__bar { width: 100%; }
.stat__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat__idx {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.stat__unit {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: rgba(248, 149, 64, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
}
.stat__num {
  font-weight: 700;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  margin-top: auto;
}
.stat__suffix { color: var(--orange); margin-left: 2px; }
.stat__label {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.4;
  max-width: 220px;
}

/* ============================================
   SERVICES (3D tilt cards)
   ============================================ */
.services {
  padding: var(--section-y) 0;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.services__head {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 880px) { .services__head { grid-template-columns: 1fr; gap: 24px; } }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  perspective: 1400px;
}
@media (max-width: 880px) { .services__grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  cursor: pointer;
}
.svc-card:hover {
  box-shadow: 0 30px 60px -20px rgba(12, 48, 73, 0.2);
}
.svc-card__num {
  position: absolute;
  top: 32px; right: 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
  transform: translateZ(20px);
}
.svc-card__visual {
  height: 200px;
  border-radius: 16px;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
  transform: translateZ(40px);
  transform-style: preserve-3d;
}
.svc-card__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  transform: translateZ(30px);
}
.svc-card__title .accent { color: var(--orange); }
.svc-card__body {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  transform: translateZ(20px);
  max-width: 440px;
}
.svc-card__arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(40px);
  transition: background 0.3s, color 0.3s, transform 0.5s var(--ease-out);
}
.svc-card:hover .svc-card__arrow {
  background: var(--orange);
  color: var(--navy);
  transform: translateZ(40px) rotate(-45deg);
}

/* Service card visual mini-scenes */
.scene-shelf {
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-end;
}
.scene-shelf__row {
  flex: 1;
  display: flex;
  gap: 2px;
  border-bottom: 2px solid var(--gray-blue-1);
  padding-bottom: 4px;
}
.scene-shelf__row .pr {
  flex: 1;
  border-radius: 1px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 25%),
    linear-gradient(90deg, transparent 0%, transparent 70%, rgba(0,0,0,0.2) 100%);
}

.scene-shelf__row .pr::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 30%; right: 30%;
  height: 1px;
  background: rgba(255,255,255,0.7);
}
.scene-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 1fr);
}
.scene-grid > div {
  border: 1px solid rgba(12, 48, 73, 0.08);
}
.scene-grid > div.hot { background: var(--orange); border-color: var(--orange); }
.scene-grid > div.warm { background: rgba(248, 149, 64, 0.3); }

/* Map mini scene */
.scene-map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-map svg { width: 80%; height: 80%; }

/* Handshake mini scene */
.scene-deal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-deal__chart {
  width: 70%;
  height: 60%;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.scene-deal__chart .bar {
  flex: 1;
  background: var(--navy);
  border-radius: 3px 3px 0 0;
}
.scene-deal__chart .bar.hi { background: var(--orange); }

/* ============================================
   VISPERA — feature spotlight
   ============================================ */
.vispera {
  padding: var(--section-y) 0;
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.vispera__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(248, 149, 64, 0.18), transparent 50%);
  pointer-events: none;
}
.vispera__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .vispera__grid { grid-template-columns: 1fr; } }
.vispera__eyebrow { color: var(--orange); display: inline-flex; align-items: center; gap: 10px; }
.vispera__title {
  margin-top: 20px;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--paper);
}
.vispera__title .accent { color: var(--orange); }
.vispera__body {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(251, 249, 245, 0.75);
  max-width: 480px;
}
.vispera__metrics {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vispera__metric { border-left: 2px solid var(--orange); padding-left: 14px; }
.vispera__metric .v {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.vispera__metric .k {
  font-size: 12px;
  font-weight: 500;
  color: rgba(251, 249, 245, 0.6);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.vispera__viz {
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  height: 480px;
  position: relative;
  overflow: hidden;
}
.vispera__viz-stage {
  position: absolute;
  inset: 0;
  perspective: 1600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vispera__viz .gondola {
  transform: rotateX(4deg) rotateY(-6deg) scale(0.92);
  animation: gentleFloat 7s ease-in-out infinite alternate;
}

/* AI-vision HUD overlay */
.vispera__hud { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.vispera__hud-cross { position: absolute; background: rgba(255,255,255,0.12); }
.vispera__hud-cross--h { left: 8%; right: 8%; top: 50%; height: 1px; }
.vispera__hud-cross--v { top: 10%; bottom: 10%; left: 50%; width: 1px; }
.vispera__hud-readout {
  position: absolute;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(248,149,64,0.75);
}
.vispera__hud-readout--tl { top: 16px; left: 18px; }
.vispera__hud-readout--bl { bottom: 16px; left: 18px; }
.vispera__hud-readout--br { bottom: 16px; right: 18px; }

/* RT. -> gondola morph */
.vispera__rt {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: clamp(80px, 12vw, 140px);
  letter-spacing: -0.05em;
  color: var(--paper);
  opacity: 1;
}
.vispera__rt .accent { color: var(--orange); }
.vispera__gondola {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.78);
}
.vispera__rt { animation: vRtCycle 11s ease-in-out infinite; }
.vispera__gondola { animation: vGondCycle 11s ease-in-out infinite; }
@keyframes vRtCycle {
  0% { opacity: 1; transform: scale(1); }
  7% { opacity: 1; transform: scale(1.06); }
  14% { opacity: 0; transform: scale(1.65); }
  86% { opacity: 0; transform: scale(1.65); }
  93% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes vGondCycle {
  0% { opacity: 0; transform: scale(0.78); }
  10% { opacity: 0; transform: scale(0.8); }
  19% { opacity: 1; transform: scale(1); }
  88% { opacity: 1; transform: scale(1); }
  96% { opacity: 0; transform: scale(0.86); }
  100% { opacity: 0; transform: scale(0.78); }
}

/* white top-down analysis scan over the vispera gondola */
.vispera__scan, .vispera__scanwash, .vispera__scangrid { pointer-events: none; }
.vispera__scan {
  position: absolute;
  left: 7%; right: 7%; top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff 50%, transparent);
  box-shadow: 0 0 12px #fff, 0 0 26px rgba(255,255,255,0.7);
  opacity: 0;
  z-index: 6;
}
.vispera__scanwash {
  position: absolute;
  left: 7%; right: 7%; top: -42px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 70%, rgba(255,255,255,0.28) 100%);
  opacity: 0;
  z-index: 5;
}
.vispera__scangrid {
  position: absolute;
  inset: 7% 7%;
  background-image:
    radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: 0;
  z-index: 4;
}
.vispera__viz.play .vispera__scan { animation: vScanLine 2.9s cubic-bezier(0.4,0,0.2,1) 1.7s infinite; }
.vispera__viz.play .vispera__scanwash { animation: vScanWash 2.9s cubic-bezier(0.4,0,0.2,1) 1.7s infinite; }
.vispera__viz.play .vispera__scangrid { animation: vGridReveal 0.6s ease 1.7s forwards; }
.vispera__scan { animation: vScanLine 2.9s cubic-bezier(0.4,0,0.2,1) 2.2s infinite; }
.vispera__scanwash { animation: vScanWash 2.9s cubic-bezier(0.4,0,0.2,1) 2.2s infinite; }
.vispera__scangrid { animation: vGridReveal 0.6s ease 2.2s forwards; }
@keyframes vGridReveal { to { opacity: 1; } }
@keyframes vScanLine {
  0% { transform: translateY(36px); opacity: 0; }
  8% { opacity: 1; }
  86% { opacity: 1; }
  96% { transform: translateY(444px); opacity: 0; }
  100% { transform: translateY(444px); opacity: 0; }
}
@keyframes vScanWash {
  0% { transform: translateY(36px); opacity: 0; }
  8% { opacity: 1; }
  86% { opacity: 1; }
  96% { transform: translateY(486px); opacity: 0; }
  100% { transform: translateY(486px); opacity: 0; }
}
.vispera__viz-corners span {
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--orange);
}
.vispera__viz-corners span:nth-child(1) { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.vispera__viz-corners span:nth-child(2) { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.vispera__viz-corners span:nth-child(3) { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.vispera__viz-corners span:nth-child(4) { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.vispera__viz-tag {
  position: absolute;
  top: 16px; right: 56px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}
.vispera__viz-tag .blip {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseBlip 1.2s ease-in-out infinite;
}
@keyframes pulseBlip {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(248,149,64,0.6); }
  50% { opacity: 0.7; transform: scale(0.8); box-shadow: 0 0 0 10px transparent; }
}

/* ============================================
   COVERAGE
   ============================================ */
.coverage {
  padding: var(--section-y) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  position: relative;
}
.coverage__head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.coverage__head h2 { margin-top: 20px; }
.coverage__stage {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.brazil-map { width: 100%; height: auto; }

/* Section scroll-margin so the fixed nav doesn't clip section heads */
section[id] {
  scroll-margin-top: 96px;
}

/* ============================================
   AWARDS
   ============================================ */
.awards {
  padding: var(--section-y) 0;
  background: var(--paper-2);
}
.awards__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .awards__head { grid-template-columns: 1fr; } }

/* New awards layout: featured GPTW + cards */
.awards__layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 20px;
}
@media (max-width: 880px) { .awards__layout { grid-template-columns: 1fr; } }
.awards__featured {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
  border-radius: 24px;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
}
.awards__featured-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.awards__featured-logo {
  width: 110px;
  height: 60px;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}
.awards__featured-logo::part(frame) { background: transparent; }
.awards__featured-logo::part(ring) { border-color: rgba(255, 255, 255, 0.32); }
.awards__featured-logo::part(empty) { color: rgba(255, 255, 255, 0.62); }
.awards__featured-glow {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,149,64,0.35), transparent 65%);
  top: -120px; right: -120px;
  filter: blur(40px);
  animation: blobFloat 14s ease-in-out infinite alternate;
}
.awards__featured-kicker {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--orange);
  text-transform: uppercase;
}
.seal8 {
  position: relative;
  width: 232px;
  height: 232px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal8__svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: sealSpin 40s linear infinite; }
.seal8__ring { transform-origin: center; }
@keyframes sealSpin { to { transform: rotate(360deg); } }
.seal8__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.seal8__num { font-weight: 800; font-size: 84px; line-height: 0.86; color: var(--orange); letter-spacing: -0.04em; display: inline-flex; align-items: baseline; }
.seal8__x { font-size: 42px; font-weight: 700; margin-left: 2px; }
.seal8__lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,249,245,0.7); margin-top: 6px; }
.awards__featured-foot { position: relative; display: flex; flex-direction: column; gap: 4px; }
.awards__featured-foot strong { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.awards__featured-foot span { font-size: 13px; color: rgba(251,249,245,0.65); }

.awards__cards { display: flex; flex-direction: column; gap: 16px; }
.award-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.5s var(--ease);
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(12,48,73,0.28);
  border-color: rgba(248,149,64,0.4);
}
.award-card:hover::before { width: 100%; }
.award-card__seal {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-deep);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.award-card:hover .award-card__seal { background: var(--navy); color: var(--orange); }
.award-card__body { flex: 1; }
.award-card__name { font-size: 19px; font-weight: 700; letter-spacing: -0.015em; color: var(--navy); }
.award-card__desc { font-size: 14px; color: var(--ink-mid); margin-top: 3px; }
.award-card__year { font-size: 14px; font-weight: 700; color: var(--navy); flex-shrink: 0; }

.awards__list {
  border-top: 1px solid var(--line);
}
.award-row {
  display: grid;
  grid-template-columns: 60px 1.6fr 1.2fr 120px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.4s var(--ease);
}
.award-row:hover { padding-left: 12px; background: var(--paper); }
.award-row__id { font-size: 14px; color: var(--orange-deep); font-weight: 600; }
.award-row__name { font-weight: 600; font-size: 22px; letter-spacing: -0.02em; }
.award-row__desc { font-size: 14px; color: var(--ink-mid); }
.award-row__year { text-align: right; font-weight: 600; font-size: 14px; color: var(--navy); }
@media (max-width: 760px) {
  .award-row { grid-template-columns: 50px 1fr; }
  .award-row > :nth-child(3), .award-row > :nth-child(4) { display: none; }
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: var(--section-y) 0;
  background: var(--paper);
  position: relative;
}
.cta__inner {
  background: var(--navy);
  border-radius: 32px;
  padding: clamp(56px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  color: var(--paper);
}
.cta__bg-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(248, 149, 64, 0.4), transparent 65%);
  filter: blur(50px);
  top: -200px; right: -200px;
  animation: blobFloat 14s ease-in-out infinite alternate;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .cta__grid { grid-template-columns: 1fr; } }
.cta__title {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--paper);
}
.cta__title .accent { color: var(--orange); }
.cta__sub {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(251, 249, 245, 0.7);
  max-width: 440px;
}
.cta__btns { display: flex; flex-direction: column; gap: 12px; }
.cta__btns .btn { justify-content: space-between; padding: 18px 28px; min-width: 240px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; } }
.footer__brand-logo { height: 72px; width: auto; display: block; margin-bottom: 4px; }
.footer__brand h4 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--navy);
}
.footer__brand p { color: var(--ink-mid); font-size: 14px; line-height: 1.55; max-width: 280px; }
.footer__col h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--orange-deep); }
.footer__bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-mid);
  gap: 16px;
  flex-wrap: wrap;
}
/* RT wordmark — assembled from words, then spins & locks */
.footer__rt {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 0 24px;
}
.footer__rt-words {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer__rt .frw {
  position: absolute;
  left: 50%; top: 50%;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 40px);
  letter-spacing: -0.015em;
  color: var(--ink-mid);
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(0.92);
}
.footer__rt.play .frw {
  animation: frwConverge 1.5s var(--ease-out) forwards;
  animation-delay: var(--d);
}
@keyframes frwConverge {
  0%   { opacity: 0; transform: translate(-50%,-50%) translate(var(--tx), var(--ty)) scale(0.92); }
  28%  { opacity: 1; }
  68%  { opacity: 1; color: var(--ink-mid); transform: translate(-50%,-50%) translate(calc(var(--tx) * 0.16), calc(var(--ty) * 0.16)) scale(0.5); }
  100% { opacity: 0; color: var(--orange); transform: translate(-50%,-50%) scale(0.12); }
}
.footer__rt-logo {
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: clamp(96px, 19vw, 280px);
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: var(--navy);
  opacity: 0;
  transform: scale(0.2) rotate(-170deg);
}
.footer__rt-logo .accent { color: var(--orange); }
.footer__rt.play .footer__rt-logo {
  animation: rtLogoLock 1.15s cubic-bezier(0.18, 0.9, 0.2, 1) forwards;
  animation-delay: 1.2s;
}
@keyframes rtLogoLock {
  0%   { opacity: 0; transform: scale(0.2) rotate(-170deg); }
  55%  { opacity: 1; transform: scale(1.1) rotate(10deg); }
  78%  { transform: scale(0.97) rotate(-3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.js-on .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.js-on .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.js-on .reveal[data-d="1"] { transition-delay: 0.08s; }
.js-on .reveal[data-d="2"] { transition-delay: 0.16s; }
.js-on .reveal[data-d="3"] { transition-delay: 0.24s; }
.js-on .reveal[data-d="4"] { transition-delay: 0.32s; }

/* ============================================
   STORE WALKTHROUGH (first-person)
   ============================================ */
.scroll-stage__sticky--store {
  background:
    radial-gradient(ellipse 76% 58% at 50% 40%, #0e3553 0%, #0a2c45 38%, #06192a 70%, #040f1a 100%);
}
.scroll-stage__sticky--store::before { display: none; }
/* subtle tech grid to match the new site's hero */
.scroll-stage__sticky--store::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 0%, transparent 75%);
}

.store {
  position: absolute;
  inset: 0;
  overflow: hidden;
  perspective: 1150px;
  perspective-origin: 50% 44%;
  z-index: 1;
}
/* Registered custom props so they can be animated via keyframes */
@property --walk { syntax: '<number>'; inherits: true; initial-value: 0; }
@property --doors { syntax: '<number>'; inherits: true; initial-value: 0; }
@property --rtglow { syntax: '<number>'; inherits: true; initial-value: 0; }

/* Auto walk-in (plays once when .playing is added) + gentle perpetual drift */
.store.playing {
  animation: storeWalk 8.4s cubic-bezier(0.42, 0, 0.18, 1) forwards,
             storeDrift 16s ease-in-out 8.4s infinite;
}
@keyframes storeWalk {
  0%   { --walk: 0;    --doors: 0; --rtglow: 0; }
  15%  { --walk: 170;  --doors: 1; --rtglow: 0; }
  52%  { --walk: 820;  --doors: 1; --rtglow: 0.35; }
  100% { --walk: 1460; --doors: 1; --rtglow: 1; }
}
@keyframes storeDrift {
  0%, 100% { perspective-origin: 50% 43%; }
  50% { perspective-origin: 52% 45%; }
}
.store__world {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--walk) * 1px));
  will-change: transform;
}

/* Floor + ceiling planes receding to vanishing point.
   Heights are capped so the far edge terminates BEFORE the RT gondola depth
   (z ≈ -1640) — otherwise the plane's vanishing edge converges right where the
   gondola sits and visually slices across it. The depth fog hides the cutoff. */
.store__floor {
  position: absolute;
  left: 50%;
  bottom: -6%;
  width: 3200px;
  height: 1500px;
  margin-left: -1600px;
  transform: rotateX(81deg);
  transform-origin: 50% 100%;
  background:
    linear-gradient(0deg, rgba(6,25,42,0) 0%, rgba(6,25,42,0.5) 38%, #06192a 70%),
    repeating-linear-gradient(90deg, rgba(140,170,195,0.09) 0 2px, transparent 2px 120px),
    repeating-linear-gradient(0deg, rgba(140,170,195,0.06) 0 2px, transparent 2px 120px),
    linear-gradient(180deg, #0d2c44, #08203360);
}
.store__ceiling {
  position: absolute;
  left: 50%;
  top: -8%;
  width: 3200px;
  height: 1280px;
  margin-left: -1600px;
  transform: rotateX(-81deg);
  transform-origin: 50% 0%;
  background:
    linear-gradient(180deg, rgba(6,25,42,0) 0%, rgba(6,25,42,0.55) 42%, #06192a 74%),
    repeating-linear-gradient(90deg, rgba(150,180,205,0.045) 0 2px, transparent 2px 240px),
    linear-gradient(0deg, #0b2740, #08203300);
}
/* ceiling light strips */
.store__ceiling::after {
  content: '';
  position: absolute;
  left: 46%; right: 46%;
  top: 10%; bottom: 24%;
  background: repeating-linear-gradient(0deg, rgba(225,238,248,0.22) 0 10px, transparent 10px 200px);
  filter: blur(1px);
}

/* depth haze */
.store__fog {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 50% 42%, transparent 0%, rgba(5,18,30,0.0) 24%, rgba(5,18,30,0.78) 70%);
}

/* ---- Aisles ---- */
.aisle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 440px;
  transform-style: preserve-3d;
}
.aisle--left {
  transform: translate(-50%, -50%) translateX(-470px) translateZ(calc(var(--az) * 1px)) rotateY(60deg);
}
.aisle--right {
  transform: translate(-50%, -50%) translateX(470px) translateZ(calc(var(--az) * 1px)) rotateY(-60deg);
}

/* Gray, messy aisle */
.aisle--gray {
  filter: grayscale(0.92) brightness(0.5) contrast(0.92);
}
.aisle__sign {
  position: absolute;
  top: -34px; left: 0; right: 0;
  height: 26px;
  border-radius: 3px 3px 0 0;
}
.aisle__sign--gray { background: #3c434b; }
.aisle__frame {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  padding: 6px;
  background: linear-gradient(180deg, #2c333b, #232a31);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
}
.aisle__shelf {
  position: relative;
  flex: 1;
}
.aisle__row {
  position: absolute;
  inset: 0;
  bottom: 6px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 0 3px;
}
.aisle__row .gprod {
  flex: 1;
  border-radius: 1px;
  transform-origin: bottom center;
}
.aisle__row .gprod--gap {
  background: transparent !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  height: 30% !important;
}
.aisle__board {
  position: absolute;
  bottom: 0; left: -3px; right: -3px;
  height: 5px;
  background: #4a525b;
  border-radius: 1px;
}

/* ---- RT aisle — colorful, glowing, end of corridor ---- */
.aisle--rt {
  width: 540px;
  height: 460px;
  transform: translate(-50%, -50%) translateZ(-1640px) scale(1.02);
  filter:
    drop-shadow(0 0 calc(var(--rtglow) * 30px) rgba(248,149,64,0.55))
    drop-shadow(0 30px 60px rgba(0,0,0,0.5))
    brightness(calc(0.92 + var(--rtglow) * 0.18))
    saturate(calc(0.85 + var(--rtglow) * 0.5));
  z-index: 2;
}
.rt-beam {
  position: absolute;
  left: 50%;
  top: -180px;
  width: 460px;
  height: 240px;
  margin-left: -230px;
  background: linear-gradient(180deg, rgba(248,149,64,0.34), rgba(248,149,64,0));
  clip-path: polygon(34% 0, 66% 0, 100% 100%, 0 100%);
  opacity: var(--rtglow);
  filter: blur(6px);
  pointer-events: none;
}
.rt-sign {
  position: absolute;
  top: -54px; left: 0; right: 0;
  height: 44px;
  background: var(--navy);
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
  box-shadow: 0 0 calc(var(--rtglow) * 26px) rgba(248,149,64,0.6), 0 12px 26px -8px rgba(0,0,0,0.5);
  overflow: hidden;
}
.rt-sign::after {
  content: '';
  position: absolute;
  bottom: -7px; left: 0; right: 0;
  height: 7px;
  background: var(--orange);
}
.rt-sign::before {
  content: '';
  position: absolute;
  top: 0; left: -32%;
  width: 32%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,210,150,0.6) 50%, transparent 70%);
  animation: signSweep 4s ease-in-out infinite;
}
.rt-frame {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 8px;
  background: linear-gradient(180deg, #14405e, #0e2c44);
  border: 1px solid rgba(248,149,64,0.25);
  border-radius: 5px;
  box-shadow: inset 0 0 40px rgba(248,149,64,0.08);
}
.rt-shelf {
  position: relative;
  flex: 1;
}
.rt-row {
  position: absolute;
  inset: 0;
  bottom: 7px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 0 4px;
}
.rt-row .rt-prod {
  flex: 1;
  height: 94%;
  border-radius: 2px 2px 1px 1px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 20%),
    linear-gradient(90deg, rgba(255,255,255,0.16) 0%, transparent 28%, transparent 72%, rgba(0,0,0,0.22) 100%);
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.18);
}
.rt-row .rt-prod::after {
  content: '';
  position: absolute;
  top: 26%; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 16%;
  background: rgba(255,255,255,0.92);
  border-radius: 1px;
}
.rt-row .rt-prod::before {
  content: '';
  position: absolute;
  top: 58%; left: 22%; right: 22%;
  height: 2px;
  background: rgba(255,255,255,0.5);
}
.rt-board {
  position: absolute;
  bottom: 0; left: -4px; right: -4px;
  height: 6px;
  background: linear-gradient(180deg, #f3ad6a, #e88f3e);
  border-radius: 1px;
  box-shadow: 0 0 calc(var(--rtglow) * 10px) rgba(248,149,64,0.5);
}
/* RT scanner — WHITE, top→down, tech analysis feel */
.rt-scan {
  position: absolute;
  top: 0; left: -3%; right: -3%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff 50%, transparent);
  box-shadow: 0 0 12px #fff, 0 0 26px rgba(255,255,255,0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 7;
}
/* translucent analysis band that trails the scan line */
.rt-scanwash {
  position: absolute;
  top: -40px; left: -3%; right: -3%;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.14) 70%, rgba(255,255,255,0.32) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
}
/* faint scan grid that appears during analysis */
.rt-scangrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;
}
.store.playing .rt-scan { animation: rtScanLine 2.8s cubic-bezier(0.4,0,0.2,1) 7.4s infinite; }
.store.playing .rt-scanwash { animation: rtScanWash 2.8s cubic-bezier(0.4,0,0.2,1) 7.4s infinite; }
.store.playing .rt-scangrid { animation: gridReveal 0.6s ease 7.4s forwards; }
@keyframes gridReveal { to { opacity: 1; } }

/* detection boxes pop in during scan (delay set inline per box) */
.store.playing .detect-box { animation: detPop 0.6s ease forwards; }
@keyframes detPop { from { opacity: 0; } to { opacity: 1; } }

/* callouts pop in at the end (delay set inline per callout) */
.store.playing .store__callouts .callout { animation: calloutPop 0.7s var(--ease-out) forwards; }
@keyframes calloutPop {
  from { opacity: 0; transform: translateY(14px) scale(0.88); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes rtScanLine {
  0%   { transform: translateY(0); opacity: 0; }
  6%   { opacity: 1; }
  88%  { opacity: 1; }
  96%  { transform: translateY(440px); opacity: 0; }
  100% { transform: translateY(440px); opacity: 0; }
}
@keyframes rtScanWash {
  0%   { transform: translateY(0); opacity: 0; }
  6%   { opacity: 1; }
  88%  { opacity: 1; }
  96%  { transform: translateY(480px); opacity: 0; }
  100% { transform: translateY(480px); opacity: 0; }
}

/* RT aisle detection boxes (recolored white-ish during scan) */
.aisle--rt .detect-box {
  z-index: 8;
  transform: none;
  border: 2px solid var(--orange);
  border-radius: 5px;
  background: rgba(248, 149, 64, 0.12);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 0 16px -2px rgba(248,149,64,0.5), inset 0 0 12px rgba(248,149,64,0.15);
}
/* corner brackets for a tech/scan read */
.aisle--rt .detect-box::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  opacity: 0.5;
  pointer-events: none;
}
.aisle--rt .detect-box__tag {
  top: auto;
  bottom: calc(100% + 4px);
  left: -2px;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: var(--orange);
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.6);
  z-index: 9;
}

/* caption dots */
.scroll-stage__dots {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}
.scroll-stage__dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(251, 249, 245, 0.2);
  animation: dotCycle 19s linear infinite;
}
.scroll-stage__dots .scroll-stage__dot:nth-child(1) { animation-delay: 0s; }
.scroll-stage__dots .scroll-stage__dot:nth-child(2) { animation-delay: 3.8s; }
.scroll-stage__dots .scroll-stage__dot:nth-child(3) { animation-delay: 7.6s; }
.scroll-stage__dots .scroll-stage__dot:nth-child(4) { animation-delay: 11.4s; }
.scroll-stage__dots .scroll-stage__dot:nth-child(5) { animation-delay: 15.2s; }
@keyframes dotCycle {
  0%   { background: rgba(251,249,245,0.2); width: 28px; }
  3%   { background: var(--orange); width: 46px; }
  18%  { background: var(--orange); width: 46px; }
  21%  { background: rgba(251,249,245,0.2); width: 28px; }
  100% { background: rgba(251,249,245,0.2); width: 28px; }
}

/* ---- Entry sliding doors ---- */
.store__door {
  position: absolute;
  top: 0; bottom: 0;
  width: 52%;
  z-index: 30;
  background: linear-gradient(180deg, #0a1f30 0%, #061522 100%);
  border-bottom: 4px solid rgba(248,149,64,0.5);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.store__door::after {
  /* glass reflection streak */
  content: '';
  position: absolute;
  top: -20%; bottom: -20%;
  width: 40%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
}
.store__door--l {
  left: 0;
  transform: translateX(calc(var(--doors) * -101%));
  justify-content: flex-end;
  border-right: 2px solid rgba(255,255,255,0.08);
}
.store__door--r {
  right: 0;
  transform: translateX(calc(var(--doors) * 101%));
  border-left: 2px solid rgba(255,255,255,0.08);
}
.store__door-label {
  font-weight: 800;
  font-size: clamp(20px, 3vw, 40px);
  letter-spacing: 0.12em;
  color: rgba(248,149,64,0.85);
  padding-right: 6%;
  white-space: nowrap;
}

/* ---- Callouts overlay ---- */
.store__callouts {
  position: absolute;
  inset: 0;
  z-index: 14;
  pointer-events: none;
}
/* override 3D transform from base .callout for this flat overlay */
.store__callouts .callout {
  background: linear-gradient(180deg, rgba(18,52,80,0.92), rgba(9,30,48,0.92));
  border: 1px solid rgba(248,149,64,0.45);
  border-radius: 14px;
  padding: 14px 18px 13px 16px;
  min-width: 116px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px -14px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset, 0 0 22px -6px rgba(248,149,64,0.35);
  border-left: 3px solid var(--orange);
  transform: translateY(10px) scale(0.9);
}
.store__callouts .callout > span:first-child {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  opacity: 1 !important;
  color: rgba(255,255,255,0.72) !important;
}
.store__callouts .callout .v {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--orange);
  margin-top: 5px;
  text-shadow: 0 0 18px rgba(248,149,64,0.45);
}
.store__callouts .callout.on {
  transform: translateY(0) scale(1);
}

/* ---- Copy overlay + scrim ---- */
.scroll-stage__scrim {
  position: absolute;
  inset: 0;
  z-index: 13;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4,17,29,0.82) 0%, rgba(4,17,29,0.5) 32%, transparent 56%);
}
.scroll-stage__copy--overlay {
  position: absolute;
  z-index: 15;
  left: var(--pad-x);
  top: 0;
  bottom: 0;
  width: min(44%, 520px);
  max-width: none;
  display: flex;
  align-items: center;
}
.scroll-stage__copy--overlay .scroll-stage__step-content {
  top: 30%;
}
.scroll-stage__copy--overlay .scroll-stage__dots {
  position: absolute;
  bottom: 16%;
  margin-top: 0;
}

@media (max-width: 880px) {
  .scroll-stage__copy--overlay {
    width: auto;
    right: var(--pad-x);
    align-items: flex-end;
    padding-bottom: 14vh;
  }
  .scroll-stage__scrim {
    background: linear-gradient(0deg, rgba(4,17,29,0.9) 0%, rgba(4,17,29,0.5) 40%, transparent 70%);
  }
  .aisle--rt { transform: translate(-50%, -50%) translateZ(-1640px) scale(0.82); }
}

/* Store walkthrough — tighten on tablet/mobile so it isn't an empty tall band */
@media (max-width: 880px) {
  .scroll-stage { height: clamp(520px, 74vh, 680px); }
  /* the corridor reads sparse in portrait — hide the far corner callouts,
     let the caption + glowing gondola carry the moment */
  .store__callouts { display: none; }
  .aisle--rt { transform: translate(-50%, -50%) translateZ(-1640px) scale(0.96); }
  .scroll-stage__copy--overlay { padding-bottom: 12vh; }
  .scroll-stage__copy--overlay .scroll-stage__step-content { top: 24%; }
}
@media (max-width: 560px) {
  .scroll-stage { height: clamp(480px, 70vh, 600px); }
  .aisle--rt { transform: translate(-50%, -50%) translateZ(-1640px) scale(1.08); }
}

/* Subtle continuous motion on service card mini-scenes */
.scene-grid > div.hot { animation: hmPulse 2.4s ease-in-out infinite; }
.scene-grid > div.warm { animation: hmPulse 2.4s ease-in-out infinite; animation-delay: 0.8s; }
@keyframes hmPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
.scene-deal__chart .bar { animation: barBreathe 3s ease-in-out infinite; transform-origin: bottom; }
.scene-deal__chart .bar:nth-child(odd) { animation-delay: 0.4s; }
.scene-deal__chart .bar.hi { animation-duration: 2.2s; }
@keyframes barBreathe { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.9); } }
.scene-shelf { overflow: hidden; }
.scene-shelf::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 40%;
  left: -40%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shelfShimmer 4.5s ease-in-out infinite;
}
@keyframes shelfShimmer { 0% { left: -40%; } 60%, 100% { left: 120%; } }
.svc-card__visual { position: relative; }
.hero { padding-bottom: 116px; }
.hero .scroll-cue { display: none; }

.hero__fx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__awards {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px var(--pad-x);
  border-top: 1px solid var(--line);
  background: rgba(251, 249, 245, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__awards-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mid);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.hero__awards-track {
  overflow: hidden;
  flex: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.hero__awards-marquee {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: awardsScroll 34s linear infinite;
}
.hero__award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}
.hero__award svg { color: var(--orange); flex-shrink: 0; }
@keyframes awardsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 880px) {
  .hero__awards-label { display: none; }
  .hero { padding-bottom: 96px; }
}

/* ============================================
   HERO V2 — brand video + readable left scrim
   ============================================ */
.herov {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #06192a;
  padding-top: 120px;
  padding-bottom: 150px;
}
.herov__video { position: absolute; inset: 0; z-index: 0; background: #06192a; }
.herov__video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.92) brightness(0.8) contrast(1.05);
}
/* brand color-grade — unifies any video frame with the navy/orange identity */
.herov__video::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 78% 52%, rgba(248,149,64,0.16) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6,21,38,0.5) 0%, rgba(6,21,38,0.2) 30%, rgba(6,21,38,0.55) 100%);
  mix-blend-mode: normal;
  pointer-events: none;
}
/* dark scrim — heavy on the left where copy sits, clears to the right for the system; soft vignette frames the whole hero */
.herov__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg,
      rgba(5,18,32,0.97) 0%,
      rgba(5,18,32,0.92) 30%,
      rgba(5,18,32,0.6) 50%,
      rgba(5,18,32,0.16) 68%,
      rgba(5,18,32,0.04) 82%),
    linear-gradient(0deg, rgba(5,18,32,0.9) 0%, rgba(5,18,32,0) 30%),
    radial-gradient(140% 120% at 50% 42%, transparent 58%, rgba(4,13,24,0.55) 100%);
}
.herov__grid-fx {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(100deg, #000 0%, transparent 55%);
  mask-image: linear-gradient(100deg, #000 0%, transparent 55%);
}
.herov__live {
  position: absolute;
  top: 104px; right: clamp(20px, 4vw, 56px);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(6,21,38,0.5);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.86);
  text-transform: uppercase;
}
.herov__live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #46d39a; box-shadow: 0 0 0 0 rgba(70,211,154,0.6);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(70,211,154,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(70,211,154,0); }
}
.herov__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.herov__copy { max-width: 780px; }
.herov__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 11px;
  border: 1px solid rgba(248,149,64,0.32);
  border-radius: 999px;
  background: rgba(248,149,64,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffd9b0;
  margin-bottom: 26px;
}
.herov__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.herov__title {
  font-weight: 800;
  font-size: clamp(46px, 6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #fff;
}
.herov__title .hl-key { display: inline-block; }
.herov__title .hl-line { white-space: nowrap; }
.herov__title .hl-dot { color: var(--orange); }
/* block highlight on "poder" — orange painted directly on the element (bulletproof) */
.herov__title .hl-key {
  position: relative;
  color: var(--navy);
  background: var(--orange);
  border-radius: 8px;
  padding: 0.02em 0.14em 0.04em;
  margin: 0 0.04em;
  box-shadow: 0 14px 34px -12px rgba(248,149,64,0.6);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  overflow: hidden;
}
/* subtle sheen sweep for life */
.herov__title .hl-key::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.45) 50%, transparent 60%);
  transform: translateX(-130%);
  animation: keySheen 5s ease-in-out 1.2s infinite;
}
@keyframes keySheen {
  0% { transform: translateX(-130%); }
  22%, 100% { transform: translateX(130%); }
}
.herov__sub {
  margin-top: 28px;
  max-width: 480px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
  color: rgba(255,255,255,0.82);
}
.herov__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn--glass {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); }
.herov__meta {
  display: flex; gap: 14px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.herov__stat {
  position: relative;
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 22px 15px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.herov__stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent 80%);
}
.herov__stat:hover {
  transform: translateY(-3px);
  border-color: rgba(248,149,64,0.45);
  background: linear-gradient(180deg, rgba(248,149,64,0.12), rgba(255,255,255,0.03));
}
.herov__stat strong {
  display: flex; align-items: baseline; gap: 5px;
  font-size: clamp(28px, 2.8vw, 40px); font-weight: 800; line-height: 1;
  color: var(--orange); letter-spacing: -0.03em;
  text-shadow: 0 0 22px rgba(248,149,64,0.35);
}
.herov__stat strong .herov__stat-u { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0; text-transform: none; }
.herov__stat span {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); font-weight: 600;
}
/* scroll cue */
.herov__scroll {
  position: absolute; left: 50%; bottom: 78px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}
.herov__scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  position: relative; overflow: hidden;
}
.herov__scroll-line::after {
  content: ''; position: absolute; left: 0; top: -38px;
  width: 1px; height: 38px;
  background: linear-gradient(180deg, transparent, var(--orange));
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(76px); opacity: 0; }
}
@media (max-width: 880px) { .herov__scroll { display: none; } }
/* awards bar */
.herov__awards {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(6,21,38,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.herov__awards-label {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7);
  white-space: nowrap; flex-shrink: 0;
}
.herov__awards-track {
  overflow: hidden; flex: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.herov__awards-marquee { display: flex; gap: 12px; width: max-content; animation: awardsScroll 60s linear infinite; }
.herov__award {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 13px; font-weight: 600; color: #fff;
  padding: 8px 15px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
  background: rgba(255,255,255,0.05);
}
.herov__award svg { color: var(--orange); flex-shrink: 0; }
@media (max-width: 880px) {
  .herov__video video { object-position: 64% center; }
  .herov__awards-label { display: none; }
  .herov__live { top: 88px; }
}

/* ============================================
   OBSESSION — statement section
   ============================================ */
.obsession {
  padding: var(--section-y) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.obsession__inner { display: flex; flex-direction: column; align-items: center; }
.obsession .eyebrow { justify-content: center; }
.obsession__title {
  margin-top: 22px;
  font-weight: 800;
  font-size: clamp(38px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy);
  max-width: 16ch;
  text-wrap: balance;
}
.obsession__lead {
  margin: 34px auto 0;
  max-width: 64ch;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--ink-mid);
}

/* ============================================
   CAPABILITIES — dark "what we do" grid
   ============================================ */
.caps {
  padding: var(--section-y) 0;
  background: var(--paper);
  color: var(--navy);
  border-top: 1px solid var(--line);
}
.eyebrow--light { color: var(--orange-deep); }
.eyebrow--light .dot { background: var(--orange); }
.caps__title {
  margin-top: 18px;
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 66px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.caps__title .accent { color: var(--orange); }
.caps__lead {
  margin-top: 22px; max-width: 52ch;
  font-size: clamp(15px, 1.1vw, 18px); line-height: 1.6;
  color: var(--ink-mid);
}
.caps__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cap {
  position: relative;
  padding: 40px 36px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.cap:hover { background: var(--paper-2); }
.cap__num { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.cap__n { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--orange-deep); }
.cap__cat { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.cap__title {
  font-size: clamp(20px, 1.7vw, 26px); font-weight: 700; line-height: 1.12;
  letter-spacing: -0.015em; margin-bottom: 14px; color: var(--navy);
}
.cap__desc { font-size: 14.5px; line-height: 1.6; color: var(--ink-mid); }
.cap__line {
  position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--orange); transition: width 0.5s var(--ease);
}
.cap:hover .cap__line { width: 100%; }
@media (max-width: 1024px) { .caps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .caps__grid { grid-template-columns: 1fr; } }
