:root {
  color-scheme: light;
  --bg: #f7f7f4;
  --surface: #ffffff;
  --surface-soft: #f0f0ed;
  --ink: #111111;
  --muted: #676767;
  --line: #e5e3dd;
  --blue: #087bd3;
  --blue-dark: #005fa8;
  --brand-blue: #087bd3;
  --teal: #53c7bb;
  --amber: #c7f06b;
  --danger: #b84a45;
  --shadow: 0 18px 54px rgba(17, 17, 17, 0.1);
  --header-height: 72px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 72% 10%, rgba(195, 255, 148, 0.45), transparent 28%),
    radial-gradient(circle at 96% 38%, rgba(178, 229, 255, 0.52), transparent 27%),
    radial-gradient(circle at 82% 74%, rgba(255, 211, 235, 0.48), transparent 28%),
    var(--bg);
  background-size: 130% 130%, 120% 120%, 140% 140%, auto;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  animation: pageAmbient 18s ease-in-out infinite alternate;
}

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

@supports (word-break: auto-phrase) {
  h1,
  h2,
  h3,
  p,
  strong {
    word-break: auto-phrase;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 84px, rgba(8, 123, 211, 0.055) 84px 86px, transparent 86px 168px),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 44%, rgba(83, 199, 187, 0.12) 48%, transparent 54%);
  background-size: 168px 100%, 240px 100%;
  opacity: 0.42;
  animation: signalField 15s linear infinite;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - clamp(28px, 4vw, 40px)));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 58%, transparent);
  backdrop-filter: blur(20px);
  animation: headerDrop 620ms var(--motion-ease) both;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-elevated {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(16, 21, 31, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: clamp(190px, 15vw, 216px);
  height: 51px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  opacity: 0.98;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 180ms var(--motion-ease), opacity 180ms ease, filter 180ms ease;
}

.brand:hover .brand-logo {
  opacity: 1;
  filter: saturate(1.08) contrast(1.06);
  transform: translateY(-1px) scale(1.02);
}

.brand-name {
  display: none;
  font-size: 24px;
  font-weight: 800;
}

.brand-tag {
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  max-width: max-content;
  margin-left: auto;
  padding: 8px 10px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 42px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav a,
.nav-dropdown-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 11px 18px;
  border-radius: 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav a:hover,
.nav-dropdown-button:hover {
  background: rgba(17, 17, 17, 0.05);
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
  pointer-events: none;
}

.nav-dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.solution-menu {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 8px 18px;
  min-width: 520px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.solution-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown:focus-within .solution-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
}

.solution-menu a {
  display: block;
  padding: 12px;
  border-radius: 8px;
}

.solution-menu a:hover {
  background: var(--surface-soft);
}

.solution-menu strong {
  display: block;
  font-size: 15px;
}

.solution-menu span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 42px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.mobile-nav-actions {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  touch-action: manipulation;
  transition:
    transform 180ms var(--motion-ease),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    filter 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 46%, transparent 62%);
  transform: translateX(-130%);
  pointer-events: none;
}

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

.button:hover::after {
  animation: buttonSweep 720ms ease;
}

.button {
  min-height: 44px;
  padding: 0 18px;
  font-weight: 700;
  gap: 8px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.2);
}

.button-primary:hover {
  background: #2a2a2a;
}

.button-secondary,
.button-quiet {
  border-color: #111111;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--blue);
}

.button-dark {
  background: #10151f;
  color: #ffffff;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: #ffffff;
  color: #10151f;
}

.button-large {
  min-height: 58px;
  padding: 0 28px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  --hero-edge: max(24px, calc((100vw - 1180px) / 2));
  position: relative;
  isolation: isolate;
  min-height: auto;
  padding: 0 0 42px;
  background:
    radial-gradient(circle at 82% 32%, rgba(202, 255, 143, 0.42), transparent 25%),
    radial-gradient(circle at 92% 66%, rgba(184, 234, 255, 0.48), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  background-size: 120% 120%, 130% 130%, auto;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
  animation: gridDrift 22s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0%, transparent 43%, rgba(255, 255, 255, 0.38) 49%, transparent 58%, transparent 100%);
  opacity: 0.72;
  transform: translateX(-76%);
  animation: heroSweep 7.8s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.82fr);
  gap: 38px;
  align-items: center;
}

.carousel.hero-carousel {
  --carousel-page-size: 1;
  --carousel-card-width: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-carousel .hero-carousel-frame {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-carousel .hero-carousel-track {
  gap: 0;
}

.hero-slide {
  position: relative;
  isolation: isolate;
  flex: 0 0 100%;
  max-width: 100%;
  min-height: min(760px, calc(100vh - var(--header-height) - 88px));
  padding: clamp(58px, 8vh, 92px) var(--hero-edge) clamp(46px, 6vh, 72px);
  background:
    radial-gradient(circle at 76% 16%, rgba(199, 240, 107, 0.34), transparent 26%),
    radial-gradient(circle at 94% 64%, rgba(184, 234, 255, 0.46), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(232, 255, 217, 0.5) 46%, rgba(223, 247, 255, 0.52));
}

.hero-cover-slide {
  overflow: hidden;
  background: none;
}

.hero-cover-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("static/aikeee_images/hero-cover-badge.jpg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: calc(100% + clamp(360px, calc(10vw + 280px), 460px)) 50%;
  filter: saturate(0.96) contrast(1.02) brightness(1.02);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.16) 50%, #000 62%, #000 100%);
  transform: scale(1.012);
  transform-origin: center;
}

.hero-cover-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 255, 237, 0.98) 0%, rgba(247, 255, 237, 0.95) 42%, rgba(247, 255, 237, 0.58) 56%, rgba(247, 255, 237, 0.1) 68%, rgba(247, 255, 237, 0.03) 100%),
    radial-gradient(circle at 21% 45%, rgba(255, 255, 255, 0.78), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(199, 240, 107, 0.2), transparent 26%),
    radial-gradient(circle at 92% 72%, rgba(83, 199, 187, 0.18), transparent 28%);
}

.hero-cover-slide .hero-copy {
  position: relative;
  z-index: 2;
}

.hero-cover-slide .product-visual {
  min-height: 560px;
  pointer-events: none;
}

.hero-cover-slide .product-visual.has-real-badge::before,
.hero-cover-slide .product-visual.has-real-badge::after,
.hero-cover-slide .real-badge-visual,
.hero-cover-slide .device-stage::before,
.hero-cover-slide .device-stage::after,
.hero-cover-slide .hardware-strip {
  display: none;
}

.hero-cover-slide .device-stage {
  min-height: 520px;
  padding: 0;
}

.hero-cover-slide .device-halo {
  right: 12px;
  top: 136px;
  width: min(500px, 88%);
  height: 220px;
  opacity: 0.28;
  border-color: rgba(8, 123, 211, 0.16);
  transform: rotate(-7deg);
}

.hero-cover-slide .device-data-stream {
  inset: 150px 10px auto auto;
  width: min(450px, 82%);
  opacity: 0.7;
}

.hero-carousel-topline {
  position: absolute;
  top: clamp(18px, 3vh, 30px);
  right: var(--hero-edge);
  z-index: 8;
  margin: 0;
}

.hero-carousel .carousel-dots {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.hero-banner::before {
  content: none;
}

.hero-banner-dark {
  background:
    radial-gradient(circle at 86% 22%, rgba(8, 123, 211, 0.24), transparent 27%),
    radial-gradient(circle at 88% 76%, rgba(199, 240, 107, 0.32), transparent 25%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.84), rgba(231, 255, 220, 0.58) 44%, rgba(221, 245, 255, 0.6));
}

.hero-banner-light {
  background:
    radial-gradient(circle at 76% 24%, rgba(199, 240, 107, 0.36), transparent 27%),
    radial-gradient(circle at 92% 70%, rgba(184, 234, 255, 0.48), transparent 25%),
    linear-gradient(116deg, rgba(255, 255, 255, 0.86), rgba(244, 255, 234, 0.58) 48%, rgba(229, 249, 255, 0.64));
}

.hero-banner-copy {
  max-width: 720px;
  padding: 0;
}

.hero-banner h1 {
  margin: 0;
  max-width: 11.6em;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-banner h1 .title-line {
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero-banner .eyebrow {
  padding: 6px 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.16);
}

.hero-banner .hero-lead {
  margin-left: 0;
  text-align: left;
}

.hero-banner .hero-actions {
  justify-content: flex-start;
}

.hero-banner-panel,
.hero-product-stack {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 0;
}

.hero-banner-panel div,
.hero-product-stack div {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.hero-banner-panel span {
  color: var(--muted);
  font-weight: 800;
}

.hero-banner-panel strong,
.hero-product-stack strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.1;
}

.hero-product-stack strong {
  font-size: 22px;
}

.hero-banner-panel p,
.hero-product-stack p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  justify-self: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin: 0 auto 26px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.16);
  animation: revealUp 700ms var(--motion-ease) 120ms both;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--ink);
}

.hero-title .title-line {
  display: block;
  white-space: nowrap;
  animation: revealUp 760ms var(--motion-ease) both;
}

.hero-title .title-line:nth-child(1) {
  animation-delay: 220ms;
}

.hero-title .title-line:nth-child(2) {
  animation-delay: 320ms;
}

.hero h1 .title-accent {
  display: inline;
  color: var(--brand-blue);
}

.hero h1 .title-rotator {
  position: relative;
  display: inline-grid;
  width: 4em;
  height: 1.18em;
  overflow: hidden;
  color: var(--brand-blue);
  vertical-align: bottom;
}

.hero h1 .title-rotator::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.06em;
  bottom: 0.03em;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8, 123, 211, 0), rgba(8, 123, 211, 0.88), rgba(83, 199, 187, 0));
  opacity: 0.72;
  transform-origin: left center;
  animation: titleAccentPulse 2.8s ease-in-out infinite;
}

.hero h1 .title-rotator-track {
  display: grid;
  color: var(--brand-blue);
  animation: titleWordRoll 5.2s var(--motion-ease) infinite;
  will-change: transform;
}

.hero h1 .title-rotator-track span {
  display: block;
  height: 1.18em;
  color: var(--brand-blue);
  line-height: 1.18;
}

.hero-lead {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.72;
  text-align: center;
  animation: revealUp 760ms var(--motion-ease) 420ms both;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 24px auto 0;
  text-align: left;
}

.hero-specs div {
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(16px);
  animation: revealUp 680ms var(--motion-ease) both;
  transition: transform 180ms var(--motion-ease), border-color 180ms ease, box-shadow 180ms ease;
}

.hero-specs div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(8, 123, 211, 0.11) 44%, rgba(255, 255, 255, 0.44) 50%, transparent 62%);
  opacity: 0.78;
  transform: translateX(-130%);
  animation: specSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-specs div:nth-child(1) {
  animation-delay: 640ms;
}

.hero-specs div:nth-child(2) {
  animation-delay: 710ms;
}

.hero-specs div:nth-child(2)::after {
  animation-delay: 0.7s;
}

.hero-specs div:nth-child(3) {
  animation-delay: 780ms;
}

.hero-specs div:nth-child(3)::after {
  animation-delay: 1.4s;
}

.hero-specs div:hover {
  border-color: color-mix(in srgb, var(--brand-blue) 22%, rgba(17, 17, 17, 0.08));
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.09);
  transform: translateY(-3px);
}

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

.hero-specs strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.hero-specs span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  animation: revealUp 760ms var(--motion-ease) 540ms both;
}

.hero-actions .button-primary {
  background: var(--brand-blue);
  box-shadow: 0 14px 30px rgba(0, 115, 201, 0.22);
}

.hero-actions .button-primary:hover {
  background: #006fbd;
}

.hero-actions .button-secondary {
  border-color: rgba(17, 17, 17, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.product-visual {
  position: relative;
  margin: 0;
  min-height: 610px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  --pointer-x: 0;
  --pointer-y: 0;
  animation: revealScale 860ms var(--motion-ease) 360ms both;
}

.product-visual.has-real-badge::before {
  content: "";
  position: absolute;
  inset: 42px -9vw 74px 12px;
  z-index: 0;
  border-radius: 48px 0 0 48px;
  background:
    radial-gradient(circle at 62% 34%, rgba(255, 255, 255, 0.72), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(8, 123, 211, 0.16), transparent 24%),
    radial-gradient(circle at 74% 74%, rgba(199, 240, 107, 0.24), transparent 30%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), rgba(220, 246, 255, 0.34));
  opacity: 0.9;
  pointer-events: none;
}

.product-visual.has-real-badge::after {
  content: "";
  position: absolute;
  inset: 16px -9vw 28px 22%;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245, 255, 237, 0.88) 0%, rgba(245, 255, 237, 0.34) 28%, rgba(245, 255, 237, 0) 58%),
    linear-gradient(120deg, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0) 62%);
  mix-blend-mode: screen;
  opacity: 0.32;
  animation: productPhotoSweep 7s ease-in-out infinite;
}

.device-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 548px;
  padding: 28px;
  perspective: 1200px;
  transform:
    rotateX(calc(var(--pointer-y) * -2.8deg))
    rotateY(calc(var(--pointer-x) * 3.4deg));
  transform-style: preserve-3d;
  transition: transform 220ms var(--motion-ease);
}

.device-stage::before {
  content: "";
  position: absolute;
  right: -86px;
  top: 62px;
  width: 280px;
  height: 520px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 64px;
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.78), rgba(209, 249, 233, 0.36) 44%, rgba(217, 239, 255, 0.4)),
    radial-gradient(circle at 24% 10%, rgba(199, 240, 107, 0.46), transparent 30%);
  box-shadow:
    inset 18px 18px 36px rgba(255, 255, 255, 0.65),
    inset -24px -24px 42px rgba(59, 117, 130, 0.1),
    0 34px 80px rgba(17, 17, 17, 0.14);
  transform: rotate(-18deg);
  animation: panelFloat 7.2s ease-in-out infinite;
}

.device-stage::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 44px;
  width: 260px;
  height: 44px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
  filter: blur(22px);
  transform: rotate(-8deg);
  animation: shadowPulse 5.4s ease-in-out infinite;
}

.device-halo {
  position: absolute;
  right: 70px;
  top: 92px;
  width: 170px;
  height: 380px;
  border: 1px dashed rgba(17, 17, 17, 0.13);
  border-radius: 48px;
  transform: rotate(10deg);
  animation: haloPulse 4.8s ease-in-out infinite;
}

.device-data-stream {
  position: absolute;
  inset: 80px 12px auto auto;
  z-index: 1;
  width: 238px;
  height: 290px;
  pointer-events: none;
  transform: rotate(-14deg);
}

.device-data-stream span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--brand-blue) 68%, transparent), transparent);
  opacity: 0;
  animation: dataStream 3.6s ease-in-out infinite;
}

.device-data-stream span::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 38px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), color-mix(in srgb, var(--brand-blue) 72%, #ffffff), transparent);
  box-shadow: 0 0 18px rgba(8, 123, 211, 0.34);
  transform: translateX(-45%);
  animation: dataPacket 3.6s ease-in-out infinite;
}

.device-data-stream span:nth-child(1) {
  top: 38px;
}

.device-data-stream span:nth-child(2) {
  top: 126px;
  animation-delay: 1.1s;
}

.device-data-stream span:nth-child(2)::before {
  animation-delay: 1.1s;
}

.device-data-stream span:nth-child(3) {
  top: 212px;
  animation-delay: 2.15s;
}

.device-data-stream span:nth-child(3)::before {
  animation-delay: 2.15s;
}

.product-visual.has-real-badge .device-stage {
  place-items: center end;
  z-index: 1;
  overflow: visible;
  padding: 28px 0 72px 24px;
}

.product-visual.has-real-badge .device-stage::before {
  right: -96px;
  top: 90px;
  z-index: 1;
  width: min(680px, 116%);
  height: 362px;
  border: 0;
  border-radius: 60px;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.62), transparent 36%),
    radial-gradient(circle at 74% 50%, rgba(184, 234, 255, 0.34), transparent 34%),
    radial-gradient(circle at 20% 72%, rgba(199, 240, 107, 0.2), transparent 28%);
  box-shadow: none;
  transform: rotate(-4deg);
  opacity: 0.86;
}

.product-visual.has-real-badge .device-stage::after {
  right: 30px;
  bottom: 96px;
  z-index: 2;
  width: min(540px, 92%);
  height: 58px;
  background: rgba(21, 50, 62, 0.13);
  transform: rotate(-5deg);
  opacity: 0.68;
}

.real-badge-visual {
  position: absolute;
  inset: 18px -38px 36px -12px;
  z-index: 3;
  width: auto;
  aspect-ratio: auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translate3d(0, 0, 64px) rotate(-2deg);
  animation: realBadgeFloat 6.4s ease-in-out infinite;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 82%, rgba(0, 0, 0, 0.82) 100%);
  will-change: transform;
}

.real-badge-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(245, 255, 237, 0.28) 0%, rgba(255, 255, 255, 0.46) 46%, rgba(245, 255, 237, 0.08) 64%),
    radial-gradient(circle at 82% 26%, rgba(8, 123, 211, 0.1), transparent 18%);
  opacity: 0.32;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-88%);
  animation: productPhotoSweep 6.2s ease-in-out infinite;
}

.real-badge-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 44%;
  filter: saturate(0.88) contrast(1.08) brightness(0.98);
  opacity: 0.96;
  transform: none;
}

.product-visual.has-real-badge .badge-device {
  display: none;
}

.product-visual.has-real-badge .device-card {
  display: none;
}

.product-visual.has-real-badge .device-halo {
  right: 42px;
  top: 136px;
  z-index: 4;
  width: min(520px, 86%);
  height: 226px;
  border-radius: 34px;
  transform: rotate(-6deg);
  opacity: 0.46;
}

.product-visual.has-real-badge .device-data-stream {
  inset: 166px 28px auto auto;
  z-index: 5;
  width: min(430px, 74%);
  height: 188px;
  transform: rotate(-5deg);
}

.product-visual.has-real-badge .device-data-stream span:nth-child(1) {
  top: 20px;
}

.product-visual.has-real-badge .device-data-stream span:nth-child(2) {
  top: 82px;
}

.product-visual.has-real-badge .device-data-stream span:nth-child(3) {
  top: 144px;
}

.product-visual.has-real-badge .live-card {
  top: 116px;
  left: 20px;
  z-index: 7;
}

.product-visual.has-real-badge .battery-card {
  right: 0;
  bottom: 114px;
  z-index: 7;
}

.device-stage .badge-device {
  --badge-transform: translateX(70px) rotate(-8deg);
  position: relative;
  z-index: 5;
  grid-row: auto;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 148px;
  min-height: 374px;
  padding: 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(213, 250, 236, 0.42) 48%, rgba(218, 238, 255, 0.5));
  box-shadow:
    inset 16px 16px 30px rgba(255, 255, 255, 0.8),
    inset -20px -20px 36px rgba(70, 117, 126, 0.12),
    0 26px 58px rgba(17, 17, 17, 0.16);
  transform: var(--badge-transform);
  transform-style: preserve-3d;
  animation: badgeFloat 5.8s ease-in-out infinite;
  will-change: transform;
}

.device-stage .badge-device::before {
  content: "";
  width: 34px;
  height: 6px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.18);
  box-shadow: 0 -18px 0 -2px rgba(17, 17, 17, 0.12);
}

.device-stage .badge-device::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -34px;
  width: 34px;
  height: 42px;
  border: 2px solid rgba(17, 17, 17, 0.12);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  transform: translateX(-50%);
}

.device-stage .badge-clip {
  width: 52px;
  height: 13px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.badge-camera {
  width: 10px;
  height: 10px;
  margin-top: 14px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: #111111;
  animation: cameraPulse 2.4s ease-in-out infinite;
}

.device-stage .badge-screen {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 180px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #0f2235 0%, #060a11 100%);
  color: #ffffff;
  overflow: hidden;
}

.device-stage .badge-screen::before {
  content: "";
  position: absolute;
  inset: -35% 0 auto;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(118, 214, 255, 0.22), transparent);
  transform: translateY(-100%);
  animation: screenScan 3.8s ease-in-out infinite;
}

.device-stage .badge-screen > * {
  position: relative;
  z-index: 1;
}

.device-stage .badge-screen span {
  color: #8ccaf2;
  font-size: 11px;
  font-weight: 800;
}

.device-stage .badge-screen strong {
  position: relative;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
  animation: recTextGlow 2.2s ease-in-out infinite;
}

.device-stage .badge-screen strong::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5a5f;
  box-shadow: 0 0 14px rgba(255, 90, 95, 0.9);
  animation: recBlink 1.2s ease-in-out infinite;
}

.device-stage .badge-screen em {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-style: normal;
}

.badge-mics {
  display: flex;
  gap: 36px;
  margin-top: 14px;
}

.badge-mics i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.24);
  animation: micPulse 1.8s ease-in-out infinite;
}

.badge-mics i:nth-child(2) {
  animation-delay: 0.4s;
}

.device-stage .badge-signal {
  position: absolute;
  right: 14px;
  bottom: 16px;
}

.device-card {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  width: 174px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 220ms var(--motion-ease), box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.device-card::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(83, 199, 187, 0.28);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.device-card::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(8, 123, 211, 0.55), transparent);
  transform: translateX(-120%);
  animation: miniScan 3.2s ease-in-out infinite;
}

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

.device-card:hover {
  border-color: color-mix(in srgb, var(--brand-blue) 22%, rgba(17, 17, 17, 0.08));
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.14);
}

.device-card span,
.device-card p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.device-card strong {
  display: block;
  margin: 3px 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.live-card {
  top: 154px;
  left: 4px;
  animation: cardFloatA 5.6s ease-in-out infinite;
}

.battery-card {
  right: -82px;
  bottom: 72px;
  animation: cardFloatB 6.2s ease-in-out infinite;
}

.battery-card::before {
  animation-delay: 0.45s;
}

.battery-card::after {
  animation-delay: 0.7s;
}

.hardware-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: absolute;
  left: 0;
  right: -12px;
  bottom: 0;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px);
  animation: revealUp 720ms var(--motion-ease) 860ms both;
}

.hardware-strip span {
  position: relative;
  overflow: hidden;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  transition: transform 180ms var(--motion-ease), background 180ms ease, color 180ms ease;
}

.hardware-strip span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(8, 123, 211, 0.13) 48%, transparent 64%);
  transform: translateX(-130%);
  animation: chipSweep 6.4s ease-in-out infinite;
}

.hardware-strip span:nth-child(2)::after {
  animation-delay: 0.6s;
}

.hardware-strip span:nth-child(3)::after {
  animation-delay: 1.2s;
}

.hardware-strip span:nth-child(4)::after {
  animation-delay: 1.8s;
}

.hardware-strip span:hover {
  background: color-mix(in srgb, var(--brand-blue) 8%, rgba(255, 255, 255, 0.74));
  color: var(--ink);
  transform: translateY(-2px);
}

.visual-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.visual-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--danger);
}

.visual-toolbar span:nth-child(2) {
  background: var(--amber);
}

.visual-toolbar span:nth-child(3) {
  background: var(--teal);
}

.visual-toolbar strong {
  margin-left: 8px;
  font-size: 13px;
  color: var(--muted);
}

.visual-body {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  min-height: 270px;
  padding: 16px;
  background: var(--surface-soft);
}

.badge-device {
  grid-row: 1 / span 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.badge-clip {
  width: 48px;
  height: 14px;
  border-radius: 8px;
  background: var(--line);
}

.badge-screen {
  display: grid;
  place-items: center;
  width: 88px;
  height: 116px;
  border: 1px solid color-mix(in srgb, var(--blue) 45%, var(--line));
  border-radius: 8px;
  background: #10151f;
  color: #ffffff;
}

.badge-screen span {
  color: #8ccaf2;
  font-size: 12px;
}

.badge-screen strong {
  font-size: 18px;
}

.badge-signal {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 26px;
}

.badge-signal i {
  display: block;
  width: 8px;
  border-radius: 4px;
  background: var(--teal);
  transform-origin: bottom center;
  animation: signalPulse 1.6s ease-in-out infinite;
}

.badge-signal i:nth-child(1) {
  height: 10px;
}

.badge-signal i:nth-child(2) {
  height: 18px;
  animation-delay: 0.18s;
}

.badge-signal i:nth-child(3) {
  height: 26px;
  animation-delay: 0.36s;
}

.transcript-panel,
.chart-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.transcript-panel {
  padding: 14px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.panel-head span {
  color: var(--muted);
  font-size: 13px;
}

.panel-head strong {
  padding: 4px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--teal) 14%, transparent);
  color: var(--teal);
  font-size: 13px;
}

.transcript-panel p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.intent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intent-row span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

.chart-panel {
  grid-column: 2;
  padding: 12px;
}

.chart-title {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 58px;
  margin-top: 10px;
}

.bars i {
  flex: 1;
  min-width: 18px;
  border-radius: 6px 6px 0 0;
  background: var(--blue);
}

.bars i:nth-child(2n) {
  background: var(--teal);
}

.bars i:nth-child(3n) {
  background: var(--amber);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.metrics div {
  padding: 18px 20px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  transition: transform 180ms var(--motion-ease), border-color 180ms ease, box-shadow 180ms ease;
}

.metrics div:hover {
  border-color: color-mix(in srgb, var(--brand-blue) 18%, rgba(17, 17, 17, 0.07));
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
  transform: translateY(-3px);
}

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

.metrics strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.metrics span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  position: relative;
  padding: 96px 0;
  background: var(--bg);
}

.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.section-alt {
  background:
    radial-gradient(circle at 12% 18%, rgba(203, 244, 129, 0.28), transparent 20%),
    radial-gradient(circle at 86% 20%, rgba(190, 230, 255, 0.28), transparent 22%),
    var(--surface);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section h2,
.cta-section h2,
.contact-panel h2,
.login-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head p:not(.eyebrow),
.about-copy p,
.cta-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.product-section .section-head > p:not(.eyebrow) {
  width: max-content;
  max-width: min(calc(100vw - 40px), 1120px);
  white-space: nowrap;
}

.product-system,
.proof-grid,
.service-steps,
.faq-grid {
  display: grid;
  gap: 18px;
}

.product-system {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: center;
  margin-top: 46px;
}

.product-demo-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #e8efec;
}

.product-demo-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.product-overview .product-system {
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-overview .system-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-content: center;
  column-gap: 16px;
  min-height: 0;
  padding: 16px 20px;
}

.product-overview .system-card .card-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  margin: 0;
}

.product-overview .system-card strong,
.product-overview .system-card p {
  grid-column: 2;
}

.product-overview .system-card p {
  margin-top: 6px;
}

.system-card,
.proof-grid article,
.service-steps article,
.faq-grid article,
.spec-panel div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms var(--motion-ease),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.system-card {
  min-height: 360px;
  padding: 30px;
}

.system-card.is-featured {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(230, 249, 255, 0.7)),
    radial-gradient(circle at 88% 14%, rgba(199, 240, 107, 0.32), transparent 28%);
}

.system-tag {
  display: block;
  margin: 18px 0 10px;
  color: color-mix(in srgb, var(--brand-blue) 70%, var(--ink));
  font-size: 13px;
  font-weight: 900;
}

.system-card strong,
.proof-grid strong,
.service-steps strong,
.faq-grid strong,
.spec-panel strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
}

.system-card p,
.proof-grid p,
.service-steps p,
.faq-grid p,
.spec-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.74;
}

.system-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.system-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.system-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-blue);
}

.system-card:hover,
.proof-grid article:hover,
.service-steps article:hover,
.faq-grid article:hover,
.spec-panel div:hover {
  border-color: color-mix(in srgb, var(--brand-blue) 20%, rgba(17, 17, 17, 0.08));
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.1);
  transform: translateY(-4px);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 54px;
  align-items: start;
}

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

.workflow-steps article {
  position: relative;
  min-height: 132px;
  padding: 22px 22px 22px 24px;
  border-left: 2px solid color-mix(in srgb, var(--brand-blue) 54%, var(--line));
  background: rgba(255, 255, 255, 0.58);
}

.workflow-steps span,
.service-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.workflow-steps strong {
  display: block;
  font-size: 22px;
}

.workflow-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.carousel {
  --carousel-gap: 18px;
  --carousel-page-size: 3;
  --carousel-card-width: calc((100% - 36px) / 3);
}

.carousel.module-carousel {
  --carousel-page-size: 1;
  --carousel-card-width: 100%;
  position: relative;
}

.carousel-frame {
  overflow: hidden;
  margin: -8px;
  padding: 8px;
  transform-origin: center;
}

.carousel.is-switching .carousel-frame {
  animation: carouselFocus 620ms var(--motion-ease);
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--carousel-gap);
  will-change: transform;
  transition: transform 420ms var(--motion-ease);
}

.carousel-track > .feature-card,
.carousel-track > .module-card {
  flex: 0 0 var(--carousel-card-width);
  max-width: var(--carousel-card-width);
}

.carousel-track > .module-slide {
  flex: 0 0 100%;
  max-width: 100%;
}

.module-slide {
  min-width: 0;
}

.module-slide .section-head {
  margin-bottom: 36px;
}

.carousel-topline {
  display: flex;
  justify-content: flex-end;
  min-height: 0;
  margin: 0 0 -16px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 72px;
  min-height: 64px;
  position: relative;
  z-index: 7;
}

.carousel-dot {
  position: relative;
  overflow: hidden;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.22);
  cursor: pointer;
  transition:
    width 220ms var(--motion-ease),
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms var(--motion-ease);
}

.carousel-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-blue), #15a8ff);
  box-shadow: 0 0 16px rgba(0, 132, 220, 0.28);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

.carousel-dot.is-active {
  width: 48px;
  background: rgba(0, 132, 220, 0.16);
  box-shadow: inset 0 0 0 1px rgba(0, 132, 220, 0.08);
}

.carousel-dot.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.carousel.is-autoplaying .carousel-dot.is-active::before {
  animation: carouselDotCountdown var(--carousel-autoplay-delay, 3200ms) linear forwards;
}

.carousel-dot:hover {
  transform: scale(1.12);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.module-card,
.solution-grid article,
.solution-grid > a,
.hardware-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms var(--motion-ease),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.feature-card::before,
.module-card::before,
.solution-grid article::before,
.solution-grid > a::before,
.hardware-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(118deg, transparent 0%, transparent 35%, rgba(8, 123, 211, 0.08) 45%, rgba(255, 255, 255, 0.62) 50%, transparent 62%, transparent 100%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

[data-reveal].is-visible.feature-card::before,
[data-reveal].is-visible.module-card::before,
.solution-grid article[data-reveal].is-visible::before,
.solution-grid > a[data-reveal].is-visible::before,
.hardware-grid article[data-reveal].is-visible::before {
  animation: cardIdleSheen 8.4s ease-in-out infinite;
  animation-delay: calc(var(--reveal-index, 0) * 420ms);
}

.feature-card:hover::before,
.module-card:hover::before,
.solution-grid article:hover::before,
.solution-grid > a:hover::before,
.hardware-grid article:hover::before {
  animation: cardHoverSheen 860ms ease both;
}

.feature-card > *,
.module-card > *,
.solution-grid article > *,
.solution-grid > a > *,
.hardware-grid article > * {
  position: relative;
  z-index: 1;
}

.feature-card {
  min-height: 226px;
  padding: 30px;
}

.feature-card:hover,
.solution-grid article:hover,
.solution-grid > a:hover,
.hardware-grid article:hover {
  border-color: color-mix(in srgb, var(--brand-blue) 20%, rgba(17, 17, 17, 0.08));
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.1);
  transform: translateY(-4px);
}

.card-icon {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  transition: transform 220ms var(--motion-ease), background 220ms ease, color 220ms ease;
}

.card-icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid currentColor;
  border-radius: 12px;
  opacity: 0.14;
  transform: scale(0.72);
  animation: iconRing 3.2s ease-in-out infinite;
}

.card-icon svg {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

[data-reveal].is-visible .card-icon svg {
  animation: iconMicroFloat 3.8s ease-in-out infinite;
  animation-delay: calc(var(--reveal-index, 0) * 180ms);
}

.feature-card:hover .card-icon,
.module-card:hover .card-icon,
.solution-grid article:hover .card-icon,
.solution-grid > a:hover .card-icon,
.hardware-grid article:hover .card-icon {
  background: var(--brand-blue);
  color: #ffffff;
  transform: rotate(-6deg) scale(1.04);
}

.feature-card h3,
.module-card strong,
.solution-grid strong {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.28;
  text-wrap: balance;
}

.feature-card p,
.module-card p,
.solution-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(162px, 1fr);
  gap: 20px;
}

.feature-grid.carousel-track,
.module-grid.carousel-track {
  display: flex;
  grid-template-columns: none;
  gap: var(--carousel-gap);
}

.module-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  column-gap: 14px;
  row-gap: 8px;
  min-height: 162px;
  padding: 24px;
  text-decoration: none;
}

.module-card .card-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  margin: 0;
  color: var(--ink);
}

.module-card .card-icon svg {
  width: 26px;
  height: 26px;
}

.module-card:hover {
  border-color: color-mix(in srgb, var(--brand-blue) 22%, rgba(17, 17, 17, 0.08));
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.09);
  transform: translateY(-4px);
}

.module-card strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  align-self: center;
  margin: 0;
  font-size: 21px;
  line-height: 1.24;
}

.module-card p {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  max-width: 24em;
  font-size: 15px;
  line-height: 1.62;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-grid article {
  min-height: 138px;
  padding: 24px;
}

.solution-grid > a {
  min-height: 138px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}

.solution-grid .card-icon,
.hardware-grid .card-icon {
  width: 48px;
  height: 48px;
  color: var(--ink);
}

.solution-grid .card-icon svg,
.hardware-grid .card-icon svg {
  width: 24px;
  height: 24px;
}

.solution-grid .card-icon + strong,
.hardware-grid .card-icon + strong {
  display: block;
  margin-top: 18px;
}

.industry-solutions-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 124px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 255, 237, 0.76)),
    radial-gradient(circle at 18% 72%, rgba(199, 240, 107, 0.2), transparent 34%),
    radial-gradient(circle at 84% 28%, rgba(83, 199, 187, 0.18), transparent 31%),
    radial-gradient(circle at 92% 70%, rgba(184, 234, 255, 0.22), transparent 28%),
    var(--bg);
}

.industry-solutions-section::before,
.industry-solutions-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.industry-solutions-section::before {
  inset: 12% -10% auto -12%;
  height: 58%;
  background:
    repeating-radial-gradient(ellipse at 15% 56%, transparent 0 18px, rgba(8, 123, 211, 0.075) 19px 21px, transparent 22px 36px),
    repeating-radial-gradient(ellipse at 82% 48%, transparent 0 20px, rgba(83, 199, 187, 0.07) 21px 23px, transparent 24px 42px);
  opacity: 0.62;
  transform: rotate(2deg);
}

.industry-solutions-section::after {
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(224, 252, 238, 0.58));
}

.industry-solutions-section .shell {
  position: relative;
  z-index: 1;
}

.industry-solution-head {
  max-width: min(100%, 1040px);
  margin: 0 auto;
  text-align: center;
}

.industry-solution-head .eyebrow {
  justify-content: center;
}

.industry-solution-head h2 {
  display: flex;
  justify-content: center;
  gap: 0.08em;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: 0;
}

.industry-solution-head h2 span:last-child {
  color: var(--brand-blue);
}

.industry-solution-head p:last-child {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  white-space: nowrap;
}

.industry-showcase {
  position: relative;
  margin-top: clamp(34px, 5vw, 58px);
  padding: 0 30px;
}

.industry-showcase-viewport {
  overflow: hidden;
  padding: 24px 14px 50px;
  scrollbar-width: none;
}

.industry-showcase-viewport::-webkit-scrollbar {
  display: none;
}

.industry-showcase-track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  transition: transform 520ms var(--motion-ease);
  will-change: transform;
}

.industry-showcase-card {
  position: relative;
  isolation: isolate;
  flex: 0 0 calc((100% - 48px) / 4);
  min-height: clamp(360px, 31vw, 444px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  background: #0a2338;
  box-shadow: 0 22px 52px rgba(21, 91, 89, 0.12);
  will-change: transform;
  transition:
    transform 260ms var(--motion-ease),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.industry-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--solution-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(3px) saturate(0.88) contrast(0.96);
  transform: scale(1.06);
  transition: filter 320ms ease, transform 560ms var(--motion-ease);
}

.industry-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 20, 36, 0.12) 0%, rgba(5, 35, 60, 0.3) 44%, rgba(5, 35, 76, 0.92) 100%),
    linear-gradient(110deg, rgba(83, 199, 187, 0.12), transparent 48%, rgba(8, 123, 211, 0.18));
  opacity: 1;
  pointer-events: none;
  transition: background 260ms ease;
}

.industry-showcase-card.is-active {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 62px rgba(8, 123, 211, 0.14);
}

.industry-showcase-card.is-active::before {
  filter: blur(2.5px) saturate(0.94) contrast(0.98);
}

.industry-showcase-card:hover,
.industry-showcase-card:focus-visible {
  z-index: 4;
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 74px rgba(8, 123, 211, 0.18);
  transform: translateY(-12px) scale(1.035);
}

.industry-showcase-card:hover::before,
.industry-showcase-card:focus-visible::before {
  filter: blur(1.5px) saturate(1) contrast(1.02);
  transform: scale(1.1);
}

.industry-showcase-card:hover::after,
.industry-showcase-card:focus-visible::after {
  background:
    linear-gradient(90deg, rgba(5, 17, 37, 0.88) 0%, rgba(5, 25, 50, 0.72) 38%, rgba(8, 123, 211, 0.4) 100%),
    linear-gradient(180deg, rgba(83, 199, 187, 0.06) 0%, rgba(8, 123, 211, 0.24) 52%, rgba(5, 35, 76, 0.9) 100%);
}

.industry-card-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  background: rgba(5, 33, 76, 0.52);
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  writing-mode: vertical-rl;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 240ms ease, transform 280ms var(--motion-ease);
}

.industry-showcase-card:hover .industry-card-rail,
.industry-showcase-card:focus-visible .industry-card-rail {
  opacity: 1;
  transform: translateX(0);
}

.industry-card-copy {
  position: absolute;
  inset: auto 28px 26px;
  z-index: 2;
  display: grid;
  gap: 10px;
  text-shadow: 0 10px 24px rgba(5, 22, 57, 0.34);
  transition:
    left 260ms var(--motion-ease),
    transform 260ms var(--motion-ease);
}

.industry-showcase-card:hover .industry-card-copy,
.industry-showcase-card:focus-visible .industry-card-copy {
  left: 76px;
  transform: translateY(-2px);
}

.industry-card-copy span {
  max-width: 18em;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.industry-card-copy strong {
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.12;
}

.industry-card-copy small {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.industry-card-copy .industry-card-detail {
  max-width: 18.5em;
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.68;
  opacity: 0;
  transform: translateY(8px);
  transition:
    max-height 300ms var(--motion-ease),
    opacity 220ms ease,
    transform 240ms var(--motion-ease);
}

.industry-showcase-card:hover .industry-card-detail,
.industry-showcase-card:focus-visible .industry-card-detail {
  max-height: 7em;
  opacity: 1;
  transform: translateY(0);
}

.industry-card-copy em {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 4px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms var(--motion-ease);
}

.industry-showcase-card:hover .industry-card-copy em,
.industry-showcase-card:focus-visible .industry-card-copy em {
  opacity: 1;
  transform: translateY(0);
}

.industry-showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: color-mix(in srgb, var(--brand-blue) 58%, var(--ink));
  box-shadow: 0 18px 42px rgba(21, 91, 89, 0.12);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--motion-ease);
}

.industry-showcase-arrow span {
  margin-top: -3px;
  font-size: 48px;
  font-weight: 400;
  line-height: 0.7;
}

.industry-showcase-arrow:hover,
.industry-showcase-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-blue);
  box-shadow: 0 22px 54px rgba(8, 123, 211, 0.2);
  transform: translateY(-50%) scale(1.08);
}

.industry-showcase-arrow-prev {
  left: 0;
}

.industry-showcase-arrow-next {
  right: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-points span {
  padding: 9px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  font-weight: 700;
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hardware-grid article {
  min-height: 154px;
  padding: 26px;
}

.hardware-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.28;
  text-wrap: balance;
}

.hardware-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.spec-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.spec-panel div {
  min-height: 164px;
  padding: 24px;
}

.spec-panel span,
.proof-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--brand-blue) 70%, var(--ink));
  font-size: 13px;
  font-weight: 900;
}

.spec-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
}

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

.proof-grid article {
  min-height: 230px;
  padding: 28px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.value-strip div {
  padding: 20px 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.value-strip strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.1;
}

.value-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

.service-layout > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

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

.service-steps article {
  min-height: 188px;
  padding: 26px;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.faq-grid article {
  min-height: 156px;
  padding: 24px;
}

.solution-page .site-header {
  background: color-mix(in srgb, var(--bg) 72%, transparent);
}

.solution-page--simplified .industry-hero {
  min-height: min(720px, calc(100vh - var(--header-height)));
  padding: 0;
  background:
    linear-gradient(90deg, rgba(247, 255, 244, 0.98) 0%, rgba(247, 255, 244, 0.92) 42%, rgba(247, 255, 244, 0.28) 100%),
    var(--industry-hero-image) right center / cover no-repeat;
}

.solution-page--simplified .industry-hero::before,
.solution-page--simplified .industry-hero::after {
  content: none;
}

.solution-page--simplified .industry-hero-grid {
  display: flex;
  min-height: inherit;
  align-items: center;
}

.solution-page--simplified .industry-hero-copy {
  max-width: 660px;
  padding: 88px 0;
}

.solution-page--simplified .industry-lead {
  max-width: 540px;
  font-size: 19px;
  line-height: 1.65;
}

.solution-page--simplified .industry-visual,
.solution-page--simplified main > section:nth-of-type(2) {
  display: none;
}

.solution-page--simplified .solution-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-page--simplified .solution-step-grid .industry-card {
  min-height: 258px;
  padding: 24px;
}

.solution-page--simplified .solution-step-grid .industry-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.solution-page--simplified .industry-scenarios {
  max-width: 560px;
  margin-top: 28px;
}

.solution-page--simplified .industry-scenarios div {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.solution-page--simplified .industry-scenarios div::after {
  content: none;
}

.solution-page--simplified .industry-scenarios span {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.solution-page--simplified .solution-step-grid .industry-card strong {
  margin: 16px 0 0;
}

.solution-page--simplified .compact-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.industry-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  padding: 74px 0 58px;
  background:
    radial-gradient(circle at 78% 22%, rgba(199, 240, 107, 0.42), transparent 28%),
    radial-gradient(circle at 94% 62%, rgba(184, 234, 255, 0.5), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.industry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 90%, transparent 100%);
  animation: gridDrift 22s linear infinite;
}

.industry-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(118deg, transparent 0%, transparent 43%, rgba(255, 255, 255, 0.42) 50%, transparent 58%, transparent 100%);
  opacity: 0.72;
  transform: translateX(-76%);
  animation: heroSweep 7.8s ease-in-out infinite;
}

.industry-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.industry-hero-copy {
  min-width: 0;
  max-width: 730px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms var(--motion-ease);
}

.back-link::before {
  content: "←";
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.back-link:hover {
  color: var(--brand-blue);
  transform: translateX(-3px);
}

.industry-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
  animation: revealUp 760ms var(--motion-ease) 140ms both;
}

.industry-title-line {
  display: block;
  white-space: nowrap;
}

.industry-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.78;
  animation: revealUp 760ms var(--motion-ease) 260ms both;
}

.industry-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  animation: revealUp 760ms var(--motion-ease) 460ms both;
}

.industry-stats div {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
}

.industry-stats div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(8, 123, 211, 0.12) 44%, rgba(255, 255, 255, 0.46) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: specSweep 6s ease-in-out infinite;
}

.industry-stats div:nth-child(2)::after {
  animation-delay: 0.7s;
}

.industry-stats div:nth-child(3)::after {
  animation-delay: 1.4s;
}

.industry-stats strong,
.industry-stats span {
  position: relative;
  z-index: 1;
  display: block;
}

.industry-stats strong {
  font-size: 34px;
  line-height: 1;
}

.industry-stats span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.industry-visual {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
  animation: revealScale 860ms var(--motion-ease) 220ms both;
}

.industry-visual::before {
  content: "";
  position: absolute;
  inset: 40px 18px 24px 84px;
  border: 1px dashed rgba(17, 17, 17, 0.12);
  border-radius: 52px;
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.72), rgba(209, 249, 233, 0.32) 44%, rgba(217, 239, 255, 0.36)),
    radial-gradient(circle at 22% 12%, rgba(199, 240, 107, 0.46), transparent 30%);
  box-shadow: 0 34px 80px rgba(17, 17, 17, 0.12);
  transform: rotate(-14deg);
  animation: panelFloat 7.2s ease-in-out infinite;
}

.industry-device {
  --badge-transform: translate(-50%, -50%) rotate(-7deg);
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 178px;
  transform: var(--badge-transform);
  animation: badgeFloat 5.8s ease-in-out infinite;
}

.industry-device img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 28px 38px rgba(17, 17, 17, 0.18));
}

.signal-ring {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid rgba(8, 123, 211, 0.22);
  border-radius: 34px;
  animation: haloPulse 3.8s ease-in-out infinite;
}

.industry-flow-card {
  position: absolute;
  z-index: 5;
  width: 178px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(18px);
}

.industry-flow-card span,
.industry-flow-card p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.industry-flow-card strong {
  display: block;
  margin: 4px 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}

.flow-card-one {
  left: 0;
  top: 122px;
  animation: cardFloatA 5.6s ease-in-out infinite;
}

.flow-card-two {
  right: -10px;
  top: 220px;
  animation: cardFloatB 6.2s ease-in-out infinite;
}

.flow-card-three {
  left: 36px;
  bottom: 52px;
  animation: cardFloatA 6.4s ease-in-out infinite;
}

.industry-grid,
.solution-step-grid,
.case-grid {
  display: grid;
  gap: 18px;
}

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

.solution-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.industry-card,
.case-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms var(--motion-ease),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.industry-card {
  min-height: 236px;
  padding: 28px;
}

.industry-card::before,
.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(118deg, transparent 0%, transparent 35%, rgba(8, 123, 211, 0.08) 45%, rgba(255, 255, 255, 0.62) 50%, transparent 62%, transparent 100%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.industry-card[data-reveal].is-visible::before,
.case-card[data-reveal].is-visible::before {
  animation: cardIdleSheen 8.4s ease-in-out infinite;
  animation-delay: calc(var(--reveal-index, 0) * 420ms);
}

.industry-card:hover,
.case-card:hover {
  border-color: color-mix(in srgb, var(--brand-blue) 20%, rgba(17, 17, 17, 0.08));
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.1);
  transform: translateY(-4px);
}

.industry-card:hover::before,
.case-card:hover::before {
  animation: cardHoverSheen 860ms ease both;
}

.industry-card > *,
.case-card > * {
  position: relative;
  z-index: 1;
}

.industry-card strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 21px;
  line-height: 1.28;
  text-wrap: balance;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.case-card {
  min-height: 220px;
  padding: 30px;
}

.case-card span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.case-card strong {
  display: block;
  margin: 14px 0 12px;
  color: var(--brand-blue);
  font-size: 52px;
  line-height: 1;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.compact-section {
  padding-top: 70px;
}

.mini-solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-solution-grid.is-rolling > a {
  will-change: opacity, transform;
}

.mini-solution-grid.is-auto-rolling > a:not([hidden]) {
  animation: miniSolutionRollIn 520ms var(--motion-ease) both;
}

.solution-page--simplified .compact-section .shell {
  overflow: hidden;
}

.mini-solution-grid.is-marquee {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: solutionMarquee 30s linear infinite;
  will-change: transform;
}

.mini-solution-grid.is-marquee > a {
  flex: 0 0 clamp(260px, 28vw, 340px);
  min-height: 180px;
}

.mini-solution-grid.is-marquee:hover,
.mini-solution-grid.is-marquee:focus-within {
  animation-play-state: paused;
}

@keyframes solutionMarquee {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.cta-section {
  padding: 92px 0;
  background:
    linear-gradient(110deg, rgba(214, 241, 255, 0.92) 0%, rgba(242, 255, 232, 0.96) 48%, rgba(225, 236, 255, 0.94) 100%),
    #eef6f4;
  color: var(--ink);
}

.cta-section p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #56616a;
}

.cta-shell {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1040px;
  text-align: center;
}

.cta-section h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.cta-actions {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 14px;
  width: auto;
}

.cta-actions .button {
  width: auto;
  min-width: 178px;
}

.cta-section .button-dark {
  background: var(--brand-blue);
  box-shadow: 0 14px 34px rgba(8, 123, 211, 0.2);
}

.cta-section .button-dark:hover {
  background: var(--blue-dark);
}

.cta-section .button-light {
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
}

.site-footer {
  position: relative;
  padding: 68px 0 24px;
  border-top: 0;
  background:
    linear-gradient(112deg, #101214 0%, #111715 66%, #111a1d 100%);
  color: rgba(255, 255, 255, 0.66);
}

.footer-shell {
  display: block;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(130px, 0.7fr) minmax(260px, 1.25fr) minmax(220px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.footer-logo {
  display: block;
  width: min(210px, 100%);
  height: auto;
  margin-bottom: 22px;
  opacity: 0.88;
  filter: brightness(0) invert(1);
}

.footer-brand-block p,
.footer-contact-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.78;
}

.footer-contact-button,
.footer-contact-block button {
  margin-top: 20px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 17px;
}

.footer-column a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-solution-column > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  width: 100%;
}

.footer-contact-block button {
  width: 100%;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.contact-rail {
  position: fixed;
  z-index: 18;
  right: 14px;
  top: 50%;
  display: grid;
  width: 82px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(18px, -50%);
  transition: opacity 220ms ease, transform 220ms var(--motion-ease), visibility 220ms ease;
}

.contact-rail.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(0, -50%);
}

.contact-rail button,
.contact-rail a {
  display: flex;
  min-height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 4px;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: transparent;
  color: #34383f;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.contact-rail a:last-child {
  border-bottom: 0;
}

.contact-rail button:hover,
.contact-rail a:hover {
  background: rgba(8, 123, 211, 0.08);
  color: var(--brand-blue);
}

.contact-rail svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-rail-arrow {
  font-size: 25px;
  line-height: 1;
}

.contact-dialog,
.login-dialog,
.business-dialog {
  width: min(480px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
}

.contact-dialog::backdrop,
.login-dialog::backdrop,
.business-dialog::backdrop {
  background: rgba(16, 21, 31, 0.58);
  backdrop-filter: blur(5px);
}

.contact-panel,
.login-panel,
.business-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.business-dialog {
  width: min(430px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
}

.business-panel {
  gap: 14px;
  padding: 20px;
  overflow: hidden;
}

.business-panel-heading {
  padding-right: 44px;
}

.business-panel-heading h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0;
}

.business-panel-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.business-panel img {
  display: block;
  width: 100%;
  max-height: 70dvh;
  border-radius: 6px;
  object-fit: contain;
}

.contact-panel button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.contact-panel label,
.login-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-panel input,
.contact-panel select,
.login-panel input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
}

.login-helper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.login-helper label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.login-helper input {
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
}

.login-helper button {
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  cursor: pointer;
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  padding: 12px 16px;
  border-radius: 8px;
  background: #10151f;
  color: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 720ms var(--motion-ease),
    transform 720ms var(--motion-ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

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

.contact-dialog[open] .contact-panel,
.login-dialog[open] .login-panel,
.business-dialog[open] .business-panel {
  animation: dialogIn 260ms var(--motion-ease) both;
}

@keyframes pageAmbient {
  0% {
    background-position: 50% 0%, 100% 38%, 82% 74%, 0 0;
  }
  100% {
    background-position: 58% 4%, 92% 42%, 74% 70%, 0 0;
  }
}

@keyframes signalField {
  from {
    background-position: 0 0, -240px 0;
  }

  to {
    background-position: 168px 0, 240px 0;
  }
}

@keyframes buttonSweep {
  from {
    transform: translateX(-130%);
  }

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

@keyframes titleAccentPulse {
  0%, 100% {
    opacity: 0.46;
    transform: scaleX(0.72);
  }

  48% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes specSweep {
  0%, 36% {
    transform: translateX(-130%);
  }

  62%, 100% {
    transform: translateX(130%);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealScale {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes titleWordRoll {
  0%, 36% {
    transform: translateY(0);
  }
  46%, 82% {
    transform: translateY(-1.18em);
  }
  92%, 100% {
    transform: translateY(-2.36em);
  }
}

@keyframes gridDrift {
  to {
    background-position: 54px 54px, 54px 54px;
  }
}

@keyframes heroSweep {
  0%, 55% {
    transform: translateX(-76%);
  }
  82%, 100% {
    transform: translateX(76%);
  }
}

@keyframes panelFloat {
  0%, 100% {
    transform: rotate(-18deg) translateY(0);
  }
  50% {
    transform: rotate(-16deg) translateY(-12px);
  }
}

@keyframes realBadgeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 64px) rotate(-2deg) scale(1);
  }
  50% {
    transform: translate3d(-8px, -10px, 70px) rotate(-1.4deg) scale(1.015);
  }
}

@keyframes productPhotoSweep {
  0%, 48% {
    transform: translateX(-88%);
  }
  76%, 100% {
    transform: translateX(88%);
  }
}

@keyframes shadowPulse {
  0%, 100% {
    opacity: 0.78;
    transform: rotate(-8deg) scaleX(1);
  }
  50% {
    opacity: 0.48;
    transform: rotate(-8deg) scaleX(0.86);
  }
}

@keyframes haloPulse {
  0%, 100% {
    opacity: 0.62;
    transform: rotate(10deg) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: rotate(10deg) scale(1.035);
  }
}

@keyframes dataStream {
  0% {
    opacity: 0;
    transform: translateX(-38%) scaleX(0.36);
  }
  22% {
    opacity: 0.82;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateX(38%) scaleX(0.72);
  }
}

@keyframes dataPacket {
  0% {
    opacity: 0;
    transform: translateX(-45%) scaleX(0.72);
  }

  22% {
    opacity: 1;
  }

  78%, 100% {
    opacity: 0;
    transform: translateX(228px) scaleX(0.88);
  }
}

@keyframes badgeFloat {
  0%, 100% {
    transform: var(--badge-transform) translate3d(0, 0, 0);
  }
  50% {
    transform: var(--badge-transform) translate3d(0, -12px, 34px);
  }
}

@keyframes cameraPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(8, 123, 211, 0);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(8, 123, 211, 0.12), 0 0 18px rgba(8, 123, 211, 0.26);
  }
}

@keyframes screenScan {
  0%, 34% {
    transform: translateY(-100%);
  }
  72%, 100% {
    transform: translateY(250%);
  }
}

@keyframes recTextGlow {
  0%, 100% {
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.2);
  }

  50% {
    text-shadow: 0 0 24px rgba(140, 202, 242, 0.46);
  }
}

@keyframes recBlink {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 0.66;
    box-shadow: 0 0 0 0 rgba(83, 199, 187, 0.26);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(83, 199, 187, 0);
  }
}

@keyframes miniScan {
  0%, 35% {
    transform: translateX(-120%);
  }

  68%, 100% {
    transform: translateX(120%);
  }
}

@keyframes micPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(8, 123, 211, 0);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(8, 123, 211, 0.12);
  }
}

@keyframes signalPulse {
  0%, 100% {
    transform: scaleY(0.7);
    opacity: 0.58;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes chipSweep {
  0%, 40% {
    transform: translateX(-130%);
  }

  66%, 100% {
    transform: translateX(130%);
  }
}

@keyframes cardIdleSheen {
  0%, 64% {
    opacity: 0;
    transform: translateX(-120%);
  }

  74% {
    opacity: 0.82;
  }

  92%, 100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes cardHoverSheen {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  45% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes miniSolutionRollIn {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.985);
  }

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

@keyframes iconRing {
  0%, 100% {
    opacity: 0.1;
    transform: scale(0.72);
  }

  52% {
    opacity: 0.22;
    transform: scale(1);
  }
}

@keyframes iconMicroFloat {
  0%, 100% {
    transform: translateY(0);
  }

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

@keyframes carouselFocus {
  0% {
    transform: scale(0.992);
    filter: saturate(0.96);
  }

  45% {
    transform: scale(1.006);
    filter: saturate(1.08);
  }

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

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

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

@keyframes ctaAmbient {
  0% {
    background-position: 78% 24%, 94% 62%, 0 0;
  }
  100% {
    background-position: 68% 18%, 84% 68%, 0 0;
  }
}

@keyframes dialogIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes carouselDotCountdown {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1120px) {
  .nav-shell {
    gap: 14px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    display: none;
    background: var(--surface);
  }

  .site-nav {
    top: calc(var(--header-height) + 12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: none;
    max-height: calc(100dvh - var(--header-height) - 28px);
    overflow-y: auto;
    margin-left: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav a,
  .nav-dropdown-button {
    width: 100%;
    padding: 12px;
    text-align: left;
  }

  .nav-actions {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 0;
    padding: 6px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-dropdown::after {
    display: none;
  }

  .solution-menu {
    display: none;
    position: static;
    grid-template-columns: 1fr;
    min-width: 0;
    margin: 6px 0 10px;
    box-shadow: none;
    transform: none;
  }

  .solution-menu.is-open {
    display: grid;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-grid,
  .hero-banner,
  .industry-hero-grid,
  .about-grid,
  .workflow-layout,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(34px, 7vw, 52px);
  }

  .hero-slide {
    min-height: 0;
    padding: 64px var(--hero-edge) 46px;
  }

  .hero-cover-slide::before {
    background-size: auto 100%;
    background-position: calc(100% + clamp(360px, calc(18vw + 280px), 520px)) 50%;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 34%, rgba(0, 0, 0, 0.16) 46%, #000 62%, #000 100%);
  }

  .hero-cover-slide::after {
    background:
      linear-gradient(180deg, rgba(247, 255, 237, 0.96) 0%, rgba(247, 255, 237, 0.84) 48%, rgba(247, 255, 237, 0.52) 100%),
      linear-gradient(90deg, rgba(247, 255, 237, 0.9) 0%, rgba(247, 255, 237, 0.56) 54%, rgba(247, 255, 237, 0.16) 100%),
      radial-gradient(circle at 74% 22%, rgba(199, 240, 107, 0.2), transparent 28%);
  }

  .hero-banner {
    gap: 24px;
  }

  .hero-banner-copy {
    padding: 0;
    text-align: center;
  }

  .hero-banner .hero-lead {
    margin-left: auto;
    text-align: center;
  }

  .hero-banner .hero-actions {
    justify-content: center;
  }

  .industry-showcase {
    padding: 0 24px;
  }

  .industry-showcase-card {
    flex-basis: calc((100% - 16px) / 2);
    min-height: 380px;
  }

  .hero-banner-panel,
  .hero-product-stack {
    padding: 0;
  }

  .hero-specs {
    max-width: none;
  }

  .product-visual {
    width: min(100%, 720px);
    min-height: 520px;
    justify-self: center;
  }

  .device-stage {
    min-height: 468px;
  }

  .device-stage::before {
    right: 72px;
    width: 240px;
  }

  .device-stage .badge-device {
    --badge-transform: translateX(26px) rotate(-8deg);
  }

  .product-visual.has-real-badge .device-stage {
    place-items: center;
    padding: 22px 18px 78px;
  }

  .product-visual.has-real-badge .device-stage::before {
    right: auto;
    left: 50%;
    top: 86px;
    width: min(680px, 96%);
    height: 326px;
    border-radius: 36px;
    transform: translateX(-50%) rotate(-4deg);
  }

  .product-visual.has-real-badge .device-stage::after {
    right: 50%;
    bottom: 108px;
    width: min(520px, 74%);
    transform: translateX(50%) rotate(-4deg);
  }

  .real-badge-visual {
    inset: 18px -44px 42px -24px;
    width: auto;
    margin: 0;
  }

  .product-visual.has-real-badge .device-halo {
    right: auto;
    left: 50%;
    width: min(520px, 72%);
    transform: translateX(-50%) rotate(-5deg);
  }

  .product-visual.has-real-badge .device-data-stream {
    right: 15%;
    width: min(390px, 60%);
  }

  .product-visual.has-real-badge .live-card {
    left: 8%;
    top: 120px;
  }

  .product-visual.has-real-badge .battery-card {
    right: 8%;
    bottom: 118px;
  }

  .hardware-strip {
    right: 0;
  }

  .carousel {
    --carousel-page-size: 2;
    --carousel-card-width: calc((100% - 18px) / 2);
  }

  .feature-grid,
  .module-grid,
  .solution-grid,
  .industry-grid,
  .solution-step-grid,
  .case-grid,
  .hardware-grid,
  .product-system,
  .proof-grid,
  .spec-panel,
  .service-steps,
  .value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .industry-visual {
    min-height: 500px;
  }

  .flow-card-two {
    right: 20px;
  }

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

}

@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-demo-placeholder {
    min-height: 0;
  }

  .product-overview .product-system {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-overview .system-card {
    grid-template-columns: 1fr;
  }

  .product-overview .system-card .card-icon,
  .product-overview .system-card strong,
  .product-overview .system-card p {
    grid-column: 1;
    grid-row: auto;
  }

  .product-overview .system-card .card-icon {
    justify-self: start;
    margin-bottom: 12px;
  }

  .cta-shell {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 28px;
  }

  .cta-actions {
    flex-flow: row wrap;
    width: auto;
    justify-content: center;
  }

  .cta-actions .button {
    width: auto;
  }
}

@media (min-width: 861px) and (max-height: 800px) {
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .cta-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

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

  .product-demo-placeholder {
    min-height: 0;
  }

  .solution-page--simplified .industry-hero {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(247, 255, 244, 0.96) 0%, rgba(247, 255, 244, 0.84) 56%, rgba(247, 255, 244, 0.38) 100%),
      var(--industry-hero-image) 62% center / cover no-repeat;
  }

  .solution-page--simplified .industry-hero-copy {
    padding: 60px 0;
  }

  .solution-page--simplified .solution-step-grid {
    grid-template-columns: 1fr;
  }

  .solution-page--simplified .industry-scenarios {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .solution-page--simplified .industry-scenarios div {
    min-height: 54px;
    padding: 10px 6px;
  }

  .solution-page--simplified .industry-scenarios span {
    font-size: 12px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-tag,
  .button-quiet {
    display: none;
  }

  .hero {
    --hero-edge: 14px;
    padding: 0 0 30px;
  }

  .industry-hero {
    padding: 44px 0 38px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-carousel-topline {
    top: 8px;
    right: var(--hero-edge);
  }

  .hero-carousel .carousel-dots {
    min-height: 34px;
  }

  .hero-slide {
    padding: 54px var(--hero-edge) 34px;
  }

  .hero-cover-slide::before {
    background-size: auto 100%;
    background-position: 58% 46%;
  }

  .hero-cover-slide .product-visual {
    min-height: 340px;
  }

  .hero-banner::before {
    content: none;
  }

  .hero-banner-copy {
    padding: 0;
  }

  .hero-banner h1 {
    font-size: clamp(30px, 8.4vw, 40px);
  }

  .hero-banner-panel,
  .hero-product-stack {
    padding: 0;
  }

  .hero-banner-panel strong {
    font-size: 26px;
  }

  .industry-hero-grid {
    gap: 28px;
  }

  .industry-hero-copy {
    max-width: 480px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.6vw, 40px);
  }

  .industry-hero h1 {
    max-width: 12.5em;
    font-size: clamp(28px, 6.4vw, 34px);
  }

  .industry-lead {
    max-width: 29em;
    line-height: 1.64;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .hero-lead,
  .industry-lead,
  .section-head p:not(.eyebrow),
  .about-copy p,
  .cta-section p {
    font-size: 16px;
  }

  .hero-lead {
    margin-top: 18px;
    line-height: 1.62;
  }

  .product-section .section-head > p:not(.eyebrow) {
    width: auto;
    max-width: none;
    white-space: normal;
  }

  .hero-actions,
  .industry-hero .hero-actions,
  .cta-actions {
    display: grid;
    width: 100%;
  }

  .button-large {
    width: 100%;
  }

  .visual-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .chart-panel {
    grid-column: auto;
  }

  .badge-device {
    min-height: 230px;
  }

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

  .carousel {
    --carousel-gap: 14px;
    --carousel-page-size: 1;
    --carousel-card-width: 100%;
  }

  .carousel-frame {
    margin: -6px;
    padding: 6px;
  }

  .carousel-dots {
    justify-content: flex-end;
    min-width: 64px;
    min-height: 36px;
  }

  .carousel-topline {
    margin-bottom: 4px;
  }

  .industry-solutions-section {
    padding: 66px 0 76px;
  }

  .industry-solution-head h2 {
    display: grid;
    gap: 4px;
    justify-items: center;
    font-size: clamp(31px, 8.2vw, 34px);
    line-height: 1.08;
  }

  .industry-solution-head p:last-child {
    max-width: 19em;
    font-size: 15px;
    line-height: 1.72;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: normal;
  }

  .industry-showcase {
    margin-top: 28px;
    padding: 0;
  }

  .industry-showcase-viewport {
    margin: 0 -14px;
    padding: 12px 14px 34px;
    scroll-padding-inline: 14px;
  }

  .industry-showcase-card {
    flex-basis: min(82vw, 350px);
    min-height: 390px;
  }

  .industry-showcase-card:hover,
  .industry-showcase-card:focus-visible {
    transform: translateY(-8px) scale(1.018);
  }

  .industry-card-rail {
    width: 46px;
    font-size: 20px;
  }

  .industry-card-copy {
    inset: auto 22px 22px;
  }

  .industry-showcase-card:hover .industry-card-copy,
  .industry-showcase-card:focus-visible .industry-card-copy {
    left: 64px;
  }

  .industry-card-copy span {
    font-size: 13px;
  }

  .industry-card-copy strong {
    font-size: 30px;
  }

  .industry-card-copy small {
    font-size: 15px;
  }

  .industry-card-copy .industry-card-detail {
    font-size: 13px;
    line-height: 1.58;
  }

  .industry-showcase-arrow {
    width: 44px;
    height: 44px;
  }

  .industry-showcase-arrow span {
    font-size: 38px;
  }

  .industry-showcase-arrow-prev {
    left: -10px;
  }

  .industry-showcase-arrow-next {
    right: -10px;
  }

  .feature-grid,
  .module-grid,
  .solution-grid,
  .industry-grid,
  .solution-step-grid,
  .case-grid,
  .hardware-grid,
  .product-system,
  .workflow-steps,
  .proof-grid,
  .spec-panel,
  .service-steps,
  .faq-grid,
  .value-strip {
    grid-template-columns: 1fr;
  }

  .spec-note {
    text-align: left;
  }

  .industry-stats {
    grid-template-columns: 1fr;
  }

  .module-grid {
    grid-auto-rows: auto;
  }

  .module-card {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 22px;
  }

  .metrics div,
  .feature-card,
  .module-card,
  .solution-grid article,
  .solution-grid > a,
  .industry-card,
  .case-card,
  .system-card,
  .proof-grid article,
  .service-steps article,
  .faq-grid article,
  .spec-panel div {
    min-height: auto;
  }

  .section {
    padding: 64px 0;
  }

  .section h2,
  .cta-section h2,
  .contact-panel h2,
  .login-panel h2 {
    font-size: clamp(30px, 9vw, 34px);
  }

  .section-head,
  .section-head.align-left {
    text-align: center;
  }

  .hero-specs {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 500px;
  }

  .industry-visual {
    min-height: 430px;
  }

  .industry-visual::before {
    inset: 38px 18px 26px 36px;
  }

  .industry-device {
    width: 138px;
  }

  .industry-flow-card {
    width: 152px;
  }

  .flow-card-one {
    left: 0;
    top: 92px;
  }

  .flow-card-two {
    right: 0;
    top: 188px;
  }

  .flow-card-three {
    left: 16px;
    bottom: 28px;
  }

  .mini-solution-grid {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: 450px;
    padding: 18px;
  }

  .device-stage::before {
    right: -44px;
    top: 58px;
    width: 220px;
    height: 390px;
    border-radius: 48px;
  }

  .device-halo {
    right: 54px;
    width: 140px;
    height: 300px;
  }

  .device-stage .badge-device {
    width: 132px;
    min-height: 330px;
    --badge-transform: translate(-16px, -24px) rotate(-8deg);
  }

  .device-stage .badge-screen {
    width: 92px;
    height: 154px;
  }

  .device-stage .badge-screen strong {
    font-size: 27px;
  }

  .device-card {
    width: 145px;
    padding: 12px;
  }

  .device-card strong {
    font-size: 19px;
  }

  .live-card {
    left: 0;
    top: 126px;
  }

  .battery-card {
    right: 8px;
    bottom: 8px;
    z-index: 6;
    animation: none;
  }

  .product-visual.has-real-badge {
    min-height: 430px;
  }

  .product-visual.has-real-badge .device-stage {
    min-height: 390px;
    padding: 20px 0 66px;
  }

  .product-visual.has-real-badge .device-stage::before {
    top: 94px;
    width: min(520px, 108%);
    height: 228px;
    border-radius: 28px;
  }

  .product-visual.has-real-badge .device-stage::after {
    bottom: 88px;
    width: min(390px, 76%);
  }

  .real-badge-visual {
    inset: 56px -54px 88px -34px;
    width: auto;
    border-radius: 22px;
  }

  .product-visual.has-real-badge .device-halo {
    top: 118px;
    width: min(390px, 82%);
    height: 158px;
  }

  .product-visual.has-real-badge .device-data-stream {
    top: 142px;
    right: 10%;
    width: min(300px, 68%);
    height: 150px;
  }

  .product-visual.has-real-badge .live-card {
    top: 74px;
    left: 0;
  }

  .product-visual.has-real-badge .battery-card {
    right: 0;
    bottom: 80px;
    animation: cardFloatB 6.2s ease-in-out infinite;
  }

  .hardware-strip {
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    margin-top: -10px;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .toast {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    gap: 10px;
  }

  .brand {
    gap: 9px;
    min-width: 0;
  }

  .brand-logo {
    width: 150px;
    height: 40px;
  }

  .brand-name {
    max-width: min(52vw, 180px);
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero-banner h1 {
    font-size: 29px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-specs div,
  .metrics div,
  .feature-card,
  .module-card,
  .solution-grid article,
  .hardware-grid article {
    border-radius: 18px;
  }

  .product-visual {
    min-height: 470px;
  }

  .device-stage {
    min-height: 430px;
    padding: 10px;
  }

  .device-stage::before {
    right: -58px;
    width: 196px;
    height: 342px;
  }

  .device-halo {
    right: 36px;
    width: 124px;
    height: 268px;
  }

  .device-data-stream {
    width: 220px;
  }

  .device-stage .badge-device {
    width: 118px;
    min-height: 292px;
    border-radius: 26px;
    --badge-transform: translate(-12px, -28px) rotate(-8deg);
  }

  .device-stage .badge-screen {
    width: 82px;
    height: 138px;
  }

  .device-card {
    width: 132px;
  }

  .live-card {
    top: 114px;
  }

  .battery-card {
    right: 8px;
    bottom: 8px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 28px;
  }

  .industry-hero h1 {
    font-size: 24px;
    line-height: 1.18;
  }

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

@media (max-width: 1120px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-rail {
    right: 8px;
    width: 72px;
  }

  .contact-rail button,
  .contact-rail a {
    min-height: 66px;
    font-size: 11px;
  }
}

@media (max-width: 680px) {
  .solution-page--simplified .case-grid {
    grid-template-columns: 1fr;
  }

  .mini-solution-grid.is-marquee > a {
    flex-basis: min(78vw, 300px);
  }

  .site-footer {
    padding: 52px 0 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo {
    width: 182px;
  }

  .contact-rail {
    right: 6px;
    width: 64px;
  }

  .contact-rail button,
  .contact-rail a {
    min-height: 60px;
    font-size: 10px;
  }

  .footer-solution-column > div {
    gap: 10px 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }

  .footer-bottom > div {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .footer-solution-column > div {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-page--simplified .compact-section .shell {
    overflow-x: auto;
  }

  .mini-solution-grid.is-marquee {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

}
