:root {
  --bg: #090b11;
  --panel: #0d1017;
  --panel-strong: #080a10;
  --panel-soft: #11151f;
  --white: #f5f2ec;
  --accent: #df6d3a;
  --accent-soft: #e3b38a;
  --text-soft: rgba(245, 242, 236, 0.76);
  --text-muted: rgba(245, 242, 236, 0.52);
  --line: rgba(245, 242, 236, 0.1);
  --paper: #f3f0ea;
  --paper-strong: #ece7e0;
  --ink: #151821;
  --ink-soft: rgba(21, 24, 33, 0.74);
  --ink-muted: rgba(21, 24, 33, 0.48);
  --paper-line: rgba(21, 24, 33, 0.12);
  --font-display: "Montserrat", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-accent: "Cormorant Garamond", serif;
  --ease: 1s cubic-bezier(0.22, 1, 0.36, 1);
  --hero-side-space: clamp(32px, 6vw, 96px);
  --hero-stage-height: clamp(100svh, 120svh, 1400px);
  --hero-video-base-scale: 1.18;
  --hero-video-extra-scale: 0;
  --hero-title-size: clamp(4.2rem, 10vw, 9.4rem);
  --hero-title-lockup-width: calc(var(--hero-title-size) * 2.23);
  --hero-title-lockup-shift: clamp(34px, 2.6vw, 52px);
  --hero-subtitle-size: clamp(0.9rem, 1.1vw, 1.16rem);
  --hero-subtitle-track: 0.62em;
  --hero-about-size: clamp(1.08rem, 1.32vw, 1.28rem);
  --hero-brand-width: min(36rem, calc(100vw - (var(--hero-side-space) * 2)));
  --hero-brand-offset-top: clamp(170px, 33vh, 276px);
  --hero-content-bottom-space: clamp(60px, 10vh, 120px);
  --hero-scroll-progress: 1;
  --hero-brand-progress: 1;
  --hero-copy-progress: 1;
  --bridge-progress: 1;
  --proof-progress: 1;
  --offerings-progress: 1;
  --services-progress: 1;
  --services-title-progress: 1;
  --services-light-progress: 0;
  --top-past-dim-opacity: 0;
  --hero-brand-shift-max: clamp(16px, 2.2vh, 30px);
  --bridge-height: clamp(430px, 58vh, 760px);
  --bridge-overlap: clamp(108px, 13vh, 184px);
  --proof-overlap: clamp(92px, 10vh, 152px);
  --bridge-media-shift: 0px;
  --bridge-media-scale: 1.08;
  --bridge-media-reveal: 1;
  --offerings-height: clamp(108svh, 118svh, 1360px);
  --offerings-overlap: clamp(110px, 12vh, 176px);
  --offerings-media-shift: 0px;
  --offerings-media-scale: 1.08;
}

.js {
  --hero-scroll-progress: 0;
  --hero-brand-progress: 0;
  --hero-copy-progress: 0;
  --bridge-progress: 0;
  --proof-progress: 0;
  --bridge-media-reveal: 0;
  --offerings-progress: 0;
  --services-progress: 0;
  --services-title-progress: 0;
  --services-light-progress: 0;
  --top-past-dim-opacity: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(120px, 18vh, 220px);
  pointer-events: none;
  z-index: 18;
  background:
    linear-gradient(
      180deg,
      rgba(6, 8, 14, calc(var(--top-past-dim-opacity) * 0.72)) 0%,
      rgba(6, 8, 14, calc(var(--top-past-dim-opacity) * 0.5)) 22%,
      rgba(6, 8, 14, calc(var(--top-past-dim-opacity) * 0.24)) 52%,
      rgba(6, 8, 14, calc(var(--top-past-dim-opacity) * 0.08)) 74%,
      rgba(6, 8, 14, 0) 100%
    );
  opacity: 1;
}

main {
  display: block;
}

.hero-stage {
  position: relative;
  min-height: var(--hero-stage-height);
  background: #06070b;
  overflow: visible;
}

.hero-stage-pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  height: 100svh;
  background: #06070b;
  overflow: hidden;
  isolation: isolate;
}

.hero-stage-pin::after {
  content: "";
  position: absolute;
  left: -14%;
  right: -14%;
  bottom: clamp(-132px, -11vh, -74px);
  height: clamp(240px, 30vh, 360px);
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 5, 9, 0) 0%, rgba(4, 5, 9, 0.18) 24%, rgba(4, 5, 9, 0.54) 58%, rgba(4, 5, 9, 0.82) 84%, rgba(4, 5, 9, 0.94) 100%),
    radial-gradient(82% 108% at 50% 100%, rgba(4, 5, 9, 0.96) 0%, rgba(4, 5, 9, 0.58) 34%, rgba(4, 5, 9, 0.18) 64%, rgba(4, 5, 9, 0) 84%);
  filter: blur(72px);
  opacity: 0.96;
}

.hero-stage-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: var(--hero-brand-offset-top) var(--hero-side-space) var(--hero-content-bottom-space);
  transform: translateY(calc(var(--hero-scroll-progress) * -80px));
  will-change: transform;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  padding: clamp(20px, 2.8vw, 34px) var(--hero-side-space) 0;
}

.site-nav {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  padding: 0;
}

.site-nav-link {
  position: relative;
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(0.66rem, 0.78vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-soft);
  transition:
    color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.site-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: calc(100% - clamp(26px, 2.2vw, 34px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223, 109, 58, 0.92), transparent);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.68);
  transform-origin: center;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-link.is-current {
  color: var(--white);
}

.site-nav-link:hover::after,
.site-nav-link:focus-visible::after,
.site-nav-link.is-current::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.site-nav-link:focus-visible {
  outline: none;
}

.hero-stage-media,
.hero-stage-video,
.hero-stage-overlay,
.hero-stage-noise,
.hero-stage-dim {
  position: absolute;
  inset: 0;
}

.hero-stage-media {
  overflow: hidden;
  transform: translate3d(0, 0, 0) scale(1.04);
  transform-origin: center center;
  will-change: transform;
}

.hero-stage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(calc(var(--hero-video-base-scale) + var(--hero-video-extra-scale)));
  filter: saturate(0.68) contrast(0.92) brightness(0.44);
  will-change: transform, opacity, filter;
}

.hero-stage-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 8, 0.88) 0%, rgba(3, 4, 8, 0.68) 24%, rgba(3, 4, 8, 0.36) 52%, rgba(3, 4, 8, 0.48) 100%),
    linear-gradient(180deg, rgba(2, 3, 6, 0.24) 0%, rgba(2, 3, 6, 0.18) 34%, rgba(2, 3, 6, 0.46) 62%, rgba(2, 3, 6, 0.82) 100%),
    radial-gradient(circle at 26% 48%, rgba(255, 255, 255, 0.06), transparent 26%);
  opacity: 0.92;
  will-change: opacity;
}

.hero-stage-noise {
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 128px 128px;
  mix-blend-mode: soft-light;
  will-change: opacity;
}

.hero-stage-dim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(4, 5, 9, 0.02) 0%,
      rgba(4, 5, 9, 0.05) 28%,
      rgba(4, 5, 9, 0.1) 48%,
      rgba(4, 5, 9, 0.22) 66%,
      rgba(4, 5, 9, 0.48) 84%,
      rgba(4, 5, 9, 0.86) 100%
    ),
    radial-gradient(110% 88% at 50% 100%, rgba(4, 5, 9, 0.64) 0%, rgba(4, 5, 9, 0.34) 36%, rgba(4, 5, 9, 0.12) 56%, rgba(4, 5, 9, 0) 78%);
  opacity: calc(0.14 * var(--bridge-progress));
  filter: blur(22px);
  mix-blend-mode: multiply;
  will-change: opacity, filter;
}

.offerings-shell {
  width: min(100%, 1440px);
  min-height: var(--offerings-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(184px, 22vh, 264px) var(--hero-side-space) clamp(140px, 16vh, 210px);
}

.hero-brand-anchor {
  position: relative;
  z-index: 2;
  width: min(var(--hero-brand-width), 100%);
  pointer-events: none;
}

.hero-brand-motion {
  width: 100%;
  transform: translate3d(0, calc(var(--hero-brand-progress) * var(--hero-brand-shift-max)), 0);
  will-change: transform;
}

.hero-brand {
  width: 100%;
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  opacity: 1;
  justify-items: start;
}

.js .hero-brand {
  transform: translateY(22px);
  opacity: 0;
  transition:
    transform 1.45s var(--ease),
    opacity 1.45s var(--ease);
}

.js .hero-brand.is-ready {
  transform: translateY(0);
  opacity: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.09em;
  color: var(--white);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  white-space: nowrap;
}

.hero-logotype {
  position: relative;
  display: inline-grid;
  justify-items: start;
  align-content: start;
  width: max-content;
  max-width: 100%;
  overflow: visible;
}

.hero-title-lockup {
  position: relative;
  display: block;
  font-size: var(--hero-title-size);
  line-height: 0.82;
  width: max-content;
  max-width: 100%;
  padding-right: 0;
  overflow: visible;
}

.hero-subtitle {
  display: block;
  width: 100%;
  justify-self: end;
  margin-top: clamp(8px, 1vw, 14px);
  padding-left: 0;
  transform: translateX(clamp(0.34rem, 0.42vw, 0.72rem));
  font-family: var(--font-display);
  font-size: var(--hero-subtitle-size);
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--hero-subtitle-track);
  text-align: right;
  color: var(--accent);
  white-space: nowrap;
}

.hero-text-carousel {
  max-width: 31rem;
  margin-top: clamp(22px, 2.4vw, 32px);
  margin-bottom: clamp(16px, 2vw, 24px);
  overflow: hidden;
  border-radius: 4px;
  --hero-copy-fade-progress: clamp(0, calc((var(--bridge-progress) - 0.28) * 1.5), 1);
  opacity: calc(1 - (var(--hero-copy-fade-progress) * 0.34));
  filter: brightness(calc(1.04 - (var(--hero-copy-fade-progress) * 0.08)));
  will-change: opacity, filter;
}

.hero-text-carousel-track {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  will-change: transform;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.hero-text-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  align-content: start;
  gap: clamp(6px, 0.8vw, 10px);
  min-height: clamp(8.6rem, 10vw, 10.6rem);
  overflow: visible;
  opacity: 1;
}

.hero-text-carousel-item .hero-about-label {
  display: block;
  min-height: 1.4em;
  font-size: clamp(0.72rem, 0.84vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.66);
}

.hero-text-carousel-item .hero-about-label-placeholder {
  visibility: hidden;
  pointer-events: none;
}

.hero-text-carousel-item .hero-about-copy {
  display: block;
  max-width: 29rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.78;
  color: rgba(245, 242, 236, 0.9);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.hero-carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: clamp(12px, 1.5vw, 20px);
  opacity: calc(1 - (var(--hero-copy-fade-progress) * 0.3));
  transition: opacity 320ms ease;
}

.hero-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 242, 236, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-carousel-dot.active {
  background: #df6d3a;
  width: 24px;
  border-radius: 3px;
}

.hero-about {
  max-width: 31rem;
  margin-top: clamp(22px, 2.4vw, 32px);
  padding-bottom: clamp(8px, 1vh, 14px);
  display: grid;
  gap: clamp(6px, 0.8vw, 10px);
  overflow: visible;
  opacity: calc(0.22 + (var(--hero-copy-progress) * 0.78));
  clip-path: none;
  --hero-about-label-progress: clamp(0, calc(var(--hero-copy-progress) * 1.9), 1);
  --hero-about-highlight-progress: clamp(0, calc((var(--hero-copy-progress) - 0.01) * 1.8), 1);
  --hero-about-copy-progress: clamp(0, calc((var(--hero-copy-progress) - 0.03) * 1.7), 1);
}

.hero-about-label,
.hero-about-highlight,
.hero-about-copy {
  display: block;
  will-change: transform, opacity;
}

.hero-about-label {
  font-size: clamp(0.72rem, 0.84vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: var(--hero-about-label-progress);
  transform: translate3d(0, calc((1 - var(--hero-about-label-progress)) * 8px), 0);
}

.hero-about-highlight {
  font-family: var(--font-accent);
  font-size: clamp(1.62rem, 2.7vw, 2.34rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0.02em;
  color: var(--accent-soft);
  text-transform: none;
  opacity: var(--hero-about-highlight-progress);
  transform: translate3d(0, calc((1 - var(--hero-about-highlight-progress)) * 10px), 0);
}

.hero-about-copy {
  max-width: 29rem;
  font-size: var(--hero-about-size);
  line-height: 1.78;
  color: var(--text-soft);
  opacity: var(--hero-about-copy-progress);
  transform: translate3d(0, calc((1 - var(--hero-about-copy-progress)) * 12px), 0);
}

.bridge-band {
  position: relative;
  z-index: 7;
  min-height: auto;
  margin-top: -72px;
  margin-bottom: 0;
  background:
    radial-gradient(120% 102% at 14% 0%, rgba(223, 109, 58, 0.08) 0%, rgba(223, 109, 58, 0) 34%),
    radial-gradient(84% 88% at 88% 18%, rgba(227, 179, 138, 0.05) 0%, rgba(227, 179, 138, 0) 38%),
    linear-gradient(180deg, #05070b 0%, #06080d 24%, #080b11 58%, #0a0d14 100%);
  overflow: visible;
  isolation: isolate;
  box-shadow:
    0 -96px 140px rgba(5, 7, 11, 0.78),
    0 120px 180px rgba(7, 9, 14, 0.82);
}

.bridge-band::before,
.bridge-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.bridge-band::before {
  top: calc(var(--bridge-overlap) * -0.78);
  height: clamp(340px, 42vh, 520px);
  background:
    linear-gradient(180deg, rgba(4, 5, 9, 1) 0%, rgba(5, 7, 11, 0.88) 16%, rgba(6, 8, 12, 0.56) 36%, rgba(6, 8, 12, 0.22) 58%, rgba(6, 8, 12, 0.06) 78%, rgba(6, 8, 12, 0) 100%),
    radial-gradient(82% 118% at 50% 0%, rgba(6, 8, 12, 0.7) 0%, rgba(223, 109, 58, 0.08) 22%, rgba(6, 8, 12, 0.22) 42%, rgba(6, 8, 12, 0) 80%);
  filter: blur(96px);
  opacity: 1;
}

.bridge-band::after {
  bottom: calc(var(--proof-overlap) * -1.28);
  height: clamp(420px, 54vh, 640px);
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0) 0%, rgba(5, 7, 11, 0.04) 12%, rgba(6, 8, 12, 0.16) 30%, rgba(7, 9, 14, 0.36) 52%, rgba(8, 11, 17, 0.64) 76%, rgba(10, 13, 20, 0.86) 100%),
    radial-gradient(92% 126% at 50% 100%, rgba(223, 109, 58, 0.1) 0%, rgba(227, 179, 138, 0.06) 18%, rgba(10, 13, 20, 0.1) 36%, rgba(10, 13, 20, 0) 74%);
  filter: blur(108px);
  opacity: 0.92;
}

.bridge-band-media,
.bridge-band-video,
.bridge-band-overlay,
.bridge-band-noise,
.bridge-band-dim {
  position: absolute;
  inset: 0;
}

.bridge-band-media {
  top: -42px;
  right: 0;
  bottom: -24px;
  left: 0;
  z-index: 0;
  overflow: hidden;
  opacity: var(--bridge-media-reveal);
  filter: blur(calc((1 - var(--bridge-media-reveal)) * 26px));
  transform: translate3d(0, var(--bridge-media-shift), 0) scale(var(--bridge-media-scale));
  transform-origin: center center;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 10%, #000 22%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 10%, #000 22%, #000 100%);
  will-change: transform, opacity, filter;
}

.bridge-band-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  filter: saturate(0.6) contrast(0.92) brightness(0.34);
  will-change: transform, filter;
}

.bridge-band-overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 9, 0.96) 0%, rgba(4, 5, 9, 0.76) 28%, rgba(4, 5, 9, 0.52) 58%, rgba(4, 5, 9, 0.8) 100%),
    linear-gradient(180deg, rgba(4, 5, 9, 0.48) 0%, rgba(4, 5, 9, 0.28) 28%, rgba(4, 5, 9, 0.64) 74%, rgba(4, 5, 9, 0.9) 100%);
  opacity: 0.86;
}

.bridge-band-noise {
  opacity: 0.026;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 132px 132px;
  mix-blend-mode: soft-light;
}

.bridge-band-dim {
  background:
    radial-gradient(82% 118% at 50% 12%, rgba(5, 7, 11, 0.08) 0%, rgba(5, 7, 11, 0.24) 34%, rgba(5, 7, 11, 0.54) 72%, rgba(5, 7, 11, 0.78) 100%),
    radial-gradient(40% 54% at 50% 100%, rgba(223, 109, 58, 0.08) 0%, rgba(223, 109, 58, 0) 74%);
  opacity: 0.08;
  filter: blur(20px);
  will-change: opacity, filter;
}

.bridge-band-shell {
  width: min(100%, 1440px);
  min-height: auto;
  margin: 0 auto;
  display: grid;
  gap: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.bridge-band-stage {
  min-height: var(--bridge-height);
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(76px, 9vh, 138px);
  padding: clamp(18px, 3vh, 32px) var(--hero-side-space) clamp(132px, 17vh, 214px);
  position: relative;
  z-index: 2;
}

.bridge-band-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(76rem, 90vw);
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(58% 42% at 50% 18%, rgba(12, 14, 20, 0.54) 0%, rgba(12, 14, 20, 0.18) 46%, rgba(12, 14, 20, 0) 100%),
    radial-gradient(42% 34% at 50% 22%, rgba(223, 109, 58, 0.08) 0%, rgba(223, 109, 58, 0) 78%),
    radial-gradient(78% 64% at 50% 74%, rgba(7, 9, 14, 0.48) 0%, rgba(7, 9, 14, 0) 76%);
  filter: blur(40px);
  opacity: 0.96;
}

.bridge-band-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(-170px, -18vh, -118px);
  height: clamp(240px, 30vh, 360px);
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0) 0%, rgba(6, 8, 12, 0.16) 18%, rgba(7, 9, 14, 0.46) 40%, rgba(8, 11, 17, 0.82) 68%, rgba(8, 11, 17, 0) 100%),
    radial-gradient(88% 120% at 50% 100%, rgba(223, 109, 58, 0.1) 0%, rgba(223, 109, 58, 0) 68%);
  filter: blur(56px);
  opacity: 0.94;
}

.bridge-band-services.services {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: calc(var(--proof-overlap) * -0.08);
  padding-top: clamp(106px, 12vh, 168px);
}

.bridge-band-copy {
  --bridge-copy-progress: clamp(0, calc((var(--bridge-progress) - 0.02) * 0.98), 1);
  margin: 0 0 clamp(8px, 1.2vh, 18px);
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 11.5ch);
  max-width: 100%;
  align-items: center;
  justify-items: center;
  row-gap: clamp(0rem, 0.16vw, 0.08rem);
  font-family: var(--font-accent);
  font-size: clamp(3rem, 6.1vw, 5.2rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.035em;
  text-align: center;
  color: rgba(224, 195, 166, 0.92);
  text-shadow:
    0 10px 24px rgba(0, 0, 0, 0.2),
    0 2px 10px rgba(6, 8, 12, 0.22);
  will-change: auto;
  opacity: calc(0.2 + (var(--bridge-copy-progress) * 0.8));
  transform:
    translateY(calc((1 - var(--bridge-copy-progress)) * -10px))
    scale(calc(0.992 + (var(--bridge-copy-progress) * 0.008)));
}

.bridge-band-word {
  display: block;
  white-space: nowrap;
  justify-self: center;
  will-change: auto;
}

.bridge-band-word-tradicao {
  --bridge-tradicao-progress: clamp(0, calc((var(--bridge-copy-progress) - 0.02) * 1.04), 1);
  color: rgba(244, 240, 233, 0.94);
  opacity: var(--bridge-tradicao-progress);
  font-weight: 700;
  font-size: 1.22em;
  line-height: 0.92;
  filter: blur(calc((1 - var(--bridge-tradicao-progress)) * 10px));
  transform:
    translate3d(
      0,
      calc((1 - var(--bridge-tradicao-progress)) * -22px),
      0
    )
    scale(calc(0.986 + (var(--bridge-tradicao-progress) * 0.014)));
}

.bridge-band-word-ampersand {
  --bridge-ampersand-progress: clamp(0, calc((var(--bridge-copy-progress) - 0.14) * 1.24), 1);
  color: rgba(203, 94, 49, 0.96);
  opacity: var(--bridge-ampersand-progress);
  display: grid;
  place-items: center;
  width: 1.08em;
  font-size: 0.66em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  filter: blur(calc((1 - var(--bridge-ampersand-progress)) * 8px));
  transform:
    translate3d(
      0,
      calc((1 - var(--bridge-ampersand-progress)) * 6px),
      0
    )
    scale(calc(0.9 + (var(--bridge-ampersand-progress) * 0.1)));
}

.bridge-band-word-competencia {
  --bridge-competencia-progress: clamp(0, calc((var(--bridge-copy-progress) - 0.24) * 1.34), 1);
  color: rgba(244, 240, 233, 0.94);
  opacity: var(--bridge-competencia-progress);
  font-size: 0.84em;
  line-height: 0.92;
  filter: blur(calc((1 - var(--bridge-competencia-progress)) * 10px));
  transform:
    translate3d(
      0,
      calc((1 - var(--bridge-competencia-progress)) * 22px),
      0
    )
    scale(calc(0.986 + (var(--bridge-competencia-progress) * 0.014)));
}

.offerings {
  position: relative;
  z-index: 5;
  min-height: var(--offerings-height);
  margin-top: calc(var(--offerings-overlap) * -1.18);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(223, 109, 58, 0.06) 0%, rgba(223, 109, 58, 0) 30%),
    radial-gradient(72% 88% at 100% 14%, rgba(227, 179, 138, 0.04) 0%, rgba(227, 179, 138, 0) 34%),
    linear-gradient(180deg, #06080c 0%, #080b11 42%, #0a0d14 100%);
  overflow: clip;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.14) 8%,
    rgba(0, 0, 0, 0.48) 16%,
    rgba(0, 0, 0, 0.82) 28%,
    #000 42%,
    #000 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.14) 8%,
    rgba(0, 0, 0, 0.48) 16%,
    rgba(0, 0, 0, 0.82) 28%,
    #000 42%,
    #000 100%
  );
}

.offerings::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.08) 0%, rgba(6, 8, 12, 0.14) 18%, rgba(6, 8, 12, 0.46) 72%, rgba(6, 8, 12, 0.78) 100%),
    radial-gradient(90% 120% at 14% 50%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0) 66%);
  opacity: calc(0.24 + (var(--offerings-progress) * 0.18));
}

.offerings::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--offerings-overlap) * -1.34);
  height: clamp(520px, 62vh, 820px);
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 1) 0%, rgba(6, 8, 12, 0.88) 18%, rgba(6, 8, 12, 0.48) 42%, rgba(6, 8, 12, 0.16) 68%, rgba(6, 8, 12, 0) 100%),
    radial-gradient(96% 120% at 50% 0%, rgba(223, 109, 58, 0.08) 0%, rgba(6, 8, 12, 0) 60%);
  filter: blur(84px);
  opacity: 1;
}

.offerings-media,
.offerings-video,
.offerings-overlay,
.offerings-noise,
.offerings-veil {
  position: absolute;
  inset: 0;
}

.offerings-media {
  overflow: hidden;
  transform: translate3d(0, var(--offerings-media-shift), 0) scale(var(--offerings-media-scale));
  transform-origin: center center;
  will-change: transform;
}

.offerings-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  filter: saturate(0.52) contrast(0.88) brightness(0.42);
  will-change: transform, filter;
}

.offerings-overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 14, 0.92) 0%, rgba(7, 9, 14, 0.78) 28%, rgba(7, 9, 14, 0.48) 54%, rgba(7, 9, 14, 0.74) 100%),
    linear-gradient(180deg, rgba(7, 9, 14, 0.58) 0%, rgba(7, 9, 14, 0.18) 24%, rgba(7, 9, 14, 0.72) 70%, rgba(7, 9, 14, 0.92) 100%);
  opacity: 0.88;
  will-change: opacity;
}

.offerings-noise {
  opacity: 0.024;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 136px 136px;
  mix-blend-mode: soft-light;
}

.offerings-veil {
  pointer-events: none;
  background:
    radial-gradient(72% 120% at 12% 50%, rgba(7, 9, 14, 0.76) 0%, rgba(7, 9, 14, 0.24) 44%, rgba(7, 9, 14, 0) 72%),
    radial-gradient(52% 76% at 100% 100%, rgba(7, 9, 14, 0.66) 0%, rgba(7, 9, 14, 0.14) 48%, rgba(7, 9, 14, 0) 74%);
  opacity: 0.96;
}

.offerings-shell {
  position: relative;
  z-index: 2;
}

.offerings-content {
  position: relative;
  max-width: clamp(24rem, 37vw, 40rem);
  padding: clamp(30px, 3vw, 40px);
  display: grid;
  gap: clamp(14px, 1.4vw, 22px);
  border: 1px solid rgba(21, 24, 33, 0.08);
  border-radius: clamp(24px, 2vw, 32px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 240, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 28px rgba(0, 0, 0, 0.12),
    0 30px 84px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  opacity: calc(0.1 + (var(--offerings-progress) * 0.9));
  transform: translate3d(calc((1 - var(--offerings-progress)) * -54px), calc((1 - var(--offerings-progress)) * 12px), 0);
  will-change: transform, opacity;
  --offerings-label-progress: clamp(0, calc(var(--offerings-progress) * 1.8), 1);
  --offerings-title-progress: clamp(0, calc((var(--offerings-progress) - 0.06) * 1.7), 1);
  --offerings-lead-progress: clamp(0, calc((var(--offerings-progress) - 0.14) * 1.55), 1);
  --offerings-list-progress: clamp(0, calc((var(--offerings-progress) - 0.24) * 1.45), 1);
}

.offerings-content::before {
  content: "";
  position: absolute;
  inset: clamp(-38px, -4vw, -54px) clamp(-42px, -4vw, -56px) clamp(-34px, -3vw, -42px) clamp(-64px, -5vw, -84px);
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(74% 96% at 22% 30%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(90deg, rgba(223, 109, 58, 0.12) 0%, rgba(223, 109, 58, 0.03) 56%, rgba(223, 109, 58, 0) 100%);
  filter: blur(28px);
  opacity: 0.72;
}

.offerings-label,
.offerings-title,
.offerings-lead,
.offerings-list {
  will-change: transform, opacity;
}

.offerings-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 0.78vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(21, 24, 33, 0.5);
  opacity: var(--offerings-label-progress);
  transform: translate3d(calc((1 - var(--offerings-label-progress)) * -22px), 0, 0);
}

.offerings-title {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: var(--ink);
  text-wrap: balance;
  opacity: var(--offerings-title-progress);
  transform: translate3d(calc((1 - var(--offerings-title-progress)) * -28px), 0, 0);
}

.offerings-lead {
  max-width: 34rem;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.82;
  color: rgba(21, 24, 33, 0.72);
  opacity: var(--offerings-lead-progress);
  transform: translate3d(calc((1 - var(--offerings-lead-progress)) * -32px), 0, 0);
}

.offerings-list {
  max-width: 31rem;
  margin-top: clamp(8px, 0.9vw, 12px);
  padding-top: clamp(18px, 2vw, 24px);
  display: grid;
  gap: 12px;
  list-style: none;
  border-top: 1px solid rgba(21, 24, 33, 0.1);
  opacity: var(--offerings-list-progress);
  transform: translate3d(calc((1 - var(--offerings-list-progress)) * -38px), 0, 0);
}

.offerings-list li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(0.94rem, 0.98vw, 1rem);
  line-height: 1.74;
  color: rgba(21, 24, 33, 0.78);
}

.offerings-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.88em;
  width: 12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 109, 58, 0.92), rgba(227, 179, 138, 0.18));
}

.social-proof {
  position: relative;
  z-index: 6;
  margin-top: calc(var(--proof-overlap) * -0.88);
  padding: clamp(116px, 13vh, 172px) 0 clamp(104px, 12vh, 148px);
  background:
    radial-gradient(118% 92% at 14% 0%, rgba(223, 109, 58, 0.07) 0%, rgba(223, 109, 58, 0) 34%),
    radial-gradient(84% 84% at 100% 14%, rgba(227, 179, 138, 0.05) 0%, rgba(227, 179, 138, 0) 36%),
    linear-gradient(180deg, #06080d 0%, #080b11 46%, #0a0d14 100%);
  overflow: clip;
  isolation: isolate;
}

.social-proof::before,
.social-proof::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.social-proof::before {
  top: calc(var(--proof-overlap) * -1.06);
  height: clamp(240px, 30vh, 360px);
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.94) 0%, rgba(6, 8, 12, 0.52) 34%, rgba(6, 8, 12, 0.12) 68%, rgba(6, 8, 12, 0) 100%),
    radial-gradient(92% 118% at 50% 0%, rgba(223, 109, 58, 0.08) 0%, rgba(6, 8, 12, 0) 62%);
  filter: blur(70px);
  opacity: 0.92;
}

.social-proof::after {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.035;
  mix-blend-mode: soft-light;
}

.social-proof-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 var(--hero-side-space);
}

.social-proof-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 0.82vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.58);
  opacity: calc(0.22 + (var(--proof-progress) * 0.78));
  transform: translate3d(0, calc((1 - var(--proof-progress)) * 16px), 0);
}

.social-proof-label::before {
  content: "";
  width: clamp(18px, 2vw, 28px);
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 109, 58, 0.18), rgba(223, 109, 58, 0.92));
}

.social-proof-grid {
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding: clamp(30px, 3.6vw, 44px) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 36px);
  border-top: 1px solid rgba(245, 242, 236, 0.08);
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
}

.social-proof-item {
  position: relative;
  margin: 0;
  padding: clamp(8px, 1vw, 12px) clamp(2px, 0.5vw, 8px) clamp(6px, 0.8vw, 10px) 0;
  display: grid;
  gap: clamp(12px, 1.2vw, 16px);
  align-content: start;
  will-change: transform, opacity;
}

.social-proof-item:nth-child(1) {
  --proof-item-progress: clamp(0, calc(var(--proof-progress) * 1.7), 1);
}

.social-proof-item:nth-child(2) {
  --proof-item-progress: clamp(0, calc((var(--proof-progress) - 0.08) * 1.7), 1);
}

.social-proof-item:nth-child(3) {
  --proof-item-progress: clamp(0, calc((var(--proof-progress) - 0.16) * 1.7), 1);
}

.social-proof-item {
  opacity: calc(0.16 + (var(--proof-item-progress) * 0.84));
  transform: translate3d(0, calc((1 - var(--proof-item-progress)) * 26px), 0);
}

.social-proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(clamp(11px, 1.2vw, 18px) * -1);
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, rgba(245, 242, 236, 0) 0%, rgba(245, 242, 236, 0.12) 18%, rgba(245, 242, 236, 0.12) 82%, rgba(245, 242, 236, 0) 100%);
}

.social-proof-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5.6vw, 5.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: rgba(245, 242, 236, 0.98);
  text-shadow:
    0 16px 44px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(223, 109, 58, 0.07);
}

.social-proof-copy {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.72;
  color: rgba(245, 242, 236, 0.68);
}

.bridge-band-proof {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin: clamp(14px, 1.8vh, 28px) 0 clamp(34px, 4.8vh, 72px);
  padding: clamp(18px, 2vw, 26px) clamp(8px, 1.8vw, 18px) 0;
  display: grid;
  gap: clamp(20px, 2.4vw, 30px);
  opacity: calc(0.04 + (var(--proof-progress) * 0.96));
  transform: translate3d(0, calc((1 - var(--proof-progress)) * 30px), 0);
  will-change: transform, opacity;
}

.bridge-band-proof::before {
  content: "";
  position: absolute;
  inset: clamp(-20px, -2vw, -26px) clamp(-8px, -1vw, -16px) clamp(-18px, -2vw, -22px);
  pointer-events: none;
  background:
    radial-gradient(58% 64% at 50% 0%, rgba(223, 109, 58, 0.1) 0%, rgba(223, 109, 58, 0) 72%),
    radial-gradient(42% 56% at 0% 100%, rgba(227, 179, 138, 0.06) 0%, rgba(227, 179, 138, 0) 76%);
  filter: blur(32px);
  opacity: 0.58;
  z-index: -1;
}

.bridge-band-proof-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 0.84vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.6);
  text-align: center;
}

.bridge-band-proof-label::before,
.bridge-band-proof-label::after {
  content: none;
}

.bridge-band-proof-grid {
  margin: 0;
  padding: clamp(14px, 1.8vw, 22px) 0 clamp(10px, 1.4vw, 18px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.bridge-band-proof-item {
  position: relative;
  margin: 0;
  padding: clamp(8px, 1vw, 12px) clamp(8px, 1vw, 14px) clamp(10px, 1vw, 16px);
  display: grid;
  justify-items: center;
  gap: clamp(12px, 1.4vw, 18px);
  text-align: center;
  will-change: transform, opacity;
}

.bridge-band-proof-item:nth-child(1) {
  --proof-item-progress: clamp(0, calc(var(--proof-progress) * 1.22), 1);
}

.bridge-band-proof-item:nth-child(2) {
  --proof-item-progress: clamp(0, calc((var(--proof-progress) - 0.08) * 1.18), 1);
}

.bridge-band-proof-item:nth-child(3) {
  --proof-item-progress: clamp(0, calc((var(--proof-progress) - 0.16) * 1.14), 1);
}

.bridge-band-proof-item {
  opacity: calc(0.1 + (var(--proof-item-progress) * 0.9));
  transform: translate3d(0, calc((1 - var(--proof-item-progress)) * 36px), 0);
}

.bridge-band-proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(clamp(9px, 1vw, 14px) * -1);
  top: 16%;
  bottom: 16%;
  width: 1px;
  background: linear-gradient(180deg, rgba(245, 242, 236, 0) 0%, rgba(245, 242, 236, 0.08) 18%, rgba(223, 109, 58, 0.18) 50%, rgba(245, 242, 236, 0.08) 82%, rgba(245, 242, 236, 0) 100%);
}

.bridge-band-proof-value {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(3px, 0.35vw, 8px);
  font-family: var(--font-display);
  font-weight: 800;
  font-variant-numeric: tabular-nums lining-nums;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.bridge-band-proof-prefix,
.bridge-band-proof-counter,
.bridge-band-proof-suffix {
  display: inline-block;
}

.bridge-band-proof-prefix {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  color: var(--accent);
  transform: translateY(-0.04em);
}

.bridge-band-proof-counter {
  min-width: 2ch;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  color: rgba(245, 242, 236, 0.98);
  text-shadow:
    0 16px 44px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(223, 109, 58, 0.08);
}

.bridge-band-proof-suffix {
  font-size: clamp(1.3rem, 2.2vw, 1.86rem);
  color: var(--accent-soft);
  letter-spacing: -0.03em;
}

.bridge-band-proof-copy {
  margin: 0;
  max-width: 17ch;
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.72;
  color: rgba(245, 242, 236, 0.68);
}

.bridge-band-benefits {
  width: 100%;
  position: relative;
  z-index: 3;
  margin-top: calc(var(--proof-overlap) * 0.02);
  padding: 12px var(--hero-side-space) 0;
}

.benefits-ribbon-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.benefits-ribbon-frame {
  display: grid;
  gap: 0;
  padding: 0;
}

.benefits-ribbon-viewport {
  overflow: hidden;
  padding: 10px 0 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  user-select: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(16px, 10vw, 120px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.benefits-ribbon-viewport::-webkit-scrollbar {
  display: none;
}

.benefits-ribbon-track {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  min-width: 100%;
  padding-left: var(--benefits-edge-start, clamp(6px, 5vw, 72px));
  padding-right: var(--benefits-edge-end, clamp(6px, 5vw, 72px));
  transition: transform 980ms cubic-bezier(0.2, 0.88, 0.24, 1);
  will-change: transform;
}

.benefits-ribbon-item {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: clamp(248px, 27vw, 372px);
  padding: 14px 18px;
  border-radius: 999px;
  border: 0;
  background:
    radial-gradient(120% 180% at 0% 0%, rgba(223, 109, 58, 0.12) 0%, rgba(223, 109, 58, 0) 36%),
    linear-gradient(180deg, rgba(248, 246, 241, 0.99) 0%, rgba(236, 231, 224, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 16px 30px rgba(4, 7, 12, 0.12),
    0 4px 12px rgba(4, 7, 12, 0.05);
  scroll-snap-align: center;
  transform: scale(0.94);
  transform-origin: center center;
  opacity: 0.4;
  filter: saturate(0.8) blur(0.18px);
  overflow: hidden;
  transition:
    transform 620ms cubic-bezier(0.2, 0.88, 0.24, 1),
    opacity 620ms cubic-bezier(0.2, 0.88, 0.24, 1),
    filter 620ms cubic-bezier(0.2, 0.88, 0.24, 1),
    box-shadow 620ms cubic-bezier(0.2, 0.88, 0.24, 1),
    background 620ms cubic-bezier(0.2, 0.88, 0.24, 1);
}

.benefits-ribbon-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.88;
}

.benefits-ribbon-item.is-active {
  z-index: 1;
  opacity: 1;
  filter: none;
  transform: scale(1.04);
  background:
    radial-gradient(124% 180% at 0% 0%, rgba(223, 109, 58, 0.18) 0%, rgba(223, 109, 58, 0) 38%),
    linear-gradient(180deg, rgba(249, 246, 240, 1) 0%, rgba(241, 235, 226, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 26px 52px rgba(4, 7, 12, 0.18),
    0 10px 24px rgba(223, 109, 58, 0.16);
}

.benefits-ribbon-item-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-grid;
  place-items: center;
  align-self: center;
  border-radius: 11px;
  border: 1px solid rgba(26, 32, 58, 0.14);
  background: rgba(26, 32, 58, 0.96);
  color: rgba(245, 242, 236, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 18px rgba(26, 32, 58, 0.18);
  transition:
    color 620ms cubic-bezier(0.2, 0.88, 0.24, 1),
    background 620ms cubic-bezier(0.2, 0.88, 0.24, 1),
    border-color 620ms cubic-bezier(0.2, 0.88, 0.24, 1),
    transform 620ms cubic-bezier(0.2, 0.88, 0.24, 1),
    box-shadow 620ms cubic-bezier(0.2, 0.88, 0.24, 1);
}

.benefits-ribbon-item-mark svg {
  display: block;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits-ribbon-item-mark--whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.22);
  color: #1f9c56;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 10px 18px rgba(37, 211, 102, 0.14);
}

.benefits-ribbon-item-mark--whatsapp svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.85;
  transform: translate3d(0.2px, 0.2px, 0);
}

.benefits-ribbon-item.is-active .benefits-ribbon-item-mark {
  transform: scale(1.16);
  color: var(--accent);
  border-color: rgba(223, 109, 58, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 6px rgba(223, 109, 58, 0.08),
    0 14px 24px rgba(26, 32, 58, 0.2);
}

.benefits-ribbon-item.is-active .benefits-ribbon-item-mark--whatsapp {
  color: #1f9c56;
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 0 0 6px rgba(37, 211, 102, 0.08),
    0 14px 24px rgba(37, 211, 102, 0.16);
}

.benefits-ribbon-item-copy {
  font-size: clamp(0.9rem, 0.95vw, 0.98rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: rgba(21, 24, 33, 0.62);
  white-space: normal;
  transition: color 620ms cubic-bezier(0.2, 0.88, 0.24, 1);
}

.benefits-ribbon-item.is-active .benefits-ribbon-item-copy {
  color: rgba(21, 24, 33, 0.9);
}

.services {
  position: relative;
  z-index: 5;
  --services-dark-stop: calc((1 - var(--services-light-progress)) * 100%);
  --services-light-stop: calc(var(--services-light-progress) * 100%);
  margin-top: calc(var(--proof-overlap) * -0.34);
  padding: clamp(192px, 20vh, 268px) 0 0;
  background: transparent;
  overflow: visible;
  isolation: isolate;
}

.services::before,
.services::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.services::before {
  display: none;
}

.services::after {
  bottom: clamp(-132px, -13vh, -88px);
  height: clamp(200px, 24vh, 280px);
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10, 13, 19, 0) 0%, rgba(10, 13, 19, 0.08) 18%, rgba(10, 13, 19, 0.24) 36%, rgba(10, 13, 19, 0.52) 58%, rgba(10, 13, 19, 0.82) 82%, rgba(10, 13, 19, 0) 100%),
    radial-gradient(84% 88% at 50% 100%, rgba(223, 109, 58, 0.08) 0%, rgba(223, 109, 58, 0) 68%);
  filter: blur(34px);
  opacity: 0.9;
  transform: translate3d(0, 8px, 0);
}

.services-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 var(--hero-side-space);
  overflow: visible;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(20px, 2.8vw, 28px);
  max-width: min(100%, 62rem);
  margin: 0 auto clamp(38px, 5vw, 64px);
  text-align: center;
  opacity: calc(0.38 + (var(--services-progress) * 0.62));
  transform: translate3d(0, calc((1 - var(--services-progress)) * 16px), 0);
  will-change: transform, opacity;
}

.services-heading {
  display: grid;
  justify-items: center;
  gap: clamp(14px, 1.4vw, 20px);
}

.services-label {
  display: inline-block;
  position: relative;
  padding-inline: clamp(18px, 2vw, 28px);
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 0.8vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: color-mix(in srgb, rgba(245, 242, 236, 0.74) var(--services-dark-stop), rgba(21, 24, 33, 0.54) var(--services-light-stop));
  text-shadow: 0 10px 24px color-mix(in srgb, rgba(0, 0, 0, 0.16) var(--services-dark-stop), rgba(243, 240, 234, 0.26) var(--services-light-stop));
}

.services-label::before,
.services-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(18px, 2vw, 28px);
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 109, 58, 0.12), rgba(223, 109, 58, 0.86));
  transform: translateY(-50%);
}

.services-label::before {
  left: 0;
}

.services-label::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.services-title {
  display: grid;
  justify-items: center;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3.16rem, 5.4vw, 5.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.075em;
  color: color-mix(in srgb, rgba(245, 242, 236, 0.98) var(--services-dark-stop), rgba(21, 24, 33, 0.96) var(--services-light-stop));
  text-wrap: balance;
  text-shadow: 0 18px 36px color-mix(in srgb, rgba(0, 0, 0, 0.22) var(--services-dark-stop), rgba(243, 240, 234, 0.46) var(--services-light-stop));
  transform: translate3d(0, calc((1 - var(--services-title-progress)) * 14px), 0)
    scale(calc(0.92 + (var(--services-title-progress) * 0.08)));
  transform-origin: center center;
  will-change: transform;
}

.services-title::after {
  content: "";
  width: clamp(88px, 9vw, 148px);
  height: 1px;
  margin-top: clamp(18px, 2vw, 24px);
  background: linear-gradient(90deg, rgba(223, 109, 58, 0.08), rgba(223, 109, 58, 0.92), rgba(223, 109, 58, 0.08));
  box-shadow: 0 0 24px rgba(223, 109, 58, 0.18);
  opacity: calc(0.28 + (var(--services-title-progress) * 0.72));
  transform: scaleX(calc(0.72 + (var(--services-title-progress) * 0.28)));
  transform-origin: center;
}

.services-lead {
  justify-self: center;
  max-width: 40rem;
  font-size: clamp(1rem, 1.08vw, 1.1rem);
  line-height: 1.84;
  color: color-mix(in srgb, rgba(245, 242, 236, 0.74) var(--services-dark-stop), rgba(21, 24, 33, 0.7) var(--services-light-stop));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 20px);
  align-items: start;
  overflow: visible;
}

.services-card {
  --services-dark-stop: 0%;
  --services-light-stop: 100%;
  position: relative;
  min-height: clamp(340px, 31vw, 408px);
  perspective: 1200px;
  align-self: start;
  contain: layout;
  overflow: visible;
  opacity: calc(0.22 + (var(--services-progress) * 0.78));
  transform: translate3d(0, calc((1 - var(--services-progress)) * (22px + (var(--card-index) * 6px))), 0);
  cursor: pointer;
  will-change: auto;
  transition: transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-card::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -14px;
  height: 42px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle at center, color-mix(in srgb, rgba(0, 0, 0, 0.42) var(--services-dark-stop), rgba(120, 102, 86, 0.18) var(--services-light-stop)) 0%, rgba(120, 102, 86, 0) 74%);
  filter: blur(14px);
  opacity: 0.36;
  transform: scale(0.96);
  transition:
    opacity 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-card:hover::after,
.services-card:focus-within::after {
  opacity: 0.5;
  transform: scale(1);
}

.services-card-3d {
  position: relative;
  min-height: inherit;
  height: 100%;
  overflow: visible;
  transform-style: preserve-3d;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-card.is-flipped .services-card-3d {
  transform: rotateY(180deg) translateZ(0);
}

.services-card-face {
  position: relative;
  display: grid;
  gap: clamp(14px, 1.35vw, 18px);
  padding: clamp(22px, 2.2vw, 28px);
  border-radius: 26px;
  min-height: inherit;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  isolation: isolate;
  border: 1px solid color-mix(in srgb, rgba(245, 242, 236, 0.1) var(--services-dark-stop), rgba(21, 24, 33, 0.08) var(--services-light-stop));
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, rgba(17, 21, 30, 0.98) var(--services-dark-stop), rgba(255, 252, 247, 0.98) var(--services-light-stop)) 0%,
      color-mix(in srgb, rgba(11, 14, 20, 0.98) var(--services-dark-stop), rgba(243, 238, 231, 0.98) var(--services-light-stop)) 100%
    );
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, rgba(255, 255, 255, 0.04) var(--services-dark-stop), rgba(255, 255, 255, 0.72) var(--services-light-stop)),
    0 16px 30px color-mix(in srgb, rgba(0, 0, 0, 0.14) var(--services-dark-stop), rgba(73, 57, 41, 0.08) var(--services-light-stop));
}

.services-card-face::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(223, 109, 58, 0.14) 0%, rgba(223, 109, 58, 0) 42%),
    linear-gradient(125deg, color-mix(in srgb, rgba(255, 255, 255, 0.08) var(--services-dark-stop), rgba(255, 255, 255, 0.46) var(--services-light-stop)) 0%, rgba(255, 255, 255, 0) 34%);
  opacity: 1;
}

.services-card-face > * {
  position: relative;
  z-index: 1;
}

.services-card-front {
  position: absolute;
  inset: 0;
  grid-template-rows: auto 1fr auto;
  border-color: rgba(26, 32, 58, 0.08);
  background:
    radial-gradient(128% 108% at 0% 0%, rgba(223, 109, 58, 0.12) 0%, rgba(223, 109, 58, 0) 42%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.99) 0%, rgba(245, 240, 232, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 32px rgba(73, 57, 41, 0.08);
}

.services-card-front::before {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(223, 109, 58, 0.16) 0%, rgba(223, 109, 58, 0) 40%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 36%);
}

.services-card-back {
  position: absolute;
  inset: 0;
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
  transform: rotateY(180deg);
  background:
    radial-gradient(118% 124% at 100% 0%, rgba(223, 109, 58, 0.2) 0%, rgba(223, 109, 58, 0) 36%),
    radial-gradient(92% 110% at 0% 100%, rgba(26, 32, 58, 0.42) 0%, rgba(26, 32, 58, 0) 48%),
    linear-gradient(180deg, #18203a 0%, #111827 56%, #0b101b 100%);
  border-color: rgba(223, 109, 58, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 38px rgba(5, 8, 16, 0.34);
}

.services-card.is-flipped .services-card-front,
.services-card.is-flipped .services-card-back {
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, rgba(255, 255, 255, 0.06) var(--services-dark-stop), rgba(255, 255, 255, 0.78) var(--services-light-stop)),
    0 20px 36px color-mix(in srgb, rgba(0, 0, 0, 0.18) var(--services-dark-stop), rgba(73, 57, 41, 0.11) var(--services-light-stop));
}

@media (hover: hover) and (pointer: fine) {
  .services-card:hover .services-card-3d,
  .services-card:focus-within .services-card-3d {
    transform: translate3d(0, -6px, 0) scale(1.01);
  }

  .services-card.is-flipped:hover .services-card-3d,
  .services-card.is-flipped:focus-within .services-card-3d {
    transform: rotateY(180deg) translate3d(0, -6px, 0) scale(1.01);
  }
}

.services-card-icon {
  width: clamp(48px, 3.8vw, 56px);
  height: clamp(48px, 3.8vw, 56px);
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(26, 32, 58, 0.28);
  background: #1A203A;
  color: rgba(245, 242, 236, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(26, 32, 58, 0.24);
  transition:
    color 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-card:hover .services-card-icon,
.services-card:focus-within .services-card-icon,
.services-card.is-flipped .services-card-icon {
  color: var(--accent);
  border-color: rgba(223, 109, 58, 0.24);
  background: #1A203A;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 6px rgba(223, 109, 58, 0.08),
    0 18px 34px rgba(26, 32, 58, 0.26);
}

.services-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-card-content {
  display: grid;
  gap: 8px;
  align-content: start;
}

.services-card-eyebrow,
.services-card-back-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.services-card-eyebrow {
  color: rgba(137, 87, 58, 0.82);
}

.services-card-back-label {
  color: rgba(227, 179, 138, 0.82);
}

.services-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: color-mix(in srgb, rgba(245, 242, 236, 0.98) var(--services-dark-stop), rgba(21, 24, 33, 0.96) var(--services-light-stop));
}

.services-card-front .services-card-title {
  color: #151821;
}

.services-card-summary {
  font-size: clamp(0.92rem, 0.94vw, 0.96rem);
  font-weight: 700;
  line-height: 1.66;
  color: color-mix(in srgb, var(--accent) 86%, rgba(97, 46, 24, 0.9) 14%);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-card-detail-copy {
  align-self: start;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, rgba(245, 242, 236, 0.1) var(--services-dark-stop), rgba(21, 24, 33, 0.08) var(--services-light-stop));
  font-size: clamp(0.9rem, 0.92vw, 0.94rem);
  line-height: 1.72;
  color: color-mix(in srgb, rgba(245, 242, 236, 0.68) var(--services-dark-stop), rgba(21, 24, 33, 0.68) var(--services-light-stop));
}

.services-card-trigger {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: none;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(0.64rem, 0.7vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, rgba(245, 242, 236, 0.72) var(--services-dark-stop), rgba(21, 24, 33, 0.68) var(--services-light-stop));
  cursor: pointer;
  transition:
    color 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-card-front .services-card-trigger {
  color: rgba(83, 58, 42, 0.84);
}

.services-card-trigger-back {
  color: color-mix(in srgb, rgba(245, 242, 236, 0.8) var(--services-dark-stop), rgba(21, 24, 33, 0.76) var(--services-light-stop));
}

.services-card-back::before {
  background:
    radial-gradient(112% 96% at 12% 0%, rgba(223, 109, 58, 0.18) 0%, rgba(223, 109, 58, 0) 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%);
}

.services-card-back .services-card-back-label {
  color: rgba(227, 179, 138, 0.9);
}

.services-card-back .services-card-title {
  color: rgba(245, 242, 236, 0.97);
}

.services-card-back .services-card-detail-copy {
  border-top-color: rgba(245, 242, 236, 0.12);
  color: rgba(245, 242, 236, 0.74);
}

.services-card-back .services-card-trigger,
.services-card-back .services-card-trigger-back {
  color: rgba(245, 242, 236, 0.82);
}

.services-card-trigger::after {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 109, 58, 0.9), rgba(223, 109, 58, 0.08));
  transform-origin: left center;
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-card:hover .services-card-trigger,
.services-card:focus-within .services-card-trigger,
.services-card.is-flipped .services-card-trigger {
  color: color-mix(in srgb, rgba(245, 242, 236, 0.98) var(--services-dark-stop), rgba(21, 24, 33, 0.96) var(--services-light-stop));
}

.services-card:hover .services-card-trigger::after,
.services-card:focus-within .services-card-trigger::after,
.services-card.is-flipped .services-card-trigger::after {
  transform: scaleX(1.18);
  opacity: 1;
}

.services-card:hover .services-card-front .services-card-trigger,
.services-card:focus-within .services-card-front .services-card-trigger {
  color: rgba(59, 40, 28, 0.96);
}

.services-card:hover .services-card-back .services-card-trigger,
.services-card:focus-within .services-card-back .services-card-trigger,
.services-card.is-flipped .services-card-back .services-card-trigger,
.services-card:hover .services-card-back .services-card-trigger-back,
.services-card:focus-within .services-card-back .services-card-trigger-back,
.services-card.is-flipped .services-card-back .services-card-trigger-back {
  color: rgba(245, 242, 236, 0.98);
}

.lead-capture {
  --lead-capture-arrival: 0;
  position: relative;
  z-index: 8;
  width: 100vw;
  min-height: clamp(720px, 88svh, 1020px);
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(132px, 15vh, 192px) 0 clamp(118px, 13vh, 158px);
  overflow: clip;
  isolation: isolate;
  background: #090c13;
}

.lead-capture-media,
.lead-capture-video,
.lead-capture-overlay,
.lead-capture-noise,
.lead-capture-dim {
  position: absolute;
  inset: 0;
}

.lead-capture-media {
  z-index: 0;
  overflow: hidden;
}

.lead-capture-media::before,
.lead-capture-media::after {
  content: none;
}

.lead-capture-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.62) contrast(0.94) brightness(0.34);
  transform: scale3d(1.28, 1.1, 1);
}

.lead-capture-overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 9, 0.88) 0%, rgba(4, 5, 9, 0.68) 24%, rgba(4, 5, 9, 0.42) 52%, rgba(4, 5, 9, 0.76) 100%),
    linear-gradient(180deg, rgba(4, 5, 9, 0.24) 0%, rgba(4, 5, 9, 0.2) 40%, rgba(4, 5, 9, 0.58) 100%);
}

.lead-capture-noise {
  opacity: 0.012;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.22) 0.7px, transparent 0.7px),
    radial-gradient(rgba(255, 255, 255, 0.14) 0.7px, transparent 0.7px);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  mix-blend-mode: soft-light;
}

.lead-capture-dim {
  background:
    radial-gradient(72% 96% at 14% 4%, rgba(223, 109, 58, 0.08) 0%, rgba(223, 109, 58, 0) 42%),
    radial-gradient(64% 74% at 100% 12%, rgba(227, 179, 138, 0.05) 0%, rgba(227, 179, 138, 0) 38%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.08) 0%, rgba(7, 10, 16, 0.04) 36%, rgba(7, 10, 16, 0.2) 100%);
}

.lead-capture::before,
.lead-capture::after {
  content: none;
}

.lead-capture-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1440px);
  min-height: inherit;
  margin: 0 auto;
  padding: 0 var(--hero-side-space);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  opacity: calc(0.9 + (var(--lead-capture-arrival) * 0.1));
  transform: translate3d(0, calc((1 - var(--lead-capture-arrival)) * 18px), 0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-capture-copy {
  display: grid;
  gap: clamp(10px, 1.3vw, 16px);
  align-content: start;
  max-width: 39rem;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.lead-capture-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 0.76vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(227, 179, 138, 0.86);
}

.lead-capture-label::before {
  content: "";
  width: clamp(22px, 2.4vw, 34px);
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 109, 58, 0.12), rgba(223, 109, 58, 0.92));
}

.lead-capture-title {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.84rem, 4.4vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.074em;
  color: rgba(245, 242, 236, 0.98);
  text-wrap: balance;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.lead-capture-title::after {
  content: "";
  display: block;
  width: clamp(72px, 8vw, 112px);
  height: 1px;
  margin-top: clamp(14px, 1.6vw, 18px);
  background:
    linear-gradient(90deg, rgba(26, 32, 58, 0) 0%, rgba(227, 179, 138, 0.88) 42%, rgba(26, 32, 58, 0) 100%);
}

.lead-capture-lead {
  max-width: 26rem;
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.72;
  color: rgba(245, 242, 236, 0.74);
}

.lead-capture-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.lead-capture-benefits li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 242, 236, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: lead-capture-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lead-capture-benefits li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(227, 179, 138, 1) 0%, rgba(223, 109, 58, 1) 100%);
  box-shadow: 0 0 14px rgba(223, 109, 58, 0.24);
}

.lead-capture-benefits li:nth-child(1) {
  animation-delay: 180ms;
}

.lead-capture-benefits li:nth-child(2) {
  animation-delay: 250ms;
}

.lead-capture-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(24px, 2.2vw, 30px);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.93) 0%, rgba(242, 236, 228, 0.9) 100%);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 24px 56px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.lead-capture-panel::before,
.lead-capture-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lead-capture-panel::before {
  top: -84px;
  right: -64px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(26, 32, 58, 0.1) 0%, rgba(26, 32, 58, 0.06) 24%, rgba(26, 32, 58, 0) 72%);
}

.lead-capture-panel::after {
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 32, 58, 0) 0%, rgba(227, 179, 138, 0.68) 50%, rgba(26, 32, 58, 0) 100%);
}

.lead-capture-panel > * {
  position: relative;
  z-index: 1;
}

.lead-capture-panel-header {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.lead-capture-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  justify-self: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(26, 32, 58, 0.08) 0%, rgba(26, 32, 58, 0.03) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 32, 58, 0.84);
}

.lead-capture-panel-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(227, 179, 138, 1) 0%, rgba(223, 109, 58, 1) 100%);
  box-shadow: 0 0 12px rgba(223, 109, 58, 0.2);
}

.lead-capture-panel-copy {
  max-width: 20rem;
  font-size: 0.96rem;
  line-height: 1.66;
  color: rgba(21, 24, 33, 0.68);
}

.lead-capture-form {
  display: grid;
  gap: 16px;
}

.lead-capture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-capture-field {
  display: grid;
  gap: 11px;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}

.lead-capture-field:nth-child(1) {
  animation-delay: 240ms;
}

.lead-capture-field:nth-child(2) {
  animation-delay: 300ms;
}

.lead-capture-field:nth-child(3) {
  animation-delay: 360ms;
}

.lead-capture-field:nth-child(4) {
  animation-delay: 420ms;
}

.lead-capture-field-full {
  grid-column: 1 / -1;
}

.lead-capture-field span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 32, 58, 0.52);
}

.lead-capture-phone-group {
  display: grid;
  grid-template-columns: minmax(126px, 144px) minmax(0, 1fr);
  gap: 10px;
}

.lead-capture-phone-group > * {
  min-width: 0;
}

.lead-capture-phone-country-shell {
  display: grid;
  grid-template-columns: 30px minmax(44px, 1fr);
  align-items: center;
  justify-items: stretch;
  gap: 8px;
  min-height: 52px;
  border: 1px solid rgba(26, 32, 58, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(242, 236, 229, 0.94) 0%, rgba(233, 225, 215, 0.88) 100%);
  padding: 0 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 1px 0 rgba(21, 24, 33, 0.02);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.lead-capture-phone-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 1.02rem;
  line-height: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.lead-capture-field input,
.lead-capture-field select {
  width: 100%;
  min-height: 52px;
  appearance: none;
  border: 1px solid rgba(26, 32, 58, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(249, 244, 237, 0.92) 100%);
  padding: 0 14px;
  font: inherit;
  font-size: 0.98rem;
  text-align: center;
  text-align-last: center;
  color: rgba(21, 24, 33, 0.88);
  caret-color: #1A203A;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 1px 0 rgba(21, 24, 33, 0.02);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.lead-capture-phone-country {
  display: block;
  align-self: stretch;
  justify-self: stretch;
  min-height: 52px;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  text-align-last: center;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 52px;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  color: #1A203A;
}

.lead-capture-phone-country:focus {
  box-shadow: none;
}

.lead-capture-phone-country::placeholder {
  text-align: center;
}

.lead-capture-phone-country-shell.is-invalid {
  border-color: rgba(194, 65, 12, 0.64);
  animation: lead-capture-country-error 360ms cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.lead-capture-phone-country-shell:hover {
  border-color: rgba(26, 32, 58, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(26, 32, 58, 0.06);
}

.lead-capture-phone-country-shell:focus-within {
  border-color: rgba(223, 109, 58, 0.48);
  box-shadow:
    0 0 0 4px rgba(223, 109, 58, 0.12),
    0 18px 32px rgba(26, 32, 58, 0.08);
  transform: translateY(-1px);
}

.lead-capture-phone-country-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 32, 58, 0.46);
}

@keyframes lead-capture-country-error {
  0% {
    transform: translate3d(0, 0, 0);
    box-shadow:
      0 0 0 0 rgba(194, 65, 12, 0),
      0 1px 0 rgba(21, 24, 33, 0.02);
  }

  20% {
    transform: translate3d(-5px, 0, 0);
  }

  40% {
    transform: translate3d(4px, 0, 0);
  }

  60% {
    transform: translate3d(-3px, 0, 0);
    box-shadow:
      0 0 0 4px rgba(194, 65, 12, 0.12),
      0 14px 24px rgba(194, 65, 12, 0.12);
  }

  80% {
    transform: translate3d(2px, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
    box-shadow:
      0 0 0 0 rgba(194, 65, 12, 0),
      0 1px 0 rgba(21, 24, 33, 0.02);
  }
}

.lead-capture-phone-number {
  min-width: 0;
  padding-inline: 12px;
  font-size: clamp(0.9rem, 0.82rem + 0.24vw, 0.98rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.015em;
  text-overflow: clip;
}

.lead-capture-field input:hover,
.lead-capture-field select:hover {
  border-color: rgba(26, 32, 58, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(26, 32, 58, 0.06);
}

.lead-capture-field input::placeholder {
  text-align: center;
  color: rgba(21, 24, 33, 0.42);
}

.lead-capture-field input:focus,
.lead-capture-field select:focus {
  border-color: rgba(26, 32, 58, 0.28);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 4px rgba(26, 32, 58, 0.08),
    0 14px 28px rgba(26, 32, 58, 0.08);
}

.lead-capture-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #1A203A 0%, #13192F 100%);
  padding: 0 20px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff8f0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 32px rgba(26, 32, 58, 0.24);
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease,
    opacity 220ms ease;
}

.lead-capture-submit-label,
.lead-capture-submit-progress,
.lead-capture-submit-success {
  position: relative;
  z-index: 1;
}

.lead-capture-submit-label {
  transition:
    transform 260ms ease,
    opacity 260ms ease,
    letter-spacing 260ms ease;
}

.lead-capture-submit-progress {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(2px);
  transition:
    width 260ms ease,
    opacity 260ms ease,
    transform 260ms ease;
}

.lead-capture-submit-progress span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.92);
  transform: translateY(0) scale(0.9);
  opacity: 0.44;
}

.lead-capture-submit-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(2px) scale(0.92);
  transition:
    width 260ms ease,
    opacity 260ms ease,
    transform 260ms ease;
}

.lead-capture-submit-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.16);
  color: #fff8f0;
  font-size: 0.78rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.lead-capture-submit::before,
.lead-capture-submit::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lead-capture-submit::before {
  top: -20%;
  bottom: -20%;
  left: -28%;
  width: 42%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(227, 179, 138, 0.32) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-24deg) translateX(-180%);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-capture-submit::after {
  left: 22px;
  right: 22px;
  bottom: 11px;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 109, 58, 0) 0%, rgba(223, 109, 58, 0.92) 50%, rgba(223, 109, 58, 0) 100%);
  opacity: 0.76;
}

.lead-capture-submit:hover,
.lead-capture-submit:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 40px rgba(26, 32, 58, 0.3);
}

.lead-capture-submit:hover::before,
.lead-capture-submit:focus-visible::before {
  transform: skewX(-24deg) translateX(360%);
}

.lead-capture-submit:disabled {
  cursor: wait;
  opacity: 0.86;
}

.lead-capture-submit[data-loading="true"] {
  filter: saturate(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 40px rgba(26, 32, 58, 0.28);
  animation: lead-capture-submit-loading 1.9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.lead-capture-submit[data-loading="true"] .lead-capture-submit-label {
  transform: translateX(-1px);
  letter-spacing: 0.18em;
}

.lead-capture-submit[data-loading="true"] .lead-capture-submit-progress {
  width: 28px;
  opacity: 1;
  transform: translateY(0);
}

.lead-capture-submit[data-loading="true"] .lead-capture-submit-progress span {
  animation: lead-capture-submit-dot 1.1s ease-in-out infinite;
}

.lead-capture-submit[data-loading="true"] .lead-capture-submit-progress span:nth-child(2) {
  animation-delay: 120ms;
}

.lead-capture-submit[data-loading="true"] .lead-capture-submit-progress span:nth-child(3) {
  animation-delay: 240ms;
}

.lead-capture-submit[data-loading="true"]::before {
  transform: skewX(-24deg) translateX(220%);
  animation: lead-capture-submit-sheen 1.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.lead-capture-submit[data-loading="true"]::after {
  animation: lead-capture-submit-underline 1.6s ease-in-out infinite;
}

.lead-capture-submit[data-success="true"] {
  cursor: default;
  background: linear-gradient(180deg, #1D5E46 0%, #174A38 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 40px rgba(23, 74, 56, 0.26);
  animation: lead-capture-submit-success 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lead-capture-submit[data-success="true"] .lead-capture-submit-label {
  letter-spacing: 0.18em;
}

.lead-capture-submit[data-success="true"] .lead-capture-submit-progress {
  width: 0;
  opacity: 0;
  transform: translateY(-2px);
}

.lead-capture-submit[data-success="true"] .lead-capture-submit-success {
  width: 24px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lead-capture-submit[data-success="true"] .lead-capture-submit-success-icon {
  animation: lead-capture-submit-success-icon 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lead-capture-submit[data-success="true"]::before {
  animation: none;
  transform: skewX(-24deg) translateX(320%);
}

.lead-capture-submit[data-success="true"]::after {
  background: linear-gradient(90deg, rgba(112, 222, 173, 0) 0%, rgba(112, 222, 173, 0.96) 50%, rgba(112, 222, 173, 0) 100%);
  opacity: 0.92;
  transform: scaleX(1);
}

.lead-capture-status {
  min-height: 1.4em;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(21, 24, 33, 0.62);
}

.lead-capture-status[data-state="loading"] {
  color: rgba(26, 32, 58, 0.76);
}

.lead-capture-status[data-state="success"] {
  color: #1a6a4b;
}

.lead-capture-status[data-state="error"] {
  color: #b24a2a;
}

.lead-capture-status[data-state="warning"] {
  color: rgba(153, 101, 26, 0.92);
}

.lead-capture-note {
  padding-top: 14px;
  border-top: 1px solid rgba(21, 24, 33, 0.08);
  font-size: 0.86rem;
  line-height: 1.56;
  color: rgba(21, 24, 33, 0.58);
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.lead-capture.is-visible {
  --lead-capture-arrival: 1;
}

.lead-capture.is-visible .lead-capture-copy {
  animation: lead-capture-enter 900ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.lead-capture.is-visible .lead-capture-panel {
  animation: lead-capture-enter 960ms cubic-bezier(0.22, 1, 0.36, 1) 160ms forwards;
}

.lead-capture.is-visible .lead-capture-field {
  animation: lead-capture-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lead-capture.is-visible .lead-capture-benefits li {
  animation: lead-capture-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lead-capture.is-visible .lead-capture-submit {
  animation: lead-capture-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) 480ms forwards;
}

.lead-capture.is-visible .lead-capture-note {
  animation: lead-capture-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) 560ms forwards;
}

@keyframes lead-capture-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lead-capture-submit-loading {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1px);
  }
}

@keyframes lead-capture-submit-sheen {
  0% {
    transform: skewX(-24deg) translateX(-180%);
  }

  100% {
    transform: skewX(-24deg) translateX(320%);
  }
}

@keyframes lead-capture-submit-underline {
  0%,
  100% {
    opacity: 0.54;
    transform: scaleX(0.82);
  }

  50% {
    opacity: 0.96;
    transform: scaleX(1);
  }
}

@keyframes lead-capture-submit-dot {
  0%,
  80%,
  100% {
    opacity: 0.34;
    transform: translateY(0) scale(0.88);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px) scale(1.08);
  }
}

@keyframes lead-capture-submit-success {
  0% {
    transform: translateY(0) scale(0.985);
    filter: saturate(0.96);
  }

  55% {
    transform: translateY(-1px) scale(1.01);
    filter: saturate(1.04);
  }

  100% {
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
}

@keyframes lead-capture-submit-success-icon {
  0% {
    opacity: 0;
    transform: scale(0.6) rotate(-18deg);
  }

  60% {
    opacity: 1;
    transform: scale(1.12) rotate(0deg);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  gap: 16px;
  width: min(420px, calc(100vw - 32px));
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(19, 25, 47, 0.94) 0%, rgba(14, 18, 33, 0.96) 100%);
  box-shadow:
    0 24px 48px rgba(7, 10, 18, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-copy {
  display: grid;
  gap: 10px;
}

.cookie-consent-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.74);
}

.cookie-consent-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 109, 58, 0.9) 0%, rgba(223, 109, 58, 0) 100%);
}

.cookie-consent-text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(245, 242, 236, 0.84);
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent-button {
  position: relative;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #DF6D3A 0%, #C45426 100%);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff8f0;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 28px rgba(12, 18, 34, 0.22);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.cookie-consent-button:hover,
.cookie-consent-button:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 34px rgba(12, 18, 34, 0.28);
}

.cookie-consent-button.is-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 242, 236, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(12, 18, 34, 0.12);
}

@media (max-width: 1024px) {
  :root {
    --hero-stage-height: clamp(168svh, 194svh, 2200px);
    --hero-video-base-scale: 1.22;
    --hero-title-size: clamp(3.8rem, 11vw, 7.6rem);
    --hero-subtitle-size: clamp(0.84rem, 1.4vw, 1rem);
    --hero-brand-width: min(30rem, calc(100vw - (var(--hero-side-space) * 2)));
    --hero-brand-offset-top: clamp(128px, 19vh, 182px);
    --hero-content-bottom-space: clamp(132px, 18vh, 196px);
    --hero-brand-shift-max: clamp(14px, 2vh, 28px);
    --bridge-height: clamp(390px, 52vh, 660px);
    --bridge-overlap: clamp(84px, 10vh, 132px);
    --proof-overlap: clamp(82px, 9vh, 132px);
    --offerings-height: clamp(96svh, 108svh, 1160px);
    --offerings-overlap: clamp(88px, 10vh, 138px);
  }

  .social-proof {
    padding-top: clamp(104px, 11vh, 148px);
    padding-bottom: clamp(92px, 10vh, 132px);
  }

  .social-proof-grid {
    gap: 20px;
  }

  .social-proof-value {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
  }

  .social-proof-copy {
    max-width: 14ch;
  }

  .bridge-band-proof {
    width: min(100%, 1020px);
    margin: 18px 0 48px;
    padding: 28px 24px 20px;
    gap: 22px;
  }

  .bridge-band-proof-counter {
    font-size: clamp(3rem, 5.6vw, 4.6rem);
  }

  .bridge-band-proof-suffix {
    font-size: clamp(1.18rem, 1.9vw, 1.54rem);
  }

  .bridge-band-benefits {
    margin-top: calc(var(--proof-overlap) * -0.02);
  }

  .benefits-ribbon-frame {
    gap: 12px;
    padding: 0;
  }

  .benefits-ribbon-item {
    min-width: clamp(226px, 30vw, 320px);
    padding: 12px 15px;
  }

  .benefits-ribbon-item-copy {
    font-size: 0.9rem;
  }

  .services {
    padding-top: clamp(152px, 15vh, 196px);
    padding-bottom: 0;
  }

  .bridge-band-services.services {
    margin-top: calc(var(--proof-overlap) * 0.02);
    padding-top: clamp(94px, 10vh, 142px);
  }

  .services-intro {
    gap: 20px;
  }

  .services-lead {
    justify-self: center;
    max-width: 34rem;
  }

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

  .lead-capture {
    min-height: clamp(680px, 76svh, 920px);
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: clamp(118px, 12vh, 156px);
    padding-bottom: clamp(98px, 10vh, 130px);
  }

  .lead-capture-video {
    transform: scale3d(1.34, 1.12, 1);
  }

  .lead-capture-shell {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 30px;
  }

  .lead-capture-title {
    font-size: clamp(2.84rem, 5vw, 4.4rem);
  }
}

@media (max-width: 720px) {
  :root {
    --hero-side-space: 22px;
    --hero-stage-height: clamp(96svh, 104svh, 1160px);
    --hero-video-base-scale: 1.26;
    --hero-title-size: clamp(3.4rem, 18vw, 5.8rem);
    --hero-title-lockup-shift: clamp(20px, 2.1vw, 30px);
    --hero-subtitle-size: clamp(0.72rem, 2.5vw, 0.84rem);
    --hero-subtitle-track: 0.24em;
    --hero-about-size: 1.04rem;
    --hero-brand-width: min(21rem, calc(100vw - (var(--hero-side-space) * 2)));
    --hero-brand-offset-top: clamp(164px, 25vh, 208px);
    --hero-content-bottom-space: 0px;
    --hero-brand-shift-max: clamp(12px, 1.8vh, 24px);
    --bridge-height: clamp(336px, 46vh, 480px);
    --bridge-overlap: clamp(214px, 27vh, 276px);
    --proof-overlap: clamp(64px, 8vh, 96px);
    --offerings-height: clamp(92svh, 108svh, 980px);
    --offerings-overlap: clamp(82px, 10vh, 116px);
  }

  .site-header {
    padding-top: 16px;
  }

  .site-nav {
    width: auto;
    gap: 18px;
    padding: 0;
  }

  .site-nav-link {
    min-height: 40px;
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .hero-stage-video {
    object-position: 58% center;
  }

  .hero-stage-overlay {
    background:
      linear-gradient(90deg, rgba(3, 4, 8, 0.9) 0%, rgba(3, 4, 8, 0.72) 42%, rgba(3, 4, 8, 0.44) 100%),
      linear-gradient(180deg, rgba(2, 3, 6, 0.22) 0%, rgba(2, 3, 6, 0.22) 38%, rgba(2, 3, 6, 0.78) 100%);
  }

  .hero-about {
    max-width: 22rem;
    line-height: 1.72;
  }

  .bridge-band-stage {
    justify-items: center;
    gap: 54px;
    padding-top: 8px;
    padding-bottom: 118px;
  }

  .bridge-band-copy {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
    width: min(100%, 9.8ch);
    row-gap: 0.04em;
    transform:
      translateY(-6px)
      scale(1);
  }

  .bridge-band-word-tradicao {
    font-size: 1.28em;
  }

  .bridge-band-word-ampersand {
    width: 1em;
    font-size: 0.72em;
  }

  .bridge-band-word-competencia {
    font-size: 0.86em;
  }

  .social-proof {
    margin-top: calc(var(--proof-overlap) * -0.74);
    padding-top: 92px;
    padding-bottom: 82px;
  }

  .social-proof-label {
    gap: 10px;
    letter-spacing: 0.28em;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 14px;
  }

  .social-proof-item {
    padding: 20px 0;
    gap: 10px;
  }

  .social-proof-item:not(:last-child)::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }

  .social-proof-value {
    font-size: clamp(2.84rem, 13vw, 4rem);
  }

  .social-proof-copy {
    max-width: 18ch;
  }

  .bridge-band-proof {
    width: 100%;
    margin: 16px 0 34px;
    gap: 18px;
    padding: 22px 18px 14px;
    border-radius: 24px;
  }

  .bridge-band-proof-label {
    gap: 10px;
    letter-spacing: 0.28em;
  }

  .bridge-band-proof-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 10px;
  }

  .bridge-band-proof-item {
    padding: 18px 0;
    gap: 10px;
  }

  .bridge-band-proof-item:not(:last-child)::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }

  .bridge-band-proof-counter {
    font-size: clamp(3rem, 12vw, 4.2rem);
  }

  .bridge-band-proof-suffix {
    font-size: clamp(1.12rem, 4.6vw, 1.38rem);
  }

  .bridge-band-proof-copy {
    max-width: 18ch;
  }

  .benefits-ribbon-viewport {
    padding: 8px 0 10px;
  }

  .benefits-ribbon-track {
    gap: 14px;
  }

  .benefits-ribbon-item {
    gap: 10px;
    min-width: clamp(214px, 74vw, 272px);
    padding: 11px 14px;
  }

  .benefits-ribbon-item-mark {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .benefits-ribbon-item-mark svg {
    width: 15px;
    height: 15px;
  }

  .benefits-ribbon-item-copy {
    font-size: 0.88rem;
    line-height: 1.26;
  }

  .bridge-band-benefits {
    margin-top: calc(var(--proof-overlap) * 0.08);
    padding: 14px 14px 0;
  }

  .benefits-ribbon-frame {
    gap: 0;
    padding: 0;
    border-radius: 0;
  }

  .benefits-ribbon-item {
    min-width: min(80vw, 294px);
    padding: 14px 16px;
    white-space: normal;
    transform: scale(0.97);
    opacity: 0.5;
    filter: saturate(0.88);
  }

  .benefits-ribbon-item-copy {
    white-space: normal;
    line-height: 1.46;
  }

  .benefits-ribbon-item.is-active {
    transform: scale(1.015);
  }

  .benefits-ribbon-viewport {
    scroll-snap-type: none;
    padding: 12px 0 18px;
  }

  .offerings {
    margin-top: calc(var(--offerings-overlap) * -1.22);
  }

  .offerings-shell {
    min-height: auto;
    align-items: flex-end;
    padding-top: 166px;
    padding-bottom: 92px;
  }

  .offerings-content {
    max-width: min(100%, 28rem);
    gap: 14px;
    padding: 24px;
  }

  .offerings-content::before {
    inset: -28px -18px -24px -22px;
  }

  .offerings-title {
    max-width: 10ch;
    font-size: clamp(2.54rem, 12vw, 4rem);
  }

  .offerings-lead,
  .offerings-list li {
    line-height: 1.76;
  }

  .offerings-video {
    object-position: 62% center;
  }

  .offerings-overlay {
    background:
      linear-gradient(180deg, rgba(7, 9, 14, 0.62) 0%, rgba(7, 9, 14, 0.2) 24%, rgba(7, 9, 14, 0.82) 100%),
      linear-gradient(90deg, rgba(7, 9, 14, 0.94) 0%, rgba(7, 9, 14, 0.78) 48%, rgba(7, 9, 14, 0.48) 100%);
  }

  .offerings-veil {
    background:
      radial-gradient(88% 116% at 10% 54%, rgba(7, 9, 14, 0.86) 0%, rgba(7, 9, 14, 0.32) 48%, rgba(7, 9, 14, 0) 74%),
      radial-gradient(54% 76% at 100% 100%, rgba(7, 9, 14, 0.66) 0%, rgba(7, 9, 14, 0.16) 46%, rgba(7, 9, 14, 0) 74%);
  }

  .services {
    margin-top: calc(var(--proof-overlap) * -0.24);
    padding-top: 140px;
    padding-bottom: 0;
  }

  .bridge-band-services.services {
    margin-top: calc(var(--proof-overlap) * -0.12);
    padding-top: 42px;
  }

  .services-intro {
    gap: 18px;
    margin-bottom: 30px;
  }

  .services-title {
    max-width: 12ch;
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .services-lead {
    font-size: 1rem;
    line-height: 1.78;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-card {
    min-height: clamp(320px, 88vw, 392px);
  }

  .services-card-face {
    padding: 22px;
    gap: 18px;
  }

  .services-card-title {
    font-size: 1.38rem;
  }

  .services-card-summary,
  .services-card-detail-copy {
    line-height: 1.72;
  }
}

html.perf-lite {
  scroll-behavior: auto;
}

.perf-lite .hero-stage-media,
.perf-lite .hero-stage-video,
.perf-lite .hero-stage-overlay,
.perf-lite .hero-stage-dim,
.perf-lite .bridge-band-media,
.perf-lite .bridge-band-video,
.perf-lite .bridge-band-overlay,
.perf-lite .bridge-band-dim,
.perf-lite .offerings-media,
.perf-lite .offerings-video,
.perf-lite .offerings-overlay,
.perf-lite .offerings-content,
.perf-lite .services-card,
.perf-lite .services-card-3d,
.perf-lite .services-card-face {
  will-change: auto;
}

.perf-lite .hero-stage-dim,
.perf-lite .bridge-band-dim,
.perf-lite .offerings-content::before,
.perf-lite .services-card::after {
  filter: none;
}

.perf-lite .benefits-ribbon-item {
  transition-duration: 220ms;
}

.perf-lite .offerings-content {
  backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 34px rgba(0, 0, 0, 0.18);
}

.perf-lite .services-card:hover .services-card-3d,
.perf-lite .services-card:focus-within .services-card-3d,
.perf-lite .services-card.is-flipped:hover .services-card-3d,
.perf-lite .services-card.is-flipped:focus-within .services-card-3d {
  transform: none;
}

.perf-lite .services-card,
.perf-lite .services-card-3d,
.perf-lite .services-card-face,
.perf-lite .services-card-trigger {
  transition-duration: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-stage-media,
  .hero-stage-video,
  .hero-stage-overlay,
  .hero-stage-noise,
  .hero-stage-dim,
  .hero-stage-pin,
  .hero-brand-motion,
  .hero-brand,
  .hero-about,
  .offerings-media,
  .offerings-video,
  .offerings-content,
  .offerings,
  .offerings-shell,
  .bridge-band-proof,
  .bridge-band-proof-item,
  .social-proof,
  .social-proof-item,
  .benefits-ribbon-item,
  .services,
  .services-intro,
  .services-card,
  .lead-capture-copy,
  .lead-capture-panel,
  .lead-capture-benefits li,
  .lead-capture-field,
  .lead-capture-submit,
  .lead-capture-note {
    transform: none;
    transition: none;
    animation: none;
  }

  .services-card-3d,
  .services-card-face,
  .services-card-trigger,
  .lead-capture-field input,
  .lead-capture-field select {
    transition: none;
  }

  .hero-brand,
  .hero-about,
  .bridge-band-copy,
  .bridge-band-proof,
  .bridge-band-proof-item,
  .bridge-band-proof-label,
  .social-proof-label,
  .social-proof-item,
  .benefits-ribbon-item,
  .offerings-content,
  .offerings,
  .offerings-shell,
  .services-intro,
  .services-card,
  .lead-capture-copy,
  .lead-capture-panel,
  .lead-capture-benefits li,
  .lead-capture-field,
  .lead-capture-submit,
  .lead-capture-note {
    opacity: 1;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  :root {
    --hero-stage-height: 60svh;
    --bridge-height: 340px;
    --bridge-overlap: 120px;
    --proof-overlap: 72px;
    --offerings-height: 80svh;
    --offerings-overlap: 50px;
    --hero-side-space: 20px;
    --hero-content-bottom-space: 80px;
  }

  .bridge-band {
    margin-top: -52px;
  }

  .offerings {
    margin-top: 30px;
  }

  .hero-stage-content {
    padding: 128px 20px 60px;
  }

  .bridge-band-stage {
    gap: 42px;
    padding: 26px 20px 92px;
  }

  .bridge-band-benefits {
    padding: 0 20px;
  }

  .benefits-ribbon-frame {
    padding: 0;
  }

  .benefits-ribbon-item {
    min-width: min(84vw, 280px);
  }

  .bridge-band-services.services {
    padding-top: 44px;
  }

  .bridge-band-proof {
    width: 100%;
    padding: 24px 20px 16px;
  }

  .offerings-shell {
    padding: 40px 20px;
  }

  .bridge-band-copy {
    font-size: clamp(2.7rem, 12vw, 4rem);
    width: min(100%, 9.6ch);
    transform: translateY(calc((1 - var(--bridge-progress)) * -24px));
  }

  .services-shell {
    padding: 0 20px;
  }

  .lead-capture {
    min-height: clamp(640px, 78svh, 860px);
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 96px 0 78px;
  }

  .lead-capture-video {
    transform: scale3d(1.42, 1.14, 1);
  }

  .lead-capture-shell {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 20px;
  }

  .lead-capture-copy {
    gap: 18px;
    justify-items: center;
    text-align: center;
  }

  .lead-capture-title {
    max-width: 10ch;
    font-size: clamp(2.46rem, 11vw, 3.8rem);
  }

  .lead-capture-title::after {
    margin-inline: auto;
  }

  .lead-capture-lead {
    font-size: 1rem;
    line-height: 1.76;
    margin-inline: auto;
  }

  .lead-capture-benefits {
    gap: 10px;
    justify-content: center;
  }

  .lead-capture-benefits li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .lead-capture-grid {
    grid-template-columns: 1fr;
  }

  .lead-capture-phone-group {
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 8px;
  }

  .lead-capture-phone-country-shell {
    grid-template-columns: 30px minmax(64px, 1fr);
    justify-items: center;
    align-content: center;
    gap: 10px;
    padding: 0 10px 0 12px;
  }

  .lead-capture-phone-country {
    width: 100%;
    min-width: 0;
    font-size: 0.95rem;
    line-height: 52px;
  }

  .lead-capture-phone-number {
    padding-inline: 10px;
    font-size: 0.92rem;
  }

  .lead-capture-panel {
    padding: 22px;
    border-radius: 26px;
    text-align: center;
  }

  .lead-capture-panel-header {
    margin-bottom: 18px;
    justify-items: center;
  }

  .lead-capture-panel-copy {
    margin-inline: auto;
  }

  .lead-capture-field input,
  .lead-capture-field select,
  .lead-capture-submit {
    min-height: 54px;
  }

  .lead-capture-submit {
    justify-self: center;
    width: 100%;
  }

  .cookie-consent {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    padding: 16px 16px 14px;
    border-radius: 20px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent-button {
    width: 100%;
  }
}
