:root {
  color-scheme: dark;
  --topbar-height: 36px;
  --header-offset: 124px;
  --black: #070807;
  --black-2: #10110f;
  --ink: #151515;
  --cream: #f4f0e6;
  --paper: #fffaf0;
  --muted: #b8b1a4;
  --muted-dark: #5e5a52;
  --line: rgba(244, 240, 230, 0.18);
  --line-dark: rgba(21, 21, 21, 0.12);
  --lime: #d7ff2f;
  --cyan: #63d9ff;
  --orange: #ff6d3d;
  --violet: #9c83ff;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background: var(--black);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: clip;
}

body.is-loading,
body.is-menu-open,
body.is-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--cream);
  background:
    radial-gradient(circle at 70% 28%, rgba(215, 255, 47, 0.13), transparent 34%),
    radial-gradient(circle at 28% 76%, rgba(99, 217, 255, 0.06), transparent 30%),
    var(--black);
  overflow: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    repeating-radial-gradient(ellipse at 74% 30%, transparent 0 54px, rgba(244, 240, 230, 0.14) 56px 58px, transparent 60px 108px),
    repeating-radial-gradient(ellipse at 22% 74%, transparent 0 68px, rgba(215, 255, 47, 0.13) 70px 72px, transparent 74px 132px);
  opacity: 0.48;
  animation: loaderDrift 6s ease-in-out infinite alternate;
}

.site-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 240, 230, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 230, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle, #000 0 55%, transparent 82%);
}

.loader-orbits {
  position: absolute;
  inset: auto;
  width: min(78vw, 940px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(215, 255, 47, 0.22);
  box-shadow:
    0 0 0 56px rgba(244, 240, 230, 0.035),
    0 0 0 112px rgba(215, 255, 47, 0.035);
  animation: loaderSpin 11s linear infinite;
}

.loader-mark {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  text-align: center;
}

.loader-mark p {
  margin: 0 0 clamp(16px, 2vw, 28px);
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.82rem, 1.3vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.48em;
  line-height: 1;
  text-transform: uppercase;
}

.loader-mark strong {
  display: block;
  color: var(--cream);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.1rem, 13vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.78;
  white-space: nowrap;
}

.loader-mark strong span {
  color: var(--lime);
}

.loader-mark small {
  display: block;
  margin-top: clamp(20px, 2.5vw, 36px);
  color: rgba(244, 240, 230, 0.62);
  font-size: clamp(1rem, 2.1vw, 2.05rem);
  font-weight: 400;
}

.loader-progress {
  width: min(260px, 54vw);
  height: 3px;
  margin: clamp(24px, 4vh, 42px) auto 0;
  border-radius: 999px;
  background: rgba(244, 240, 230, 0.14);
  overflow: hidden;
}

.loader-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  animation: loaderProgress 1.1s ease-in-out infinite alternate;
}

@keyframes loaderDrift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderProgress {
  from {
    transform: translateX(-86%);
  }

  to {
    transform: translateX(236%);
  }
}

.site-header {
  position: fixed;
  inset: var(--topbar-height) 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(16px, 4vw, 56px);
  color: var(--cream);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.top-contact-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 31;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: var(--topbar-height);
  padding: 0 clamp(16px, 4vw, 56px);
  color: rgba(244, 240, 230, 0.78);
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.62), rgba(7, 8, 7, 0.92)),
    rgba(7, 8, 7, 0.84);
  border-bottom: 1px solid rgba(244, 240, 230, 0.12);
  backdrop-filter: blur(18px);
}

.top-contact-bar::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 255, 47, 0.46), transparent);
  opacity: 0.7;
}

.top-contact-links {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 32px;
  min-height: 28px;
  padding: 6px 9px;
  color: rgba(244, 240, 230, 0.82);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.top-contact-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.top-contact-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.top-contact-link:hover {
  color: var(--black);
  background: var(--lime);
  border-color: rgba(215, 255, 47, 0.62);
  transform: translateY(-1px);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 8, 7, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  --brand-shift: 0px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-symbol {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34) 0%, transparent 28%),
    linear-gradient(155deg, #e7ff62 0%, var(--lime) 48%, #b8df18 100%);
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -6px 10px rgba(7, 8, 7, 0.13),
    0 2px 0 #9fc313,
    0 10px 0 rgba(83, 101, 8, 0.2),
    0 22px 38px rgba(0, 0, 0, 0.36);
  transform: translateY(-1px);
  overflow: hidden;
}

.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand-symbol::before {
  inset: 0;
  border: 1px solid rgba(7, 8, 7, 0.12);
  border-radius: inherit;
}

.brand-symbol::after {
  right: 10px;
  bottom: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.brand-symbol span,
.brand-symbol i {
  position: relative;
  z-index: 1;
  font-style: normal;
}

.brand strong {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  font-size: clamp(1.02rem, 1.1vw, 1.22rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
}

.brand-p {
  color: var(--lime);
}

.brand-p {
  margin-left: 0.32em;
}

.brand-static-dot {
  color: var(--lime);
  margin-left: 0.02em;
}

.brand-cycle-word {
  display: inline-block;
  min-width: 6.9rem;
  margin-left: 0;
  color: var(--cream);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand small {
  display: inline-block;
  margin-top: 0;
  color: var(--lime);
  font-size: clamp(0.68rem, 0.78vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.brand small::before {
  content: none;
}

.brand-dynamic {
  display: flex;
  align-items: center;
  min-height: 0.84rem;
  letter-spacing: 0.18em;
  transform: translateX(var(--brand-shift));
  transition: transform 180ms ease;
}

.brand-lock {
  color: var(--lime);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 12px 16px;
  color: var(--black);
  background: var(--lime);
  border-radius: 8px;
  opacity: 1;
}

.nav-meet-cta {
  padding: 11px 15px;
  color: var(--cream);
  border: 1px solid rgba(204, 255, 0, 0.55);
  border-radius: 8px;
  opacity: 1;
}

.menu-button {
  display: none;
  flex: 0 0 auto;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-rail {
  position: fixed;
  left: 12px;
  top: 50%;
  bottom: auto;
  z-index: 25;
  color: var(--cream);
  transform: translateY(-50%);
}

.rail-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 10px;
  color: var(--cream);
  background: rgba(7, 8, 7, 0.76);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rail-toggle span,
.rail-toggle span::before,
.rail-toggle span::after {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.rail-toggle span {
  position: relative;
}

.rail-toggle span::before,
.rail-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.rail-toggle span::before {
  top: -5px;
}

.rail-toggle span::after {
  top: 5px;
}

.rail-panel {
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
  bottom: auto;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.section-rail.is-open .rail-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.rail-panel a {
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(244, 240, 230, 0.72);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rail-panel a:hover,
.rail-panel a.is-active {
  color: var(--black);
  background: var(--lime);
}

.section-controls {
  position: fixed;
  right: 18px;
  top: 50%;
  bottom: auto;
  z-index: 26;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}

.section-controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(7, 8, 7, 0.78);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.section-controls button:hover {
  color: var(--black);
  background: var(--lime);
}

.whatsapp-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 27;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(244, 240, 230, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.whatsapp-widget svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-widget:hover {
  color: var(--black);
  background: var(--lime);
  transform: translateY(-2px);
}

.tech-surface {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.tech-surface::before,
.tech-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.tech-surface::before {
  z-index: 1;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(215, 255, 47, 0.24), transparent 34%),
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 50%, transparent 62%);
}

.tech-surface::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(244, 240, 230, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(244, 240, 230, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at var(--mx) var(--my), #000 0 24%, transparent 58%);
}

.tech-surface > * {
  position: relative;
  z-index: 3;
}

.tech-surface:hover {
  border-color: rgba(215, 255, 47, 0.52);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26), 0 0 28px rgba(215, 255, 47, 0.11);
}

.tech-surface:hover::before {
  opacity: 1;
}

.tech-surface:hover::after {
  opacity: 0.72;
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-offset) + 28px) clamp(16px, 6vw, 76px) 128px;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.96) 0%, rgba(7, 8, 7, 0.72) 48%, rgba(7, 8, 7, 0.3) 100%),
    linear-gradient(135deg, rgba(215, 255, 47, 0.16), transparent 32%),
    var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 240, 230, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 230, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent, #000 26%, #000 78%, transparent);
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.topography {
  position: absolute;
  inset: -20% -10%;
  opacity: 0.38;
  background:
    repeating-radial-gradient(ellipse at 75% 32%, transparent 0 34px, rgba(244, 240, 230, 0.2) 36px 38px, transparent 40px 72px),
    repeating-radial-gradient(ellipse at 22% 72%, transparent 0 48px, rgba(215, 255, 47, 0.16) 50px 52px, transparent 54px 96px);
}

.interface-poster {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  position: absolute;
  right: clamp(76px, 7vw, 132px);
  top: max(150px, 16vh);
  width: min(555px, 39vw);
  min-height: 385px;
  transform: perspective(1100px) rotate(-3deg) rotateX(var(--rx)) rotateY(var(--ry)) translate3d(0, 0, 0);
  border: 1px solid rgba(244, 240, 230, 0.24);
  border-radius: 8px;
  background: rgba(244, 240, 230, 0.9);
  box-shadow: var(--shadow);
  color: var(--black);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.interface-poster::before,
.interface-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.interface-poster::before {
  z-index: 2;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.42), rgba(215, 255, 47, 0.16) 18%, transparent 40%),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.1) 50%, transparent 64%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 180ms ease;
}

.interface-poster::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(7, 8, 7, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.22;
}

.interface-poster:hover {
  border-color: rgba(215, 255, 47, 0.68);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 44px rgba(215, 255, 47, 0.16);
}

.interface-poster:hover::before {
  opacity: 0.78;
}

.poster-bar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  color: var(--cream);
  background: var(--black);
  font-size: 0.75rem;
  font-weight: 900;
}

.poster-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: 10px;
  padding: 12px;
}

.poster-main,
.poster-card,
.poster-flow {
  border: 1px solid rgba(7, 8, 7, 0.12);
  border-radius: 8px;
  padding: 15px;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.interface-poster:hover .poster-main {
  transform: translate3d(-4px, -4px, 24px);
}

.interface-poster:hover .poster-card.lime {
  transform: translate3d(5px, -5px, 34px);
}

.interface-poster:hover .poster-card.orange {
  transform: translate3d(6px, 4px, 28px);
}

.interface-poster:hover .poster-flow {
  transform: translate3d(0, 5px, 18px);
}

.poster-main {
  grid-row: span 2;
  min-height: 242px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.06) 0 48%, rgba(7, 8, 7, 0.96) 48%),
    linear-gradient(135deg, rgba(99, 217, 255, 0.6), rgba(215, 255, 47, 0.72));
  overflow: hidden;
}

.poster-main p,
.poster-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(7, 8, 7, 0.18);
  border-radius: 8px;
  background: rgba(244, 240, 230, 0.88);
  box-shadow: 0 18px 44px rgba(7, 8, 7, 0.18);
}

.dash-head,
.dash-kpis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dash-head span,
.dash-head b,
.dash-kpis span {
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dash-head b {
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--black);
  background: var(--lime);
}

.dash-kpis span {
  display: grid;
  place-items: center;
  min-height: 36px;
  flex: 1;
  border-radius: 8px;
  color: var(--cream);
  background: var(--black);
}

.dash-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 8px;
  height: 42px;
  padding-top: 8px;
  border-top: 1px solid rgba(7, 8, 7, 0.12);
}

.dash-bars i {
  display: block;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--orange), var(--lime));
  transform-origin: bottom;
}

.dash-bars i:nth-child(1) {
  height: 34%;
}

.dash-bars i:nth-child(2) {
  height: 62%;
}

.dash-bars i:nth-child(3) {
  height: 45%;
}

.dash-bars i:nth-child(4) {
  height: 88%;
}

.interface-poster:hover .dash-bars i {
  animation: dashPulse 1.15s ease-in-out infinite alternate;
}

.interface-poster:hover .dash-bars i:nth-child(2) {
  animation-delay: 120ms;
}

.interface-poster:hover .dash-bars i:nth-child(3) {
  animation-delay: 240ms;
}

.interface-poster:hover .dash-bars i:nth-child(4) {
  animation-delay: 360ms;
}

.poster-main strong {
  position: relative;
  z-index: 1;
  max-width: 320px;
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.95rem, 3.35vw, 3.3rem);
  line-height: 0.94;
}

.poster-main span {
  position: relative;
  z-index: 1;
  color: var(--cream);
  font-weight: 900;
}

.poster-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poster-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2.1vw, 1.95rem);
  line-height: 0.98;
}

.poster-card.lime {
  background: var(--lime);
}

.poster-card.orange {
  color: var(--cream);
  background: var(--orange);
}

.poster-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: var(--paper);
}

.poster-flow span {
  border-radius: 8px;
  padding: 10px;
  color: var(--cream);
  background: var(--black);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-copy-wrap {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  padding-bottom: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.section-kicker {
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 650px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 0.96;
}

h2,
h3 {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(244, 240, 230, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.35rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-primary {
  color: var(--black);
  background: var(--lime);
}

.button-primary:hover {
  background: #ecff75;
}

.button-ghost {
  color: var(--cream);
  border: 1px solid rgba(244, 240, 230, 0.55);
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--lime);
  color: var(--black);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 14px 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.ticker span::after {
  content: "/";
  margin-left: 34px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

main > section {
  scroll-margin-top: var(--header-offset);
}

.section-dark,
.services,
.identity-strip,
.discovery-entry,
.method,
.owners,
.final-cta {
  padding: clamp(78px, 9vw, 112px) clamp(16px, 5vw, 64px) clamp(40px, 5vw, 72px);
}

.statement,
.discovery-entry,
.services,
.identity-strip,
.deliverables,
.method,
.mission,
.owners {
  min-height: 100svh;
  display: grid;
  align-content: center;
  overflow: visible;
}

.section-dark {
  color: var(--cream);
  background: var(--black);
}

.statement {
  padding-top: clamp(34px, 4vw, 54px);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.36fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.statement h2,
.discovery-entry-copy h2,
.services-head h2,
.identity-grid h2,
.deliverables-grid h2,
.method-head h2,
.mission h2,
.owners-head h2,
.cta-panel h2 {
  font-size: clamp(2.05rem, 4.65vw, 5.45rem);
  font-weight: 700;
}

.statement p:not(.section-kicker) {
  grid-column: 2;
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 600;
}

.services {
  color: var(--ink);
  background: var(--paper);
  padding-top: clamp(68px, 8vh, 86px);
  padding-bottom: clamp(24px, 3vh, 36px);
  align-content: start;
}

.services .section-kicker,
.identity-strip .section-kicker,
.discovery-entry .section-kicker,
.method .section-kicker,
.owners .section-kicker,
.final-cta .section-kicker {
  color: var(--orange);
}

.discovery-entry {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(244, 240, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 230, 0.035) 1px, transparent 1px),
    linear-gradient(120deg, rgba(215, 255, 47, 0.1), transparent 34%),
    var(--black);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.discovery-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.discovery-entry-copy p:not(.section-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(244, 240, 230, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 600;
}

.discovery-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.discovery-entry-panel {
  position: relative;
  min-height: clamp(440px, 58vh, 640px);
  border: 1px solid rgba(244, 240, 230, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.discovery-entry-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.24), rgba(7, 8, 7, 0.88)),
    linear-gradient(90deg, rgba(7, 8, 7, 0.22), rgba(7, 8, 7, 0.76));
}

.discovery-entry-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.06) brightness(0.78);
}

.discovery-entry-list {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  min-height: inherit;
  padding: clamp(18px, 2.8vw, 30px);
}

.discovery-entry-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  padding: 16px 0;
  border-top: 1px solid rgba(244, 240, 230, 0.18);
}

.discovery-entry-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--black);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 900;
}

.discovery-entry-list strong {
  color: var(--cream);
  font-size: 1rem;
}

.discovery-entry-list p {
  margin: 0;
  color: rgba(244, 240, 230, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

.services-head {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
}

.services-head h2 {
  max-width: 860px;
  font-size: clamp(1.85rem, 3vw, 3.25rem);
}

.service-lab {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 14px;
  margin-top: clamp(14px, 2vh, 20px);
}

.service-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: clamp(52px, 6vh, 64px);
  padding: 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.service-tab span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--black);
  border-radius: 8px;
  font-size: 0.82rem;
}

.service-tab:hover,
.service-tab.is-active {
  transform: translateY(-2px);
  border-color: var(--black);
  background: var(--lime);
}

.service-stage {
  min-height: clamp(260px, 34vh, 320px);
  display: grid;
  align-content: end;
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 30px);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(99, 217, 255, 0.32), transparent 38%),
    linear-gradient(315deg, rgba(215, 255, 47, 0.22), transparent 42%),
    var(--black);
  overflow: hidden;
}

.stage-label {
  margin: 0 0 14px;
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.service-stage h3 {
  max-width: 780px;
  font-size: clamp(1.55rem, 2.35vw, 2.75rem);
}

.service-stage p:not(.stage-label) {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(244, 240, 230, 0.78);
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  font-weight: 600;
}

.service-stage ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-stage li {
  border: 1px solid rgba(244, 240, 230, 0.24);
  border-radius: 8px;
  padding: 8px 9px;
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 800;
}

.identity-strip {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255, 109, 61, 0.14), transparent 38%),
    var(--black-2);
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  column-gap: clamp(28px, 7vw, 88px);
  row-gap: clamp(18px, 3vh, 28px);
  align-items: center;
}

.identity-grid > div:first-child,
.identity-copy {
  grid-column: 1;
}

.identity-grid h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 3.85vw, 4.35rem);
}

.identity-board {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
  transform: rotate(2deg);
}

.logo-tile {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 700;
}

.tile-black {
  color: var(--lime);
  background: var(--black);
  border: 1px solid var(--line);
}

.tile-lime {
  color: var(--black);
  background: var(--lime);
}

.tile-light {
  color: var(--black);
  background: var(--cream);
}

.tile-orange {
  color: var(--cream);
  background: var(--orange);
}

.identity-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  font-weight: 600;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip-row span {
  border: 1px solid rgba(244, 240, 230, 0.24);
  border-radius: 8px;
  padding: 9px 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 86px);
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.deliverable-list article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(244, 240, 230, 0.04);
}

.deliverable-list span {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.deliverable-list p {
  margin: 54px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.case-studies {
  position: relative;
  min-height: auto;
  padding: clamp(60px, 7.5vh, 86px) 0;
  overflow: visible;
  scroll-margin-top: var(--header-offset);
}

.cases-sticky {
  position: static;
  height: auto;
  display: block;
  overflow: visible;
  padding: 0;
}

.cases-head {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(14px, 2.2vh, 22px);
}

.cases-head h2 {
  max-width: 900px;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 700;
}

.cases-mobile-hint,
.cases-mobile-controls {
  display: none !important;
}

.cases-viewport {
  width: 100%;
  margin-top: clamp(16px, 2.4vh, 28px);
  overflow: visible;
}

.case-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  transform: none !important;
  will-change: auto;
}

.case-card {
  min-width: 0;
  min-height: clamp(390px, 47vh, 470px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(244, 240, 230, 0.055);
}

.case-card-featured {
  grid-column: auto;
}

.case-visual {
  height: clamp(118px, 16vh, 156px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-radius: 8px;
  padding: 18px;
  color: var(--black);
  background: var(--cream);
  overflow: hidden;
}

.case-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background:
    linear-gradient(135deg, rgba(215, 255, 47, 0.18), rgba(99, 217, 255, 0.12)),
    var(--black);
}

.case-mosaic img {
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 1px solid rgba(244, 240, 230, 0.16);
  border-radius: 6px;
  object-fit: cover;
  object-position: left top;
  filter: saturate(0.95) contrast(1.02);
}

.case-mosaic img:first-child {
  grid-row: span 2;
}

.pulso-vet-mosaic {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 236, 255, 0.92)),
    #ffffff;
}

.pulso-vet-mosaic img:nth-child(2) {
  object-position: center top;
}

.pulso-vet-case-card {
  color: #20172f;
  background:
    radial-gradient(circle at 86% 8%, rgba(126, 87, 194, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff, #faf7ff);
  border-color: rgba(126, 87, 194, 0.28);
}

.pulso-vet-case-card .case-label,
.pulso-vet-case-card .case-outcomes span,
.pulso-vet-case-card .case-flow i {
  color: #7e57c2;
}

.pulso-vet-case-card p:not(.case-label),
.pulso-vet-case-card .case-outcomes p {
  color: #746885;
}

.pulso-vet-case-card .case-flow i {
  background: rgba(126, 87, 194, 0.1);
  border-color: rgba(126, 87, 194, 0.18);
}

.pulso-vet-case-card .case-link {
  color: #ffffff;
  background: #7e57c2;
  box-shadow: none;
}

.pulso-vet-modal {
  color: #20172f;
  background:
    radial-gradient(circle at 86% 8%, rgba(126, 87, 194, 0.18), transparent 26%),
    linear-gradient(180deg, #ffffff, #fbf9ff);
  border-color: rgba(126, 87, 194, 0.28);
}

.pulso-vet-modal .modal-close {
  color: #7e57c2;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(126, 87, 194, 0.22);
}

.pulso-vet-modal .section-kicker,
.pulso-vet-modal .modal-points span {
  color: #7e57c2;
}

.pulso-vet-modal .modal-copy > p:not(.section-kicker):not(.modal-note),
.pulso-vet-modal .modal-points p {
  color: #746885;
}

.pulso-vet-modal .modal-points article {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(126, 87, 194, 0.18);
}

.screenshot-visual {
  display: block;
  padding: 0;
  background: var(--black);
}

.screenshot-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.screenshot-visual.contain-shot {
  background: #eef3f8;
}

.screenshot-visual.contain-shot img {
  object-fit: contain;
  object-position: center;
}

.screenshot-visual.portrait-shot {
  height: clamp(180px, 26vh, 250px);
  background: #eef3f8;
}

.screenshot-visual.portrait-shot img {
  object-fit: cover;
  object-position: center top;
}

.case-visual span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: var(--black);
  background: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.crm-visual {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.92) 0 34%, transparent 34%),
    linear-gradient(135deg, rgba(99, 217, 255, 0.55), rgba(215, 255, 47, 0.78));
}

.crm-visual div {
  display: grid;
  align-self: end;
  width: min(360px, 54%);
  gap: 10px;
}

.crm-visual i {
  height: 42px;
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.86);
}

.web-visual {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 109, 61, 0.92), rgba(215, 255, 47, 0.9));
}

.web-visual strong,
.upload-visual strong {
  max-width: 260px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.ocr-visual {
  align-items: end;
  color: var(--cream);
  background: var(--black);
}

.ocr-visual div {
  display: grid;
  width: min(360px, 62%);
  gap: 10px;
}

.ocr-visual b {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--cream);
  background: rgba(244, 240, 230, 0.08);
}

.ocr-preview-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 12%, rgba(99, 217, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #0b111b, #070807 58%, rgba(215, 255, 47, 0.16));
}

.ocr-preview-card {
  display: grid;
  align-content: start;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(244, 240, 230, 0.07);
}

.ocr-preview-card:first-child {
  grid-row: span 2;
}

.ocr-preview-card span {
  display: inline-flex;
  width: fit-content;
  height: auto;
  margin-bottom: 12px;
  padding: 5px 7px;
  border-radius: 999px;
  font-size: 0.64rem;
  line-height: 1;
}

.ocr-preview-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1;
}

.ocr-preview-card small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.ocr-preview-card.is-approved span {
  color: #052713;
  background: #d3fadd;
}

.ocr-preview-card.is-review span {
  color: #2b2100;
  background: #ffe7a8;
}

.ocr-preview-card.is-rejected span {
  color: #3b0505;
  background: #ffd7d7;
}

.ocr-document-visual {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 0.75fr;
  gap: 8px;
  padding: 8px;
  color: var(--cream);
  background:
    radial-gradient(circle at 86% 16%, rgba(215, 255, 47, 0.28), transparent 30%),
    linear-gradient(135deg, #0b111b, #070807 62%, rgba(99, 217, 255, 0.16));
}

.ocr-document-visual img {
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.ocr-document-visual img:first-child {
  grid-row: span 2;
}

.ocr-result-card {
  display: grid;
  align-content: center;
  border: 1px solid rgba(215, 255, 47, 0.34);
  border-radius: 8px;
  padding: 12px;
  background: rgba(7, 8, 7, 0.74);
}

.ocr-result-card span {
  width: fit-content;
  height: auto;
  margin-bottom: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--black);
  background: var(--lime);
  font-size: 0.68rem;
  line-height: 1;
}

.ocr-result-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.4rem);
  line-height: 1;
}

.ocr-result-card b {
  margin-top: 8px;
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 0.95;
}

.upload-visual {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(244, 240, 230, 0.9), rgba(99, 217, 255, 0.78));
}

.case-label {
  margin: 12px 0 0;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card h3 {
  max-width: 660px;
  margin-top: 8px;
  font-size: clamp(1.16rem, 1.4vw, 1.68rem);
  line-height: 1.05;
}

.case-card p:not(.case-label) {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.42;
}

.case-outcomes {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.case-outcomes span {
  display: block;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-outcomes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.38;
}

.case-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-flow i {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(215, 255, 47, 0.2);
  border-radius: 999px;
  padding: 0 9px;
  color: var(--lime);
  background: rgba(244, 240, 230, 0.06);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card p a {
  color: var(--lime);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.case-link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  border: 0;
  border-radius: 8px;
  padding: 12px 17px;
  color: var(--black);
  background: var(--lime);
  box-shadow: 0 0 0 1px rgba(215, 255, 47, 0.32);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.case-link:hover {
  transform: translateY(-2px);
  color: var(--cream);
  background: var(--black);
  box-shadow: 0 0 0 1px var(--lime);
}

.case-modal {
  width: min(1180px, calc(100vw - 32px));
  max-height: min(860px, calc(100svh - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  color: var(--cream);
  background: var(--black);
  box-shadow: var(--shadow);
  overflow: auto;
}

.case-modal::backdrop {
  background: rgba(7, 8, 7, 0.72);
  backdrop-filter: blur(10px);
}

.modal-close {
  position: sticky;
  top: 16px;
  left: calc(100% - 64px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 16px 16px -60px auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(7, 8, 7, 0.72);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(28px, 5vw, 64px);
}

.modal-copy h2 {
  max-width: 780px;
  margin: 12px 0 0;
  font-size: clamp(2.15rem, 3.75vw, 4.65rem);
  line-height: 0.98;
}

.modal-copy > p:not(.section-kicker):not(.modal-note) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
}

.modal-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.modal-points article,
.modal-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(244, 240, 230, 0.055);
}

.modal-points span {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.modal-points p,
.modal-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.modal-note {
  margin-top: 12px;
  border-color: rgba(215, 255, 47, 0.32);
}

.modal-action {
  margin-top: 24px;
}

.modal-gallery {
  display: grid;
  gap: 12px;
  align-content: start;
}

.image-open {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.image-open::after {
  content: "Ampliar";
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--black);
  background: var(--lime);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.image-open:hover::after,
.image-open:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.modal-gallery img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  object-fit: cover;
}

.modal-gallery:not(.modal-gallery-single) img {
  aspect-ratio: 16 / 9;
  object-position: left top;
}

.modal-gallery-safe img {
  filter: saturate(0.95) contrast(1.02);
}

.crm-showcase {
  display: grid;
  gap: 14px;
  align-content: start;
}

.product-video-card {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 240, 230, 0.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.product-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 6px;
  background: #050505;
  object-fit: cover;
}

.product-video-card figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 260px;
}

.phone-gallery .image-open {
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  background: rgba(244, 240, 230, 0.06);
}

.phone-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.modal-gallery-single {
  position: sticky;
  top: 24px;
}

.modal-gallery-single img {
  max-height: 72svh;
  object-fit: contain;
}

.ocr-flow-visual {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 72% 0%, rgba(99, 217, 255, 0.16), transparent 34%),
    rgba(244, 240, 230, 0.055);
}

.ocr-flow-visual article,
.ocr-rules {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(7, 8, 7, 0.72);
}

.ocr-flow-visual p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.ocr-flow-visual strong {
  display: block;
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 0.96;
}

.ocr-flow-visual small,
.ocr-rules p {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.status-pill,
.ocr-rules span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-ok {
  color: #052713;
  background: #d3fadd;
}

.status-warn {
  color: #2b2100;
  background: #ffe7a8;
}

.status-error {
  color: #3b0505;
  background: #ffd7d7;
}

.ocr-rules span {
  color: var(--black);
  background: var(--lime);
}

.ocr-demo {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 72% 0%, rgba(99, 217, 255, 0.16), transparent 34%),
    rgba(244, 240, 230, 0.055);
}

.receipt-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: clamp(250px, 34vh, 320px);
}

.receipt-stack figure {
  position: relative;
  min-height: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
}

.receipt-stack figure:first-child {
  grid-row: span 2;
}

.receipt-stack img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.receipt-stack .image-open {
  border-radius: 0;
}

.receipt-stack figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--black);
  background: var(--lime);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.extraction-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(7, 8, 7, 0.72);
}

.panel-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.extraction-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.extraction-panel div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(244, 240, 230, 0.05);
}

.extraction-panel dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.extraction-panel dd {
  margin: 6px 0 0;
  color: var(--cream);
  font-weight: 900;
}

.validation-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.web-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.web-showcase .image-open {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: rgba(244, 240, 230, 0.06);
}

.web-showcase img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.ocr-ui-mockup {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 240, 230, 0.06);
}

.ocr-ui-topbar {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #101827;
}

.ocr-ui-topbar strong {
  color: var(--cream);
  font-size: 0.96rem;
}

.ocr-ui-topbar span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.ocr-ui-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #121c2d;
}

.ocr-ui-tabs span {
  padding: 12px 8px;
  color: rgba(244, 240, 230, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
}

.ocr-ui-tabs .is-active {
  color: var(--blue);
  background: #182235;
  box-shadow: inset 0 -3px 0 var(--blue);
}

.ocr-ui-content {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.ocr-ui-content article {
  border: 1px solid rgba(244, 240, 230, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(7, 8, 7, 0.52);
}

.ocr-ui-content article span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--black);
  background: var(--lime);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ocr-ui-content article:nth-child(2) span {
  background: #ffe7a3;
}

.ocr-ui-content strong {
  display: block;
  margin-top: 9px;
  color: var(--cream);
  font-size: 0.96rem;
}

.ocr-ui-content p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.ai-return-list {
  display: grid;
  gap: 10px;
}

.ai-return-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(7, 8, 7, 0.72);
}

.ai-return-card span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-return-card p {
  margin: 10px 0 0;
  color: var(--cream);
  font-weight: 800;
}

.ai-return-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 900;
}

.ai-return-card.is-ok span {
  color: #052713;
  background: #d3fadd;
}

.ai-return-card.is-warning span {
  color: #2b2100;
  background: #ffe7a8;
}

.ai-return-card.is-error span {
  color: #3b0505;
  background: #ffd7d7;
}

.web-showcase {
  display: grid;
  gap: 12px;
  align-content: start;
}

.web-shot-large {
  aspect-ratio: 16 / 10;
}

.lightbox-modal {
  width: min(1180px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 52px 14px 14px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.lightbox-modal::backdrop {
  background: rgba(7, 8, 7, 0.82);
  backdrop-filter: blur(12px);
}

.lightbox-modal img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 112px);
  border-radius: 8px;
  object-fit: contain;
  background: var(--paper);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
}

.modal-poster {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  color: var(--black);
  background:
    radial-gradient(circle at 22% 18%, rgba(99, 217, 255, 0.9), transparent 26%),
    linear-gradient(135deg, var(--lime), var(--orange));
}

.modal-poster span {
  width: fit-content;
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--black);
  color: var(--cream);
  font-weight: 900;
  text-transform: uppercase;
}

.modal-poster strong {
  max-width: 560px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.86;
}

.method,
.owners,
.final-cta {
  color: var(--ink);
  background: var(--paper);
}

.method-head,
.owners-head {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.method-head h2,
.owners-head h2 {
  font-size: clamp(2.1rem, 4.5vw, 5rem);
}

.owners-head h2 {
  max-width: 840px;
  font-size: clamp(1.95rem, 3vw, 3.35rem);
  line-height: 0.98;
}

.owners-head p:not(.section-kicker) {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 650;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(26px, 4vh, 42px);
}

.process-track article {
  min-height: clamp(230px, 32vh, 300px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 22px;
}

.process-track span {
  width: fit-content;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--black);
  background: var(--lime);
  font-weight: 900;
}

.process-track h3 {
  margin-top: auto;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.process-track p {
  margin: 14px 0 0;
  color: var(--muted-dark);
  font-weight: 700;
}

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

.mission article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.mission h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4.2vw, 4.9rem);
}

.owners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(22px, 3vh, 34px);
}

.owner-card {
  min-height: clamp(520px, 58vh, 620px);
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 2.1vw, 28px);
  align-items: stretch;
  border-radius: 8px;
  padding: clamp(18px, 2vw, 26px);
  color: var(--cream);
  background: var(--black);
  overflow: hidden;
}

.owner-card:nth-child(2) {
  color: var(--black);
  background: var(--lime);
}

.owner-label {
  margin: 0;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-card:nth-child(2) .owner-label {
  color: var(--black);
}

.owner-photo {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(244, 240, 230, 0.08);
}

.owner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 240, 230, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.owner-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.owner-card:first-child .owner-photo img {
  object-position: 50% 18%;
}

.owner-card:nth-child(2) .owner-photo {
  background: var(--black);
}

.owner-card:nth-child(2) .owner-photo img {
  object-position: center;
}

.owner-card h3 {
  max-width: 460px;
  margin-top: 14px;
  font-size: clamp(2.25rem, 2.8vw, 3.1rem);
  line-height: 0.9;
}

.owner-copy p:not(.owner-label) {
  max-width: 500px;
  margin: 14px 0 0;
  color: inherit;
  font-size: clamp(0.88rem, 0.9vw, 0.96rem);
  font-weight: 700;
  line-height: 1.34;
}

.owner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.owner-tags span {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta {
  padding-top: 0;
  min-height: 78svh;
  display: grid;
  align-content: center;
}

.cta-panel {
  border-radius: 8px;
  padding: clamp(28px, 6vw, 74px);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255, 109, 61, 0.22), transparent 34%),
    var(--black);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.cta-panel h2 {
  max-width: 1020px;
}

.contact-panel h2 {
  max-width: 850px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 3.05vw, 3.75rem);
  font-weight: 700;
  line-height: 0.98;
}

.contact-fast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dynamic-brand-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-bottom: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  line-height: 1;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--cream);
  font-size: clamp(1.02rem, 1.6vw, 1.55rem);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-wordmark > b,
.brand-wordmark > em,
.brand-dynamic-root b,
.brand-dynamic-root em {
  color: var(--lime);
  font-style: normal;
}

.brand-wordmark > b {
  margin-left: 0.32em;
}

.brand-wordmark > em {
  margin-left: 0.02em;
}

.brand-wordmark-dynamic {
  align-items: baseline;
}

.brand-dynamic-root {
  display: inline-flex;
  align-items: baseline;
  margin-left: 0.32em;
}

.brand-dynamic-root em {
  margin-left: 0.02em;
}

.dynamic-brand-line small {
  width: 100%;
  color: var(--lime);
  font-size: clamp(0.62rem, 0.78vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

[data-brand-cycle] {
  display: inline-block;
  min-width: 6.9rem;
  color: var(--cream);
  font-style: normal;
  transition: opacity 180ms ease, transform 180ms ease;
}

[data-brand-cycle].is-changing {
  opacity: 0;
  transform: translateY(5px);
}

.cta-panel .button {
  margin-top: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.6vw, 28px);
  background: rgba(244, 240, 230, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 240, 230, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--cream);
  background: rgba(7, 8, 7, 0.72);
  font: inherit;
  font-weight: 700;
  outline: none;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
}

.form-full {
  grid-column: 1 / -1;
}

.form-hidden {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--lime);
  font-weight: 800;
}

.form-status a {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.thanks-page {
  min-height: 100svh;
  color: var(--cream);
  background:
    radial-gradient(circle at 72% 24%, rgba(215, 255, 47, 0.16), transparent 34%),
    var(--black);
}

.thanks-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  width: min(680px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 56px);
  background: rgba(244, 240, 230, 0.06);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
}

.thanks-card p:not(.section-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.site-footer {
  padding: 28px clamp(16px, 5vw, 64px);
  color: var(--muted);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  display: grid;
  gap: 6px;
}

.footer-brand-cycle {
  display: inline-flex;
  align-items: baseline;
  color: var(--cream);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.footer-inner p > span:last-child {
  color: var(--muted);
}

.footer-inner div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-inner a {
  color: var(--cream);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

[data-reveal] {
  transform: translateY(18px);
  opacity: 0;
  transition: transform 520ms ease, opacity 520ms ease;
}

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

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes dashPulse {
  from {
    filter: saturate(0.94);
    transform: scaleY(0.72);
  }

  to {
    filter: saturate(1.25);
    transform: scaleY(1.08);
  }
}

@media (min-width: 981px) {
  .statement,
  .services,
  .identity-strip,
  .deliverables,
  .method,
  .mission,
  .owners,
  .final-cta {
    min-height: 100svh;
    height: auto;
    overflow: visible;
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 112px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 0;
    line-height: 1;
  }

  .menu-button::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--topbar-height) + 74px) 14px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    color: var(--cream);
    background: rgba(7, 8, 7, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    color: var(--black);
  }

  .section-rail {
    left: 14px;
    top: auto;
    bottom: 14px;
    transform: none;
  }

  .rail-panel {
    left: 0;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateY(10px);
  }

  .section-controls {
    top: auto;
    right: 14px;
    bottom: 82px;
    flex-direction: row;
    transform: none;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .rail-toggle {
    box-shadow: var(--shadow);
  }

  .interface-poster {
    width: min(680px, 82vw);
    right: -132px;
    top: 26vh;
    opacity: 0.32;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(7, 8, 7, 0.96), rgba(7, 8, 7, 0.74)),
      var(--black);
  }

  .statement-grid,
  .discovery-entry-grid,
  .services-head,
  .service-lab,
  .identity-grid,
  .deliverables-grid,
  .cases-head,
  .method-head,
  .process-track,
  .mission-grid,
  .owners-head,
  .owners-grid {
    grid-template-columns: 1fr;
  }

  .statement p:not(.section-kicker) {
    grid-column: 1;
  }

  .identity-grid > div:first-child,
  .identity-copy,
  .identity-board {
    grid-column: 1;
  }

  .identity-board {
    grid-row: auto;
    transform: none;
  }

  .process-track article {
    min-height: 220px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .case-studies {
    min-height: auto !important;
    padding: 88px 0;
  }

  .cases-sticky {
    position: static;
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .cases-head {
    padding-left: 16px;
    padding-right: 16px;
  }

  .case-track {
    width: min(720px, calc(100% - 32px));
    grid-template-columns: 1fr;
    transform: none !important;
    padding: 0;
    scroll-snap-type: none;
  }

  .case-card {
    min-height: auto;
    flex-basis: auto;
    scroll-snap-align: none;
  }

  .case-link {
    width: 100%;
  }

  .cases-mobile-hint,
  .cases-mobile-controls,
  .cases-dots {
    display: none !important;
  }

  .cases-mobile-controls {
    display: none !important;
  }

  .cases-mobile-controls button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--cream);
    background: rgba(244, 240, 230, 0.06);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
  }

  .cases-mobile-controls button:active {
    color: var(--black);
    background: var(--lime);
  }

  .cases-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 70px;
  }

  .cases-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(244, 240, 230, 0.34);
    transition: width 160ms ease, background 160ms ease;
  }

  .cases-dots span.is-active {
    width: 24px;
    background: var(--lime);
  }

  .case-modal {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
  }

  .modal-grid {
    grid-template-columns: 1fr;
    padding: 72px 18px 22px;
  }

  .modal-gallery-single {
    position: static;
  }

  .ocr-flow-visual {
    position: static;
  }

  .ocr-demo {
    position: static;
  }

  .receipt-stack,
  .extraction-panel dl {
    grid-template-columns: 1fr;
  }

  .receipt-stack {
    height: auto;
  }

  .receipt-stack figure,
  .receipt-stack figure:first-child {
    grid-row: auto;
    min-height: 220px;
  }

  .phone-gallery,
  .web-shot-grid {
    grid-template-columns: 1fr;
  }

  .modal-points {
    grid-template-columns: 1fr;
  }

  .modal-poster {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 148px;
  }

  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .top-contact-bar {
    justify-content: center;
    padding: 0 14px;
  }

  .top-contact-links {
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 10px;
    max-width: calc(100% - 92px);
    min-width: 0;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand strong {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: clamp(0.96rem, 4.4vw, 1.12rem);
    letter-spacing: -0.06em;
  }

  .brand-name {
    max-width: 100%;
    white-space: nowrap;
  }

  .brand small {
    display: block;
    max-width: 100%;
    color: var(--lime);
    font-size: clamp(0.42rem, 1.65vw, 0.54rem);
    letter-spacing: 0.12em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .brand small::before {
    display: none;
  }

  .brand-cycle-word {
    display: none !important;
  }

  .brand-symbol {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 1.08rem;
  }

  .site-nav {
    inset: calc(var(--topbar-height) + 66px) 12px auto;
  }

  .menu-button {
    width: 42px;
    min-width: 42px;
    max-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 7px;
  }

  .hero {
    min-height: 90svh;
    padding: 132px 16px 128px;
  }

  .final-cta {
    padding-top: 104px;
  }

  .section-controls {
    display: none;
  }

  .section-rail {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-copy-wrap {
    padding-bottom: 92px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-panel h2 {
    font-size: clamp(1.9rem, 9.2vw, 3rem);
  }

  .interface-poster {
    width: 560px;
    right: -430px;
    top: 20vh;
    min-height: 460px;
    opacity: 0.08;
  }

  .poster-main {
    min-height: 280px;
  }

  .poster-card {
    min-height: 140px;
  }

  .poster-flow {
    grid-template-columns: 1fr;
  }

  .section-dark,
  .services,
  .identity-strip,
  .method,
  .owners,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .deliverable-list {
    grid-template-columns: 1fr;
  }

  .service-stage {
    min-height: 430px;
  }

  .service-stage ul {
    grid-template-columns: 1fr;
  }

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

  .owner-card {
    min-height: 300px;
    grid-template-columns: 1fr;
  }

  .owner-card:nth-child(2) .owner-photo {
    order: initial;
  }

  .owner-photo {
    min-height: 260px;
    height: clamp(260px, 54vh, 360px);
  }

  .case-card {
    flex-basis: auto;
    min-height: auto;
  }

  .case-outcomes ul {
    font-size: 0.9rem;
  }

  .case-studies {
    padding-left: 0;
    padding-right: 0;
  }

  .case-visual {
    min-height: 190px;
  }

  .modal-copy h2 {
    font-size: clamp(2.4rem, 13vw, 4.6rem);
  }

  .footer-inner {
    display: grid;
    gap: 18px;
  }

  .dynamic-brand-line {
    gap: 8px 14px;
  }

  .footer-brand-cycle {
    flex-wrap: wrap;
  }

  [data-brand-cycle] {
    min-width: 6.2rem;
  }

  .footer-inner div {
    justify-content: flex-start;
    row-gap: 12px;
  }

  .site-footer {
    padding-bottom: 112px;
  }

  .whatsapp-widget {
    width: 46px;
    height: 46px;
    right: 10px;
    bottom: 10px;
  }

  .whatsapp-widget svg {
    width: 27px;
    height: 27px;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .case-track {
    width: min(900px, calc(100% - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) and (max-height: 520px) and (orientation: landscape) {
  .site-header {
    padding: 10px 24px;
  }

  .brand {
    gap: 12px;
  }

  .brand-symbol {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .brand strong {
    gap: 12px;
    font-size: clamp(0.96rem, 2.2vw, 1.12rem);
  }

  .brand-cycle-word {
    display: none !important;
  }

  .brand small {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .menu-button {
    min-height: 46px;
    padding: 9px 16px;
  }

  .section-controls {
    display: none;
  }

  .section-rail {
    display: none;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .hero {
    min-height: 100svh;
    align-items: start;
    padding: 112px 24px 48px;
  }

  .hero-copy-wrap {
    width: min(72vw, 620px);
    padding-bottom: 0;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  h1 {
    max-width: 620px;
    font-size: clamp(2.1rem, 5.6vw, 3rem);
  }

  .hero-copy {
    max-width: 590px;
    margin-top: 14px;
    font-size: clamp(0.84rem, 2vw, 0.98rem);
  }

  .hero-actions {
    max-width: 520px;
    margin-top: 14px;
  }

  .button {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .ticker {
    display: none;
  }

  .interface-poster {
    width: min(420px, 44vw);
    min-height: 292px;
    right: -82px;
    top: 78px;
    opacity: 0.22;
  }

  .poster-grid {
    gap: 8px;
    padding: 10px;
  }

  .poster-main {
    min-height: 180px;
  }

  .poster-main strong {
    font-size: clamp(1.45rem, 3vw, 2rem);
  }

  .poster-card {
    min-height: 92px;
  }

  .poster-flow span {
    padding: 8px;
    font-size: 0.68rem;
  }

  .case-studies {
    padding-top: 74px;
  }

  .cases-head {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cases-head h2 {
    max-width: 720px;
    font-size: clamp(2rem, 5.8vw, 3.1rem);
  }

  .case-track {
    width: min(900px, calc(100% - 48px));
    padding: 0;
  }

  .case-card {
    flex-basis: auto;
    min-height: 310px;
  }

  .case-visual {
    min-height: 130px;
  }

  .case-card h3 {
    font-size: clamp(1.25rem, 3.4vw, 1.8rem);
  }

  .case-card p:not(.case-label) {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .interface-poster {
    transform: rotate(-3deg) !important;
  }
}

dialog.case-modal.pulso-vet-modal {
  color: #20172f;
  background:
    radial-gradient(circle at 86% 8%, rgba(126, 87, 194, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  border-color: rgba(126, 87, 194, 0.28);
  box-shadow: 0 28px 90px rgba(32, 23, 47, 0.22);
}

dialog.case-modal.pulso-vet-modal::backdrop {
  background: rgba(32, 23, 47, 0.36);
  backdrop-filter: blur(12px);
}

dialog.case-modal.pulso-vet-modal .modal-close {
  color: #7e57c2;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(126, 87, 194, 0.24);
  box-shadow: 0 12px 26px rgba(32, 23, 47, 0.12);
}

dialog.case-modal.pulso-vet-modal .modal-grid {
  gap: clamp(22px, 3.5vw, 44px);
}

dialog.case-modal.pulso-vet-modal .section-kicker,
dialog.case-modal.pulso-vet-modal .modal-points span {
  color: #7e57c2;
}

dialog.case-modal.pulso-vet-modal .modal-copy h2 {
  max-width: 720px;
  color: #20172f;
  font-size: clamp(2rem, 3.35vw, 4.2rem);
}

dialog.case-modal.pulso-vet-modal .modal-copy > p:not(.section-kicker):not(.modal-note),
dialog.case-modal.pulso-vet-modal .modal-points p,
dialog.case-modal.pulso-vet-modal .modal-note {
  color: #746885;
}

dialog.case-modal.pulso-vet-modal .modal-points article {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(126, 87, 194, 0.18);
  box-shadow: 0 12px 30px rgba(126, 87, 194, 0.08);
}

dialog.case-modal.pulso-vet-modal .button-primary {
  color: #ffffff;
  background: #7e57c2;
  box-shadow: 0 0 0 1px rgba(126, 87, 194, 0.28);
}

dialog.case-modal.pulso-vet-modal .button-primary:hover {
  color: #ffffff;
  background: #6e45b8;
}

dialog.case-modal.pulso-vet-modal .modal-gallery img,
dialog.case-modal.pulso-vet-modal .phone-gallery .image-open {
  border-color: rgba(126, 87, 194, 0.18);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(32, 23, 47, 0.1);
}

dialog.case-modal.pulso-vet-modal .product-video-card {
  border-color: rgba(126, 87, 194, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(32, 23, 47, 0.1);
}

dialog.case-modal.pulso-vet-modal .product-video-card figcaption {
  color: #746885;
}

dialog.case-modal.pulso-vet-modal .image-open::after {
  color: #ffffff;
  background: #7e57c2;
}

dialog.case-modal.pulso-vet-modal .phone-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 320px;
}

dialog.case-modal.pulso-vet-modal .phone-gallery img {
  background: #ffffff;
}

@media (max-width: 760px) {
  dialog.case-modal.pulso-vet-modal .modal-grid {
    padding: 22px;
  }

  dialog.case-modal.pulso-vet-modal .phone-gallery {
    min-height: 0;
  }
}
