:root {
  --app-height: 100vh;
  --bg: #050505;
  --surface: rgba(255, 255, 255, 0.1);
  --surface-strong: rgba(255, 255, 255, 0.18);
  --text: #f4efe7;
  --muted: rgba(244, 239, 231, 0.74);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f5b942;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --page-blue: rgba(66, 132, 182, 0.12);
  --page-blue-soft: rgba(66, 132, 182, 0.06);
  --panel-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  --panel-bg-strong: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  --panel-line: rgba(255, 255, 255, 0.12);
  --section-space: clamp(4.8rem, 9vw, 7rem);
  --section-bottom: clamp(4.5rem, 8vw, 6rem);
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: var(--app-height);
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% -10%, rgba(88, 140, 184, 0.12), transparent 30%),
    linear-gradient(180deg, #04070a 0%, #05080c 100%);
  color: var(--text);
  font-family: "Space Grotesk", Arial, sans-serif;
}

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

.page-shell {
  position: relative;
  min-height: var(--app-height);
  background:
    radial-gradient(circle at 50% 6%, rgba(78, 131, 170, 0.1), transparent 18%),
    radial-gradient(circle at 24% 34%, rgba(56, 94, 128, 0.06), transparent 22%),
    radial-gradient(circle at 78% 62%, rgba(61, 106, 145, 0.06), transparent 24%),
    radial-gradient(circle at 50% 88%, rgba(43, 78, 108, 0.05), transparent 18%),
    linear-gradient(180deg, #020509 0%, #061018 26%, #08131c 52%, #07111a 76%, #020509 100%);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 10%, transparent 90%, rgba(255, 255, 255, 0.01) 100%),
    radial-gradient(circle at 50% 24%, rgba(76, 124, 162, 0.025), transparent 26%),
    radial-gradient(circle at 50% 72%, rgba(76, 124, 162, 0.02), transparent 24%);
  pointer-events: none;
}

.animated-nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  z-index: 80;
  display: flex;
  align-items: center;
  min-width: 3rem;
  height: 3rem;
  max-width: calc(100vw - 1.5rem);
  overflow: hidden;
  color: rgba(244, 239, 231, 0.94);
  background: rgba(5, 10, 16, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  animation: navIntro 0.5s ease both;
}

.animated-nav.is-expanded {
  width: min(51rem, calc(100vw - 1.5rem));
}

.animated-nav.is-collapsed {
  width: 3rem;
  cursor: pointer;
}

.animated-nav.is-collapsed:hover {
  transform: translateX(-50%) scale(1.08);
}

.animated-nav__brand,
.animated-nav__links,
.language-switch {
  transition:
    opacity 0.28s ease,
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.12rem;
  margin-right: 0.65rem;
  padding: 0.18rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.language-switch button {
  display: grid;
  width: 1.8rem;
  height: 1.55rem;
  place-items: center;
  padding: 0;
  color: rgba(244, 239, 231, 0.58);
  font: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-switch button:hover {
  color: #fff;
}

.language-switch button[aria-pressed="true"] {
  color: #06111d;
  background: #65b9ff;
  box-shadow: 0 3px 10px rgba(33, 148, 239, 0.28);
}

.language-switch button:focus-visible {
  outline: 2px solid #8dcaff;
  outline-offset: 2px;
}

.animated-nav__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 0.35rem 0 0.9rem;
  white-space: nowrap;
}

.animated-nav__brand img {
  display: block;
  width: auto;
  height: 2.75rem;
  max-width: 12.25rem;
  filter: drop-shadow(0 0 12px rgba(71, 151, 255, 0.2));
  object-fit: contain;
}

.animated-nav__brand svg,
.animated-nav__toggle svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.animated-nav__links {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.2rem, 1.5vw, 0.85rem);
  padding-right: 0.8rem;
  white-space: nowrap;
}

.animated-nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.52rem;
  color: rgba(244, 239, 231, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, background 0.25s ease;
}

.animated-nav__links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.animated-nav__toggle {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(244, 239, 231, 0.95);
  background: transparent;
  border: 0;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: scale(0.82);
  transition:
    opacity 0.24s ease 0.08s,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.animated-nav.is-collapsed .animated-nav__brand,
.animated-nav.is-collapsed .animated-nav__links,
.animated-nav.is-collapsed .language-switch {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-1rem) scale(0.96);
}

.animated-nav.is-collapsed .animated-nav__toggle {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

@keyframes navIntro {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes stageIntro {
  from {
    opacity: 0.72;
    filter: saturate(0.96) contrast(0.98) blur(4px);
  }
  to {
    opacity: 1;
    filter: saturate(1.02) contrast(1.03) blur(0);
  }
}

@keyframes heroCopyIntro {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.scrolly {
  position: relative;
  min-height: calc(var(--app-height) * 1.35);
}

.scrolly::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5rem;
  background: linear-gradient(180deg, rgba(4, 8, 13, 0) 0%, rgba(4, 8, 13, 0.08) 42%, rgba(5, 9, 14, 0.24) 72%, rgba(5, 9, 14, 0.46) 100%);
  pointer-events: none;
  z-index: 2;
}

.scrolly-stage {
  position: sticky;
  top: 0;
  height: var(--app-height);
  overflow: hidden;
  background: #03060a;
}

.scrolly-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 12, 0.58) 0%, rgba(4, 8, 12, 0.26) 42%, rgba(4, 8, 12, 0.1) 72%, rgba(4, 8, 12, 0.24) 100%),
    linear-gradient(180deg, rgba(4, 8, 12, 0.24) 0%, rgba(4, 8, 12, 0.08) 45%, rgba(4, 8, 12, 0.5) 100%),
    url("../images/hero-brazilian-logistics-warehouse.png") center / cover no-repeat;
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.03);
  pointer-events: none;
  animation: stageIntro 0.65s ease both;
}

.scrolly-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 8, 12, 0.06) 0%, rgba(4, 8, 12, 0.02) 48%, rgba(4, 8, 12, 0) 100%),
    url("../images/hero-brazilian-logistics-warehouse.png") center / cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.2;
  pointer-events: none;
}

.scrolly-canvas,
.spline-hero,
.canvas-scrim,
.canvas-dissolve,
.content-layer,
.loading-state {
  position: absolute;
  inset: 0;
}

.scrolly-canvas {
  display: none;
}

.spline-hero {
  left: 0;
  width: 124%;
  height: 100%;
  z-index: 1;
  transform: scale(1.04);
  transform-origin: right center;
  background:
    linear-gradient(90deg, rgba(232, 234, 230, 0.5) 0%, rgba(232, 234, 230, 0.72) 42%, rgba(232, 234, 230, 0.5) 100%),
    radial-gradient(circle at 62% 44%, rgba(244, 246, 244, 0.92) 0%, rgba(223, 226, 223, 0.72) 34%, rgba(205, 208, 204, 0.54) 68%, rgba(188, 192, 188, 0.44) 100%);
  mix-blend-mode: normal;
  filter: brightness(0.78) contrast(1.34) saturate(1.03);
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.45s ease, filter 0.25s ease;
  will-change: opacity, filter;
}

.spline-badge-cover {
  display: none;
}

.canvas-scrim {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 6, 10, 0.5) 0%, rgba(2, 6, 10, 0.2) 34%, rgba(2, 6, 10, 0) 68%, rgba(2, 6, 10, 0.1) 100%),
    linear-gradient(180deg, rgba(2, 6, 10, 0) 0%, rgba(3, 8, 14, 0.04) 55%, rgba(3, 8, 14, 0.38) 100%),
    radial-gradient(circle at 62% 38%, rgba(255, 255, 255, 0.08), transparent 32%);
  pointer-events: none;
}

.canvas-dissolve {
  z-index: 2;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(4, 9, 15, 0) 0%, rgba(4, 9, 15, 0.08) 24%, rgba(4, 9, 15, 0.36) 56%, rgba(4, 9, 15, 0.82) 100%);
  pointer-events: none;
  will-change: opacity;
}

.tetrix-showcase {
  --tetrix-x: 34;
  --tetrix-y: -12;
  --tetrix-rotate: -16;
  --tetrix-tilt: 8;
  --tetrix-scale: 0.86;
  --tetrix-float: 0;
  position: relative;
  min-height: 210vh;
  color: #07111f;
  background:
    radial-gradient(circle at 34% 38%, rgba(28, 109, 238, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 48%, #f9fbfd 100%);
  overflow: clip;
}

.tetrix-stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.88fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: var(--app-height);
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(5rem, 9vh, 7rem) clamp(1rem, 5vw, 4.5rem) clamp(2rem, 5vh, 3.5rem);
  isolation: isolate;
}

.tetrix-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(22, 100, 217, 0.08) 42%, rgba(255, 255, 255, 0) 72%),
    repeating-linear-gradient(112deg, rgba(22, 100, 217, 0.14) 0 2px, transparent 2px 18px);
  clip-path: polygon(0 52%, 58% 38%, 100% 100%, 0 100%);
  opacity: 0.72;
}

.tetrix-stage::after {
  content: "";
  position: absolute;
  left: clamp(1rem, 4vw, 4rem);
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(5rem, 9vh, 8rem);
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, rgba(47, 116, 217, 0.12), rgba(255, 255, 255, 0));
  filter: blur(34px);
  transform: skewY(-7deg);
}

.tetrix-product-scene {
  position: relative;
  min-height: min(52vw, 34rem);
  perspective: 1200px;
  transform-style: preserve-3d;
}

.tetrix-product {
  position: absolute;
  left: clamp(-4rem, -5vw, -1rem);
  top: 20%;
  z-index: 2;
  width: min(58vw, 52rem);
  max-width: none;
  transform:
    translate3d(calc(var(--tetrix-x) * 1vw), calc((var(--tetrix-y) + var(--tetrix-float)) * 1vh), 0)
    rotateX(calc(var(--tetrix-tilt) * 1deg))
    rotateZ(calc(var(--tetrix-rotate) * 1deg))
    scale(var(--tetrix-scale));
  transform-origin: 52% 58%;
  filter:
    drop-shadow(0 28px 34px rgba(0, 52, 130, 0.18))
    drop-shadow(0 54px 76px rgba(6, 20, 48, 0.18));
  will-change: transform;
}

.tetrix-product-shadow {
  position: absolute;
  left: 8%;
  top: 72%;
  width: min(48vw, 40rem);
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(8, 27, 55, 0.22), rgba(8, 27, 55, 0.04) 58%, transparent 72%);
  transform: translate3d(calc(var(--tetrix-x) * 0.42vw), calc(var(--tetrix-y) * 0.32vh), 0) scale(calc(var(--tetrix-scale) * 0.96));
  filter: blur(12px);
  opacity: 0.75;
  will-change: transform;
}

.tetrix-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 34rem;
  padding-top: clamp(1rem, 3vh, 2rem);
}

.tetrix-kicker {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(10, 55, 126, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tetrix-copy h2 {
  margin: 0;
  color: #0747a6;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
}

.tetrix-subtitle {
  margin: 1rem 0 0;
  color: #111827;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.35;
}

.tetrix-rule {
  width: min(100%, 28rem);
  height: 0.2rem;
  margin: 1.6rem 0 2rem;
  background: linear-gradient(90deg, #0747a6 0%, #0d63d8 48%, rgba(13, 99, 216, 0) 100%);
}

.tetrix-description h3,
.tetrix-positioning h3 {
  margin: 0;
  color: #0747a6;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.tetrix-description ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(9, 17, 31, 0.92);
  font-size: clamp(0.98rem, 1.3vw, 1.16rem);
  line-height: 1.55;
}

.tetrix-positioning {
  margin-top: clamp(2rem, 5vh, 4rem);
}

.tetrix-positioning p {
  margin: 1rem 0 0;
  color: rgba(9, 17, 31, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.55;
}

.tetrix-specs {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.4vw, 1rem);
  width: min(900px, 66vw);
  margin-top: -1rem;
}

.tetrix-specs article {
  min-height: 5rem;
  padding: 0.95rem 0.75rem;
  border: 1px solid rgba(7, 71, 166, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 60px rgba(16, 54, 104, 0.08);
  text-align: center;
  backdrop-filter: blur(14px);
}

.tetrix-specs strong,
.tetrix-specs span {
  display: block;
}

.tetrix-specs strong {
  color: #0747a6;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1;
}

.tetrix-specs span {
  margin-top: 0.45rem;
  color: rgba(9, 17, 31, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.loading-state {
  z-index: 5;
  display: grid;
  place-items: center;
  gap: 0.5rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.92);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loading-state.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
}

.loading-state strong {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 500;
}

.content-layer {
  z-index: 3;
  pointer-events: none;
}

.feature-card {
  position: absolute;
  opacity: 0;
  transform: translate3d(0, 56px, 0) scale(0.96);
  will-change: transform, opacity;
  transition: none;
}

.hero-copy {
  position: absolute;
  opacity: 1;
  --hero-shift-x: 0%;
  left: clamp(2rem, 6vw, 7rem);
  top: clamp(9rem, 20vh, 12rem);
  width: min(48rem, 48vw);
  text-align: left;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform, opacity;
  transition: none;
  animation: heroCopyIntro 0.58s ease 0.08s both;
}

.hero-copy h1,
.feature-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(3rem, 4.4vw, 5.2rem);
  margin-inline: 0;
  line-height: 0.92;
  text-wrap: balance;
}

.hero-copy p,
.feature-card p,
.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.feature-card > p {
  font-size: clamp(0.96rem, 1.05vw, 1.02rem);
}

.hero-copy p {
  margin-top: 1.5rem;
  max-width: 43rem;
  margin-inline: 0;
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 3.25rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.primary-button {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  min-width: 14rem;
  min-height: 3.7rem;
  padding: 0 1.4rem;
  border: 1px solid rgba(126, 220, 255, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(140, 229, 255, 0.98) 0%, rgba(67, 181, 255, 0.96) 100%);
  box-shadow:
    0 18px 34px rgba(60, 172, 255, 0.26),
    0 0 0 1px rgba(136, 226, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px);
  color: #04111f;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
  position: relative;
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
  contain: paint;
  clip-path: inset(0 round 999px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  z-index: 0;
}

.hero-copy .primary-button {
  margin-inline: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  pointer-events: auto;
}

.hero-actions .primary-button,
.secondary-button {
  margin-top: 0;
}

.secondary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14rem;
  min-height: 3.7rem;
  padding: 0 1.4rem;
  border: 1px solid rgba(218, 232, 247, 0.52);
  border-radius: 999px;
  background: rgba(5, 14, 24, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #f5f8fc;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.secondary-button:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 220, 255, 0.78);
  background: rgba(10, 28, 46, 0.78);
}

.primary-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18%;
  width: 28%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.32) 48%, rgba(255, 255, 255, 0.08) 100%);
  transform: translateX(-220%) skewX(-22deg);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: -1;
}

.primary-button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 20px 40px rgba(60, 172, 255, 0.3),
    0 0 0 1px rgba(136, 226, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  filter: saturate(1.05);
}

.primary-button.is-shimmering::before,
.offer-button.is-shimmering::before {
  transform: translateX(520%) skewX(-22deg);
}

.feature-card {
  left: 50%;
  top: 46%;
  width: min(1180px, calc(100% - 2rem));
  padding: clamp(1.35rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  text-align: center;
  transform: translate3d(-50%, calc(-50% + 56px), 0) scale(0.96);
}

.feature-card h2 {
  width: 100%;
  font-size: clamp(1.9rem, 3.7vw, 3.35rem);
  max-width: 32ch;
  margin-inline: auto;
  line-height: 1.02;
  text-wrap: balance;
}

.feature-card > p {
  margin-top: 1rem;
  max-width: 52rem;
  margin-inline: auto;
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  text-wrap: pretty;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
  margin-top: 1.75rem;
}

.feature-grid article {
  padding: clamp(1rem, 1.8vw, 1.3rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.feature-grid strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits-section {
  position: relative;
  padding: var(--section-space) 1rem var(--section-bottom);
  background:
    linear-gradient(
      180deg,
      #05090e 0%,
      rgba(5, 9, 14, 0.98) 10%,
      rgba(6, 10, 15, 0.94) 18%,
      rgba(7, 12, 18, 0.74) 34%,
      rgba(7, 12, 18, 0.38) 52%,
      rgba(7, 12, 18, 0.12) 68%,
      rgba(7, 12, 18, 0) 100%
    );
}

.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 9, 14, 0.88) 0%, rgba(5, 9, 14, 0.42) 14%, rgba(255, 255, 255, 0.008) 28%, transparent 82%, rgba(255, 255, 255, 0.008) 100%);
  pointer-events: none;
}

.benefits-section::after {
  display: none;
}

.benefits-shell {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  width: min(1120px, calc(100% - 1rem));
  max-width: none;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  will-change: transform, opacity, filter;
}

.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  width: 100%;
  max-width: none;
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  text-wrap: balance;
}

.section-heading p {
  margin: 1rem auto 0;
  max-width: 52rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 23rem;
  padding: 1.55rem 1.35rem 1.5rem;
  border: 1px solid var(--panel-line);
  border-radius: 22px;
  background: var(--panel-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -18px 40px rgba(7, 14, 24, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
  will-change: transform, opacity, filter;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 26%),
    radial-gradient(circle at 50% 12%, var(--page-blue-soft), transparent 22%);
  pointer-events: none;
}

.benefit-card strong,
.benefit-card p {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.benefit-card strong {
  margin-top: auto;
  color: rgba(241, 246, 250, 0.96);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.benefit-card p {
  margin: 0.85rem auto 0;
  max-width: 17rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.benefit-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 10.5rem;
  margin-bottom: 1.9rem;
}

.benefit-visual::before,
.benefit-visual::after,
.benefit-visual span::before,
.benefit-visual span::after {
  content: "";
  position: absolute;
}

.benefit-visual--hourglass::before,
.benefit-visual--hourglass::after {
  left: 50%;
  width: 4.4rem;
  height: 3.4rem;
  background: linear-gradient(180deg, #9ce2ff 0%, #2f8fff 54%, #6c53ff 100%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(57, 171, 255, 0.4);
}

.benefit-visual--hourglass::before {
  top: 1rem;
}

.benefit-visual--hourglass::after {
  bottom: 1rem;
  transform: translateX(-50%) rotate(180deg);
}

.benefit-visual--hourglass span::before {
  inset: auto 50% 50%;
  width: 6rem;
  height: 6rem;
  border: 1px solid rgba(77, 164, 255, 0.55);
  border-radius: 50%;
  transform: translate(-50%, 50%) rotateX(72deg);
}

.benefit-visual--diamond::before {
  top: 1rem;
  left: 50%;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(180deg, #63f2ff 0%, #1990ff 60%, #3c55ff 100%);
  clip-path: polygon(50% 0%, 100% 36%, 82% 100%, 18% 100%, 0% 36%);
  transform: translateX(-50%);
  box-shadow: 0 0 28px rgba(50, 153, 255, 0.4);
}

.benefit-visual--diamond::after {
  top: 4.3rem;
  left: 61%;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(180deg, #ffd9ef 0%, #8ac8ff 100%);
  clip-path: polygon(50% 0%, 100% 36%, 82% 100%, 18% 100%, 0% 36%);
  box-shadow: 0 0 18px rgba(255, 184, 217, 0.35);
}

.benefit-visual--diamond span::before {
  inset: auto 50% 2.2rem;
  width: 6rem;
  height: 2rem;
  border: 1px solid rgba(67, 156, 255, 0.5);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-18deg);
}

.benefit-visual--stack::before,
.benefit-visual--stack::after,
.benefit-visual--stack span::before {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #63eaff 0%, #1792ff 60%, #4e5eff 100%);
  box-shadow: 0 0 24px rgba(55, 164, 255, 0.3);
}

.benefit-visual--stack::before {
  top: 1.2rem;
  left: 50%;
  transform: translateX(-78%) rotate(12deg);
}

.benefit-visual--stack::after {
  top: 2rem;
  left: 50%;
  transform: translateX(2%) rotate(-16deg);
}

.benefit-visual--stack span::before {
  top: 4.1rem;
  left: 50%;
  width: 2.6rem;
  height: 2.6rem;
  background: linear-gradient(180deg, #ffe4f4 0%, #92ceff 100%);
  transform: translateX(-50%) rotate(18deg);
}

.benefit-visual--stack span::after {
  inset: auto 50% 1.7rem;
  width: 6.2rem;
  height: 2.2rem;
  border: 1px solid rgba(67, 156, 255, 0.5);
  border-radius: 50%;
  transform: translateX(-50%);
}

.benefit-visual--orbit::before {
  top: 2rem;
  left: 50%;
  width: 4.8rem;
  height: 4.8rem;
  background: linear-gradient(180deg, #6ae7ff 0%, #208dff 54%, #4f57ff 100%);
  clip-path: polygon(50% 0%, 100% 28%, 100% 70%, 50% 100%, 0% 70%, 0% 28%);
  transform: translateX(-50%) skewY(-8deg);
  box-shadow: 0 0 26px rgba(52, 154, 255, 0.34);
}

.benefit-visual--orbit::after {
  top: 1.4rem;
  left: 58%;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe3d7 0%, #ffb483 100%);
  box-shadow: 0 0 18px rgba(255, 188, 143, 0.4);
}

.benefit-visual--orbit span::before {
  inset: auto 50% 2rem;
  width: 6.4rem;
  height: 2rem;
  border: 1px solid rgba(67, 156, 255, 0.5);
  border-radius: 50%;
  transform: translateX(-50%) rotate(8deg);
}

.testimonials-section {
  position: relative;
  padding: var(--section-space) 1rem var(--section-bottom);
  overflow: hidden;
  background: transparent;
}

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

.testimonials-section::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.008) 100%);
}

.testimonials-section::after {
  background: none;
}

.testimonials-shell {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.section-heading--narrow {
  width: min(980px, calc(100% - 1rem));
}

.testimonials-grid {
  position: relative;
  min-height: 22rem;
  margin-top: 0.5rem;
  overflow: visible;
}

.testimonials-indicator {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.testimonials-indicator__dot {
  width: 2rem;
  height: 0.24rem;
  border-radius: 999px;
  background: rgba(194, 219, 236, 0.18);
  transition: background 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.65;
}

.testimonials-indicator__dot.is-active {
  background: rgba(121, 210, 255, 0.92);
  transform: scaleX(1.18);
  opacity: 1;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(360px, calc(100% - 2rem));
  min-height: 16rem;
  padding: 1.35rem 1.25rem 1.2rem;
  border: 1px solid var(--panel-line);
  border-radius: 18px;
  background: var(--panel-bg-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -18px 40px rgba(7, 14, 24, 0.12),
    0 22px 52px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  backdrop-filter: blur(20px);
  will-change: transform, opacity, filter;
  transform: translateX(-50%);
  transform-origin: center center;
  cursor: pointer;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: auto 10% -1.8rem;
  height: 4.2rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(100, 154, 255, 0.58) 0%, rgba(100, 154, 255, 0.08) 62%, transparent 100%);
  filter: blur(10px);
  pointer-events: none;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(92, 151, 255, 0.15), transparent 28%);
  pointer-events: none;
}

.testimonial-card p,
.testimonial-author {
  position: relative;
  z-index: 1;
}

.testimonial-card p {
  margin: 0;
  color: rgba(239, 243, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.72;
}

.testimonial-card--featured {
  border-color: rgba(112, 187, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -18px 40px rgba(7, 14, 24, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(92, 182, 255, 0.05);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #fff1df 0%, #ffe0bf 100%);
  color: #1d2441;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  font-size: 0.98rem;
}

.testimonial-author span {
  margin-top: 0.2rem;
  color: rgba(224, 230, 255, 0.68);
  font-size: 0.84rem;
}

.testimonial-card.is-active {
  border-color: rgba(122, 205, 255, 0.32);
}

.testimonial-card.is-side {
  pointer-events: auto;
}

.method-section {
  position: relative;
  padding: var(--section-space) 1rem var(--section-bottom);
  overflow: hidden;
  background: transparent;
}

.method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.008) 100%);
  pointer-events: none;
}

.method-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.method-diagram {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px) 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2rem 2.5rem;
  min-height: 42rem;
  margin-top: 3rem;
}

.method-diagram::before,
.method-diagram::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 220px);
  height: 2px;
  background: linear-gradient(90deg, rgba(62, 143, 255, 0), rgba(62, 143, 255, 0.85), rgba(62, 143, 255, 0.1));
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(62, 143, 255, 0.35);
}

.method-diagram::before {
  left: 12%;
}

.method-diagram::after {
  right: 12%;
  transform: translateY(-50%) scaleX(-1);
}

.method-card {
  position: relative;
  padding: 1.25rem 1.2rem 1.2rem;
  border: 1px solid var(--panel-line);
  border-radius: 18px;
  background: var(--panel-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -18px 40px rgba(7, 14, 24, 0.12),
    0 22px 50px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  backdrop-filter: blur(20px);
  will-change: transform, opacity, filter;
}

.method-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 20%),
    radial-gradient(circle at 100% 0%, rgba(67, 151, 255, 0.12), transparent 28%);
  pointer-events: none;
}

.method-card strong,
.method-card h3,
.method-card ul {
  position: relative;
  z-index: 1;
}

.method-card strong {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: rgba(163, 205, 242, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-card h3 {
  margin: 0;
  color: rgba(241, 246, 250, 0.96);
  font-size: 1.15rem;
  line-height: 1.35;
}

.method-card ul {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.method-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.method-card li + li {
  margin-top: 0.55rem;
}

.method-card li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #54b5ff;
  box-shadow: 0 0 10px rgba(84, 181, 255, 0.8);
}

.method-card--top-left {
  grid-column: 1;
  grid-row: 1;
}

.method-card--bottom-left {
  grid-column: 1;
  grid-row: 2;
}

.method-card--top-right {
  grid-column: 3;
  grid-row: 1;
}

.method-card--bottom-right {
  grid-column: 3;
  grid-row: 2;
}

.method-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 24vw, 320px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}

.method-core-ring,
.method-core-ring--alt {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(60, 152, 255, 0.8);
  box-shadow:
    0 0 25px rgba(43, 154, 255, 0.45),
    inset 0 0 18px rgba(43, 154, 255, 0.2);
}

.method-core-ring {
  inset: 10%;
  transform: rotate(18deg) skewX(-10deg);
}

.method-core-ring--alt {
  inset: 18%;
  border-color: rgba(108, 255, 242, 0.65);
  transform: rotate(-24deg) skewY(12deg);
}

.method-core-glow {
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(24, 149, 255, 0.95) 0%, rgba(13, 84, 255, 0.72) 45%, rgba(5, 11, 34, 0.2) 100%);
  box-shadow:
    0 0 55px rgba(31, 149, 255, 0.55),
    0 0 120px rgba(31, 149, 255, 0.35);
}

.deliverables-section {
  position: relative;
  padding: var(--section-space) 1rem var(--section-bottom);
  overflow: hidden;
  background: transparent;
}

.deliverables-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.008) 100%);
  pointer-events: none;
}

.deliverables-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}

.deliverable-card {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  padding: 1.35rem 1.25rem 1.25rem;
  border: 1px solid var(--panel-line);
  border-radius: 18px;
  background: var(--panel-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -18px 40px rgba(7, 14, 24, 0.12),
    0 22px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
  will-change: transform, opacity, filter;
}

.deliverable-card::before {
  content: "";
  position: absolute;
  inset: auto 6% -2rem;
  height: 5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(95, 167, 255, 0.22) 0%, rgba(95, 167, 255, 0.04) 60%, transparent 100%);
  filter: blur(14px);
  pointer-events: none;
}

.deliverable-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(95, 167, 255, 0.08), transparent 26%);
  pointer-events: none;
}

.deliverable-card--wide {
  grid-column: span 1;
}

.deliverable-card--feature {
  min-height: 22rem;
  border-color: rgba(112, 187, 255, 0.22);
  background: var(--panel-bg-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -18px 40px rgba(7, 14, 24, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(92, 182, 255, 0.05);
}

.deliverable-card--wide-bottom {
  grid-column: span 2;
}

.deliverable-copy,
.deliverable-visual {
  position: relative;
  z-index: 1;
}

.deliverable-copy strong {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: rgba(163, 205, 242, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deliverable-copy h3 {
  margin: 0;
  color: rgba(241, 246, 250, 0.96);
  font-size: 1.2rem;
  line-height: 1.35;
}

.deliverable-copy p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
  max-width: 30rem;
}

.deliverable-visual {
  height: 11rem;
  margin-top: 1.4rem;
}

.deliverable-visual::before,
.deliverable-visual::after,
.deliverable-visual span::before,
.deliverable-visual span::after {
  content: "";
  position: absolute;
}

.deliverable-visual--pyramid::before {
  left: 50%;
  bottom: 1.4rem;
  width: 8rem;
  height: 6rem;
  background: linear-gradient(180deg, rgba(250, 180, 255, 0.08), rgba(191, 101, 255, 0.2));
  border: 1px solid rgba(197, 113, 255, 0.35);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  transform: translateX(-50%);
}

.deliverable-visual--pyramid::after {
  left: 50%;
  bottom: 2.2rem;
  width: 5rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(186, 118, 255, 0.4);
  transform: translateX(-50%);
}

.deliverable-visual--pyramid span::before,
.deliverable-visual--pyramid span::after {
  left: 50%;
  background: linear-gradient(180deg, #dff8ff 0%, #6bcaff 100%);
  box-shadow: 0 0 18px rgba(95, 167, 255, 0.32);
}

.deliverable-visual--pyramid span::before {
  top: 0.9rem;
  width: 1.7rem;
  height: 1.7rem;
  transform: translateX(-50%) rotate(45deg);
}

.deliverable-visual--pyramid span::after {
  top: 3rem;
  width: 0.16rem;
  height: 3.2rem;
  transform: translateX(-50%);
}

.deliverable-visual--tower::before {
  left: 50%;
  bottom: 1rem;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(221, 244, 255, 0.18), rgba(87, 176, 255, 0.62));
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 0 28px rgba(177, 92, 255, 0.36);
}

.deliverable-visual--tower::after {
  left: 50%;
  bottom: 4.8rem;
  width: 1rem;
  height: 3.4rem;
  background: linear-gradient(180deg, #dff8ff 0%, #6bcaff 100%);
  transform: translateX(-50%);
}

.deliverable-visual--tower span::before {
  left: 50%;
  bottom: 7.7rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #dff8ff 0%, #6bcaff 100%);
  transform: translateX(-50%) rotate(45deg);
}

.deliverable-visual--tower span::after {
  left: 50%;
  bottom: 0.4rem;
  width: 9rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(112, 187, 255, 0.26);
  transform: translateX(-50%);
}

.deliverable-visual--nodes::before {
  left: 24%;
  top: 1.5rem;
  width: 3.9rem;
  height: 3.9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 244, 255, 0.95) 0%, rgba(87, 176, 255, 0.62) 72%, transparent 100%);
}

.deliverable-visual--nodes::after {
  right: 18%;
  bottom: 2rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 252, 255, 0.9) 0%, rgba(112, 187, 255, 0.7) 72%, transparent 100%);
}

.deliverable-visual--nodes span::before {
  left: 39%;
  top: 3.8rem;
  width: 5.8rem;
  height: 0.12rem;
  background: rgba(112, 187, 255, 0.8);
  transform: rotate(20deg);
  box-shadow: 0 0 14px rgba(112, 187, 255, 0.4);
}

.deliverable-visual--nodes span::after {
  left: 54%;
  top: 1.7rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 249, 255, 0.95) 0%, rgba(112, 187, 255, 0.68) 72%, transparent 100%);
}

.deliverable-visual--stacked::before,
.deliverable-visual--stacked::after,
.deliverable-visual--stacked span::before {
  left: 50%;
  width: 6rem;
  height: 2.1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(231, 248, 255, 0.84), rgba(95, 167, 255, 0.9));
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(95, 167, 255, 0.22);
}

.deliverable-visual--stacked::before {
  bottom: 1rem;
}

.deliverable-visual--stacked::after {
  bottom: 3.6rem;
  width: 4.6rem;
}

.deliverable-visual--stacked span::before {
  bottom: 6rem;
  width: 3.2rem;
}

.deliverable-visual--orbit::before {
  left: 50%;
  top: 2.6rem;
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 248, 255, 0.98) 0%, rgba(95, 167, 255, 0.68) 66%, rgba(24, 10, 44, 0.1) 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 36px rgba(95, 167, 255, 0.24);
}

.deliverable-visual--orbit::after {
  left: 50%;
  top: 1.8rem;
  width: 9.2rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(112, 187, 255, 0.3);
  transform: translateX(-50%) rotate(12deg);
}

.deliverable-visual--orbit span::before {
  left: 50%;
  top: 3.3rem;
  width: 9.2rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(112, 187, 255, 0.24);
  transform: translateX(-50%) rotate(-18deg);
}

.offer-section {
  position: relative;
  padding: var(--section-space) 1rem calc(var(--section-bottom) + 0.5rem);
  overflow: hidden;
  background: transparent;
}

.offer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.008) 100%);
  pointer-events: none;
}

.offer-shell {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.offer-card {
  position: relative;
  width: min(540px, calc(100% - 1rem));
  margin: 2.5rem auto 0;
  padding: 2rem 1.7rem 1.8rem;
  border: 1px solid rgba(112, 187, 255, 0.22);
  border-radius: 24px;
  background: var(--panel-bg-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -24px 50px rgba(7, 14, 24, 0.14),
    0 30px 90px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(92, 182, 255, 0.05);
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(22px);
  will-change: transform, opacity, filter;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: -12% 18% auto;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 196, 255, 0.3) 0%, rgba(79, 196, 255, 0.07) 52%, transparent 100%);
  filter: blur(14px);
  pointer-events: none;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: auto 12% -2.2rem;
  height: 5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(110, 209, 255, 0.45) 0%, rgba(110, 209, 255, 0.08) 58%, transparent 100%);
  filter: blur(16px);
  pointer-events: none;
}

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

.offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(111, 196, 255, 0.24);
  border-radius: 999px;
  background: rgba(111, 196, 255, 0.08);
  color: rgba(219, 242, 255, 0.95);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-plan {
  margin-top: 1rem;
  color: rgba(220, 242, 255, 0.82);
  font-size: 1rem;
}

.offer-price {
  margin-top: 1.2rem;
}

.offer-price strong {
  display: block;
  font-size: clamp(3.2rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.offer-price span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(208, 225, 238, 0.72);
  font-size: 0.98rem;
}

.offer-description {
  margin: 1.2rem auto 0;
  max-width: 30rem;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.offer-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.offer-list li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(236, 242, 248, 0.92);
  line-height: 1.55;
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: radial-gradient(circle, #dff8ff 0%, #69caff 45%, #1f8dff 100%);
  box-shadow: 0 0 12px rgba(70, 183, 255, 0.75);
  transform: translateY(-50%);
}

.offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.9rem;
  margin-top: 1.5rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(126, 220, 255, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(140, 229, 255, 0.98) 0%, rgba(67, 181, 255, 0.96) 100%);
  color: #04111f;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 18px 34px rgba(60, 172, 255, 0.26),
    0 0 0 1px rgba(136, 226, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  position: relative;
  overflow: hidden;
  overflow: clip;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  isolation: isolate;
  contain: paint;
  clip-path: inset(0 round 999px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  z-index: 0;
}

.offer-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18%;
  width: 28%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.32) 48%, rgba(255, 255, 255, 0.08) 100%);
  transform: translateX(-220%) skewX(-22deg);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: -1;
}

.offer-button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 20px 40px rgba(60, 172, 255, 0.3),
    0 0 0 1px rgba(136, 226, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  filter: saturate(1.05);
}

.guarantee-section {
  position: relative;
  padding: 0 1rem var(--section-bottom);
  background: transparent;
}

.guarantee-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.guarantee-card {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
  justify-items: center;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
  will-change: transform, opacity, filter;
}

.guarantee-card::before {
  display: none;
}

.guarantee-card,
.guarantee-copy,
.guarantee-seal {
  position: relative;
}

.guarantee-seal {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(164px, 20vw, 188px);
  max-width: 184px;
  margin: 0 auto;
  justify-self: center;
  padding: 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(113, 196, 255, 0.24);
  background:
    radial-gradient(circle at 50% 20%, rgba(124, 215, 255, 0.2) 0%, rgba(16, 29, 46, 0.42) 42%, rgba(8, 15, 28, 0.94) 100%);
  box-shadow:
    inset 0 0 28px rgba(105, 205, 255, 0.12),
    0 18px 42px rgba(8, 14, 24, 0.22);
  text-align: center;
  overflow: hidden;
  animation: guaranteeFloat 4.6s ease-in-out infinite;
}

.guarantee-seal::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(153, 223, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.guarantee-seal::after {
  content: "";
  position: absolute;
  inset: auto 16% 1rem;
  height: 3.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(112, 212, 255, 0.36) 0%, rgba(112, 212, 255, 0.08) 58%, transparent 100%);
  filter: blur(12px);
}

.guarantee-seal__number,
.guarantee-seal__label {
  position: relative;
  z-index: 1;
}

.guarantee-seal__number {
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(4.5rem, 7vw, 5.7rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #f3fbff;
  text-shadow: 0 0 24px rgba(116, 215, 255, 0.2);
}

.guarantee-seal__label {
  margin-top: 0.35rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(149, 226, 255, 0.18);
  border-radius: 999px;
  background: rgba(114, 190, 255, 0.1);
  color: rgba(239, 247, 252, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.guarantee-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  width: min(100%, 18ch);
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  text-wrap: balance;
}

.guarantee-copy p {
  margin: 1rem 0 0;
  width: min(100%, 44rem);
  max-width: none;
  color: var(--muted);
  line-height: 1.72;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  text-align: center;
}

.guarantee-copy {
  width: min(100%, 860px);
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

@keyframes guaranteeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.faq-section {
  position: relative;
  padding: 0 1rem var(--section-bottom);
  background: transparent;
}

.faq-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
}

.faq-item {
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--panel-line);
  border-radius: 18px;
  background: var(--panel-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -18px 38px rgba(7, 14, 24, 0.1),
    0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  will-change: transform, opacity, filter;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.faq-trigger span {
  color: rgba(241, 246, 250, 0.96);
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 600;
}

.faq-trigger::after {
  content: "+";
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(141, 216, 255, 0.18);
  background: rgba(113, 187, 255, 0.08);
  color: rgba(233, 243, 249, 0.92);
  font-size: 1.2rem;
  line-height: 1;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.faq-item.is-open .faq-trigger::after {
  content: "−";
  transform: rotate(180deg);
  background: rgba(113, 187, 255, 0.16);
  border-color: rgba(141, 216, 255, 0.3);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 0.32s ease,
    opacity 0.28s ease;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.97rem;
}

.site-footer {
  position: relative;
  padding: 0 1rem 2.5rem;
  background: transparent;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 36rem;
}

.footer-brand h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.footer-meta {
  display: grid;
  align-content: space-between;
  gap: 1rem;
  justify-items: end;
  text-align: right;
}

.footer-meta p {
  margin: 0;
  color: rgba(220, 228, 235, 0.72);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.25rem;
}

.footer-links a {
  color: rgba(236, 242, 248, 0.92);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .scrolly {
    min-height: calc(var(--app-height) * 1.4);
  }

  .tetrix-showcase {
    min-height: 190vh;
  }

  .tetrix-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 1.25rem;
    padding: clamp(4.75rem, 10vh, 6rem) 1rem 2rem;
  }

  .tetrix-product-scene {
    min-height: clamp(16rem, 50vw, 24rem);
    order: 1;
  }

  .tetrix-product {
    left: 50%;
    top: 8%;
    width: min(96vw, 42rem);
    transform:
      translate3d(calc(-50% + (var(--tetrix-x) * 1vw)), calc((var(--tetrix-y) + var(--tetrix-float)) * 1vh), 0)
      rotateX(calc(var(--tetrix-tilt) * 1deg))
      rotateZ(calc(var(--tetrix-rotate) * 1deg))
      scale(var(--tetrix-scale));
  }

  .tetrix-product-shadow {
    left: 50%;
    top: 70%;
    width: min(78vw, 34rem);
    transform: translate3d(-50%, calc(var(--tetrix-y) * 0.28vh), 0) scale(calc(var(--tetrix-scale) * 0.95));
  }

  .tetrix-copy {
    order: 2;
    max-width: 42rem;
    padding-top: 0;
  }

  .tetrix-copy h2 {
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .tetrix-specs {
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 42rem);
    margin-top: 0;
  }

  .hero-copy {
    --hero-shift-x: -50%;
    left: 50%;
    top: clamp(5rem, 12vh, 6.75rem);
    width: calc(100% - 1.5rem);
    text-align: center;
    transform: translate3d(-50%, 56px, 0) scale(0.96);
  }

  .hero-copy p,
  .hero-copy .primary-button {
    margin-inline: auto;
  }

  .spline-hero {
    left: 14%;
    top: 5%;
    width: 112%;
    height: 96%;
    transform: scale(1.08);
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 7.4vw, 5.4rem);
  }

  .feature-card {
    top: 48%;
    width: min(980px, calc(100% - 1.25rem));
    padding: 1.2rem;
    border-radius: 24px;
  }

  .feature-card h2 {
    font-size: clamp(1.55rem, 4.2vw, 2.35rem);
    max-width: 28ch;
  }

  .feature-card > p {
    max-width: 42rem;
    font-size: 0.96rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .benefits-section {
    padding: 4.5rem 1rem 4.5rem;
  }

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

  .testimonials-grid {
    min-height: 20rem;
  }

  .testimonial-card--featured {
    transform: none;
  }

  .method-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    min-height: auto;
    gap: 1.15rem;
    margin-top: 2rem;
  }

  .method-diagram::before,
  .method-diagram::after {
    display: none;
  }

  .method-core {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    width: min(240px, 42vw);
    margin: 0.1rem auto 0.35rem;
    transform: none;
  }

  .method-card--top-left {
    grid-column: 1;
    grid-row: 1;
  }

  .method-card--top-right {
    grid-column: 2;
    grid-row: 1;
  }

  .method-card--bottom-left {
    grid-column: 1;
    grid-row: 3;
  }

  .method-card--bottom-right {
    grid-column: 2;
    grid-row: 3;
  }

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

  .deliverable-card--wide-bottom {
    grid-column: span 2;
  }

  .offer-card {
    width: min(520px, 100%);
  }

  .guarantee-card {
    gap: 1.35rem;
  }

  .guarantee-copy h2 {
    width: min(100%, 18ch);
  }

  .guarantee-copy p {
    margin-inline: auto;
  }

  .footer-shell {
    flex-direction: column;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (min-width: 560px) and (max-width: 900px) {
  .hero-copy {
    --hero-shift-x: 0%;
    left: clamp(1.25rem, 4vw, 2.25rem);
    width: min(33rem, 58vw);
    text-align: left;
    transform: translate3d(0, 56px, 0) scale(0.96);
  }

  .hero-copy p,
  .hero-copy .primary-button {
    margin-inline: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 5.2vw, 3.8rem);
  }

  .spline-hero {
    left: 24%;
    width: 118%;
  }

}

@media (max-width: 640px) {
  html {
    scroll-behavior: auto;
  }

  .animated-nav.is-expanded {
    width: calc(100vw - 1rem);
  }

  .animated-nav__brand {
    padding-left: 0.55rem;
  }

  .animated-nav__brand img {
    height: 2.35rem;
    max-width: 7rem;
  }

  .animated-nav__links {
    gap: 0.1rem;
    padding-right: 0.35rem;
  }

  .animated-nav__links a {
    padding: 0 0.42rem;
    font-size: 0.72rem;
  }

  .language-switch {
    gap: 0;
    margin-right: 0.3rem;
    padding: 0.12rem;
  }

  .language-switch button {
    width: 1.45rem;
    height: 1.4rem;
    font-size: 0.56rem;
  }

  .animated-nav__links a:nth-child(1),
  .animated-nav__links a:nth-child(3) {
    display: none;
  }

  .scrolly {
    min-height: calc(var(--app-height) * 1.45);
    background: #e5e7e6;
  }

  .scrolly-stage {
    background: #e5e7e6;
  }

  .hero-copy {
    top: auto;
    bottom: 1rem;
    width: calc(100% - 2rem);
    animation: none;
  }

  .tetrix-showcase {
    min-height: 205vh;
  }

  .tetrix-stage {
    padding-top: 4.35rem;
  }

  .tetrix-product-scene {
    min-height: 14rem;
  }

  .tetrix-product {
    width: min(112vw, 36rem);
  }

  .tetrix-description ul {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .tetrix-specs article {
    min-height: 4.35rem;
    padding: 0.8rem 0.55rem;
    border-radius: 14px;
  }

  .tetrix-specs span {
    font-size: 0.68rem;
  }

  .scrolly-stage::before {
    background: #e5e7e6;
    filter: none;
  }

  .scrolly-stage::after {
    background: none;
    opacity: 0;
  }

  .spline-hero {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0.92);
    transform-origin: center bottom;
    filter: brightness(0.86) contrast(1.24) saturate(1.04);
  }

  .canvas-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(229, 231, 230, 0) 0%,
        rgba(229, 231, 230, 0.02) 38%,
        rgba(229, 231, 230, 0.72) 60%,
        rgba(229, 231, 230, 0.98) 100%
      );
  }

  .hero-copy h1 {
    max-width: 13ch;
    margin-inline: auto;
    color: #07111f;
    font-size: clamp(2.15rem, 9.2vw, 2.65rem);
    line-height: 1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
  }

  .hero-copy p,
  .feature-card > p,
  .feature-grid p {
    font-size: 0.95rem;
  }

  .hero-copy p {
    max-width: 34ch;
    margin-top: 1.1rem;
    margin-inline: auto;
    color: rgba(7, 17, 31, 0.76);
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .primary-button {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: clamp(0.76rem, 3.4vw, 0.9rem);
    letter-spacing: 0.06em;
  }

  .hero-actions {
    width: 100%;
    gap: 0.65rem;
    margin-top: 1.35rem;
  }

  .hero-actions .primary-button,
  .secondary-button {
    width: 100%;
    min-width: 0;
    min-height: 3.35rem;
    font-size: clamp(0.72rem, 3.2vw, 0.88rem);
  }

  .primary-button,
  .offer-button {
    text-align: center;
  }

  .feature-card h2 {
    font-size: clamp(1.35rem, 5.4vw, 1.8rem);
    max-width: 100%;
    line-height: 1.02;
  }

  .feature-card {
    top: 49%;
    width: calc(100% - 1rem);
    padding: 1rem;
    border-radius: 22px;
  }

  .feature-card > p {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .feature-grid {
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .feature-grid article {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .feature-grid strong {
    font-size: 0.8rem;
  }

  .feature-grid p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 8.2vw, 2.95rem);
    line-height: 1.04;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-card {
    min-height: auto;
    padding: 1.2rem 1rem 1.25rem;
  }

  .benefit-visual {
    height: 8.8rem;
    margin-bottom: 1.35rem;
  }

  .testimonials-section {
    padding: 4rem 0.85rem 4.5rem;
  }

  .testimonial-card {
    min-height: auto;
    padding: 1.1rem 1rem;
    border-radius: 16px;
    width: min(320px, calc(100% - 1rem));
  }

  .testimonial-card p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .testimonial-author {
    margin-top: 1rem;
  }

  .testimonial-avatar {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 0.82rem;
  }

  .method-section {
    padding: 4rem 0.85rem 4.5rem;
  }

  .method-diagram {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .method-core {
    grid-column: auto;
    grid-row: auto;
    order: -1;
    width: min(280px, 70vw);
    margin: 0 auto 0.5rem;
  }

  .method-card--top-left,
  .method-card--bottom-left,
  .method-card--top-right,
  .method-card--bottom-right {
    grid-column: auto;
    grid-row: auto;
  }

  .method-card {
    padding: 1.05rem 0.95rem 1rem;
    border-radius: 16px;
  }

  .method-card h3 {
    font-size: 1.02rem;
  }

  .method-card li {
    font-size: 0.9rem;
  }

  .deliverables-section {
    padding: 4rem 0.85rem 4.5rem;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 2rem;
  }

  .deliverable-card,
  .deliverable-card--wide-bottom {
    grid-column: auto;
    min-height: auto;
    padding: 1.1rem 1rem;
    border-radius: 16px;
  }

  .deliverable-copy h3 {
    font-size: 1.05rem;
  }

  .deliverable-copy p {
    font-size: 0.92rem;
  }

  .deliverable-visual {
    height: 8.8rem;
    margin-top: 1rem;
  }

  .offer-section {
    padding: 4rem 0.85rem 4.8rem;
  }

  .offer-card {
    width: 100%;
    margin-top: 2rem;
    padding: 1.35rem 1rem 1.1rem;
    border-radius: 22px;
  }

  .offer-price strong {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .offer-description {
    font-size: 0.94rem;
  }

  .offer-list li {
    padding: 0.85rem 0.9rem 0.85rem 2.6rem;
    font-size: 0.92rem;
  }

  .offer-button {
    min-height: 3.55rem;
    font-size: 0.9rem;
  }

  .guarantee-section {
    padding: 0 0.85rem 4.8rem;
  }

  .guarantee-card {
    padding: 1rem 0.85rem;
  }

  .guarantee-seal {
    min-height: 144px;
    max-width: 144px;
    border-radius: 24px;
  }

  .guarantee-copy h2 {
    width: min(100%, 12ch);
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .guarantee-copy p {
    width: min(100%, 30rem);
    font-size: 0.94rem;
  }

  .faq-section {
    padding: 0 0.85rem 4rem;
  }

  .faq-item {
    padding: 1.05rem 0.95rem 1rem;
    border-radius: 16px;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.92rem;
  }

  .site-footer {
    padding: 0 0.85rem 2rem;
  }

  .footer-shell {
    gap: 1.35rem;
    padding-top: 1.5rem;
  }

  .footer-brand h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .footer-meta p,
  .footer-links a {
    font-size: 0.9rem;
  }
}

/* TETRIX frame-by-frame scroll scene */
.tetrix-showcase--video {
  position: relative;
  min-height: 0;
  padding: 0;
  color: #07111f;
  background: #f7f9fc;
  overflow: visible;
}

.tetrix-showcase--video::before {
  display: none;
}

.tetrix-scroll-zone {
  position: relative;
  min-height: 240vh;
}

.tetrix-showcase--video .tetrix-stage {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--app-height);
  padding: 0;
}

.tetrix-showcase--video .tetrix-stage::before,
.tetrix-showcase--video .tetrix-stage::after {
  display: none;
}

.tetrix-visual--video {
  position: relative;
  width: 100%;
  height: var(--app-height);
  min-height: 100svh;
  overflow: hidden;
  background: #f7f9fc;
  animation: none;
}

.tetrix-visual--video canvas,
.tetrix-visual--video noscript img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #f7f9fc;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.035) saturate(1.025);
}

@media (min-width: 768px) {
  .tetrix-visual--video canvas,
  .tetrix-visual--video noscript img {
    object-fit: contain;
  }
}

.tetrix-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(8, 38, 81, 0.58);
  background:
    linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.92) 44%, transparent 60%),
    #edf2f8;
  background-size: 220% 100%;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.7vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: tetrixLoading 1.35s ease-in-out infinite;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.tetrix-visual--video.is-ready .tetrix-video-placeholder {
  opacity: 0;
  visibility: hidden;
}

.tetrix-scroll-text {
  position: relative;
  width: min(1240px, calc(100% - 2rem));
  min-height: 0;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(7rem, 12vw, 11rem);
  color: #0b1730;
}

.tetrix-section-intro {
  max-width: 820px;
}

.tetrix-section-intro h2 {
  margin: 0.35rem 0 1rem;
  color: #0b4bad;
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.tetrix-section-intro > p {
  max-width: 760px;
  color: rgba(11, 23, 48, 0.72);
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.tetrix-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.tetrix-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 320px;
  padding: clamp(1.45rem, 2.6vw, 2.1rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(126, 178, 255, 0.22);
  border-radius: 8px;
  background: #07111f;
  box-shadow: 0 22px 55px rgba(17, 65, 132, 0.13);
  --spotlight-x: 50%;
  --spotlight-y: 50%;
}

.tetrix-info-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    320px circle at var(--spotlight-x) var(--spotlight-y),
    rgba(35, 114, 235, 0.48),
    rgba(15, 53, 108, 0.18) 42%,
    transparent 76%
  );
  transition: opacity 260ms ease;
}

.tetrix-info-card:hover::before {
  opacity: 1;
}

.tetrix-info-card--technology {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(2rem, 5vw, 5rem);
  min-height: 280px;
}

.tetrix-info-card--technology .tetrix-info-card__header,
.tetrix-info-card--technology .tetrix-info-card__copy {
  grid-column: 1;
}

.tetrix-info-card--technology .tetrix-info-card__list {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  margin-top: 0;
  padding-top: 0;
}

.tetrix-info-card__header h3 {
  max-width: 18ch;
  margin: 0;
  color: #f5f8ff;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.tetrix-info-card__header > p {
  margin: 0.8rem 0 0;
  color: #9fb7db;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.tetrix-info-card__copy {
  margin-top: 1.6rem;
}

.tetrix-info-card__copy p {
  margin: 0;
  color: #c2cee0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.68;
}

.tetrix-info-card__copy p + p {
  margin-top: 0.9rem;
}

.tetrix-info-card__list {
  margin-top: auto;
  padding-top: 1.75rem;
}

.tetrix-info-card__list h4 {
  margin: 0 0 1rem;
  color: #8eb7f8;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tetrix-info-card__list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tetrix-info-card__list li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  color: #eef4ff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.tetrix-info-card__list li::before {
  content: "\2713";
  color: #5fa0ff;
  font-weight: 800;
}

@keyframes tetrixLoading {
  from { background-position: 140% 0; }
  to { background-position: -120% 0; }
}

@media (max-width: 640px) {
  .tetrix-scroll-zone,
  .tetrix-hw-scroll__zone {
    min-height: 220vh;
  }

  .tetrix-showcase--video .tetrix-stage,
  .tetrix-hw-scroll__stage,
  .tetrix-visual--video,
  .tetrix-hw-scroll__visual {
    width: 100%;
    height: 100svh;
    min-height: 100svh;
  }

  .tetrix-visual--video canvas,
  .tetrix-visual--video noscript img,
  .tetrix-hw-scroll__visual canvas,
  .tetrix-hw-scroll__visual noscript img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .tetrix-scroll-zone {
    min-height: 220vh;
  }

  .tetrix-showcase--video .tetrix-stage {
    min-height: 100svh;
    padding: 0;
  }

  .tetrix-scroll-text {
    width: min(100% - 1.7rem, 1240px);
    min-height: 0;
    padding: 4.5rem 0 5.5rem;
  }

  .tetrix-section-intro h2 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  .tetrix-section-intro > p {
    font-size: 1.03rem;
    line-height: 1.55;
  }

  .tetrix-info-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    margin-top: 2.5rem;
  }

  .tetrix-info-card,
  .tetrix-info-card--technology {
    display: flex;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    padding: 1.35rem 1.15rem 1.5rem;
  }

  .tetrix-info-card__copy,
  .tetrix-info-card--technology .tetrix-info-card__copy {
    margin-top: 1.35rem;
  }

  .tetrix-info-card__list,
  .tetrix-info-card--technology .tetrix-info-card__list {
    margin-top: 0;
    padding-top: 1.45rem;
  }

  .tetrix-info-card__list ul {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .tetrix-info-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .tetrix-info-card--technology {
    display: flex;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .tetrix-info-card--technology .tetrix-info-card__copy {
    margin-top: 1.6rem;
  }

  .tetrix-info-card--technology .tetrix-info-card__list {
    margin-top: 0;
    padding-top: 1.75rem;
  }
}

@media (hover: none) {
  .tetrix-info-card::before {
    opacity: 0.42;
    background: radial-gradient(300px circle at 88% 4%, rgba(35, 114, 235, 0.3), transparent 72%);
  }
}

/* TETRIX HW scroll-controlled video after the product cards */
.tetrix-hw-scroll {
  position: relative;
  width: 100%;
  background: #f7f9fc;
}

.tetrix-hw-scroll__zone {
  position: relative;
  min-height: 240vh;
}

.tetrix-hw-scroll__stage {
  position: sticky;
  top: 0;
  display: grid;
  width: 100%;
  min-height: var(--app-height);
  place-items: center;
  overflow: hidden;
  background: #f7f9fc;
}

.tetrix-hw-scroll__visual {
  position: relative;
  width: 100%;
  height: var(--app-height);
  min-height: 100svh;
  overflow: hidden;
  background: #f7f9fc;
}

.tetrix-hw-scroll__visual canvas,
.tetrix-hw-scroll__visual noscript img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f7f9fc;
}

.tetrix-hw-scroll__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(8, 38, 81, 0.58);
  background:
    linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.92) 44%, transparent 60%),
    #edf2f8;
  background-size: 220% 100%;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.7vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: tetrixLoading 1.35s ease-in-out infinite;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.tetrix-hw-scroll__visual.is-ready .tetrix-hw-scroll__placeholder {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 640px) {
  .tetrix-hw-scroll__zone {
    min-height: 220vh;
  }

  .tetrix-hw-scroll__stage,
  .tetrix-hw-scroll__visual {
    min-height: 100svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tetrix-scroll-zone {
    min-height: 100svh;
  }

  .tetrix-video-placeholder {
    animation: none;
  }

  .tetrix-hw-scroll__zone {
    min-height: 100svh;
  }

  .tetrix-hw-scroll__placeholder {
    animation: none;
  }
}

/* Smart Stock institutional FAQ */
.faq-section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 1rem;
  color: #07111f;
  background: #f7f9fc;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.faq-intro {
  position: sticky;
  top: 8rem;
}

.faq-intro .eyebrow {
  color: #1452ad;
}

.faq-intro h2 {
  max-width: 9ch;
  margin: 0.75rem 0 0;
  color: #0a397e;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

.faq-intro > p {
  max-width: 31rem;
  margin: 1.4rem 0 0;
  color: #5b677a;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-intro .faq-support {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid #d8e0eb;
  color: #687488;
  font-size: 0.94rem;
}

.faq-support a {
  color: #1452ad;
  font-weight: 700;
  text-decoration: none;
}

.faq-support a:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid #d8e0eb;
}

.faq-item {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #d8e0eb;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.faq-trigger {
  min-height: 5.15rem;
  padding: 1.35rem 0;
}

.faq-trigger span {
  color: #101b2d;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.4;
}

.faq-trigger::after {
  border-color: #cad7e8;
  background: #edf3fa;
  color: #1452ad;
}

.faq-item.is-open .faq-trigger::after {
  content: "−";
  background: #1452ad;
  border-color: #1452ad;
  color: #ffffff;
}

.faq-answer {
  filter: blur(8px);
  transform: translateY(-0.35rem);
  transition:
    height 0.32s ease,
    opacity 0.28s ease,
    filter 0.32s ease,
    transform 0.32s ease;
}

.faq-item.is-open .faq-answer {
  filter: blur(0);
  transform: translateY(0);
}

.faq-answer p {
  max-width: 60ch;
  margin: 0 0 1.5rem;
  color: #5b677a;
  line-height: 1.72;
  font-size: 0.97rem;
}

@media (max-width: 640px) {
  .faq-section {
    padding: 4.5rem 1rem;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro h2 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 13vw, 3.75rem);
  }

  .faq-intro > p {
    font-size: 0.95rem;
  }

  .faq-item {
    padding: 0;
    border-radius: 0;
  }

  .faq-trigger {
    min-height: 4.75rem;
    padding: 1.15rem 0;
  }

  .faq-trigger span {
    padding-right: 0.5rem;
    font-size: 0.98rem;
  }

  .faq-answer p {
    font-size: 0.92rem;
  }
}

/* Logistics automation benefits */
.logistics-benefits {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 1rem;
  color: #f7fbff;
  background: #07111f;
  overflow: hidden;
}

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

.logistics-benefits__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  column-gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.logistics-benefits__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0.85rem;
  color: #65b9ff;
}

.logistics-benefits__heading h2 {
  max-width: 13ch;
  margin: 0;
  color: #f7fbff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.logistics-benefits__heading p {
  max-width: 34rem;
  margin: 0 0 0.35rem;
  color: #aebdce;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.7;
}

.logistics-benefits__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
}

.logistics-benefit {
  position: relative;
  grid-column: span 3;
  min-height: 16.5rem;
  padding: 1.45rem;
  border: 1px solid rgba(151, 181, 211, 0.18);
  border-radius: 8px;
  background: #0c1a2b;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.logistics-benefit::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.5rem;
  height: 0.2rem;
  background: #ff9147;
}

.logistics-benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(101, 185, 255, 0.48);
  background: #102239;
}

.logistics-benefit--featured {
  grid-column: span 6;
  background: #102b4d;
}

.logistics-benefit__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 2.8rem;
  border: 1px solid rgba(101, 185, 255, 0.35);
  border-radius: 8px;
  color: #65b9ff;
  background: rgba(101, 185, 255, 0.08);
}

.logistics-benefit__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 1.8;
}

.logistics-benefit > span {
  position: absolute;
  top: 1.55rem;
  right: 1.45rem;
  color: #6f8298;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.logistics-benefit h3 {
  max-width: 20ch;
  margin: 0;
  color: #f7fbff;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.logistics-benefit p {
  max-width: 34ch;
  margin: 0.75rem 0 0;
  color: #9fb0c4;
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .logistics-benefits__heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

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

  .logistics-benefit,
  .logistics-benefit--featured {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .logistics-benefits {
    padding: 4.5rem 1rem;
  }

  .logistics-benefits__heading h2 {
    max-width: 11ch;
    font-size: clamp(2.75rem, 13vw, 3.9rem);
  }

  .logistics-benefits__heading p {
    font-size: 0.95rem;
  }

  .logistics-benefits__grid {
    grid-template-columns: 1fr;
  }

  .logistics-benefit {
    min-height: 13rem;
    padding: 1.25rem;
  }

  .logistics-benefit__icon {
    margin-bottom: 1.8rem;
  }
}

/* Cinematic video hero */
.scrolly {
  min-height: 100dvh;
  background: #03070c;
}

.scrolly::after,
.scrolly-stage::before,
.scrolly-stage::after {
  display: none;
}

.scrolly-stage {
  position: relative;
  top: auto;
  height: 100dvh;
  min-height: 700px;
  background: #03070c;
}

.hero-video,
.hero-video-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #03070c;
  animation: heroVideoReveal 700ms ease both;
}

.hero-video-scrim {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(1, 5, 10, 0.9) 0%,
      rgba(2, 8, 15, 0.74) 34%,
      rgba(3, 10, 18, 0.3) 68%,
      rgba(3, 10, 18, 0.16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(1, 5, 10, 0.3) 0%,
      rgba(1, 5, 10, 0.02) 42%,
      rgba(1, 5, 10, 0.78) 100%
    );
}

.content-layer {
  z-index: 2;
}

.hero-copy {
  --hero-shift-x: 0%;
  left: clamp(1.5rem, 5vw, 6rem);
  top: auto;
  bottom: clamp(2.5rem, 7vh, 5.5rem);
  width: min(56rem, 62vw);
  text-align: left;
  transform: none;
  will-change: auto;
  animation: heroCopyIntro 650ms ease 120ms both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: #65b9ff;
}

.hero-copy h1 {
  max-width: 17ch;
  color: #ffffff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(3.15rem, 4.45vw, 5.35rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.32);
}

.hero-copy p {
  max-width: 60ch;
  margin-top: 1.35rem;
  color: rgba(243, 248, 252, 0.82);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.38);
}

.hero-actions {
  margin-top: 1.6rem;
}

.hero-actions .primary-button,
.hero-actions .secondary-button {
  min-height: 3.55rem;
}

.hero-actions .secondary-button {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(2, 8, 15, 0.5);
  backdrop-filter: blur(12px);
}

@keyframes heroVideoReveal {
  from {
    opacity: 0;
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .scrolly {
    min-height: 100dvh;
  }

  .scrolly-stage {
    height: 100dvh;
    min-height: 700px;
  }

  .hero-copy {
    left: clamp(1.25rem, 4vw, 2.5rem);
    bottom: clamp(1.75rem, 5vh, 3rem);
    width: min(42rem, calc(100% - 2.5rem));
    text-align: left;
    transform: none;
  }

  .hero-copy h1 {
    max-width: 17ch;
    font-size: clamp(2.75rem, 7vw, 4.4rem);
  }

  .hero-copy p,
  .hero-copy .primary-button {
    margin-inline: 0;
  }
}

@media (max-width: 640px) {
  .scrolly {
    min-height: 0;
    background: #03070c;
  }

  .scrolly-stage {
    height: auto;
    min-height: 0;
    padding-top: clamp(24rem, 56svh, 34rem);
    overflow: hidden;
    background: #03070c;
  }

  .hero-video,
  .hero-video-scrim {
    top: 0;
    bottom: auto;
    height: clamp(24rem, 56svh, 34rem);
  }

  .hero-video {
    object-position: center;
    transform: translateY(-10%) scale(1.18);
    transform-origin: center;
    animation: none;
  }

  .hero-video-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(1, 5, 10, 0.12) 0%,
        rgba(1, 5, 10, 0.02) 66%,
        rgba(1, 5, 10, 0.9) 100%
      );
  }

  .content-layer {
    position: relative;
    inset: auto;
    padding: 1.75rem 1rem 1.5rem;
    background: #03070c;
  }

  .hero-copy {
    position: relative;
    inset: auto;
    width: 100%;
    animation: heroCopyIntro 560ms ease 100ms both;
  }

  .hero-kicker {
    margin-bottom: 0.8rem;
    font-size: 0.64rem;
  }

  .hero-kicker::before {
    width: 1.8rem;
  }

  .hero-copy h1 {
    max-width: 16ch;
    margin-inline: 0;
    color: #ffffff;
    font-size: clamp(2.15rem, 9.6vw, 2.8rem);
    line-height: 1;
    text-align: left;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  }

  .hero-copy p {
    max-width: 42ch;
    margin: 1rem 0 0;
    color: rgba(243, 248, 252, 0.8);
    font-size: 0.88rem;
    line-height: 1.5;
    text-align: left;
  }

  .hero-actions {
    gap: 0.55rem;
    margin-top: 1.15rem;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    min-height: 3.15rem;
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .hero-copy {
    animation: none;
  }
}

/* AGV product section */
.agv-section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 1rem;
  color: #07111f;
  background: #f4f7fb;
}

.agv-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.agv-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 0.7fr);
  justify-content: space-between;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.agv-heading .eyebrow {
  color: #1452ad;
}

.agv-heading h2 {
  margin: 0.65rem 0 0;
  color: #0b4598;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0;
}

.agv-heading > p {
  max-width: 38rem;
  margin: 0;
  color: #536176;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
}

.agv-product {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(21rem, 0.82fr);
  min-height: 38rem;
  border: 1px solid #d8e0eb;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(30, 53, 82, 0.12);
}

.agv-media {
  position: relative;
  min-width: 0;
  min-height: 38rem;
  margin: 0;
  background: #dfe5eb;
  overflow: hidden;
}

.agv-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset -42px 0 70px rgba(5, 18, 33, 0.1);
}

.agv-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
  object-position: center;
}

.agv-media figcaption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.agv-overview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.75rem);
}

.agv-overview__label,
.agv-highlights__intro > span {
  color: #1452ad;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.agv-overview h3 {
  max-width: 12ch;
  margin: 0.75rem 0 0;
  color: #07111f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 3.5vw, 3.7rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.agv-overview > p {
  margin: 1.35rem 0 0;
  color: #5d6a7c;
  font-size: 0.98rem;
  line-height: 1.7;
}

.agv-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid #dce4ee;
  border-bottom: 1px solid #dce4ee;
}

.agv-metrics article {
  min-width: 0;
  padding: 1.15rem 0.7rem 1.1rem 0;
}

.agv-metrics article + article {
  padding-left: 0.8rem;
  border-left: 1px solid #dce4ee;
}

.agv-metrics strong,
.agv-metrics span {
  display: block;
}

.agv-metrics strong {
  color: #0b4598;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.1;
}

.agv-metrics span {
  margin-top: 0.4rem;
  color: #758196;
  font-size: 0.7rem;
  line-height: 1.35;
}

.agv-positioning {
  margin-top: 1.8rem;
}

.agv-positioning h4 {
  margin: 0;
  color: #07111f;
  font-size: 0.88rem;
}

.agv-positioning p {
  margin: 0.7rem 0 0;
  color: #5d6a7c;
  font-size: 0.9rem;
  line-height: 1.65;
}

.agv-highlights {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
  margin-top: 1rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 8px;
  color: #f7fbff;
  background: #07111f;
}

.agv-highlights__intro > span {
  color: #65b9ff;
}

.agv-highlights__intro h3 {
  margin: 0.65rem 0 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.agv-highlights__intro p {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: #9fb0c4;
  font-size: 0.92rem;
  line-height: 1.65;
}

.agv-highlights__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(151, 181, 211, 0.18);
}

.agv-highlights__list li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  min-height: 4.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(151, 181, 211, 0.18);
  color: #e9f2fb;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.agv-highlights__list li:nth-child(odd) {
  padding-right: 1.25rem;
}

.agv-highlights__list li:nth-child(even) {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(151, 181, 211, 0.18);
}

.agv-highlights__list svg {
  width: 1.35rem;
  height: 1.35rem;
  color: #65b9ff;
  stroke-width: 1.8;
}

@media (max-width: 900px) {
  .agv-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .agv-product {
    grid-template-columns: 1fr;
  }

  .agv-media,
  .agv-media img {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .agv-media::after {
    box-shadow: inset 0 -42px 70px rgba(5, 18, 33, 0.12);
  }

  .agv-overview h3 {
    max-width: 16ch;
  }

  .agv-highlights {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .agv-section {
    padding: 4.5rem 1rem;
  }

  .agv-heading h2 {
    font-size: clamp(4.2rem, 22vw, 6rem);
  }

  .agv-heading > p {
    font-size: 0.95rem;
  }

  .agv-media,
  .agv-media img {
    aspect-ratio: 4 / 3;
  }

  .agv-overview {
    padding: 1.5rem;
  }

  .agv-overview h3 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

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

  .agv-metrics article,
  .agv-metrics article + article {
    display: grid;
    grid-template-columns: 6.5rem 1fr;
    align-items: center;
    padding: 0.9rem 0;
    border-left: 0;
  }

  .agv-metrics article + article {
    border-top: 1px solid #dce4ee;
  }

  .agv-metrics span {
    margin-top: 0;
  }

  .agv-highlights {
    padding: 1.5rem;
  }

  .agv-highlights__list {
    grid-template-columns: 1fr;
  }

  .agv-highlights__list li,
  .agv-highlights__list li:nth-child(odd),
  .agv-highlights__list li:nth-child(even) {
    min-height: 4.35rem;
    padding: 0.8rem 0;
    border-left: 0;
  }
}
