:root {
  --navy-950: #071225;
  --navy-900: #0a1930;
  --navy-800: #102443;
  --navy-700: #18355f;
  --blue-600: #176cf2;
  --blue-500: #2d7dff;
  --blue-100: #e7f0ff;
  --cyan-400: #55c7e8;
  --blue-on-dark: #70b1ff;
  --mint: #52dfa9;
  --ink: #0b1729;
  --text: #344258;
  --muted: #6b778a;
  --border: #dfe5ed;
  --surface: #f4f7fa;
  --white: #fbfdff;
  --good: #14a572;
  --warning: #e0a323;
  --bad: #dd5262;
  --font-display: "Manrope", "Aptos Display", sans-serif;
  --font-body: "Instrument Sans", "Aptos", sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --shadow-sm: 0 8px 28px rgba(20, 43, 76, 0.08);
  --shadow-lg: 0 24px 80px rgba(8, 25, 52, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section-pad {
  padding: clamp(72px, 8vw, 112px) 0;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 6px;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}
.site-header.scrolled {
  background: rgba(251, 253, 255, 0.92);
  border-color: rgba(11, 23, 41, 0.08);
  box-shadow: 0 6px 24px rgba(11, 23, 41, 0.05);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.brand-mark {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}
.brand-glyph {
  display: block;
  width: 100%;
  height: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
}
.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.button-small {
  min-height: 42px;
  padding: 0 17px;
}
.button-primary {
  color: #f9fbff;
  background: var(--blue-600);
  box-shadow: 0 8px 24px rgba(23, 108, 242, 0.22);
}
.button-primary:hover {
  background: #0f5fdc;
  box-shadow: 0 12px 30px rgba(23, 108, 242, 0.28);
}
.button-secondary {
  color: var(--ink);
  border-color: #cfd7e2;
  background: rgba(255, 255, 255, 0.72);
}
.button-secondary:hover {
  border-color: #9baac0;
  background: var(--white);
}
.play-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #b9c4d2;
  border-radius: 50%;
  font-size: 7px;
  padding-left: 1px;
}
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 76px;
  background:
    radial-gradient(
      circle at 84% 40%,
      rgba(45, 125, 255, 0.1),
      transparent 27%
    ),
    linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(14, 40, 75, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 40, 75, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 0, #000 35%, #000 100%);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding-top: 20px;
}
.section-index {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 650px;
  margin: 26px 0 28px;
  font-size: clamp(36px, 3.9vw, 57px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.hero h1 span {
  color: var(--blue-600);
}
.hero-lede {
  max-width: 600px;
  color: #536176;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.62;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 32px 0 0;
  padding: 0;
  color: #46556a;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}
.benefit-strip li::before {
  content: "✓";
  color: var(--good);
  margin-right: 8px;
}

/* Hero mobile authentication scene */
.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 570px;
  display: grid;
  place-items: center;
}
.scanner-halo {
  position: absolute;
  z-index: -3;
  border: 1px solid rgba(23, 108, 242, 0.15);
  border-radius: 50%;
}
.halo-one {
  width: 480px;
  height: 480px;
}
.halo-two {
  width: 380px;
  height: 380px;
  border-style: dashed;
  animation: rotate 36s linear infinite;
}
.product-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.fmcg-product {
  position: absolute;
  overflow: hidden;
  filter: drop-shadow(0 24px 24px rgba(7, 25, 54, 0.18));
  font-family: var(--font-display);
  transition: filter 500ms ease;
  will-change: transform, opacity;
}
.product-juice {
  width: 205px;
  height: 390px;
  border-radius: 9px;
  background: transparent;
}
.product-juice img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  transform: scale(1.02);
}
.product-juice::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: inherit;
  box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.16);
}
.product-lotion {
  width: 172px;
  height: 330px;
  border-radius: 9px;
  background: transparent;
}
.product-lotion img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}
.product-lotion::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.12);
}
.product-milk {
  width: 155px;
  height: 238px;
  border-radius: 8px;
  background: transparent;
}
.product-milk img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}
.product-milk::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: inherit;
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.12);
}
.product-stage .fmcg-product {
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  opacity: 1;
  animation: none !important;
  transition:
    transform 1800ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 900ms ease;
}
.product-stage .fmcg-product.slot-left {
  opacity: 0.9;
  transform: translate(calc(-50% - 204px), -50%) rotate(-8deg) scale(0.74);
}
.product-stage .fmcg-product.slot-center {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg) scale(0.4);
}
.product-stage .fmcg-product.slot-right {
  opacity: 0.96;
  transform: translate(calc(-50% + 204px), -50%) rotate(8deg) scale(0.78);
}
.product-stage.no-slot-motion .fmcg-product {
  transition: none !important;
}
.phone-mockup {
  position: relative;
  z-index: 4;
  width: 288px;
  height: 576px;
  padding: 8px;
  border: 1px solid #35445a;
  border-radius: 46px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), transparent 10%),
    linear-gradient(145deg, #111923, #03070d 60%, #1b2a3e);
  box-shadow:
    0 40px 70px rgba(6, 23, 49, 0.27),
    inset 0 0 0 2px rgba(255, 255, 255, 0.13),
    inset 0 0 0 5px rgba(0, 0, 0, 0.45);
  transform: rotate(1.5deg);
}
.phone-hardware {
  display: none;
}
.phone-speaker,
.phone-lens {
  display: none;
}
.camera-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  color: #eef6ff;
  background: #0b1b2c;
}
.camera-feed {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 47%,
      rgba(255, 255, 255, 0.08),
      transparent 31%
    ),
    linear-gradient(180deg, #06070a, #020304 58%, #030406);
}
.camera-feed::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.16) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.16) 75%);
  background-position:
    0 0,
    0 11px,
    11px -11px,
    -11px 0;
  background-size: 22px 22px;
}
.feed-product-image {
  position: absolute;
  left: 37px;
  top: 139px;
  width: 206px;
  height: 306px;
  object-fit: contain;
  object-position: center;
  border-radius: 5px;
  box-shadow: 0 17px 35px rgba(23, 45, 51, 0.28);
  transform: translateX(145%) scale(0.9);
  opacity: 0;
  transition:
    opacity 850ms ease,
    transform 1800ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform, opacity;
}
.feed-product-image.feed-current,
.feed-product-image.feed-incoming {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.feed-product-image.feed-outgoing {
  opacity: 0;
  transform: translateX(-145%) scale(0.92);
}
.feed-lotion {
  left: 57px;
  top: 118px;
  width: 174px;
  height: 332px;
  object-position: center;
}
.feed-milk {
  left: 28px;
  top: 130px;
  width: 232px;
  height: 326px;
}
.camera-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45),
    transparent 22%,
    transparent 68%,
    rgba(0, 0, 0, 0.78)
  );
}
.app-topbar {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}
.scan-title {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 42px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55);
}
.scan-title strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  white-space: nowrap;
}
.scan-frame {
  position: absolute;
  z-index: 4;
  left: 26px;
  right: 26px;
  top: 122px;
  height: 358px;
}
.frame-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: #fff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.42));
}
.frame-tl {
  left: 0;
  top: 0;
  border-left: 5px solid #fff;
  border-top: 5px solid #fff;
  border-radius: 13px 0 0;
}
.frame-tr {
  right: 0;
  top: 0;
  border-right: 5px solid #fff;
  border-top: 5px solid #fff;
  border-radius: 0 13px 0 0;
}
.frame-bl {
  left: 0;
  bottom: 0;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  border-radius: 0 0 0 13px;
}
.frame-br {
  right: 0;
  bottom: 0;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
  border-radius: 0 0 13px;
}
.mobile-scan-line {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 13px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(154, 240, 255, 0.25) 10%,
    #bff4ff 32%,
    #4bd8ff 50%,
    #bff4ff 68%,
    rgba(154, 240, 255, 0.25) 90%,
    transparent
  );
  box-shadow:
    0 0 10px 1px rgba(75, 216, 255, 0.9),
    0 0 22px 4px rgba(46, 154, 255, 0.45);
  opacity: 0;
  animation: mobileProductScan 1.7s ease-in-out infinite;
  animation-play-state: paused;
  transition: opacity 180ms ease;
}
.mobile-scan-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -13px;
  height: 26px;
  background: radial-gradient(
    60% 100% at 50% 50%,
    rgba(75, 216, 255, 0.22),
    transparent 72%
  );
  pointer-events: none;
}
.tracking-dots span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #8ae9ff;
  box-shadow:
    0 0 10px #33c7ff,
    0 0 22px rgba(51, 199, 255, 0.7);
  opacity: 0;
  animation: trackingBlink 1.2s infinite;
  animation-play-state: paused;
  transition: opacity 180ms ease;
}
.tracking-dots span:nth-child(1) {
  left: 23%;
  top: 32%;
}
.tracking-dots span:nth-child(2) {
  right: 21%;
  top: 25%;
  animation-delay: 0.3s;
}
.tracking-dots span:nth-child(3) {
  left: 48%;
  top: 53%;
  animation-delay: 0.6s;
}
.tracking-dots span:nth-child(4) {
  left: 29%;
  bottom: 18%;
  animation-delay: 0.9s;
}
.tracking-dots span:nth-child(5) {
  right: 26%;
  bottom: 26%;
  animation-delay: 1.2s;
}
.scan-status {
  position: absolute;
  z-index: 5;
  left: 22px;
  right: 22px;
  bottom: 88px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(4, 15, 29, 0.72);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}
.status-spinner {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border: 2px solid rgba(114, 213, 255, 0.25);
  border-top-color: #72d5ff;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}
.scan-status small {
  display: block;
  color: #75d6ff;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.scan-status strong {
  display: block;
  margin-top: 1px;
  font-size: 10px;
}
.mobile-result {
  position: absolute;
  z-index: 6;
  left: 16px;
  right: 16px;
  bottom: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 10px 12px;
  border: 1px solid rgba(84, 229, 171, 0.35);
  border-radius: 12px;
  background: rgba(4, 28, 27, 0.9);
  box-shadow: 0 10px 30px rgba(3, 10, 20, 0.28);
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition:
    opacity 320ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 250ms ease,
    border-color 250ms ease;
}
.result-state-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mint);
  background: rgba(85, 220, 167, 0.14);
}
.result-state-icon svg {
  grid-area: 1 / 1;
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.alert-mark {
  display: none;
}
.mobile-result small {
  display: block;
  color: var(--mint);
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.mobile-result strong {
  display: block;
  color: #f0fff9;
  font-size: 12px;
  line-height: 1.25;
}
.mobile-result span {
  display: block;
  color: rgba(225, 255, 242, 0.7);
  font-size: 7px;
}
.mobile-result em {
  color: var(--mint);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}
.hero-visual.phase-scan .mobile-scan-line,
.hero-visual.phase-scan .tracking-dots span {
  opacity: 1;
  animation-play-state: running;
}
.hero-visual.phase-scan .scan-status {
  opacity: 1;
  transform: translateY(0);
}
.hero-visual.phase-result .mobile-result {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-visual.phase-result .mobile-scan-line,
.hero-visual.phase-result .tracking-dots span {
  opacity: 0.28;
  animation-play-state: paused;
}
.mobile-result.result-fake {
  border-color: rgba(255, 121, 129, 0.44);
  background: rgba(46, 11, 20, 0.92);
}
.mobile-result.result-fake .result-state-icon {
  color: #ff7c87;
  background: rgba(255, 124, 135, 0.14);
}
.mobile-result.result-fake .check-mark {
  display: none;
}
.mobile-result.result-fake .alert-mark {
  display: block;
}
.mobile-result.result-fake small,
.mobile-result.result-fake em {
  color: #ff9099;
}
.camera-mode-row {
  display: none;
}
.camera-controls {
  position: absolute;
  z-index: 5;
  left: 30px;
  right: 30px;
  bottom: 16px;
  display: grid;
  place-items: center;
}
.gallery-thumb,
.flash-control {
  display: none;
}
.shutter-button {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.shutter-button i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
}
.section-heading h2,
.faq-intro h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr;
  gap: clamp(40px, 9vw, 140px);
  align-items: end;
}
.split-heading p {
  max-width: 500px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
}
.centered-heading {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
}
.centered-heading p {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
}
.problem {
  background: var(--white);
}
.problem .split-heading {
  align-items: end;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.problem-stats article {
  padding: 24px 22px 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}
.problem-stats article:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 125, 255, 0.35);
  box-shadow: 0 12px 30px rgba(16, 36, 67, 0.08);
}
.problem-stats strong {
  display: block;
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.problem-stats span {
  display: block;
  max-width: 260px;
  margin-top: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.problem-stats p {
  margin: 10px 0 0;
  color: #68768a;
  font-size: 13px;
  line-height: 1.55;
}
.failure-block {
  margin-top: 44px;
}
.failure-heading {
  max-width: 740px;
  margin-bottom: 16px;
}
.failure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.failure-card {
  padding: 24px 22px;
  border: 1px solid #e5eaf1;
  border-radius: 16px;
  background: #fff;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}
.failure-card:hover {
  transform: translateY(-4px);
  border-color: rgba(221, 82, 98, 0.32);
  box-shadow: 0 12px 30px rgba(16, 36, 67, 0.07);
}
.failure-card small {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #b63245;
  background: rgba(221, 82, 98, 0.1);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.failure-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: -0.03em;
}
.failure-card p {
  margin: 12px 0 0;
  color: #667488;
  font-size: 13px;
  line-height: 1.58;
}
.workflow {
  background: var(--surface);
  border-block: 1px solid #e9edf2;
}
.solution-heading {
  align-items: start;
}
.solution-heading h2 {
  max-width: 700px;
}
.grad-text {
  background: linear-gradient(90deg, var(--blue-600), #7c5cfc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.solution-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.solution-step {
  --step: var(--blue-600);
  --step-soft: rgba(23, 108, 242, 0.15);
  --step-tint: rgba(23, 108, 242, 0.09);
  position: relative;
  padding: 20px 22px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(16, 36, 67, 0.05);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}
.solution-step.step-purple {
  --step: #7c5cfc;
  --step-soft: rgba(124, 92, 252, 0.16);
  --step-tint: rgba(124, 92, 252, 0.09);
}
.solution-step.step-green {
  --step: var(--good);
  --step-soft: rgba(20, 165, 114, 0.16);
  --step-tint: rgba(20, 165, 114, 0.09);
}
.solution-step:hover {
  transform: translateY(-4px);
  border-color: var(--step-soft);
  box-shadow: 0 16px 38px rgba(16, 36, 67, 0.1);
}
.step-media {
  position: relative;
  height: 168px;
  margin-bottom: 22px;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--step-tint), rgba(255, 255, 255, 0) 78%),
    #f8fafd;
}
.step-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.step-art svg {
  width: 92%;
  height: 92%;
}
.step-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--step);
  box-shadow: 0 0 0 5px var(--step-soft);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 850;
}
.step-chip {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--step);
  background: var(--white);
  border: 1px solid var(--step-soft);
  box-shadow: 0 4px 12px rgba(16, 36, 67, 0.06);
}
.step-chip svg {
  width: 21px;
  height: 21px;
}
.solution-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 3;
  top: 90px;
  right: -25px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 5px 14px rgba(16, 36, 67, 0.1);
  color: #90a0b6;
  font-size: 15px;
  font-weight: 700;
}
.step-tag {
  display: block;
  color: var(--step);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.solution-step h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}
.step-rule {
  display: block;
  width: 34px;
  height: 3px;
  margin: 12px 0 14px;
  border-radius: 999px;
  background: var(--step);
}
.solution-step p {
  margin: 0;
  color: #637187;
  font-size: 13px;
  line-height: 1.62;
}
.solution-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(16, 36, 67, 0.05);
}
.highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-left: 1px solid var(--border);
}
.highlight:first-child {
  border-left: 0;
}
.highlight-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-icon img {
  width: 46px;
  height: 46px;
  display: block;
}
.highlight strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.highlight span {
  display: block;
  margin-top: 3px;
  color: #6b7a90;
  font-size: 12px;
  line-height: 1.35;
}
.text-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 700;
}
.text-arrow-link span {
  transition: transform 150ms ease;
}
.text-arrow-link:hover span {
  transform: translateX(5px);
}
.advantages {
  position: relative;
  overflow: hidden;
  color: #b8c4d5;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(45, 125, 255, 0.13),
      transparent 40%
    ),
    linear-gradient(180deg, #071225 0%, #091a32 100%);
}
.advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(
    circle at 1px 1px,
    #72a7e7 1px,
    transparent 0
  );
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 62%);
  mask-image: linear-gradient(to right, #000, transparent 62%);
}
.advantages-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 9vw, 130px);
}
.advantages-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}
.light-index {
  color: var(--blue-on-dark);
}
.advantages-intro h2 {
  margin: 16px 0;
  color: #f4f8fd;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.advantages-intro p {
  margin-bottom: 26px;
  color: #93a3b9;
  font-size: 16px;
}
.button-gradient {
  color: #fff;
  background: linear-gradient(90deg, var(--blue-600), #7c5cfc);
  box-shadow: 0 10px 26px rgba(90, 70, 220, 0.32);
}
.button-gradient:hover {
  filter: brightness(1.07);
  box-shadow: 0 14px 32px rgba(90, 70, 220, 0.42);
}
.button-gradient span {
  transition: transform 150ms ease;
}
.button-gradient:hover span {
  transform: translateX(4px);
}
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.advantage {
  --ring: var(--blue-on-dark);
  --ring-glow: rgba(45, 125, 255, 0.18);
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}
.advantage.adv-purple {
  --ring: #9b7cf2;
  --ring-glow: rgba(124, 92, 252, 0.2);
}
.advantage:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--ring-glow);
}
.adv-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--ring);
  border: 1.5px solid var(--ring);
  background: rgba(10, 20, 38, 0.5);
  box-shadow: 0 0 0 5px var(--ring-glow);
}
.adv-icon svg {
  width: 22px;
  height: 22px;
}
.advantage h3 {
  position: relative;
  z-index: 1;
  max-width: 56%;
  margin: 18px 0 8px;
  color: #edf4fc;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.advantage p {
  position: relative;
  z-index: 1;
  max-width: 54%;
  margin: 0;
  color: #8596ad;
  font-size: 13px;
  line-height: 1.55;
}
.adv-art {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -4px;
  width: 47%;
  max-width: 208px;
  transform: translateY(-50%);
  pointer-events: none;
}
.adv-art svg {
  width: 100%;
  height: auto;
  display: block;
}
.adv-art img {
  width: 80%;
  height: auto;
  display: block;
  margin-inline: auto;
}

.industries {
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(45, 125, 255, 0.07),
      transparent 42%
    ),
    radial-gradient(
      circle at 92% 100%,
      rgba(85, 199, 232, 0.07),
      transparent 42%
    ),
    var(--surface);
}
.industries .centered-heading {
  margin-bottom: 40px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 194px;
  padding: 20px 22px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(16, 36, 67, 0.05);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 125, 255, 0.3);
  box-shadow: 0 14px 34px rgba(16, 36, 67, 0.1);
}
.ind-num {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}
.ind-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 14px;
  border-radius: 50%;
  color: var(--blue-600);
  background: rgba(45, 125, 255, 0.1);
}
.ind-icon svg {
  width: 22px;
  height: 22px;
}
.industry-card h3 {
  position: relative;
  z-index: 1;
  max-width: 58%;
  margin: 14px 0 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.ind-rule {
  position: relative;
  z-index: 1;
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--blue-600);
}
.industry-card p {
  position: relative;
  z-index: 1;
  max-width: 56%;
  margin: 0;
  color: #718095;
  font-size: 13px;
  line-height: 1.5;
}
.ind-art {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -6px;
  width: 46%;
  max-width: 200px;
  transform: translateY(-50%);
  pointer-events: none;
}
.ind-art svg {
  width: 100%;
  height: auto;
  display: block;
}
.brand-protection {
  position: relative;
  overflow: hidden;
  color: #bac8d9;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(45, 125, 255, 0.13),
      transparent 40%
    ),
    linear-gradient(180deg, #071225 0%, #091a32 100%);
}
.brand-protection::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(
    circle at 1px 1px,
    #72a7e7 1px,
    transparent 0
  );
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 62%);
  mask-image: linear-gradient(to right, #000, transparent 62%);
}
.brand-protection-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.brand-protection-copy h2 {
  margin: 16px 0;
  color: #f4f8fd;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.brand-protection-copy > p {
  max-width: 560px;
  margin: 0;
  color: #94a6bd;
  font-size: 16px;
  line-height: 1.6;
}
.manager-insights {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.manager-insights article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}
.manager-insights article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(112, 177, 255, 0.35);
}
.manager-insights article > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(112, 177, 255, 0.28);
  border-radius: 50%;
  color: var(--blue-on-dark);
  font-size: 10px;
  font-weight: 850;
}
.manager-insights h3 {
  margin: 0 0 5px;
  color: #edf5ff;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.manager-insights p {
  max-width: 560px;
  margin: 0;
  color: #8193ad;
  font-size: 13px;
  line-height: 1.5;
}
.verification-dashboard {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(5, 16, 33, 0.78);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}
.verification-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.verification-dashboard-top span {
  display: block;
  color: #748ba8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.verification-dashboard-top strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  color: var(--mint);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.verification-dashboard-top i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow:
    0 0 0 8px rgba(82, 223, 169, 0.12),
    0 0 24px rgba(82, 223, 169, 0.6);
}
.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-kpis div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-kpis div:last-child {
  border-right: 0;
}
.dashboard-kpis strong {
  color: #f3f8ff;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.dashboard-kpis span {
  margin-top: 9px;
  color: #7f91aa;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.region-panel,
.activity-panel {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.activity-panel {
  border-bottom: 0;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.panel-heading strong {
  color: #e9f2fd;
  font-size: 15px;
}
.panel-heading span {
  color: #7188a6;
  font-size: 11px;
}
.region-row {
  display: grid;
  grid-template-columns: 92px 1fr 42px;
  gap: 12px;
  align-items: center;
  margin: 13px 0;
  color: #c9d7e8;
  font-size: 12px;
}
.region-row div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.region-row i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4b9aff, var(--mint));
}
.region-row em {
  color: #95a8c0;
  font-size: 11px;
  font-style: normal;
  text-align: right;
}
.region-row.alert-region i {
  background: linear-gradient(90deg, #ff6f7b, #ffb16d);
}
.activity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.activity-row:first-of-type {
  border-top: 0;
}
.activity-row > span {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--mint);
}
.activity-row.alert > span {
  background: #ff6f7b;
  box-shadow: 0 0 0 5px rgba(255, 111, 123, 0.12);
}
.activity-row p {
  margin: 0;
  color: #d5e0ee;
  font-size: 12px;
  line-height: 1.45;
}
.activity-row em {
  color: #7489a5;
  font-size: 10px;
  font-style: normal;
  white-space: nowrap;
}
.impact {
  background: var(--white);
}
.impact-heading h2 {
  margin: 14px 0 48px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.impact-heading h2 span {
  color: var(--blue-600);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.impact-item {
  padding: 22px 20px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(16, 36, 67, 0.05);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}
.impact-item:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 125, 255, 0.3);
  box-shadow: 0 14px 34px rgba(16, 36, 67, 0.1);
}
.impact-item > span {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.impact-item h3 {
  margin: 16px 0 8px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.impact-item p {
  margin: 0;
  color: #778397;
  font-size: 13px;
  line-height: 1.5;
}
.pilot {
  position: relative;
  overflow: hidden;
  color: #b9c7d9;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(45, 125, 255, 0.13),
      transparent 40%
    ),
    linear-gradient(180deg, #071225 0%, #091a32 100%);
}
.pilot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(
    circle at 1px 1px,
    #72a7e7 1px,
    transparent 0
  );
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 62%);
  mask-image: linear-gradient(to right, #000, transparent 62%);
}
.pilot-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 10vw, 150px);
  align-items: center;
}
.pilot-copy h2 {
  margin: 16px 0;
  color: #f4f8fd;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.pilot-copy > p {
  max-width: 520px;
  color: #98a8bd;
  font-size: 16px;
}
.pilot-steps {
  margin: 36px 0 30px;
  padding: 0;
  list-style: none;
}
.pilot-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0;
  color: #d7e1ee;
  font-size: 14px;
}
.pilot-steps span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #42638b;
  border-radius: 50%;
  color: var(--blue-on-dark);
  font-size: 10px;
}
.pilot-form-wrap {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
.pilot-form {
  position: relative;
  padding: 38px;
  border-radius: 8px;
  color: var(--text);
  background: #f9fbfd;
}
.form-heading > span {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.form-heading h3 {
  margin: 9px 0 5px;
  font-size: 29px;
  letter-spacing: -0.035em;
}
.form-heading p {
  margin-bottom: 25px;
  color: #7a8798;
  font-size: 13px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
}
.form-grid .form-field-full {
  grid-column: 1 / -1;
}
.pilot-form label span {
  display: block;
  margin-bottom: 7px;
  color: #4a596d;
  font-size: 11px;
  font-weight: 700;
}
.pilot-form input,
.pilot-form select {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid #d7dfe8;
  border-radius: 6px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}
.pilot-form select {
  appearance: none;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, #6f7d90 50%),
    linear-gradient(135deg, #6f7d90 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size:
    5px 5px,
    5px 5px;
}
.pilot-form textarea {
  width: 100%;
  min-height: 80px;
  padding: 13px;
  border: 1px solid #d7dfe8;
  border-radius: 6px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}
.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(45, 125, 255, 0.1);
}
.pilot-form input::placeholder,
.pilot-form textarea::placeholder {
  color: #a0aab8;
}
.field-error {
  display: block;
  margin-top: 5px;
  min-height: 0;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.iti {
  width: 100% !important;
}
.field-error.visible {
  opacity: 1;
  font-weight: 400;
  color: var(--bad);
  transform: translateY(0);
}
.form-submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
}
.form-privacy {
  margin: 12px 0 0;
  color: #9aa5b3;
  font-size: 10px;
  text-align: center;
}
.form-success {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  border-radius: 8px;
  background: #fcfbf9;
}
.form-success.visible {
  display: grid;
}
.form-success-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  shape-rendering: geometricprecision;
}
.form-message-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
}
.form-message-error {
  color: var(--bad);
  background: rgba(221, 82, 98, 0.1);
}
.form-message-icon svg {
  width: 22px;
  height: 22px;
}
.form-message-content p {
  margin: 3px 0 0;
  color: #7b889a;
  font-size: 13px;
}
.form-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}
.form-submit.loading [data-btn-arrow] {
  display: none;
}
.form-submit.loading [data-btn-text] {
  font-size: 0;
}
.form-submit.loading [data-btn-text]::after {
  content: "Sending...";
  font-size: 14px;
  font-weight: 700;
}
.form-submit .spinner {
  display: none;
}
.form-submit.loading .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rotate 0.7s linear infinite;
}
.faq {
  background: var(--surface);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(60px, 10vw, 140px);
}
.faq-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}
.faq-intro p {
  max-width: 370px;
  margin: 22px 0;
  color: #748195;
}
.accordion {
  border-top: 1px solid #cfd8e3;
}
.accordion details {
  border-bottom: 1px solid #cfd8e3;
}
.accordion summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 8px 20px 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span {
  position: relative;
  flex: 0 0 22px;
  height: 22px;
}
.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 10px;
  height: 1px;
  background: var(--blue-600);
  transition: transform 180ms ease;
}
.accordion summary span::after {
  transform: rotate(90deg);
}
.accordion details[open] summary span::after {
  transform: rotate(0deg);
}
.accordion details p {
  max-width: 720px;
  margin: -4px 0 20px;
  padding-right: 48px;
  color: #6f7d90;
  font-size: 13px;
  line-height: 1.6;
}
.final-cta {
  padding: 82px 0;
  background: var(--blue-600);
}
.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.final-cta span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.final-cta h2 {
  max-width: 720px;
  margin: 12px 0 0;
  color: #f7fbff;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.final-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.final-actions .button-primary {
  color: var(--ink);
  background: #f7fbff;
  box-shadow: none;
}
.final-actions .button-primary:hover {
  background: #e5f0ff;
}
.button-dark-secondary {
  color: #f4f8fd;
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
}
.button-dark-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}
.site-footer {
  color: #94a3b8;
  background: #061225;
}
.brand-light {
  color: #edf5ff;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px 0 28px;
}
.footer-brand p {
  max-width: 340px;
  margin: 14px 0 0;
  color: #8595ab;
  font-size: 13px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #c2cddd;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}
.footer-socials a:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(112, 177, 255, 0.5);
  background: rgba(45, 125, 255, 0.18);
}
.footer-socials svg {
  width: 17px;
  height: 17px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6a7a90;
  font-size: 11px;
}
.sg-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #8595ab;
  transition: opacity 150ms ease;
}
.sg-credit:hover {
  opacity: 0.8;
}
.sg-credit img {
  height: 20px;
  width: auto;
  display: block;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes mobileProductScan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(314px);
    opacity: 1;
  }
}
@keyframes trackingBlink {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.55);
  }
}
@media (min-width: 1600px) {
  :root {
    --container: min(1360px, calc(100% - 120px));
  }
}

@media (max-width: 1050px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero h1 {
    font-size: clamp(36px, 4.5vw, 48px);
  }
  .hero-visual {
    transform: scale(0.96);
  }
  .advantages-layout {
    gap: 60px;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  :root {
    --container: min(calc(100% - 32px), 680px);
  }
  .section-pad {
    padding: 54px 0;
  }
  .hero {
    min-height: auto;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
    gap: 20px;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
  }
  .hero h1 {
    font-size: clamp(36px, 8.25vw, 51px);
  }
  .hero-visual {
    min-height: 600px;
    margin-top: -10px;
    transform: none;
  }
  .split-heading,
  .advantages-layout,
  .brand-protection-layout,
  .pilot-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .split-heading {
    gap: 16px;
  }
  .problem-stats,
  .failure-grid {
    grid-template-columns: 1fr;
  }
  .problem-stats article,
  .failure-card {
    min-height: auto;
  }
  .solution-steps {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  .solution-step:not(:last-child)::after {
    display: none;
  }
  .solution-highlights {
    grid-template-columns: 1fr 1fr;
  }
  .highlight:nth-child(odd) {
    border-left: 0;
  }
  .highlight:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }
  .advantages-intro,
  .faq-intro {
    position: static;
  }
  .advantages-grid {
    margin-top: 14px;
  }
  .adv-art {
    display: none;
  }
  .advantage {
    min-height: auto;
  }
  .advantage h3,
  .advantage p {
    max-width: 100%;
  }
  .verification-dashboard {
    max-width: 720px;
  }
  .pilot-form-wrap {
    max-width: 650px;
  }
  .faq-layout {
    gap: 28px;
  }
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .d-show {
    display: none !important;
  }
  .benefit-strip {
    display: none;
  }
  .ind-art {
    display: none;
  }
  .industry-card {
    min-height: auto;
  }
  .industry-card h3,
  .industry-card p {
    max-width: 100%;
  }
  .hero-visual {
    min-height: 0;
    overflow: visible;
    transform: scale(0.6) !important;
    transform-origin: top center;
    margin: 24px 0 -222px;
  }
  .phone-mockup {
    transform: rotate(1deg);
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
  }
  body {
    font-size: 15px;
  }
  .section-pad {
    padding: 40px 0;
  }
  .header-inner {
    height: 68px;
  }
  .brand {
    font-size: 12px;
  }
  .hero {
    padding-top: 68px;
  }
  .hero-layout {
    padding-top: 36px;
    gap: 14px;
  }
  .hero h1 {
    font-size: clamp(33px, 9.75vw, 44px);
    margin: 18px 0 18px;
  }
  .hero-lede {
    font-size: 16px;
  }
  .hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 24px;
  }
  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
  }
  .benefit-strip {
    gap: 9px 16px;
    margin-top: 22px;
  }
  .hero-visual {
    min-height: 0;
    overflow: visible;
    transform: scale(0.56) !important;
    transform-origin: top center;
    margin: 20px 0 -244px;
  }
  .phone-mockup {
    transform: rotate(1deg);
  }
  .section-heading h2,
  .faq-intro h2 {
    font-size: 30px;
  }
  .split-heading p,
  .centered-heading p {
    font-size: 15px;
  }
  .problem-stats {
    margin-top: 16px;
  }
  .problem-stats article,
  .failure-card {
    padding: 16px 14px;
  }
  .problem-stats strong {
    font-size: 30px;
  }
  .problem-stats span {
    margin-top: 8px;
    font-size: 13px;
  }
  .problem-stats p {
    margin-top: 8px;
    font-size: 12px;
  }
  .failure-block {
    margin-top: 18px;
  }
  .failure-heading {
    margin-bottom: 12px;
  }
  .failure-card strong {
    margin-top: 10px;
    font-size: 18px;
  }
  .failure-card p {
    margin-top: 8px;
    font-size: 12px;
  }
  .solution-steps {
    margin-top: 20px;
  }
  .solution-step {
    padding: 14px 14px 22px;
  }
  .step-media {
    height: 150px;
    margin-bottom: 18px;
  }
  .solution-highlights {
    grid-template-columns: 1fr;
  }
  .highlight {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 14px 16px;
  }
  .highlight:first-child {
    border-top: 0;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
  }
  .advantages-intro h2 {
    margin: 10px 0;
  }
  .advantages-intro p {
    margin-bottom: 16px;
  }
  .advantage {
    padding: 16px 14px;
  }
  .advantage h3 {
    margin: 12px 0 6px;
    font-size: 15px;
  }
  .advantage p {
    font-size: 12px;
  }
  .industries .centered-heading {
    margin-bottom: 18px;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-card {
    padding: 16px 14px;
  }
  .industry-card h3 {
    font-size: 15px;
  }
  .industry-card p {
    font-size: 12px;
  }
  .brand-protection-copy h2 {
    font-size: 33px;
  }
  .manager-insights article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dashboard-kpis {
    grid-template-columns: repeat(3, 1fr);
  }
  .dashboard-kpis div {
    min-height: 0;
    padding: 14px 10px;
  }
  .dashboard-kpis strong {
    font-size: 19px;
  }
  .dashboard-kpis span {
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: 0.05em;
  }
  .region-row {
    grid-template-columns: 80px 1fr 36px;
  }
  .activity-row {
    grid-template-columns: auto 1fr;
  }
  .activity-row em {
    grid-column: 2;
  }
  .impact-heading h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-item {
    padding: 16px 14px;
  }
  .impact-item h3 {
    margin: 10px 0 6px;
    font-size: 15px;
  }
  .impact-item p {
    font-size: 12px;
  }
  .problem-stats,
  .failure-grid,
  .impact-grid,
  .advantages-grid,
  .industry-grid {
    gap: 10px;
  }
  .split-heading {
    gap: 12px;
  }
  .manager-insights {
    margin-top: 22px;
  }
  .pilot-form {
    padding: 22px 18px;
  }
  .pilot-steps {
    margin: 24px 0 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .accordion summary {
    font-size: 15px;
    padding: 16px 8px 16px 0;
  }
  .final-cta {
    padding: 48px 0;
  }
  .final-actions {
    width: 100%;
    flex-direction: column;
  }
  .final-actions .button {
    width: 100%;
  }
  .footer-bottom {
    padding: 16px 0 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- Fully fluid hero-scanner scaling (fluid version only) ---- */
/* JS adds .hero-fluid on phones and sets --hs (scale) + --hmb (bottom margin) continuously. */
.hero-visual.hero-fluid {
  min-height: 0;
  overflow: visible;
  transform-origin: top center;
  transform: scale(var(--hs, 0.56)) !important;
  margin: 22px 0 var(--hmb, -244px) !important;
}
