:root {
  color-scheme: dark;
  --orange: #f15e2e;
  --orange-deep: #d94d22;
  --taupe: #6b6054;
  --ink: #080706;
  --ink-soft: #15110e;
  --paper: #f6f1ea;
  --muted: #c8beb2;
  --line: rgba(246, 241, 234, 0.18);
  --line-strong: rgba(246, 241, 234, 0.34);
  --container: min(1320px, calc(100vw - 56px));
  --hero-rail: clamp(18px, 3vw, 42px);
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  left: 16px;
  opacity: 0;
  padding: 12px 16px;
  position: fixed;
  top: 12px;
  transform: translateY(-160%);
  z-index: 50;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(180px, 1fr) auto minmax(230px, 1fr);
  height: var(--header-height);
  inset: 0 0 auto;
  padding: 0 clamp(18px, 3vw, 42px);
  position: fixed;
  z-index: 20;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.94), rgba(8, 7, 6, 0.16));
  transition:
    background 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    backdrop-filter 360ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.brand-link {
  align-items: center;
  display: inline-flex;
  width: clamp(174px, 16vw, 252px);
}

.brand-link img {
  height: auto;
  width: 100%;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 1.8vw, 32px);
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.primary-nav a,
.language-links a {
  position: relative;
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.primary-nav a::after {
  background: var(--orange);
  bottom: -9px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
  width: 100%;
}

.primary-nav a:hover,
.language-links a:hover,
.language-links a.active {
  color: var(--orange);
  opacity: 1;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: end;
}

.language-links {
  display: flex;
  gap: 12px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.contact-pill,
.hero-actions a,
.closing-cta a {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  justify-content: center;
  min-height: 56px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-pill {
  border-radius: 999px;
  gap: 10px;
  min-height: 54px;
  padding-left: 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  background: rgba(246, 241, 234, 0.08);
}

.contact-pill strong {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  display: grid;
  font-size: 24px;
  font-weight: 400;
  height: 52px;
  justify-items: center;
  line-height: 1;
  width: 52px;
}

.contact-pill:hover,
.hero-actions a:hover,
.closing-cta a:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  isolation: isolate;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  --hero-pointer-x: 0px;
  --hero-pointer-y: 0px;
  --hero-shade-x: 0px;
  --hero-shade-y: 0px;}

.hero::after {
  background: rgba(240, 93, 45, 0.1);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero__media,
.hero-media,
.hero-shade {
  inset: 0;
  height: 100%;
  position: absolute;
  width: 100%;
}

.hero__media,
.hero-media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.035) translate3d(var(--hero-pointer-x, 0px), calc(var(--hero-shift, 0px) + var(--hero-pointer-y, 0px)), 0);
  z-index: -3;
  animation: heroMediaLoad 1500ms ease both;
  will-change: transform;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.12), rgba(8, 7, 6, 0.42)),
    rgba(240, 93, 45, 0.1);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.hero__grid {
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(240, 93, 45, 0.18) 18.1% 18.35%, transparent 18.45% 100%),
    linear-gradient(65deg, transparent 0 44%, rgba(255, 255, 255, 0.13) 44.1% 44.28%, transparent 44.38% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 132px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 132px);
  inset: 0;
  opacity: .07;
  pointer-events: none;
  position: absolute;
  transform: translate3d(var(--hero-shade-x, 0px), var(--hero-shade-y, 0px), 0);
  z-index: -1;
}

.hero__grid span {
  background: #f05d2d;
  border-radius: 999px;
  box-shadow: 0 0 calc(12px + var(--node-boost, 0px)) rgba(240, 93, 45, calc(.32 + var(--node-alpha, 0)));
  height: 6px;
  opacity: calc(.35 + var(--node-alpha, 0));
  position: absolute;
  transition: opacity 240ms ease, box-shadow 240ms ease;
  width: 6px;
}

.hero__grid span:nth-child(1) { left: 18%; top: 24%; }
.hero__grid span:nth-child(2) { left: 36%; top: 42%; }
.hero__grid span:nth-child(3) { left: 52%; top: 28%; }
.hero__grid span:nth-child(4) { left: 68%; top: 58%; }
.hero__grid span:nth-child(5) { left: 82%; top: 34%; }
.hero__grid span:nth-child(6) { left: 24%; top: 72%; }

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.22), rgba(8, 7, 6, 0.82)),
    linear-gradient(90deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.34) 48%, rgba(8, 7, 6, 0.62));
  transform: translate3d(var(--hero-shade-x, 0px), var(--hero-shade-y, 0px), 0);
  will-change: transform;
}

.hero-copy {
  margin-left: auto;
  max-width: min(674px, calc(100vw - 56px));
  padding: 0;
  position: absolute;
  right: max(28px, calc((100vw - min(1640px, calc(100vw - 56px))) / 2));
  top: 60%;
  transform: translateY(-50%);
  width: min(674px, calc(100vw - 56px));
  z-index: 2;
}

.hero-copy p {
  animation: heroKickerIn 740ms 220ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy h1 {
  animation: heroHeadlineIn 960ms 330ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy p,
.section-kicker,
.pillar p,
.closing-cta p,
.proof-item span {
  color: var(--orange);
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.hero-copy p,
.section-kicker {
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  font-size: clamp(2.12rem, 3.16vw, 4.2rem);
  font-weight: 650;
  line-height: 1.13;
  margin: 26px 0 0;
  max-width: 520px;
}

.hero-copy > p {
  font-size: clamp(0.74rem, 0.86vw, 1.02rem);
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  animation: heroActionsIn 920ms 570ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.hero-actions a:first-child {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-actions a:first-child:hover {
  background: var(--orange-deep);
}

.hero-actions a {
  min-height: 84px;
  min-width: 270px;
  padding: 0 34px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
  background: rgba(8, 7, 6, 0.34);
  backdrop-filter: blur(12px);
}
.hero__content {
  display: grid;
  gap: 18px;
  max-width: min(674px, calc(100vw - 56px));
  padding: 0;
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  width: min(674px, calc(100vw - 56px));
  z-index: 2;
}

.hero__content--right {
  left: auto;
  right: max(28px, calc((100vw - min(1640px, calc(100vw - 56px))) / 2));
  text-align: left;
}

.hero__content--left {
  left: var(--hero-rail);
  right: auto;
  text-align: left;
}

.hero__label {
  animation: heroKickerIn 740ms 220ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  color: var(--orange);
  font-size: clamp(0.76rem, 0.9vw, 1.02rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}

.hero__title {
  animation: heroHeadlineIn 960ms 330ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  color: var(--paper);
  font-size: clamp(2.25rem, 3.45vw, 4.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0;
  max-width: 620px;
}

.hero__title span {
  display: block;
  font-size: .78em;
  line-height: 1.14;
  margin-top: 12px;
}

.hero__subline {
  animation: heroKickerIn 820ms 430ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  color: rgba(255, 249, 241, 0.76);
  font-size: clamp(1rem, 1.05vw, 1.2rem);
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
  max-width: 610px;
}

.hero__actions {
  animation: heroActionsIn 920ms 570ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

.hero__button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--paper);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 72px;
  min-width: 235px;
  padding: 0 30px;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hero__button:hover {
  box-shadow: 0 18px 50px rgba(240, 93, 45, 0.2);
  transform: scale(1.03);
}

.hero__button--primary {
  background: var(--orange);
  border-color: var(--orange);
}

.hero__button--secondary {
  background: rgba(8, 7, 6, 0.42);
  backdrop-filter: blur(12px);
}
@media (hover: hover) and (pointer: fine) {
  body.ac-premium-cursor-active .hero,
  body.ac-premium-cursor-active .hero a,
  body.ac-premium-cursor-active .hero button {
    cursor: none;
  }

  .ac-cursor-glow,
  .ac-cursor-trail,
  .ac-click-ripple {
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    z-index: 9000;
  }

  .ac-cursor-glow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    opacity: 0;
    background: var(--cursor-color, #f05d2d);
    box-shadow: 0 0 28px 18px var(--cursor-color, #f05d2d);
    filter: blur(3px);
    transform: translate3d(-999px, -999px, 0);
    transition: opacity 160ms ease, background-color 180ms ease, box-shadow 180ms ease;
    will-change: transform, opacity;
  }

  body.ac-premium-cursor-active .ac-cursor-glow {
    opacity: .32;
  }

  .ac-cursor-trail {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    opacity: 0;
    background: #f05d2d;
    transform: translate3d(-999px, -999px, 0);
    will-change: transform, opacity;
  }

  body.ac-premium-cursor-active .ac-cursor-trail {
    opacity: .15;
  }

  .ac-click-ripple {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(240, 93, 45, .55);
    border-radius: 50%;
    background: rgba(240, 93, 45, .25);
    transform: translate3d(var(--ripple-x), var(--ripple-y), 0) translate(-50%, -50%) scale(1);
    animation: acClickRipple 420ms cubic-bezier(.22, 1, .36, 1) forwards;
    will-change: transform, opacity;
  }
}

@media (max-width: 1180px) {
  .hero__content {
    max-width: min(590px, calc(100vw - 48px));
    right: 24px;
    width: min(590px, calc(100vw - 48px));
  }
}

@media (max-width: 760px) {
  .hero__grid {
    opacity: .045;
  }

  .hero__grid span {
    display: none;
  }

  .hero__content,
  .hero__content--right,
  .hero__content--left {
    left: 22px;
    right: 22px;
    text-align: left;
    top: 52%;
    width: auto;
  }

  .hero__title {
    font-size: clamp(2.25rem, 13vw, 3.65rem);
  }

  .hero__subline {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    gap: 12px;
  }

  .hero__button {
    min-height: 58px;
    min-width: 0;
    width: 100%;
  }
}

@keyframes acClickRipple {
  to {
    opacity: 0;
    transform: translate3d(var(--ripple-x), var(--ripple-y), 0) translate(-50%, -50%) scale(3);
  }
}

.reveal-ready {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 820ms ease;
}

.reveal-ready.revealed {
  filter: none;
  opacity: 1;
  transform: translateY(0);
}

.scene-section {
  isolation: isolate;
  position: relative;
}

.scene-section::before {
  background:
    linear-gradient(128deg, transparent 12%, rgba(246, 241, 234, 0.035) 48%, transparent 74%),
    radial-gradient(circle at 82% 8%, rgba(241, 94, 46, 0.07), transparent 24rem);
  content: "";
  inset: 0 calc((100vw - 100%) / -2);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate3d(-8%, 0, 0);
  transition: opacity 1000ms ease, transform 1200ms ease;
  z-index: -1;
}

.scene-section.revealed::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.metrics.scene-section::before,
.proof.scene-section::before {
  background:
    linear-gradient(135deg, transparent 4%, rgba(241, 94, 46, 0.06) 50%, transparent 86%),
    linear-gradient(180deg, rgba(246, 241, 234, 0.02), transparent);
}

.stagger-ready > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
}

.stagger-ready.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-ready.revealed > *:nth-child(2) {
  transition-delay: 90ms;
}

.stagger-ready.revealed > *:nth-child(3) {
  transition-delay: 160ms;
}

.stagger-ready.revealed > *:nth-child(4) {
  transition-delay: 230ms;
}

.section-rail {
  width: var(--container);
}

.intro {
  display: grid;
  gap: 44px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 144px) 0 clamp(64px, 7vw, 112px);
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: clamp(24px, 4vw, 76px);
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
}

.intro h2,
.ecosystem h2,
.posture h2,
.proof h2,
.solutions h2,
.closing-cta h2 {
  font-size: clamp(2.25rem, 5vw, 6rem);
  font-weight: 620;
  line-height: 0.98;
  margin: 0;
}

.intro p,
.ecosystem-head p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.55;
  margin: 0;
}

.metrics {
  background:
    linear-gradient(135deg, rgba(246, 241, 234, 0.072), rgba(246, 241, 234, 0.018)),
    rgba(21, 17, 14, 0.74);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 var(--hero-rail);
  overflow: hidden;
  width: calc(100vw - (2 * var(--hero-rail)));
  box-shadow:
    inset 0 1px 0 rgba(246, 241, 234, 0.06),
    0 26px 82px rgba(0, 0, 0, 0.24);
}

.metrics div {
  align-content: center;
  display: grid;
  gap: 2px;
  min-height: 244px;
  padding: clamp(28px, 2.6vw, 44px) clamp(24px, 3vw, 52px);
  transition: background 240ms ease, transform 240ms ease;
}

.metrics div:hover {
  background: rgba(246, 241, 234, 0.035);
  transform: translateY(-3px);
}

.metrics div + div {
  border-left: 1px solid var(--line);
}

.metrics strong,
.pillar h3 {
  display: block;
  font-size: clamp(2.2rem, 4vw, 5rem);
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  display: block;
  line-height: 1.45;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.08vw, 1.125rem);
  font-weight: 800;
}

.ecosystem {
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0;
}

.ecosystem-head,
.solutions-head {
  align-items: end;
  display: grid;
  gap: clamp(20px, 3vw, 56px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  margin-top: 26px;
}

.pillar-list {
  margin-top: clamp(44px, 6vw, 82px);
}

.pillar {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 70px minmax(210px, 0.8fr) minmax(280px, 1fr) auto;
  padding: clamp(28px, 3vw, 44px) 0;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
}

.pillar:last-child {
  border-bottom: 1px solid var(--line);
}

.pillar:hover {
  background: linear-gradient(90deg, rgba(241, 94, 46, 0.08), transparent 72%);
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.pillar-index {
  color: var(--taupe);
  font-size: 13px;
  font-weight: 900;
}

.pillar p {
  letter-spacing: 0.12em;
}

.pillar h3 {
  font-weight: 620;
  letter-spacing: -0.06em;
  margin: 10px 0 0;
}

.pillar ul {
  color: var(--muted);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pillar a,
.solutions-head a {
  align-items: center;
  border-bottom: 1px solid var(--orange);
  color: var(--orange);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  min-height: 34px;
  text-transform: uppercase;
}

.posture {
  display: grid;
  gap: clamp(36px, 5vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) 0;
}

.posture-lead {
  position: sticky;
  top: 126px;
  align-self: start;
}

.posture-lead h2 {
  margin-top: 26px;
}

.posture-points {
  display: grid;
}

.posture-points article {
  border-top: 1px solid var(--line);
  padding: 28px 0 34px;
  transition: transform 240ms ease, border-color 240ms ease;
}

.posture-points article:last-child {
  border-bottom: 1px solid var(--line);
}

.posture-points article:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.posture-points h3,
.proof-item h3,
.solutions-grid h3 {
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  font-weight: 620;
  line-height: 1.08;
  margin: 0;
}

.posture-points p,
.solutions-grid p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 14px 0 0;
}

.proof {
  padding: clamp(68px, 8vw, 118px) 0;
}

.proof-head {
  margin: 0 auto 42px;
}

.proof-head h2 {
  margin-top: 26px;
}

.proof-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  grid-template-rows: repeat(4, minmax(220px, 1fr));
  width: min(1480px, calc(100vw - 36px));
  margin: 0 auto;
}

.proof-item {
  isolation: isolate;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
  transition: box-shadow 420ms ease, transform 420ms ease;
}

.proof-item-feature {
  grid-row: span 4;
}

.proof-item img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.11);
  transition:
    filter 920ms ease,
    opacity 920ms ease,
    transform 1100ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
  z-index: -2;
}

.proof-item::after {
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.1), rgba(8, 7, 6, 0.9));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.proof-item span,
.proof-item h3 {
  left: clamp(20px, 3vw, 42px);
  position: absolute;
  right: clamp(20px, 3vw, 42px);
}

.proof-item span {
  bottom: 96px;
  letter-spacing: 0.14em;
}

.proof-item h3 {
  bottom: 32px;
  max-width: 540px;
}

.proof-item:hover img {
  transform: scale(1.045);
}

.proof-item:hover {
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.34), 0 0 26px rgba(241, 94, 46, 0.09);
  transform: translateY(-4px);
}

.proof-item.media-reveal {
  filter: saturate(0.6);
  opacity: 0;
  transform: translate3d(var(--media-offset, 0), 24px, 0);
}

.proof-item.media-reveal.revealed {
  filter: saturate(1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.proof-item.media-reveal.revealed img {
  transform: scale(1);
}

.solutions {
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0;
}

.solutions-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(38px, 5vw, 70px);
}

.solutions-grid article {
  border-top: 1px solid var(--line);
  min-height: 270px;
  padding: 30px clamp(18px, 2vw, 30px);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.solutions-grid article + article {
  border-left: 1px solid var(--line);
}

.solutions-grid article:hover {
  background: rgba(246, 241, 234, 0.035);
  border-color: var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(246, 241, 234, 0.08), 0 24px 62px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.closing-cta {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(30px, 5vw, 80px);
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 144px) 0;
}

.closing-cta p {
  letter-spacing: 0.18em;
  margin-bottom: 22px;
}

.closing-cta h2 {
  max-width: 980px;
}

.closing-cta a {
  background: var(--orange);
  border-color: var(--orange);
  min-width: 220px;
  padding: 0 28px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.ac-footer {
  background: linear-gradient(180deg, #15110e, #080706);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 48px 24px 24px;
}

.ac-footer-inner {
  margin: 0 auto;
  width: min(1440px, 100%);
}

.ac-footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 0.85fr 1.05fr 1fr;
}

.ac-footer h4 {
  color: var(--paper);
  font-size: 1.15rem;
  margin: 20px 0 14px;
}

.ac-footer p {
  line-height: 1.6;
  margin: 0 0 14px;
}

.ac-footer a {
  color: var(--muted);
}

.ac-footer a:hover {
  color: var(--orange);
}

.ac-footer ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.ac-footer li strong {
  color: var(--paper);
}

.ac-footer-logo img {
  height: 42px;
  width: auto;
}

.ac-footer form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.ac-footer input {
  background: rgba(246, 241, 234, 0.06);
  border: 1px solid var(--line);
  color: var(--paper);
  min-height: 48px;
  min-width: 0;
  padding: 0 14px;
  width: 100%;
}

.ac-footer input::placeholder {
  color: var(--muted);
}

.ac-btn {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-transform: uppercase;
}

.ac-btn-primary {
  background: var(--orange);
  color: var(--paper) !important;
}

.ac-btn-secondary {
  border-color: var(--line);
  color: var(--paper) !important;
}

.ac-footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ac-footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
}

.ac-footer-bottom p {
  font-size: 13px;
  margin: 0;
}

.ac-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ac-footer-legal a {
  font-size: 14px;
}

@media (max-width: 1040px) {
  :root {
    --container: min(100vw - 36px, 1320px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    background: rgba(246, 241, 234, 0.08);
    border: 1px solid var(--line);
    display: grid;
    gap: 5px;
    height: 48px;
    justify-content: center;
    justify-self: end;
    order: 2;
    padding: 0;
    width: 48px;
  }

  .menu-toggle span:not(.sr-only) {
    background: var(--paper);
    display: block;
    height: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 20px;
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    background: rgba(8, 7, 6, 0.97);
    border: 1px solid var(--line);
    display: none;
    gap: 0;
    grid-column: 1 / -1;
    justify-items: stretch;
    left: 18px;
    position: absolute;
    right: 18px;
    top: calc(100% - 10px);
    transform: translateY(-12px);
  }

  .site-header.menu-open .primary-nav {
    animation: menuReveal 320ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
    display: grid;
  }

  .primary-nav a {
    border-top: 1px solid var(--line);
    min-height: 54px;
    padding: 18px;
  }

  .primary-nav a:first-child {
    border-top: 0;
  }

  .header-actions {
    justify-self: end;
  }

  .contact-pill span,
  .language-links {
    display: none;
  }

  .contact-pill {
    min-height: 48px;
    padding-left: 0;
  }

  .contact-pill strong {
    height: 46px;
    width: 46px;
  }

  .intro-grid,
  .ecosystem-head,
  .posture,
  .solutions-head,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .posture-lead {
    position: static;
  }

  .pillar {
    grid-template-columns: 54px minmax(200px, 0.7fr) 1fr;
  }

  .pillar a {
    grid-column: 2;
  }

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

  .solutions-grid article:nth-child(3) {
    border-left: 0;
  }

  .metrics {
    margin-inline: auto;
    width: 90vw;
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 78px;
    --container: calc(100vw - 28px);
  }

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

  .brand-link {
    width: min(166px, 44vw);
  }

  .hero {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-media {
    object-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.38), rgba(8, 7, 6, 0.9)),
      linear-gradient(90deg, rgba(8, 7, 6, 0.82), rgba(8, 7, 6, 0.28));
  }

  .hero-copy {
    margin: 0;
    max-width: none;
    padding: 132px 14px 0;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 9.4vw, 3.7rem);
    max-width: 360px;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 360px);
  }

  .hero-actions a {
    min-height: 62px;
    min-width: 0;
    font-size: 12px;
  }
.intro {
    gap: 28px;
  }

  .intro h2,
  .ecosystem h2,
  .posture h2,
  .proof h2,
  .solutions h2,
  .closing-cta h2 {
    font-size: clamp(2rem, 10vw, 3.6rem);
  }

  .metrics,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    border-inline: 0;
    margin-inline: 0;
    width: 100%;
  }

  .metrics div {
    min-height: 0;
    padding: 24px 14px;
  }

  .metrics div + div,
  .solutions-grid article + article {
    border-left: 0;
  }

  .metrics div + div {
    border-top: 1px solid var(--line);
  }

  .pillar {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .pillar a {
    grid-column: auto;
    width: max-content;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    width: calc(100vw - 28px);
  }

  .proof-item,
  .proof-item-feature {
    grid-row: auto;
    min-height: 420px;
  }

  .solutions-grid article {
    min-height: 180px;
    padding-inline: 0;
  }

  .closing-cta a {
    width: 100%;
  }

  .ac-footer {
    padding-inline: 14px;
  }

  .ac-footer-grid {
    grid-template-columns: 1fr;
  }

  .ac-footer form,
  .ac-footer-contact-actions {
    display: grid;
  }

  .ac-footer-bottom {
    align-items: start;
    display: grid;
    justify-content: stretch;
  }

  .ac-footer-legal {
    display: grid;
  }
}

@keyframes heroMediaLoad {
  from {
    opacity: 0;
    transform: scale(1.09);
  }
  to {
    opacity: 1;
    transform: scale(1.035) translate3d(0, var(--hero-shift, 0px), 0);
  }
}

@keyframes heroKickerIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroHeadlineIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroActionsIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  72% {
    opacity: 1;
    transform: translateY(-3px) scale(1.008);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes menuReveal {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-media,
  .hero-copy p,
  .hero-copy h1,
  .hero-actions,
.reveal-ready,
  .stagger-ready > *,
  .proof-item.media-reveal {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scene-section::before {
    display: none;
  }
}

/* Shared floating contact and ROBO-AI layer on the redesigned homepage. */
.ac-robo {
  bottom: 24px;
  position: fixed;
  right: 24px;
  z-index: 60;
}

.ac-robo-toggle {
  align-items: center;
  background: rgba(14, 16, 22, 0.94);
  border: 1px solid rgba(241, 94, 46, 0.42);
  border-radius: 999px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.34);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-weight: 800;
  gap: 10px;
  min-height: 58px;
  padding: 10px 16px 10px 10px;
}

.ac-robo-avatar {
  background: var(--orange);
  border-radius: 50%;
  display: grid;
  height: 38px;
  place-items: center;
  width: 38px;
}

.ac-robo-avatar img {
  display: block;
  height: 24px;
  object-fit: contain;
  width: 24px;
}

.ac-robo-panel {
  background: rgba(14, 16, 22, 0.98);
  border: 1px solid var(--line);
  bottom: calc(100% + 12px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  transform: scale(0.96) translateY(8px);
  transform-origin: bottom right;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  visibility: hidden;
  width: min(380px, calc(100vw - 28px));
}

.ac-robo.open .ac-robo-panel {
  opacity: 1;
  transform: scale(1) translateY(0);
  visibility: visible;
}

.ac-robo-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

.ac-robo-head small {
  color: rgba(246, 241, 234, 0.65);
  display: block;
  font-size: 12px;
}

.ac-robo-head button {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.ac-robo-prechat {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding: 16px;
}

.ac-robo-prechat.hidden,
.ac-robo-locked .ac-robo-messages,
.ac-robo-locked .ac-robo-quick,
.ac-robo-locked .ac-robo-form {
  display: none;
}

.ac-robo-prechat p,
.ac-robo-msg {
  margin: 0;
}

.ac-robo-prechat p {
  color: rgba(246, 241, 234, 0.72);
  font-size: 13px;
}

.ac-robo-prechat input,
.ac-robo-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #fff;
  font: inherit;
  min-width: 0;
}

.ac-robo-prechat input {
  min-height: 44px;
  padding: 0 14px;
}

.ac-robo-prechat button,
.ac-robo-form button {
  background: var(--orange);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.ac-robo-prechat button {
  min-height: 44px;
}

.ac-robo-prechat-error {
  color: #ffb9a7 !important;
  min-height: 1em;
}

.ac-robo-messages {
  display: grid;
  gap: 12px;
  max-height: 320px;
  overflow: auto;
  padding: 16px;
}

.ac-robo-msg {
  background: rgba(255, 255, 255, 0.08);
  line-height: 1.5;
  padding: 12px 14px;
}

.ac-robo-msg.user {
  background: var(--orange);
  justify-self: end;
}

.ac-robo-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.ac-robo-quick button {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #fff;
  cursor: pointer;
  min-height: 34px;
  padding: 0 12px;
}

.ac-robo-form {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  padding: 16px;
}

.ac-robo-form input {
  flex: 1;
  padding: 0 14px;
}

.ac-robo-form button {
  min-height: 42px;
  padding: 0 12px;
}

.ac-whatsapp-float {
  background: #25d366;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.34);
  color: #fff;
  display: grid;
  height: 52px;
  left: 24px;
  place-items: center;
  position: fixed;
  width: 52px;
  z-index: 55;
}

.ac-whatsapp-float svg {
  height: 26px;
  width: 26px;
}

.ac-quick-contact-rail {
  align-items: center;
  bottom: 24px;
  display: flex;
  gap: 10px;
  left: 24px;
  position: fixed;
  z-index: 55;
}

.ac-quick-contact-rail .ac-whatsapp-float {
  bottom: auto;
  left: auto;
  position: static;
}

.ac-quick-contact-link {
  background: rgba(14, 16, 22, 0.94);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.34);
  color: #fff;
  display: grid;
  height: 52px;
  place-items: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  width: 52px;
}

.ac-quick-contact-link:hover {
  background: rgba(241, 94, 46, 0.16);
  border-color: rgba(241, 94, 46, 0.48);
  transform: translateY(-2px);
}

.ac-quick-contact-link svg {
  height: 22px;
  width: 22px;
}

@media (max-width: 640px) {
  .ac-robo {
    bottom: 14px;
    right: 14px;
  }

  .ac-robo-toggle {
    min-height: 50px;
    padding-right: 12px;
  }

  .ac-robo-label {
    font-size: 12px;
  }

  .ac-quick-contact-rail {
    bottom: 14px;
    gap: 8px;
    left: 14px;
  }

  .ac-quick-contact-link,
  .ac-quick-contact-rail .ac-whatsapp-float {
    height: 46px;
    width: 46px;
  }
}
